Deletes nix-specific configuration.

This commit is contained in:
Thomas Hartmann 2019-10-14 23:46:19 +02:00
parent d21389d549
commit 65008bb912
2 changed files with 0 additions and 32 deletions

1
.envrc
View File

@ -1 +0,0 @@
use nix

View File

@ -1,31 +0,0 @@
{ pkgs ? import <nixpkgs> {
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";
}