mirror of
https://github.com/vale981/boon
synced 2025-03-05 17:41:42 -05:00
10 lines
218 B
Nix
10 lines
218 B
Nix
![]() |
with (import <nixpkgs> {});
|
||
|
|
||
|
haskell.lib.buildStackProject {
|
||
|
ghc = haskell.compiler.ghc7103;
|
||
|
name = "myEnv";
|
||
|
buildInputs = [ ncurses zlib.dev zlib.out ];
|
||
|
shellHook = ''
|
||
|
export LANG=en_US.UTF-8
|
||
|
'';
|
||
|
}
|