From 2b6a779a3e0ce0f4f5aa00222e8474a608ddb0ca Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 2 Jan 2021 14:54:02 +0100 Subject: Add shell.nix file for development in nix shell Signed-off-by: Matthias Beyer --- shell.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..27eb6b5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,25 @@ +{ example ? "1", ... }: + +let + moz_overlay = import ( + builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz + ); + + pkgs = import { overlays = [ moz_overlay ]; }; +in +pkgs.mkShell { + buildInputs = with pkgs; [ + rustChannels.nightly.rust-std + rustChannels.nightly.rust + rustChannels.nightly.rustc + rustChannels.nightly.cargo + + cmake + gcc + openssl + pkgconfig + ]; + + LIBCLANG_PATH = "${pkgs.llvmPackages.libclang}/lib"; +} + -- cgit v1.2.3