summary refs log tree commit diff
path: root/pkgs/applications/misc/pt/default.nix
blob: dbda7664bde077a613fd3bb6ba841d3793ce8375 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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;
  };
}