fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, lib, bundlerEnv, ruby }:
2
3bundlerEnv {
4 name = "pt-0.7.3";
5
6 inherit ruby;
7 gemfile = ./Gemfile;
8 lockfile = ./Gemfile.lock;
9 gemset = ./gemset.nix;
10
11 meta = with lib; {
12 description = "Minimalist command-line Pivotal Tracker client";
13 homepage = http://www.github.com/raul/pt;
14 license = licenses.mit;
15 maintainers = with maintainers; [ ebzzry ];
16 platforms = platforms.unix;
17 };
18}