mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
19 lines
479 B
Nix
19 lines
479 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "fpm";
|
|
gemdir = ./.;
|
|
exes = [ "fpm" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "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 nicknovitski ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "fpm";
|
|
};
|
|
}
|