Merge pull request #71152 from dtzWill/update/musl-1.1.24

musl: 1.1.2x -> 1.1.24
This commit is contained in:
Will Dietz 2019-10-20 21:15:26 -05:00 committed by GitHub
commit cbdff8bf01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,11 +29,11 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "musl"; pname = "musl";
version = "1.1.22"; version = "1.1.24";
src = fetchurl { src = fetchurl {
url = "https://www.musl-libc.org/releases/${pname}-${version}.tar.gz"; url = "https://www.musl-libc.org/releases/${pname}-${version}.tar.gz";
sha256 = "1qr9xqdzziy5bsyyqlh6k8yz056ll55d5yvc0gbhz61ginj422cb"; sha256 = "18r2a00k82hz0mqdvgm7crzc7305l36109c0j9yjmkxj2alcjw0k";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
@ -110,11 +110,11 @@ stdenv.mkDerivation rec {
passthru.linuxHeaders = linuxHeaders; passthru.linuxHeaders = linuxHeaders;
meta = { meta = with lib; {
description = "An efficient, small, quality libc implementation"; description = "An efficient, small, quality libc implementation";
homepage = "http://www.musl-libc.org"; homepage = "http://www.musl-libc.org";
license = lib.licenses.mit; license = licenses.mit;
platforms = lib.platforms.linux; platforms = platforms.linux;
maintainers = [ lib.maintainers.thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice dtzWill ];
}; };
} }