2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-11-07 15:45:41 +00:00
|
|
|
|
2019-04-30 16:36:25 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "procodile";
|
2017-11-07 15:45:41 +00:00
|
|
|
gemdir = ./.;
|
2019-04-30 16:36:25 +01:00
|
|
|
exes = [ "procodile" ];
|
2017-11-07 15:45:41 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "procodile";
|
|
|
|
|
2017-11-07 15:45:41 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://adam.ac/procodile";
|
2017-11-07 15:45:41 +00:00
|
|
|
license = with licenses; mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ ravloony manveru nicknovitski ];
|
2017-11-07 15:45:41 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|