From 65008bb912076f288d0c0dbf8ba0ae9f3641d374 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Mon, 14 Oct 2019 23:46:19 +0200 Subject: [PATCH] Deletes nix-specific configuration. --- .envrc | 1 - shell.nix | 31 ------------------------------- 2 files changed, 32 deletions(-) delete mode 100644 .envrc delete mode 100644 shell.nix diff --git a/.envrc b/.envrc deleted file mode 100644 index 65326bb6dd..0000000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use nix \ No newline at end of file diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 4e287ab115..0000000000 --- a/shell.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ pkgs ? import { - overlays = [ - (import (builtins.fetchTarball - "https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz")) - ]; -} }: -with pkgs; -let - - nightly = (pkgs.rustChannelOf { - date = "2019-10-14"; - channel = "nightly"; - }).rust.override { - extensions = [ - "clippy-preview" - "rls-preview" - "rust-analysis" - "rust-src" - "rustfmt-preview" - ]; - }; - - nu-deps = [ openssl_1_1 pkg-config x11 python3 ]; - - rust = [ nightly rustracer cargo-watch ]; - -in stdenv.mkDerivation { - name = "nushell-rust"; - buildInputs = nu-deps ++ rust; - SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; -}