13 lines
234 B
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";
|
||
|
}
|
||
|
|