gnu: darktable: Make some inputs native.
* gnu/packages/photo.scm (darktable)[inputs]: Move intltool, perl & pkg-config from here... [native-inputs]: ...to here. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>master
parent
bf155ce30c
commit
d367304770
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2020 Sebastian Schott <sschott@mailbox.org>
|
;;; Copyright © 2020 Sebastian Schott <sschott@mailbox.org>
|
||||||
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -483,6 +484,10 @@ photographic equipment.")
|
||||||
(string-append (assoc-ref inputs "ilmbase")
|
(string-append (assoc-ref inputs "ilmbase")
|
||||||
"/include/OpenEXR:" (or (getenv "CPATH") "")))
|
"/include/OpenEXR:" (or (getenv "CPATH") "")))
|
||||||
#t)))))
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("intltool" ,intltool)
|
||||||
|
("perl" ,perl)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libxslt" ,libxslt)
|
`(("libxslt" ,libxslt)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
|
@ -502,9 +507,6 @@ photographic equipment.")
|
||||||
("ilmbase" ,ilmbase)
|
("ilmbase" ,ilmbase)
|
||||||
("libsoup" ,libsoup)
|
("libsoup" ,libsoup)
|
||||||
("python-jsonschema" ,python-jsonschema)
|
("python-jsonschema" ,python-jsonschema)
|
||||||
("intltool" ,intltool)
|
|
||||||
("perl" ,perl)
|
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("libwebp" ,libwebp)
|
("libwebp" ,libwebp)
|
||||||
("lensfun" ,lensfun)
|
("lensfun" ,lensfun)
|
||||||
("librsvg" ,librsvg)
|
("librsvg" ,librsvg)
|
||||||
|
|
Reference in New Issue