Skip to content

Commit

Permalink
fix: change from buildInputs to nativeBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bzadm authored and adisbladis committed Oct 26, 2023
1 parent 3ea4428 commit 7650ff3
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 @@ -2019,7 +2019,7 @@ lib.composeManyExtensions [
pycurl = super.pycurl.overridePythonAttrs (
old: {
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.curl ];
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.curl ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.curl ];
}
);

Expand Down

0 comments on commit 7650ff3

Please sign in to comment.