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

14 lines
247 B
Nix
Raw Permalink Normal View History

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";
}