forked from extern/nushell
Deletes nix-specific configuration.
This commit is contained in:
parent
d21389d549
commit
65008bb912
31
shell.nix
31
shell.nix
@ -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";
|
||||
}
|
Loading…
Reference in New Issue
Block a user