Skip to content

Commit

Permalink
Merge pull request #1268 from pineapplehunter/master
Browse files Browse the repository at this point in the history
overrides/contourpy: add dependency to meson on >=1.1.0
  • Loading branch information
adisbladis authored Aug 22, 2023
2 parents 62269e0 + 067186c commit badae27
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,9 @@ lib.composeManyExtensions [
contourpy = super.contourpy.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pybind11 ];
nativeBuildInputs = (old.nativeBuildInputs or [ ])
++ lib.optionals (lib.versionAtLeast old.version "1.1.0") [ self.meson-python pkg-config ];
dontUseMesonConfigure = true;
}
);

Expand Down

0 comments on commit badae27

Please sign in to comment.