diff options
author | Eli Flanagan <eli@typedspace.com> | 2019-09-19 23:10:16 +0000 |
---|---|---|
committer | Eli Flanagan <eli@typedspace.com> | 2019-09-19 23:10:16 +0000 |
commit | 0a3fd7ca83dfa9b53565de5c46634864504e52e6 (patch) | |
tree | d5fbececab673c6914203bda165181c775a0f4d4 | |
parent | fix typo (diff) | |
download | miniserve-0a3fd7ca83dfa9b53565de5c46634864504e52e6.tar.gz miniserve-0a3fd7ca83dfa9b53565de5c46634864504e52e6.zip |
remove shell.nix
-rw-r--r-- | shell.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 8da2c58..0000000 --- a/shell.nix +++ /dev/null @@ -1,17 +0,0 @@ -# copied expressions from https://nixos.wiki/wiki/Rust -# and Mozilla's nix overlay README -let - moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); - nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; }; -in - with nixpkgs; - stdenv.mkDerivation { - name = "rust_nightly_shell"; - buildInputs = [ - nixpkgs.latest.rustChannels.nightly.rust - openssl - # needed to correctly populate the - # nix specific paths to openssl libraries - pkgconfig - ]; - } |