2014-03-24 05:29:30 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "musl-${version}";
|
2015-08-31 08:03:00 +00:00
|
|
|
version = "1.1.11";
|
2014-03-24 05:29:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.musl-libc.org/releases/${name}.tar.gz";
|
2015-08-31 08:03:00 +00:00
|
|
|
sha256 = "0grmmah3d9wajii26010plpinv3cbiq3kfqsblgn84kv3fjnv7mv";
|
2014-03-24 05:29:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-26 20:04:27 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--enable-static"
|
|
|
|
];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|