procodile: init at 1.0.17

This commit is contained in:
Tom Macdonald
2017-11-07 17:04:50 +01:00
parent 0f8c85d5d0
commit 7b8e40c6b1
6 changed files with 61 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, bundlerEnv, ruby, stdenv }:
bundlerEnv rec {
name = "procodile-${version}";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
version = (import gemset).procodile.version;
inherit ruby;
gemdir = ./.;
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 ];
platforms = platforms.unix;
};
}