Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

44 changes: 0 additions & 44 deletions pkgs/development/compilers/rust/1_42.nix

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@
} @ args:

import ./default.nix {
rustcVersion = "1.43.0";
rustcSha256 = "18akhk0wz1my6y9vhardriy2ysc482z0fnjdcgs9gy59kmnarxkm";
rustcVersion = "1.44.1";
rustcSha256 = "0ww4z2v3gxgn3zddqzwqya1gln04p91ykbrflnpdbmcd575n8bky";

# Note: the version MUST be one version prior to the version we're
# building
bootstrapVersion = "1.42.0";
bootstrapVersion = "1.43.1";

# fetch hashes by running `print-hashes.sh 1.43.0`
# fetch hashes by running `print-hashes.sh 1.44.1`
bootstrapHashes = {
i686-unknown-linux-gnu = "1c89c12c8fc1a45dcbcb9ee2e21cc634b8453f1d4cdd658269263de686aab4e4";
x86_64-unknown-linux-gnu = "7d1e07ad9c8a33d8d039def7c0a131c5917aa3ea0af3d0cc399c6faf7b789052";
arm-unknown-linux-gnueabihf = "6cf776b910d08fb0d1f88be94464e7b20a50f9d8b2ec6372c3c385aec0b70e7a";
armv7-unknown-linux-gnueabihf = "a36e7f2bd148e325a7b8e7131b4226266cf522b1a2b12d585dad9c38ef68f4d9";
aarch64-unknown-linux-gnu = "fdd39f856a062af265012861949ff6654e2b7103be034d046bec84ebe46e8d2d";
x86_64-apple-darwin = "db1055c46e0d54b99da05e88c71fea21b3897e74a4f5ff9390e934f3f050c0a8";
i686-unknown-linux-gnu = "0626fa8a6a2387021413d740543f7496656d81115e2284e4ef73217128398990";
x86_64-unknown-linux-gnu = "25cd71b95bba0daef56bad8c943a87368c4185b90983f4412f46e3e2418c0505";
arm-unknown-linux-gnueabihf = "16b9c4861565a195323d144fd0f54c0ae794ee3d2a867682f8aedbdacaad5a6c";
armv7-unknown-linux-gnueabihf = "0c32a5958a358a031e6ca52074cfd45256688dc334db315199f5dbbf7562e5b1";
aarch64-unknown-linux-gnu = "fbb612387a64c9da2869725afffc1f66a72d6e7ba6667ba717cd52c33080b7fb";
x86_64-apple-darwin = "e1c3e1426a9e615079159d6b619319235e3ca7b395e7603330375bfffcbb7003";
};

selectRustPackage = pkgs: pkgs.rust_1_43;
selectRustPackage = pkgs: pkgs.rust_1_44;

rustcPatches = [
];
Expand Down
13 changes: 4 additions & 9 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9172,17 +9172,13 @@ in
inherit (darwin) apple_sdk;
};

rust_1_42 = callPackage ../development/compilers/rust/1_42.nix {
rust_1_44 = callPackage ../development/compilers/rust/1_44.nix {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
rust_1_43 = callPackage ../development/compilers/rust/1_43.nix {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
rust = rust_1_43;
rust = rust_1_44;

rustPackages_1_42 = rust_1_42.packages.stable;
rustPackages_1_43 = rust_1_43.packages.stable;
rustPackages = rustPackages_1_43;
rustPackages_1_44 = rust_1_44.packages.stable;
rustPackages = rustPackages_1_44;

inherit (rustPackages) cargo clippy rustc rustPlatform;
inherit (rust) makeRustPlatform;
Expand Down Expand Up @@ -22499,7 +22495,6 @@ in
thonny = callPackage ../applications/editors/thonny { };

thunderbird = callPackage ../applications/networking/mailreaders/thunderbird {
inherit (rustPackages_1_42) rustc;
libpng = libpng_apng;
gtk3Support = true;
};
Expand Down