Archived
1
0
Fork 0

gnu: darktable: Update to 3.4.0.

* gnu/packages/photo.scm (darktable): Update to 3.4.0.
[native-inputs]: Use Clang and LLVM 11. Add python-wrapper and ruby.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Vinicius Monego 2020-12-24 20:55:30 -03:00 committed by Leo Famulari
parent 430c17c9f2
commit 7f81a0f7e9
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -75,6 +75,7 @@
#:use-module (gnu packages python-web) #:use-module (gnu packages python-web)
#:use-module (gnu packages qt) #:use-module (gnu packages qt)
#:use-module (gnu packages readline) #:use-module (gnu packages readline)
#:use-module (gnu packages ruby)
#:use-module (gnu packages sqlite) #:use-module (gnu packages sqlite)
#:use-module (gnu packages tex) #:use-module (gnu packages tex)
#:use-module (gnu packages time) #:use-module (gnu packages time)
@ -467,7 +468,7 @@ photographic equipment.")
(define-public darktable (define-public darktable
(package (package
(name "darktable") (name "darktable")
(version "3.2.1") (version "3.4.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -475,7 +476,7 @@ photographic equipment.")
"https://github.com/darktable-org/darktable/releases/" "https://github.com/darktable-org/darktable/releases/"
"download/release-" version "/darktable-" version ".tar.xz")) "download/release-" version "/darktable-" version ".tar.xz"))
(sha256 (sha256
(base32 "035rvqmw386hm0jpi14lf4dnpr5rjkalzjkyprqh42nwi3m86dkf")))) (base32 "1nmx5lmhp7igav5pswqxmacsbnhgydgvxh1q53wlmyd9bqgxxlvd"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
`(#:tests? #f ; there are no tests `(#:tests? #f ; there are no tests
@ -519,16 +520,18 @@ photographic equipment.")
"/lib")))) "/lib"))))
#t))))) #t)))))
(native-inputs (native-inputs
`(("clang" ,clang-9) `(("clang" ,clang-11)
("desktop-file-utils" ,desktop-file-utils) ("desktop-file-utils" ,desktop-file-utils)
("glib:bin" ,glib "bin") ("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection) ("gobject-introspection" ,gobject-introspection)
("intltool" ,intltool) ("intltool" ,intltool)
("llvm" ,llvm-9) ;should match the Clang version ("llvm" ,llvm-11) ;should match the Clang version
("opencl-headers" ,opencl-headers) ("opencl-headers" ,opencl-headers)
("perl" ,perl) ("perl" ,perl)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("po4a" ,po4a))) ("po4a" ,po4a)
("python" ,python-wrapper)
("ruby" ,ruby)))
(inputs (inputs
`(("cairo" ,cairo) `(("cairo" ,cairo)
("colord-gtk" ,colord-gtk) ;optional, for color profile support ("colord-gtk" ,colord-gtk) ;optional, for color profile support