pkgsStatic: fiz zlib and nghttp2

This commit is contained in:
Domen Kožar 2019-09-29 12:20:28 +02:00
parent f8363c2721
commit dfb8a8c5e4
No known key found for this signature in database
GPG Key ID: C2FFBCAFD2C24246

@ -69,6 +69,10 @@ in {
haskellStaticAdapter;
};
nghttp2 = super.nghttp2.override {
enableApp = false;
};
ncurses = super.ncurses.override {
enableStatic = true;
};
@ -78,14 +82,14 @@ in {
} // optionalAttrs super.stdenv.hostPlatform.isDarwin {
pythonSupport = false;
});
zlib = super.zlib.override {
zlib = (super.zlib.override {
static = true;
shared = false;
# Dont use new stdenv zlib because
# it doesnt like the --disable-shared flag
stdenv = super.stdenv;
};
}).static;
xz = super.xz.override {
enableStatic = true;
};