diff options
| author | Mikael Brockman <mikael@brockman.se> | 2018-05-03 15:40:08 +0300 |
|---|---|---|
| committer | Mikael Brockman <mikael@brockman.se> | 2018-05-04 14:08:08 +0300 |
| commit | 42bcb5015467a359ae5f1acd180d2cab244d63a3 (patch) | |
| tree | 397619af806b1a0937e8f731aa5187f258d48066 /default.nix | |
| parent | bb5b21b925c898bd1962ec7563e2d8913a2c73a7 (diff) | |
Fix the Nix build
We use the Nix "jailbreak" function to ignore the upper bounds
on the CGI package dependency.
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/default.nix b/default.nix index 98cae21a4..bfa85ab7c 100644 --- a/default.nix +++ b/default.nix @@ -1,8 +1,8 @@ { mkDerivation, alex, array, base, bytestring, Cabal, cgi , containers, directory, exceptions, filepath, happy, haskeline -, HTF, httpd-shed, HUnit, json, lifted-base, mtl, network -, network-uri, old-locale, parallel, pretty, process, random -, stdenv, terminfo, time, time-compat, unix, utf8-string +, HTF, httpd-shed, HUnit, json, mtl, network, network-uri +, old-locale, parallel, pretty, process, random, stdenv, terminfo +, time, time-compat, unix, utf8-string }: mkDerivation { pname = "gf"; @@ -18,7 +18,7 @@ mkDerivation { utf8-string ]; libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ base containers lifted-base mtl ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ base Cabal directory filepath HTF HUnit process ]; |
