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

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

  buildInputs = [
    git
    gcc
    cmake
  ];

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