about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/procodile/default.nix
blob: 2751601b39b96ff387a9f11a269adbad37da73ab (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;
  };
}