about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/cadre/default.nix
blob: 17b505bf2a9d1b2eea062ded89cd481b6b552afd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}