2016-03-19 13:42:52 +01:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv rec {
|
|
|
|
inherit ruby;
|
2016-10-03 10:33:07 +02:00
|
|
|
pname = "fpm";
|
|
|
|
gemdir = ./.;
|
2016-03-19 13:42:52 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|