Skip to content

Commit

Permalink
fix(lxml): Add missing zlib dependency
Browse files Browse the repository at this point in the history
Somewhere between nixpkgs 693bc46d169f5af9c992095736e82c3488bf7dbb and
52ec9ac3b12395ad677e8b62106f0b98c1f8569d, lxml stopped building
because it could no longer use zlib as pulled in by one of its
dependencies (perhaps Python itself?)
  • Loading branch information
quentinmit authored and adisbladis committed Aug 7, 2024
1 parent 1e04b48 commit 494531f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ lib.composeManyExtensions [
old.nativeBuildInputs or [ ]
++ [ pkg-config libxml2.dev libxslt.dev ]
++ lib.optionals stdenv.isDarwin [ xcodebuild ];
buildInputs = old.buildInputs or [ ] ++ [ pkgs.libxml2 pkgs.libxslt ];
buildInputs = old.buildInputs or [ ] ++ [ pkgs.libxml2 pkgs.libxslt pkgs.zlib ];
}
);

Expand Down

0 comments on commit 494531f

Please sign in to comment.