2019-07-22 14:02:47 +02:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2016-01-09 19:00:54 +01:00
|
|
|
|
2019-04-30 17:43:09 +02:00
|
|
|
bundlerApp {
|
|
|
|
pname = "pt";
|
2017-01-18 00:28:55 +01:00
|
|
|
gemdir = ./.;
|
2019-04-30 17:43:09 +02:00
|
|
|
exes = [ "pt" ];
|
2016-01-09 19:00:54 +01:00
|
|
|
|
2019-07-22 14:02:47 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "pt";
|
|
|
|
|
2016-01-09 19:00:54 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Minimalist command-line Pivotal Tracker client";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.github.com/raul/pt";
|
2016-01-09 19:00:54 +01:00
|
|
|
license = licenses.mit;
|
2019-07-22 14:02:47 +02:00
|
|
|
maintainers = with maintainers; [ ebzzry manveru nicknovitski ];
|
2016-01-09 19:00:54 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|