nixpkgs/pkgs/applications/misc/pt/default.nix

18 lines
443 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2016-01-09 18:00:54 +00:00
2019-04-30 15:43:09 +00:00
bundlerApp {
pname = "pt";
2017-01-17 23:28:55 +00:00
gemdir = ./.;
2019-04-30 15:43:09 +00:00
exes = [ "pt" ];
2016-01-09 18:00:54 +00:00
passthru.updateScript = bundlerUpdateScript "pt";
2016-01-09 18:00:54 +00:00
meta = with lib; {
description = "Minimalist command-line Pivotal Tracker client";
homepage = "http://www.github.com/raul/pt";
2016-01-09 18:00:54 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ebzzry manveru nicknovitski ];
2016-01-09 18:00:54 +00:00
platforms = platforms.unix;
};
}