nixpkgs/pkgs/by-name/he/hexapdf/package.nix
2024-11-10 23:30:15 +01:00

27 lines
578 B
Nix

{
lib,
bundlerApp,
bundlerUpdateScript,
ruby,
}:
bundlerApp {
pname = "hexapdf";
exes = [ "hexapdf" ];
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "hexapdf";
meta = with lib; {
description = "Versatile PDF creation and manipulation library";
homepage = "https://hexapdf.gettalong.org/";
changelog = "https://github.com/gettalong/hexapdf/blob/master/CHANGELOG.md";
license = licenses.agpl3Only;
maintainers = with maintainers; [ bbenno ];
platforms = platforms.unix;
mainProgram = "hexapdf";
};
}