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

18 lines
474 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;
license = licenses.mit;
maintainers = with maintainers; [ nyarly nicknovitski ];
2019-02-26 21:38:51 +00:00
platforms = platforms.unix;
};
}