rustpython: unbreak on x86_64-darwin
This commit is contained in:
parent
ec382d4a72
commit
b062ec5b83
2 changed files with 2 additions and 11 deletions
|
@ -312,8 +312,8 @@ in {
|
||||||
inherit passthruFun;
|
inherit passthruFun;
|
||||||
};
|
};
|
||||||
|
|
||||||
rustpython = callPackage ./rustpython/default.nix {
|
rustpython = darwin.apple_sdk_11_0.callPackage ./rustpython/default.nix {
|
||||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
inherit (darwin.apple_sdk_11_0.frameworks) SystemConfiguration;
|
||||||
};
|
};
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -31,14 +31,5 @@ rustPlatform.buildRustPackage rec {
|
||||||
homepage = "https://rustpython.github.io";
|
homepage = "https://rustpython.github.io";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ prusnak ];
|
maintainers = with maintainers; [ prusnak ];
|
||||||
|
|
||||||
# TODO: Remove once nixpkgs uses newer SDKs that supports '*at' functions.
|
|
||||||
# Probably macOS SDK 10.13 or later. Check the current version in
|
|
||||||
# .../os-specific/darwin/apple-sdk/default.nix
|
|
||||||
#
|
|
||||||
# From the build logs:
|
|
||||||
#
|
|
||||||
# > Undefined symbols for architecture x86_64: "_utimensat"
|
|
||||||
broken = stdenv.isDarwin && stdenv.isx86_64;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue