diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-03 01:14:55 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-03 13:54:11 +0100 |
commit | e4f7edf19ff5c93235a50c46a521971cadd67de2 (patch) | |
tree | f426af2a100e687a05bdf3ac4181326015f734ce /gnu | |
parent | a1da1dee889ccf9ae02390fe933495f11cc64d6b (diff) | |
download | guix-e4f7edf19ff5c93235a50c46a521971cadd67de2.tar guix-e4f7edf19ff5c93235a50c46a521971cadd67de2.tar.gz |
gnu: musl: Update to 1.1.24.
* gnu/packages/musl.scm (musl): Update to 1.1.24.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/musl.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/musl.scm b/gnu/packages/musl.scm index 1356b8d14d..6a6344efb5 100644 --- a/gnu/packages/musl.scm +++ b/gnu/packages/musl.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,14 +28,14 @@ (define-public musl (package (name "musl") - (version "1.1.22") + (version "1.1.24") (source (origin (method url-fetch) (uri (string-append "https://www.musl-libc.org/releases/" "musl-" version ".tar.gz")) (sha256 (base32 - "1qr9xqdzziy5bsyyqlh6k8yz056ll55d5yvc0gbhz61ginj422cb")))) + "18r2a00k82hz0mqdvgm7crzc7305l36109c0j9yjmkxj2alcjw0k")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; musl has no tests |