2016-12-16 10:32:28 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "musl-${version}";
|
2017-10-31 20:42:08 +00:00
|
|
|
version = "1.1.18";
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.musl-libc.org/releases/${name}.tar.gz";
|
2017-10-31 20:42:08 +00:00
|
|
|
sha256 = "0651lnj5spckqjf83nz116s8qhhydgqdy3rkl4icbh5f05fyw5yh";
|
2014-03-24 05:29:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-26 20:04:27 +00:00
|
|
|
|
2017-10-19 20:57:19 +00:00
|
|
|
# Disable auto-adding stack protector flags,
|
|
|
|
# so musl can selectively disable as needed
|
2016-08-29 12:04:29 +00:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
|
|
|
|
2016-03-03 13:45:11 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("--syslibdir=$out/lib")
|
|
|
|
'';
|
|
|
|
|
2015-03-26 20:04:27 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--enable-static"
|
2017-10-19 20:57:19 +00:00
|
|
|
"CFLAGS=-fstack-protector-strong"
|
2016-12-16 10:32:28 +00:00
|
|
|
];
|
|
|
|
|
2015-03-26 20:04:27 +00:00
|
|
|
dontDisableStatic = true;
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An efficient, small, quality libc implementation";
|
|
|
|
homepage = "http://www.musl-libc.org";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|