Skip to content

Commit

Permalink
fix(pycurl): change from propagatedBuildInputs -> buildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bzadm committed Sep 12, 2023
1 parent 3e9340d commit 33e6851
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 @@ -1855,7 +1855,7 @@ lib.composeManyExtensions [

pycurl = super.pycurl.overridePythonAttrs (
old: {
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.curl ];
buildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.curl ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.curl ];
}
);
Expand Down

0 comments on commit 33e6851

Please sign in to comment.