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

bundlerEnv {
  name = "pt-0.7.3";

  inherit ruby;
  gemdir = ./.;

  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;
  };
}