push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 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";
};
}