Did not react to maintainer pings since 2024. Dropping according to maintainer guidelines.
25 lines
587 B
Nix
25 lines
587 B
Nix
{
|
|
lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "procodile";
|
|
gemdir = ./.;
|
|
exes = [ "procodile" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "procodile";
|
|
|
|
meta = {
|
|
description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)";
|
|
homepage = "https://github.com/adamcooke/procodile";
|
|
license = with lib.licenses; mit;
|
|
maintainers = with lib.maintainers; [
|
|
nicknovitski
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "procodile";
|
|
};
|
|
}
|