1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 20:01:36 +03:00
guide/shell.nix
Vladislav Sabanov 9e0f432408
Create tables with hasql (#328)
* 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
2019-07-11 22:12:14 +05:00

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