summary refs log blame commit diff
path: root/pkgs/applications/misc/pt/default.nix
blob: f5504721987a9851625aebe28cd507b6206e5c3d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 

               
               
                  
 

                                                   



                                                                   
                                                                    


                                 
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "pt";
  gemdir = ./.;
  exes = [ "pt" ];

  passthru.updateScript = bundlerUpdateScript "pt";

  meta = with lib; {
    description = "Minimalist command-line Pivotal Tracker client";
    homepage    = http://www.github.com/raul/pt;
    license     = licenses.mit;
    maintainers = with maintainers; [ ebzzry manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}