From ebdf5a495d1b8886bc90d0eba30eede1388b265e Mon Sep 17 00:00:00 2001 From: Brendan Hansknecht Date: Wed, 27 Jan 2021 12:45:01 -0800 Subject: [PATCH] Update nix version to pull in rustc 1.49.0 --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 57ed6ecfe7..14376baf6e 100644 --- a/shell.nix +++ b/shell.nix @@ -8,10 +8,10 @@ in with { # Look here for information about how pin version of nixpkgs # → https://nixos.wiki/wiki/FAQ/Pinning_Nixpkgs pkgs = import (builtins.fetchGit { - name = "nixpkgs-2021-01-05"; + name = "nixpkgs-2021-01-07"; url = "https://github.com/nixos/nixpkgs/"; ref = "refs/heads/nixpkgs-unstable"; - rev = "f53c431645da8e6760268092aa10f736b5cfb117"; + rev = "4a580eb51bce94cae356e841f3f5303d31afbaf1"; }) { }; isMacOS = currentOS == "darwin";