gnu: lensfun: Update to 0.3.3.
* gnu/packages/photo.scm (lensfun): Update to 0.3.3. [source, homepage]: Update URLs as the project has moved. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
2c408520f5
commit
ccd682cb98
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2020 Sebastian Schott <sschott@mailbox.org>
|
;;; Copyright © 2020 Sebastian Schott <sschott@mailbox.org>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020. 2021, 2022 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2020. 2021, 2022 Vinicius Monego <monego@posteo.net>
|
||||||
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -415,15 +416,16 @@ scene to produce an image that looks much like a tone-mapped image.")
|
||||||
(define-public lensfun
|
(define-public lensfun
|
||||||
(package
|
(package
|
||||||
(name "lensfun")
|
(name "lensfun")
|
||||||
(version "0.3.2")
|
(version "0.3.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"mirror://sourceforge/lensfun/"
|
(uri (git-reference
|
||||||
version "/lensfun-" version ".tar.gz"))
|
(url "https://github.com/lensfun/lensfun")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0cfk8jjhs9nbfjfdy98plrj9ayi59aph0nx6ppslgjhlcvacm2xf"))))
|
(sha256
|
||||||
|
(base32 "1pv2y9yqzkw70p501425mf9cqv6yy8ppw5ilkpbd9bw9nss1js76"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(,@(if (any (cute string-prefix? <> (or (%current-system)
|
`(,@(if (any (cute string-prefix? <> (or (%current-system)
|
||||||
|
@ -437,7 +439,7 @@ scene to produce an image that looks much like a tone-mapped image.")
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list glib))
|
(list glib))
|
||||||
(home-page "https://sourceforge.net/projects/lensfun/")
|
(home-page "https://lensfun.github.io/")
|
||||||
(synopsis "Library to correct optical lens defects with a lens database")
|
(synopsis "Library to correct optical lens defects with a lens database")
|
||||||
(description "Digital photographs are not ideal. Of course, the better is
|
(description "Digital photographs are not ideal. Of course, the better is
|
||||||
your camera, the better the results will be, but in any case if you look
|
your camera, the better the results will be, but in any case if you look
|
||||||
|
|
Reference in New Issue