Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 169131389b20
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd01bae1e947
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 5, 2020

  1. rustc: enable on ppc64le

    r-burns committed Nov 5, 2020
    Copy the full SHA
    33eb9cd View commit details
  2. Merge pull request #99056 from r-burns/ppc64le-rust-bootstrap

    rustc: enable ppc64le bootstrap
    Mic92 authored Nov 5, 2020
    Copy the full SHA
    bd01bae View commit details
Showing with 3 additions and 0 deletions.
  1. +1 −0 pkgs/development/compilers/rust/1_45.nix
  2. +1 −0 pkgs/development/compilers/rust/1_47.nix
  3. +1 −0 pkgs/development/compilers/rust/print-hashes.sh
1 change: 1 addition & 0 deletions pkgs/development/compilers/rust/1_45.nix
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@ import ./default.nix {
armv7-unknown-linux-gnueabihf = "d44294732cf268ea84908f1135f574ab9489132a332eaa9d5bda547374b15d54";
aarch64-unknown-linux-gnu = "a2d74ebeec0b6778026b6c37814cdc91d14db3b0d8b6d69d036216f4d9cf7e49";
x86_64-apple-darwin = "a5464e7bcbce9647607904a4afa8362382f1fc55d39e7bbaf4483ac00eb5d56a";
powerpc64le-unknown-linux-gnu = "22deeca259459db31065af7c862fcab7fbfb623200520c65002ed2ba93d87ad2";
};

selectRustPackage = pkgs: pkgs.rust_1_45;
1 change: 1 addition & 0 deletions pkgs/development/compilers/rust/1_47.nix
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@ import ./default.nix {
armv7-unknown-linux-gnueabihf = "7c0640879d7f2c38db60352e3c0f09e3fc6fa3bac6ca8f22cbccb1eb5e950121";
aarch64-unknown-linux-gnu = "f0c6d630f3dedb3db69d69ed9f833aa6b472363096f5164f1068c7001ca42aeb";
x86_64-apple-darwin = "82d61582a3772932432a99789c3b3bd4abe6baca339e355048ca9efb9ea5b4db";
powerpc64le-unknown-linux-gnu = "89e2f4761d257f017a4b6aa427f36ac0603195546fa2cfded8c899789832941c";
};

selectRustPackage = pkgs: pkgs.rust_1_47;
1 change: 1 addition & 0 deletions pkgs/development/compilers/rust/print-hashes.sh
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ PLATFORMS=(
armv7-unknown-linux-gnueabihf
aarch64-unknown-linux-gnu
x86_64-apple-darwin
powerpc64le-unknown-linux-gnu
)
BASEURL=https://static.rust-lang.org/dist
VERSION=${1:-}