lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 17 lines 443 B view raw
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}