fpm: 1.9.3 -> 1.11.0, use bundlerApp

This commit is contained in:
Michael Fellinger
2019-05-02 23:51:11 +02:00
parent 6e8c78e225
commit aed27facc0
3 changed files with 52 additions and 21 deletions
@@ -1,14 +1,15 @@
{ lib, bundlerEnv, ruby }:
{ lib, bundlerApp }:
bundlerEnv rec {
inherit ruby;
bundlerApp {
pname = "fpm";
gemdir = ./.;
exes = [ "fpm" ];
meta = with lib; {
description = "Tool to build packages for multiple platforms with ease";
homepage = https://github.com/jordansissel/fpm;
license = licenses.mit;
maintainers = with maintainers; [ manveru ];
platforms = platforms.unix;
};
}