diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-20 09:08:42 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-20 09:08:42 +0000 |
commit | 299a1b0beda2027747820390b939da96534e345d (patch) | |
tree | 2663d7b63725ddeb72c90649bf466939a9e123b5 | |
parent | 2a5f007241dbe25afb62c8a60a87f9671403efcd (diff) | |
download | thermoprint-299a1b0beda2027747820390b939da96534e345d.tar thermoprint-299a1b0beda2027747820390b939da96534e345d.tar.gz thermoprint-299a1b0beda2027747820390b939da96534e345d.tar.bz2 thermoprint-299a1b0beda2027747820390b939da96534e345d.tar.xz thermoprint-299a1b0beda2027747820390b939da96534e345d.zip |
cabal sandboxes & test harness in nix-shell
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | shell.nix | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,3 +2,4 @@ | |||
2 | **/result | 2 | **/result |
3 | **/result-* | 3 | **/result-* |
4 | **/dist/ | 4 | **/dist/ |
5 | **/.cabal-sandbox | ||
@@ -5,6 +5,7 @@ | |||
5 | let | 5 | let |
6 | packages = ps: with ps; [ | 6 | packages = ps: with ps; [ |
7 | cabal-install hlint cabal2nix | 7 | cabal-install hlint cabal2nix |
8 | hspec QuickCheck quickcheck-instances | ||
8 | ] ++ (builtins.attrValues (import ./default.nix {})); | 9 | ] ++ (builtins.attrValues (import ./default.nix {})); |
9 | ghc = pkgs.haskell.packages.${compilerName}.ghcWithHoogle packages; | 10 | ghc = pkgs.haskell.packages.${compilerName}.ghcWithHoogle packages; |
10 | in | 11 | in |