nixpkgs/pkgs/tools/system/procodile/default.nix
2019-04-30 18:01:54 +02:00

16 lines
454 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "procodile";
gemdir = ./.;
exes = [ "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 ];
platforms = platforms.unix;
};
}