flake.nix: use rustup

This commit is contained in:
Jez Cope 2021-07-26 11:55:01 +01:00
parent a62c549f9b
commit acc3414201
1 changed files with 1 additions and 1 deletions

View File

@ -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 ];
};
});
}