1
Fork 0
simple-sql-parser/shell.nix

13 lines
234 B
Nix

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