Files
Wolfgang Walther aa7f574386 maintainers: drop manveru
Did not react to maintainer pings since 2024. Dropping according to
maintainer guidelines.
2026-01-10 22:12:03 +01:00

25 lines
481 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "fpm";
gemdir = ./.;
exes = [ "fpm" ];
passthru.updateScript = bundlerUpdateScript "fpm";
meta = {
description = "Tool to build packages for multiple platforms with ease";
homepage = "https://github.com/jordansissel/fpm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
nicknovitski
];
platforms = lib.platforms.unix;
mainProgram = "fpm";
};
}