musl: multiple outputs

This commit is contained in:
Will Dietz 2018-01-04 10:30:56 -06:00
parent a2eb1f4bd6
commit 290c62e749

View file

@ -23,8 +23,12 @@ stdenv.mkDerivation rec {
"--enable-shared" "--enable-shared"
"--enable-static" "--enable-static"
"CFLAGS=-fstack-protector-strong" "CFLAGS=-fstack-protector-strong"
# Fix cycle between outputs
"--disable-wrapper"
]; ];
outputs = [ "out" "dev" ];
dontDisableStatic = true; dontDisableStatic = true;
meta = { meta = {