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