nixpkgs/pkgs/development/tools/cadre/default.nix
2020-04-10 17:54:53 +01:00

18 lines
476 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "cadre";
gemdir = ./.;
exes = [ "cadre" ];
passthru.updateScript = bundlerUpdateScript "cadre";
meta = with lib; {
description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs";
homepage = "https://github.com/nyarly/cadre";
license = licenses.mit;
maintainers = with maintainers; [ nyarly nicknovitski ];
platforms = platforms.unix;
};
}