nixpkgs/pkgs/tools/package-management/fpm/default.nix
2016-10-08 22:38:57 +01:00

15 lines
321 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
inherit ruby;
pname = "fpm";
gemdir = ./.;
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;
};
}