lol
1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "pt";
5 gemdir = ./.;
6 exes = [ "pt" ];
7
8 passthru.updateScript = bundlerUpdateScript "pt";
9
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 };
17}