nixpkgs/pkgs/tools/system/procodile/default.nix
2023-11-27 02:17:53 +01:00

19 lines
572 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "procodile";
gemdir = ./.;
exes = [ "procodile" ];
passthru.updateScript = bundlerUpdateScript "procodile";
meta = with lib; {
description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)";
homepage = "https://adam.ac/procodile";
license = with licenses; mit;
maintainers = with maintainers; [ manveru nicknovitski ];
platforms = platforms.unix;
mainProgram = "procodile";
};
}