diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,12 +1,12 @@ with import <nixpkgs> {}; -stdenv.mkDerivation rec { +stdenvNoCC.mkDerivation rec { name = "boltzbub-env"; env = buildEnv { name = name; paths = buildInputs; }; buildInputs = [ git - gcc + gcc8 cmake ]; |