lol
1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "fpm";
5 gemdir = ./.;
6 exes = [ "fpm" ];
7
8 passthru.updateScript = bundlerUpdateScript "fpm";
9
10 meta = with lib; {
11 description = "Tool to build packages for multiple platforms with ease";
12 homepage = "https://github.com/jordansissel/fpm";
13 license = licenses.mit;
14 maintainers = with maintainers; [ manveru nicknovitski ];
15 platforms = platforms.unix;
16 };
17}