summary refs log tree commit diff
path: root/pkgs/tools/package-management/fpm/default.nix
blob: ccb50717accf7f9fcfd85c497c1a9f0a2b13357e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}