mirror of
https://github.com/aelve/guide.git
synced 2024-11-22 11:33:34 +03:00
9e0f432408
* create tables with hasql * Fixes 1 * fix failing * add todo * Add more comments * fix commits * Mention that libpq has to be installed * Minor fixes * Migrations * Fix wording * Wording 2
9 lines
168 B
Nix
9 lines
168 B
Nix
with import <nixpkgs> { };
|
|
|
|
haskell.lib.buildStackProject {
|
|
name = "guide";
|
|
inherit ghc;
|
|
buildInputs = [ git ncurses zlib postgresql ];
|
|
LANG = "en_US.UTF-8";
|
|
}
|