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

17 lines
363 B
Nix
Raw Normal View History

2016-01-09 18:00:54 +00:00
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
name = "pt-0.7.3";
inherit ruby;
2017-01-17 23:28:55 +00:00
gemdir = ./.;
2016-01-09 18:00:54 +00:00
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;
};
}