diff options
author | Efraim Flashner <[email protected]> | 2021-01-10 14:30:36 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2021-01-10 14:30:36 +0200 |
commit | 6985a1acb3e9cc4cad8b6f63d77154842d25c929 (patch) | |
tree | 4df49b9f438e0e466efb3d589027a62b39d49761 /gnu/packages/c.scm | |
parent | 87eaa4207208e16e5e1b22b60ba4ff5c3d035023 (diff) | |
parent | d0fff8f840afc17be40bdc49bff52ed08d5a1a7b (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/c.scm')
-rw-r--r-- | gnu/packages/c.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 2ea9c2ac51..d9e5e4d7de 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2018 Ludovic Courtès <[email protected]> ;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <[email protected]> -;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018, 2019 Pierre Neidhardt <[email protected]> ;;; Copyright © 2019, 2020 Efraim Flashner <[email protected]> ;;; Copyright © 2019 Guillaume Le Vaillant <[email protected]> @@ -189,15 +189,18 @@ language with thin bindings for other languages.") (name "udunits") ;; Four-part version numbers are development snapshots, not releases. See ;; <https://github.com/Unidata/UDUNITS-2/issues/99#issuecomment-732323472>. - (version "2.2.26") + (version "2.2.28") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.unidata.ucar.edu/pub/udunits/" "udunits-" version ".tar.gz")) (sha256 (base32 - "0v9mqw4drnkzkm57331ail6yvs9485jmi37s40lhvmf7r5lli3rn")))) + "17jpbp6f0rr132jn2gqy8ry8mv1w27v6dyhfq1igv8v1674aw2sr")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--disable-static"))) (inputs `(("expat" ,expat))) (home-page "https://www.unidata.ucar.edu/software/udunits/") |