nixpkgs/pkgs/development/tools/cadre/default.nix
2019-07-22 12:02:47 +00:00

18 lines
474 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;
};
}