mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
17 lines
355 B
Nix
17 lines
355 B
Nix
{ 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;
|
|
};
|
|
}
|