27 lines
578 B
Nix
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";
|
|
};
|
|
}
|