Merge pull request #74485 from malbarbo/e2fsprogs-shared

e2fsprogs: allow static build
This commit is contained in:
Niklas Hambüchen
2019-12-06 19:07:01 +01:00
committed by GitHub
2 changed files with 11 additions and 4 deletions
+7 -2
View File
@@ -115,14 +115,15 @@ in {
} // optionalAttrs super.stdenv.hostPlatform.isDarwin {
pythonSupport = false;
});
zlib = (super.zlib.override {
zlib = super.zlib.override {
static = true;
shared = false;
splitStaticOutput = false;
# Dont use new stdenv zlib because
# it doesnt like the --disable-shared flag
stdenv = super.stdenv;
}).static;
};
xz = super.xz.override {
enableStatic = true;
};
@@ -214,6 +215,10 @@ in {
gssSupport = false;
};
e2fsprogs = super.e2fsprogs.override {
shared = false;
};
brotli = super.brotli.override {
staticOnly = true;
};