nushell/shell.nix

32 lines
661 B
Nix
Raw Normal View History

2019-10-11 21:13:00 +02:00
{ pkgs ? import <nixpkgs> {
overlays = [
(import (builtins.fetchTarball
"https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz"))
];
} }:
with pkgs;
2019-10-10 21:23:12 +02:00
let
2019-10-11 19:06:24 +02:00
2019-10-11 21:39:11 +02:00
nightly = (pkgs.rustChannelOf {
2019-10-14 23:25:52 +02:00
date = "2019-10-14";
2019-10-11 19:06:24 +02:00
channel = "nightly";
}).rust.override {
extensions = [
"clippy-preview"
2019-10-11 21:13:00 +02:00
"rls-preview"
2019-10-11 19:06:24 +02:00
"rust-analysis"
2019-10-11 21:13:00 +02:00
"rust-src"
2019-10-11 19:06:24 +02:00
"rustfmt-preview"
];
2019-10-11 21:39:11 +02:00
};
2019-10-11 19:06:24 +02:00
2019-10-11 21:13:00 +02:00
nu-deps = [ openssl_1_1 pkg-config x11 python3 ];
rust = [ nightly rustracer cargo-watch ];
in stdenv.mkDerivation {
2019-10-10 21:23:12 +02:00
name = "nushell-rust";
2019-10-11 21:13:00 +02:00
buildInputs = nu-deps ++ rust;
2019-10-14 23:25:52 +02:00
SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt";
2019-10-10 21:23:12 +02:00
}