nixpkgs/pkgs/development/tools/cadre/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
490 B
Nix
Raw Normal View History

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