summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: f2e5ae4a0977530c994f8095a1595c393bd21958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
with import <nixpkgs> {};
stdenv.mkDerivation {
  name = "systemic-env";
  nativeBuildInputs = [
    rustc cargo

    pkg-config
    cmake

    clang
    stdenv.cc
    stdenv.cc.libc stdenv.cc.libc_dev
    glibc.static
  ];

  buildInputs = [
    glfw
    wayland.dev
  ];

  LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
}