fpm: init at 1.4.0

/cc #14061.
This commit is contained in:
Vladimír Čunát
2016-03-20 11:56:07 +01:00
parent 02080ecede
commit f9cae4f6dc
5 changed files with 117 additions and 0 deletions
@@ -0,0 +1,18 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "fpm-${version}";
version = (import gemset).fpm.version;
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "Tool to build packages for multiple platforms with ease";
homepage = https://github.com/jordansissel/fpm;
license = licenses.mit;
platforms = platforms.unix;
};
}