depot/third_party/nixpkgs/pkgs/tools/package-management/fpm/default.nix

18 lines
454 B
Nix
Raw Normal View History

{ 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;
};
}