aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 026572bce4232d1516afcb5c9836286ad4bc0d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "computicle-env";
  env = buildEnv { name = name; paths = buildInputs; };

  buildInputs = [
    fish
    git cmake gcc gdb cgdb
    glfw3
    glew
    glm
  ];

  shellHook = ''
    export NIX_SHELL_NAME="${name}"
  '';
}