blob: ca48800058d154f59c26b5259f967afe7c0d3378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
hstool - Haskell Development Environment ^_^
Requirements:
- cabal2nix
- Git
- GNU make
- Nix
Installation:
git submodule add http://cgit.krebsco.de/hstool .hstool
git submodule update --init .hstool
ln -vsnf .hstool/Makefile
Update hstool installation:
make update
Start GHCi:
make ghci
This will by default use <stockholm> to obtain packages. If that's not
desired then nixpkgs can be specified explicitly:
make ghci nixpkgs='import /path/to/some/nixpkgs {}'
|