summary refs log blame commit diff
path: root/pkgs/development/tools/cadre/default.nix
blob: 77b49107e165b01db74d17fa28b7c5bae34c7673 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         





                     

                                                      



                                                                                                 
                                                            


                                 
{ 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;
  };
}