mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 22:48:02 +03:00
fix(v1/python): don't include autoPatchelfHook for darwin
This commit is contained in:
parent
b49c9bb57f
commit
df07956cc5
@ -235,9 +235,8 @@ in {
|
||||
dontPatchELF = l.mkDefault true;
|
||||
dontStrip = l.mkDefault true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
config.deps.autoPatchelfHook
|
||||
];
|
||||
nativeBuildInputs =
|
||||
l.optionals config.deps.stdenv.isLinux [config.deps.autoPatchelfHook];
|
||||
|
||||
buildInputs =
|
||||
l.optionals config.deps.stdenv.isLinux [config.deps.manylinuxPackages];
|
||||
|
@ -60,7 +60,8 @@
|
||||
src = l.mkDefault (l.fetchurl {inherit (metadata.${config.name}) url sha256;});
|
||||
doCheck = l.mkDefault false;
|
||||
|
||||
nativeBuildInputs = [config.deps.autoPatchelfHook];
|
||||
nativeBuildInputs =
|
||||
l.optionals config.deps.stdenv.isLinux [config.deps.autoPatchelfHook];
|
||||
buildInputs =
|
||||
l.optionals config.deps.stdenv.isLinux [config.deps.manylinux1];
|
||||
propagatedBuildInputs =
|
||||
|
Loading…
Reference in New Issue
Block a user