mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
hexapdf: init at 1.0.2 (#313917)
This commit is contained in:
commit
91396bdc27
2
pkgs/by-name/he/hexapdf/Gemfile
Normal file
2
pkgs/by-name/he/hexapdf/Gemfile
Normal file
@ -0,0 +1,2 @@
|
||||
source 'https://rubygems.org'
|
||||
gem 'hexapdf'
|
19
pkgs/by-name/he/hexapdf/Gemfile.lock
Normal file
19
pkgs/by-name/he/hexapdf/Gemfile.lock
Normal 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
|
47
pkgs/by-name/he/hexapdf/gemset.nix
Normal file
47
pkgs/by-name/he/hexapdf/gemset.nix
Normal 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";
|
||||
};
|
||||
}
|
26
pkgs/by-name/he/hexapdf/package.nix
Normal file
26
pkgs/by-name/he/hexapdf/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user