From de12393eaf497286288d95c23431104fbc87fa16 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Mon, 14 Oct 2019 23:25:52 +0200 Subject: [PATCH] Updates shell.nix. --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index d528cf8491..4e287ab115 100644 --- a/shell.nix +++ b/shell.nix @@ -8,7 +8,7 @@ with pkgs; let nightly = (pkgs.rustChannelOf { - date = "2019-09-01"; + date = "2019-10-14"; channel = "nightly"; }).rust.override { extensions = [ @@ -27,4 +27,5 @@ let in stdenv.mkDerivation { name = "nushell-rust"; buildInputs = nu-deps ++ rust; + SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; }