aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 2a163773183c5f0b403441fefc9778699cbed39d (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
    glew
    glfw3
    glm
  ];
}