Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / pt / default.nix
blobef490702a672f664f0499c70111b521eeb35ee6c
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "pt";
5   gemdir = ./.;
6   exes = [ "pt" ];
8   passthru.updateScript = bundlerUpdateScript "pt";
10   meta = with lib; {
11     description = "Minimalist command-line Pivotal Tracker client";
12     homepage    = "http://www.github.com/raul/pt";
13     license     = licenses.mit;
14     maintainers = with maintainers; [ ebzzry manveru nicknovitski ];
15     platforms   = platforms.unix;
16   };