Updates shell.nix.

This commit is contained in:
Thomas Hartmann 2019-10-14 23:25:52 +02:00
parent b2c53a0967
commit de12393eaf

View File

@ -8,7 +8,7 @@ with pkgs;
let let
nightly = (pkgs.rustChannelOf { nightly = (pkgs.rustChannelOf {
date = "2019-09-01"; date = "2019-10-14";
channel = "nightly"; channel = "nightly";
}).rust.override { }).rust.override {
extensions = [ extensions = [
@ -27,4 +27,5 @@ let
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "nushell-rust"; name = "nushell-rust";
buildInputs = nu-deps ++ rust; buildInputs = nu-deps ++ rust;
SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt";
} }