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

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

  buildInputs = [
    git
    gcc8
    cmake
  ];

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