mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
musl: 1.1.6 -> 1.1.7
This commit is contained in:
parent
3b0f27052b
commit
c99fa3a261
@ -2,17 +2,21 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "musl-${version}";
|
||||
version = "1.1.6";
|
||||
version = "1.1.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.musl-libc.org/releases/${name}.tar.gz";
|
||||
sha256 = "1d7inhai37g1ph6yg7ldyl4k5c7i8xvaa5w62n85n3albk2n00as";
|
||||
sha256 = "168mz5mwmzr5j6l4jxnwaxw6l89xycql3vfk01jsmy7chziamq6q";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
configurePhase = ''
|
||||
./configure --enable-shared --enable-static --prefix=$out --syslibdir=$out/lib
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--enable-shared"
|
||||
"--enable-static"
|
||||
];
|
||||
|
||||
dontDisableStatic = true;
|
||||
|
||||
meta = {
|
||||
description = "An efficient, small, quality libc implementation";
|
||||
|
Loading…
Reference in New Issue
Block a user