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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
479 B
Nix
Raw Normal View History

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