aboutsummaryrefslogtreecommitdiff
path: root/nix/compile.nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2023-04-25 14:46:47 +0200
committerAlex Auvolat <alex@adnab.me>2023-04-25 14:46:47 +0200
commit5efcdc0de3121da18e7531a9f8196ef38cecd93c (patch)
treeeeca4d33aabec4150296f6c475224a8510563204 /nix/compile.nix
parenta16eb7e4b8344d2f58c09a249b7b1bd17d339a35 (diff)
downloadgarage-5efcdc0de3121da18e7531a9f8196ef38cecd93c.tar.gz
garage-5efcdc0de3121da18e7531a9f8196ef38cecd93c.zip
Update rust toolchain to 1.68 and simplify Nix stuffnix-update-simplify
Diffstat (limited to 'nix/compile.nix')
-rw-r--r--nix/compile.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/compile.nix b/nix/compile.nix
index 54e920db..c2f557da 100644
--- a/nix/compile.nix
+++ b/nix/compile.nix
@@ -32,7 +32,7 @@ let
*/
toolchainOptions = if target == null || target == "x86_64-unknown-linux-musl"
|| target == "aarch64-unknown-linux-musl" then {
- rustVersion = "1.63.0";
+ rustVersion = "1.68.0";
extraRustComponents = [ "clippy" ];
} else {
rustToolchain = pkgs.symlinkJoin {