1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/pt/default.nix
2017-01-18 00:52:53 +01:00

17 lines
363 B
Nix

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