procodile: 1.0.17 -> 1.0.23, use bundlerApp

This commit is contained in:
Michael Fellinger
2019-04-30 18:01:54 +02:00
parent c9fd6099b4
commit 020dec07d4
3 changed files with 16 additions and 19 deletions
+5 -12
View File
@@ -1,22 +1,15 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "procodile-${version}";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
version = (import gemset).procodile.version;
inherit ruby;
{ 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 = [ maintainers.ravloony ];
maintainers = with maintainers; [ ravloony manveru ];
platforms = platforms.unix;
};
}