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

View File

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