This repository was archived by the owner on Jul 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -4,21 +4,25 @@ Contributions are very welcome! To hack on the github version, clone the
4
4
repository. You can use ` cabal ` :
5
5
6
6
``` shell
7
- ./scripts/start-sandbox.sh # Initialize the sandbox and add-source the packages
8
- ./scripts/ test-all.sh # Run all the tests
7
+ cabal build all # Install dependencies and build packages
8
+ cabal test all # Run all the tests
9
9
```
10
10
11
11
Or ` stack ` :
12
12
13
13
``` shell
14
- stack setup # Downloads and installs a proper GHC version if necessary
15
- stack build --fast --pedantic # Install dependencies and build packages
16
- stack test # Run all the tests
14
+ stack setup # Downloads and installs a proper GHC version if necessary
15
+ stack build --fast # Install dependencies and build packages
16
+ stack test # Run all the tests
17
17
```
18
18
19
19
Or ` nix ` :
20
+
20
21
``` shell
21
- ./scripts/generate-nix-files.sh # Get up-to-date shell.nix files
22
+ nix-shell nix/shell.nix # Enter a new development shell with Cabal and Stack
23
+
24
+ # Alternatively, another version of GHC can be used. See nix/README.md for more info.
25
+ nix-shell nix/shell.nix --argstr compiler ghc901
22
26
```
23
27
24
28
To build the docs, see ` doc/README.md ` .
You can’t perform that action at this time.
0 commit comments