From db724c0fc3a21798dd876578507fec5115443233 Mon Sep 17 00:00:00 2001 From: Aaron Siddhartha Mondal Date: Thu, 16 Nov 2023 21:51:43 +0100 Subject: [PATCH] Add rustc explicitly to flake (#398) The previous implementation would automatically fetch rustc for cargo builds. Explicitly add rustc to the flake so that it's version is pinned and in sync with the cargo package. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index ae8d36809..688232e20 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,7 @@ nativeBuildInputs = [ # Development tooling goes here. pkgs.cargo + pkgs.rustc openssl_static # Required explicitly for cargo test support. bazel ];