about summary refs log tree commit diff
path: root/pkgs/tools/package-management/fpm/default.nix
blob: 4a18bfb5345f6b094a0c522be937cfee8c2f1e18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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;
  };
}