mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
f9cae4f6dc
/cc #14061.
18 lines
434 B
Nix
18 lines
434 B
Nix
{ 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;
|
|
};
|
|
}
|