diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-12 17:01:14 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-12 20:48:44 -0400 |
commit | 05c5807ea5ce1f8af8068151906d670edda97afe (patch) | |
tree | 10a5780909df37e45d1ff18f29b50487b5b232b2 /gnu | |
parent | 491dd62b38e1772f3e50de58118d9b9ac97272ff (diff) | |
download | guix-05c5807ea5ce1f8af8068151906d670edda97afe.tar.gz guix-05c5807ea5ce1f8af8068151906d670edda97afe.zip |
gnu: proj: Update to 9.1.0 and propagate libraries.
* gnu/packages/geo.scm (proj): Update to 9.1.0.
[arguments]: Delete field.
[inputs]: Remove libjpeg-turbo and move to...
[propagated-inputs]: ... here.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/geo.scm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 5651386e6b..07222ddcce 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2021 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2021, 2022 Nikolay Korotkiy <sikmir@disroot.org> ;;; Copyright © 2022 Roman Scherer <roman.scherer@burningswell.com> +;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -536,7 +537,7 @@ fully fledged Spatial SQL capabilities.") (define-public proj (package (name "proj") - (version "9.0.1") + (version "9.1.0") (source (origin (method url-fetch) @@ -544,14 +545,10 @@ fully fledged Spatial SQL capabilities.") version ".tar.gz")) (sha256 (base32 - "18x6v4iaphyyxyzdgf76r764qwswvjz9w39zyiphsvchwz5slzkk")))) + "0593vd9sac0c98j1f4rammd90d4xnhygbr6d49i8il6ajjdj7cl1")))) (build-system cmake-build-system) - (arguments - `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON"))) - (inputs - (list curl libjpeg-turbo libtiff sqlite)) - (native-inputs - (list googletest pkg-config)) + (native-inputs (list googletest pkg-config)) + (propagated-inputs (list curl libtiff sqlite)) ;required by proj.pc (home-page "https://proj.org/") (synopsis "Coordinate transformation software") (description |