about summary refs log tree commit diff
path: root/pkgs/tools/system/procodile/default.nix
blob: 3c4437ea09c478ecdd69ce2c6ef97e2125c7b781 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
  };
}