mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
Merge pull request #136849 from elohmeier/liblinear-static
liblinear: fix static build
This commit is contained in:
commit
26c10279a1
|
@ -93,6 +93,12 @@ in {
|
|||
gssSupport = false;
|
||||
};
|
||||
|
||||
liblinear = super.liblinear.override {
|
||||
# Don’t use new stdenv zlib because
|
||||
# it doesn’t like the --disable-shared flag
|
||||
stdenv = super.stdenv;
|
||||
};
|
||||
|
||||
ocaml-ng = self.lib.mapAttrs (_: set:
|
||||
if set ? overrideScope' then set.overrideScope' ocamlStaticAdapter else set
|
||||
) super.ocaml-ng;
|
||||
|
|
Loading…
Reference in a new issue