summary refs log tree commit diff
path: root/pkgs/tools/system/procodile/default.nix
blob: 3ae80a312ed629946b81c264018ef61495749fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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; [ ravloony manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}