diff options
author | Felix Gruber <felgru@posteo.net> | 2022-09-08 20:14:33 +0000 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-09-11 15:50:48 +0200 |
commit | 5e26866a581263889703075676fc4c3dcf4d026d (patch) | |
tree | c95e925c7cae76516600dc73b6d9288a8eefd3dc /gnu/packages/geo.scm | |
parent | c9f19871a8b243658b95e94479dcfc9447057570 (diff) | |
download | guix-5e26866a581263889703075676fc4c3dcf4d026d.tar.gz |
gnu: proj: Update to 9.0.1.
* gnu/packages/geo.scm (proj): Update to 9.0.1. [arguments]: Remove fix-version phase. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages/geo.scm')
-rw-r--r-- | gnu/packages/geo.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 03ffbbfc95..59234863b8 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -536,7 +536,7 @@ fully fledged Spatial SQL capabilities.") (define-public proj (package (name "proj") - (version "7.2.1") + (version "9.0.1") (source (origin (method url-fetch) @@ -544,16 +544,10 @@ fully fledged Spatial SQL capabilities.") version ".tar.gz")) (sha256 (base32 - "050apzdn0isxpsblys1shrl9ccli5vd32kgswlgx1imrbwpg915k")))) + "18x6v4iaphyyxyzdgf76r764qwswvjz9w39zyiphsvchwz5slzkk")))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON") - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-version - (lambda _ - (substitute* "CMakeLists.txt" - (("MAJOR 7 MINOR 2 PATCH 0") "MAJOR 7 MINOR 2 PATCH 1"))))))) + `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON"))) (inputs (list curl libjpeg-turbo libtiff sqlite)) (native-inputs |