base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / system / procodile / default.nix
blob3c4437ea09c478ecdd69ce2c6ef97e2125c7b781
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "procodile";
5   gemdir = ./.;
6   exes = [ "procodile" ];
8   passthru.updateScript = bundlerUpdateScript "procodile";
10   meta = with lib; {
11     description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)";
12     homepage    = "https://adam.ac/procodile";
13     license     = with licenses; mit;
14     maintainers = with maintainers; [ manveru nicknovitski ];
15     platforms   = platforms.unix;
16     mainProgram = "procodile";
17   };