Created
May 22, 2017 01:12
-
-
Save rimmington/e43eb78379523d98dd84357b18d297de to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
super: self: | |
let | |
rustOverlayRepo = self.fetchFromGitHub { | |
owner = "mozilla"; | |
repo = "nixpkgs-mozilla"; | |
rev = "90d41cd5dd6c31c7bfaaab68dd6f00bae596d742"; | |
sha256 = "0cpv969mgv2v8fk6l9s24xq1qphwsvzbhf8fq4v6bkkwssm0kzn6"; | |
}; | |
rustOverlay = import "${rustOverlayRepo}/rust-overlay.nix" self super; | |
rust_1_15_1 = rustOverlay.lib.rustLib.fromManifestFile ( | |
self.fetchurl { | |
url = "https://static.rust-lang.org/dist/channel-rust-1.15.1.toml"; | |
sha256 = "4cf9a1a74dd0d5fdf0b0fabf473e8940f759093b3a1f11c8cef7a9f554d99c5b"; | |
} | |
) { inherit (self) stdenv fetchurl patchelf; }; | |
rust = { cargo = rust_1_15_1.rust; rustc = rust_1_15_1.rust; }; | |
in | |
{ | |
inherit rust; | |
rustPlatform = rec { | |
inherit rust; | |
rustRegistry = self.callPackage <nixpkgs-base/pkgs/top-level/rust-packages.nix> {}; | |
buildRustPackage = | |
let orig = self.callPackage <nixpkgs-base/pkgs/build-support/rust> { inherit rust rustRegistry; }; | |
in args: orig ({ | |
# For some reason, it tries to use arm-linux-gnueabihf-gcc by default and fails | |
# https://github.com/rust-lang/cargo/blob/46bba437205f69c40b2376036aee60ede4fe52bd/src/ci/docker/cross/Dockerfile#L4-L18 | |
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER="gcc"; | |
} // args); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment