Skip to content

Commit

Permalink
overrides/contourpy: add dependency to meson on >1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pineapplehunter committed Aug 21, 2023
1 parent e4cd574 commit 067186c
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 067186c

Please sign in to comment.