nixpkgs/pkgs/applications/misc/pt/default.nix

17 lines
355 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby }:
2016-01-09 18:00:54 +00:00
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;
};
}