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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
443 B
Nix
Raw Normal View History

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