Files
Wolfgang Walther aa7f574386 maintainers: drop manveru
Did not react to maintainer pings since 2024. Dropping according to
maintainer guidelines.
2026-01-10 22:12:03 +01:00

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";
};
}