aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: c57c8a55fbe57d045b77609e02f526643261e67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "env";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = [
    git cmake gcc gdb cgdb
    glfw3
    glew
    glm
  ];
}