2018-01-03 02:12:18 +00:00
|
|
|
{ stdenv, lib, fetchurl
|
|
|
|
, buildPackages
|
|
|
|
, linuxHeaders ? null
|
|
|
|
, useBSDCompatHeaders ? true
|
|
|
|
}:
|
2018-01-04 16:39:29 +00:00
|
|
|
let
|
|
|
|
cdefs_h = fetchurl {
|
|
|
|
url = "http://git.alpinelinux.org/cgit/aports/plain/main/libc-dev/sys-cdefs.h";
|
|
|
|
sha256 = "16l3dqnfq0f20rzbkhc38v74nqcsh9n3f343bpczqq8b1rz6vfrh";
|
|
|
|
};
|
|
|
|
queue_h = fetchurl {
|
|
|
|
url = "http://git.alpinelinux.org/cgit/aports/plain/main/libc-dev/sys-queue.h";
|
|
|
|
sha256 = "12qm82id7zys92a1qh2l1qf2wqgq6jr4qlbjmqyfffz3s3nhfd61";
|
|
|
|
};
|
|
|
|
tree_h = fetchurl {
|
|
|
|
url = "http://git.alpinelinux.org/cgit/aports/plain/main/libc-dev/sys-tree.h";
|
|
|
|
sha256 = "14igk6k00bnpfw660qhswagyhvr0gfqg4q55dxvaaq7ikfkrir71";
|
|
|
|
};
|
2018-01-03 02:12:18 +00:00
|
|
|
|
2018-01-04 16:39:29 +00:00
|
|
|
in
|
2014-03-24 05:29:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "musl-${version}";
|
2018-02-22 19:57:36 +00:00
|
|
|
version = "1.1.19";
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-03 02:12:18 +00:00
|
|
|
url = "http://www.musl-libc.org/releases/musl-${version}.tar.gz";
|
2018-02-22 19:57:36 +00:00
|
|
|
sha256 = "1nf1wh44bhm8gdcfr75ayib29b99vpq62zmjymrq7f96h9bshnfv";
|
2014-03-24 05:29:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-26 20:04:27 +00:00
|
|
|
|
2017-10-19 21:57:19 +01:00
|
|
|
# Disable auto-adding stack protector flags,
|
|
|
|
# so musl can selectively disable as needed
|
2016-08-29 13:04:29 +01:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
|
|
|
|
2018-03-23 17:59:15 +00:00
|
|
|
# Leave these, be friendlier to debuggers/perf tools
|
|
|
|
# Don't force them on, but don't force off either
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace -fno-unwind-tables "" \
|
|
|
|
--replace -fno-asynchronous-unwind-tables ""
|
|
|
|
'';
|
|
|
|
|
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"
|
2018-03-23 17:59:15 +00:00
|
|
|
"--enable-debug"
|
2017-10-19 21:57:19 +01:00
|
|
|
"CFLAGS=-fstack-protector-strong"
|
2018-01-04 16:30:56 +00:00
|
|
|
# Fix cycle between outputs
|
|
|
|
"--disable-wrapper"
|
2016-12-16 10:32:28 +00:00
|
|
|
];
|
|
|
|
|
2018-01-04 16:30:56 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2015-03-26 20:04:27 +00:00
|
|
|
dontDisableStatic = true;
|
2018-03-23 17:59:15 +00:00
|
|
|
separateDebugInfo = true;
|
2018-01-04 16:39:29 +00:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Not sure why, but link in all but scsi directory as that's what uclibc/glibc do.
|
|
|
|
# Apparently glibc provides scsi itself?
|
|
|
|
(cd $dev/include && ln -s $(ls -d ${linuxHeaders}/include/* | grep -v "scsi$") .)
|
2018-03-23 17:59:15 +00:00
|
|
|
'' + ''
|
|
|
|
# Strip debug out of the static library
|
|
|
|
$STRIP -S $out/lib/libc.a
|
|
|
|
'' + ''
|
2018-01-04 16:39:29 +00:00
|
|
|
mkdir -p $out/bin
|
|
|
|
# Create 'ldd' symlink, builtin
|
|
|
|
ln -s $out/lib/libc.so $out/bin/ldd
|
2018-01-03 02:12:18 +00:00
|
|
|
'' + lib.optionalString useBSDCompatHeaders ''
|
2018-01-04 16:39:29 +00:00
|
|
|
install -D ${queue_h} $dev/include/sys/queue.h
|
|
|
|
install -D ${cdefs_h} $dev/include/sys/cdefs.h
|
|
|
|
install -D ${tree_h} $dev/include/sys/tree.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.linuxHeaders = linuxHeaders;
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An efficient, small, quality libc implementation";
|
|
|
|
homepage = "http://www.musl-libc.org";
|
2018-01-03 02:12:18 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.thoughtpolice ];
|
2014-03-24 05:29:30 +00:00
|
|
|
};
|
|
|
|
}
|