hexapdf: init at 1.0.2 (#313917)

This commit is contained in:
Arne Keller 2024-12-16 07:57:53 +01:00 committed by GitHub
commit 91396bdc27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 94 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'hexapdf'

View File

@ -0,0 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
cmdparse (3.0.7)
geom2d (0.4.1)
hexapdf (1.0.2)
cmdparse (~> 3.0, >= 3.0.3)
geom2d (~> 0.4, >= 0.4.1)
openssl (>= 2.2.1)
openssl (3.2.0)
PLATFORMS
ruby
DEPENDENCIES
hexapdf
BUNDLED WITH
2.5.9

View File

@ -0,0 +1,47 @@
{
cmdparse = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "0f87jny4zk21iyrkyyw4kpnq8ymrwjay02ipagwapimy237cmigp";
type = "gem";
};
version = "3.0.7";
};
geom2d = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1nafcfznjqycxd062cais64ydgl99xddh4zy4hp7bwn4j3m9h2ga";
type = "gem";
};
version = "0.4.1";
};
hexapdf = {
dependencies = [
"cmdparse"
"geom2d"
"openssl"
];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "13dbscnf7c3jlghlkgl01b7hzgx2ps26m57qmhyv5g626n342i4c";
type = "gem";
};
version = "1.0.2";
};
openssl = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "054d6ybgjdzxw567m7rbnd46yp6gkdbc5ihr536vxd3p15vbhjrw";
type = "gem";
};
version = "3.2.0";
};
}

View File

@ -0,0 +1,26 @@
{
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";
};
}