mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 21:13:07 +03:00
9 lines
157 B
Nix
9 lines
157 B
Nix
with import <nixpkgs> { };
|
|
|
|
haskell.lib.buildStackProject {
|
|
name = "guide";
|
|
inherit ghc;
|
|
buildInputs = [ git ncurses zlib ];
|
|
LANG = "en_US.UTF-8";
|
|
}
|