nixpkgs/pkgs/os-specific/linux/musl/default.nix
Austin Seipp 1b338edc80 nixpkgs: musl 1.1.7 -> 1.1.8
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-04-02 16:27:52 -05:00

29 lines
678 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "musl-${version}";
version = "1.1.8";
src = fetchurl {
url = "http://www.musl-libc.org/releases/${name}.tar.gz";
sha256 = "04vq4a1hm81kbxfcqa30s6xpzbqf3568gbysfxcmb72v8438b4ps";
};
enableParallelBuilding = true;
configureFlags = [
"--enable-shared"
"--enable-static"
];
dontDisableStatic = true;
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 ];
};
}