summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: f8cd701373ac0dbf0b21322a77bcd9d060012ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ ... }:

let
  moz_overlay = import (
    builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz
  );

  pkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in
pkgs.mkShell {
  buildInputs = with pkgs; [
    rustChannels.stable.rust-std
    rustChannels.stable.rust
    rustChannels.stable.rustc
    rustChannels.stable.cargo

    cmake
    curl
    gcc
    openssl
    pkgconfig
    which
  ];
  LIBCLANG_PATH   = "${pkgs.llvmPackages.libclang}/lib";
}