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

18 lines
454 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2016-03-19 12:42:52 +00:00
2019-05-02 21:51:11 +00:00
bundlerApp {
2016-10-03 08:33:07 +00:00
pname = "fpm";
gemdir = ./.;
2019-05-02 21:51:11 +00:00
exes = [ "fpm" ];
2016-03-19 12:42:52 +00:00
passthru.updateScript = bundlerUpdateScript "fpm";
2016-03-19 12:42:52 +00:00
meta = with lib; {
description = "Tool to build packages for multiple platforms with ease";
homepage = "https://github.com/jordansissel/fpm";
2016-03-19 12:42:52 +00:00
license = licenses.mit;
maintainers = with maintainers; [ manveru nicknovitski ];
2016-03-19 12:42:52 +00:00
platforms = platforms.unix;
};
}