From e1b8901e28d8d4ab437273793759b70ffeafa7ad Mon Sep 17 00:00:00 2001 From: Teodoro Freund Date: Tue, 21 Jan 2020 17:24:16 +0100 Subject: [PATCH] Fix shell.nix rust -> rustPackages --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 08ee911faf..fa32a4b05b 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ { pkgs ? import (builtins.fetchTarball "channel:nixos-19.09") {} }: pkgs.mkShell { buildInputs = with pkgs; [ - rust.cargo - rust.rustc + rustPackages.cargo + rustPackages.rustc ]; }