about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/cadre/default.nix
blob: 93eb32cfb5142da7381686e9db4be897beff5cd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp {
  pname = "cadre";
  gemdir = ./.;
  exes = [ "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 = [ maintainers.nyarly ];
    platforms   = platforms.unix;
  };
}