diff options
| author | John Kehayias <john@guixotic.coop> | 2025-10-01 23:47:08 -0400 |
|---|---|---|
| committer | John Kehayias <john@guixotic.coop> | 2025-10-03 18:35:11 -0400 |
| commit | 488a1bae65dc15f7a24f3a1b6915208daf7e8c8f (patch) | |
| tree | a8ea54d1c6344a5ffda7b8e4176028e7ce39f10e | |
| parent | 4c92edde11bfd7ff163732201b4a4f77e8194fb1 (diff) | |
gnu: Add libjpeg-turbo-3.
* gnu/packages/image.scm (libjpeg-turbo-3): New variable.
Change-Id: I358bb5c661e3c78afbe9dd49839f766982e251e2
| -rw-r--r-- | gnu/packages/image.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index f813e6f232..04c06bd902 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -2009,6 +2009,20 @@ and decompress to 32-bit and big-endian pixel buffers (RGBX, XBGR, etc.).") license:ijg ;the libjpeg library and associated tools license:zlib)))) ;the libjpeg-turbo SIMD extensions +(define-public libjpeg-turbo-3 + (package + (inherit libjpeg-turbo) + (name "libjpeg-turbo") + (version "3.1.2") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/" name "/" name + "/releases/download/" version "/" name + "-" version ".tar.gz")) + (sha256 + (base32 + "1kyhczwa17qp8ik3v876yjqsf4zrjj0z3464j04fak269cii404g")))))) + (define-public niftilib (package (name "niftilib") |
