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 authored and adisbladis committed Oct 26, 2023
1 parent 7650ff3 commit 1217cfb
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 @@ -2018,7 +2018,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 1217cfb

Please sign in to comment.