nixpkgs/pkgs/tools/system/procodile/default.nix

18 lines
550 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-11-07 15:45:41 +00:00
bundlerApp {
pname = "procodile";
2017-11-07 15:45:41 +00:00
gemdir = ./.;
exes = [ "procodile" ];
2017-11-07 15:45:41 +00:00
passthru.updateScript = bundlerUpdateScript "procodile";
2017-11-07 15:45:41 +00:00
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";
2017-11-07 15:45:41 +00:00
license = with licenses; mit;
maintainers = with maintainers; [ ravloony manveru nicknovitski ];
2017-11-07 15:45:41 +00:00
platforms = platforms.unix;
};
}