Merge pull request #136849 from elohmeier/liblinear-static

liblinear: fix static build

authored by

Jörg Thalheim and committed by
GitHub
26c10279 02c9b30a

+6
+6
pkgs/top-level/static.nix
··· 93 93 gssSupport = false; 94 94 }; 95 95 96 + liblinear = super.liblinear.override { 97 + # Don’t use new stdenv zlib because 98 + # it doesn’t like the --disable-shared flag 99 + stdenv = super.stdenv; 100 + }; 101 + 96 102 ocaml-ng = self.lib.mapAttrs (_: set: 97 103 if set ? overrideScope' then set.overrideScope' ocamlStaticAdapter else set 98 104 ) super.ocaml-ng;