1
Fork 0
simple-sql-parser/shell.nix
2024-01-09 00:18:24 +01:00

14 lines
247 B
Nix

with import <nixpkgs> { };
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
ghc
cabal-install
glibcLocales
gnumake
];
shellHook = "export LANG=en_GB.UTF-8";
}