diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 16:11:46 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 20:39:13 +0300 |
commit | 9901416233867233192b63fde7f616751127b189 (patch) | |
tree | cad99a4190193e318918e0bbdbc7d96629da9da3 /gnu | |
parent | 7e762ab09e5334140da4988e07ee9678ab3d661c (diff) | |
download | guix-9901416233867233192b63fde7f616751127b189.tar.gz guix-9901416233867233192b63fde7f616751127b189.zip |
gnu: ctl: Update to 1.5.3.
* gnu/packages/graphics.scm (ctl): Update to 1.5.3.
[source]: Download using git-fetch.
[arguments]: Don't skip the tests.
[inputs]: Add libtiff.
Change-Id: Iae08b6a2a7c0418bde10b31c3356425750703a9f
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graphics.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 7a2f827d36..6eaebc3a12 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015 Tomáš Čech <sleep_walker@gnu.org> ;;; Copyright © 2016, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016, 2017, 2019, 2023 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2016, 2018, 2021, 2023 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2018, 2021, 2023, 2024 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com> ;;; Copyright © 2017, 2018 Ben Woodcroft <donttrustben@gmail.com> @@ -1599,19 +1599,21 @@ realistic reflections, shading, perspective and other effects.") (define-public ctl (package (name "ctl") - (version "1.5.2") + (version "1.5.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/ampas/CTL/archive/ctl-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ampas/CTL") + (commit (string-append "ctl-" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1gg04pyvw0m398akn0s1l07g5b1haqv5na1wpi5dii1jjd1w3ynp")))) + "1qhfp9b90czvxjkf66sbnqyw3wvmdvl1pkh6201fxhqg7grbfvwc")))) (build-system cmake-build-system) - (arguments '(#:tests? #f)) ;no 'test' target ;; Headers include OpenEXR and IlmBase headers. (propagated-inputs (list openexr-2)) + (inputs (list libtiff)) (home-page "https://ampasctl.sourceforge.net") (synopsis "Color Transformation Language") |