diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-18 14:37:07 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:04:21 +0200 |
commit | dc5ebbd291bff260cbed010d3d748e3692cba648 (patch) | |
tree | 0debdeedae97f05323daff1b43ddea7b14afe07e /gnu | |
parent | 4dea75afc7ec6d29165dcb80de89dae48a4b36ab (diff) | |
download | guix-dc5ebbd291bff260cbed010d3d748e3692cba648.tar.gz guix-dc5ebbd291bff260cbed010d3d748e3692cba648.zip |
gnu: Add rust-lopdf-0.32.
* gnu/packages/crates-io.scm (rust-lopdf-0.32): New variable.
(rust-lopdf-0.31): Inherit from rust-lopdf-0.32.
Change-Id: I3968ce7183369575153fc500650f0d43fa34e643
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 39 |
1 files changed, 36 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c2f81ea760..e09f3b2c13 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -40417,17 +40417,17 @@ explosion.") image together with its neighboring pixels.") (license license:expat))) -(define-public rust-lopdf-0.31 +(define-public rust-lopdf-0.32 (package (name "rust-lopdf") - (version "0.31.0") + (version "0.32.0") (source (origin (method url-fetch) (uri (crate-uri "lopdf" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0npqs454hz7z8ycldyi154fxmra0vkmp5xbjbzm346sb32vf3j07")))) + (base32 "0aw7diz39z3mk22k0mp7jk7qiaaagfvggzly1baqg2jf4vpf8xg7")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4) @@ -40455,6 +40455,39 @@ image together with its neighboring pixels.") "This package provides a Rust library for PDF document manipulation.") (license license:expat))) +(define-public rust-lopdf-0.31 + (package + (inherit rust-lopdf-0.32) + (name "rust-lopdf") + (version "0.31.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "lopdf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0npqs454hz7z8ycldyi154fxmra0vkmp5xbjbzm346sb32vf3j07")))) + (arguments + `(#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4) + ("rust-encoding-rs" ,rust-encoding-rs-0.8) + ("rust-flate2" ,rust-flate2-1) + ("rust-image" ,rust-image-0.24) + ("rust-itoa" ,rust-itoa-1) + ("rust-linked-hash-map" ,rust-linked-hash-map-0.5) + ("rust-log" ,rust-log-0.4) + ("rust-md5" ,rust-md5-0.7) + ("rust-nom" ,rust-nom-7) + ("rust-pom" ,rust-pom-3) + ("rust-rayon" ,rust-rayon-1) + ("rust-serde" ,rust-serde-1) + ("rust-time" ,rust-time-0.3) + ("rust-weezl" ,rust-weezl-0.1)) + #:cargo-development-inputs (("rust-clap" ,rust-clap-4) + ("rust-env-logger" ,rust-env-logger-0.10) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-shellexpand" ,rust-shellexpand-3) + ("rust-tempfile" ,rust-tempfile-3)))))) + (define-public rust-lopdf-0.29 (package (inherit rust-lopdf-0.31) |