about summary refs log tree commit diff
path: root/pkgs/applications/misc/pt/default.nix
blob: d85a3266bdf8abb3586874319059ea86303475ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "pt-0.7.3";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  meta = with lib; {
    description = "Minimalist command-line Pivotal Tracker client";
    homepage    = http://www.github.com/raul/pt;
    license     = licenses.mit;
    maintainers = with maintainers; [ ebzzry ];
    platforms   = platforms.unix;
  };
}