Files

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

26 lines
493 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}