From acc341420142ae1d2945de97b16dbbf7c48957a2 Mon Sep 17 00:00:00 2001 From: Jez Cope Date: Mon, 26 Jul 2021 11:55:01 +0100 Subject: [PATCH] flake.nix: use rustup --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6b25d0f..fa5a7cf 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ let pkgs = nixpkgs.legacyPackages.${system}; in { devShell = pkgs.mkShell { - buildInputs = with pkgs; [ cargo rustc rustfmt pkgconfig openssl.dev ]; + buildInputs = with pkgs; [ rustup pkgconfig openssl.dev ]; }; }); }