Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, bundlerApp, bundlerUpdateScript }: 2 3bundlerApp { 4 pname = "procodile"; 5 gemdir = ./.; 6 exes = [ "procodile" ]; 7 8 passthru.updateScript = bundlerUpdateScript "procodile"; 9 10 meta = with lib; { 11 description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)"; 12 homepage = "https://adam.ac/procodile"; 13 license = with licenses; mit; 14 maintainers = with maintainers; [ manveru nicknovitski ]; 15 platforms = platforms.unix; 16 }; 17}