From d36baf4515956394c4c2b74751219ead39bd4e6a Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Wed, 2 Jan 2019 22:39:36 +0000 Subject: [PATCH] Expresso REPL fails to build on Hackage, disable for now --- CHANGELOG.md | 4 ++++ default.nix | 10 +++------- expresso.cabal | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95addb2..3ca7813 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 0.1.0.2 + +Expresso REPL fails to build on Hackage, disable building for now. + ## 0.1.0.1 Cabal file dependency bounds changed for GHC 8.6 compatibility. diff --git a/default.nix b/default.nix index 874f04e..604450f 100644 --- a/default.nix +++ b/default.nix @@ -4,17 +4,13 @@ }: mkDerivation { pname = "expresso"; - version = "0.1"; + version = "0.1.1.0"; src = ./.; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers directory filepath hashable haskeline mtl parsec - text unordered-containers wl-pprint - ]; - executableHaskellDepends = [ - base containers directory filepath hashable haskeline mtl parsec - text unordered-containers wl-pprint + base containers directory filepath hashable mtl parsec text + unordered-containers wl-pprint ]; testHaskellDepends = [ base containers directory filepath hashable haskeline mtl parsec diff --git a/expresso.cabal b/expresso.cabal index eb52c94..27f182c 100755 --- a/expresso.cabal +++ b/expresso.cabal @@ -1,5 +1,5 @@ Name: expresso -Version: 0.1.0.1 +Version: 0.1.0.2 Cabal-Version: >= 1.10 License: BSD3 License-File: LICENSE @@ -34,7 +34,7 @@ Library filepath >= 1.4.2 && < 1.5, hashable >= 1.2.7 && < 1.3, text >= 1.2.3 && < 1.3, - haskeline >= 0.7.4 && < 0.8, + -- haskeline >= 0.7.4 && < 0.8, mtl >= 2.2.2 && < 2.3, parsec >= 3.1.13 && < 3.2, unordered-containers >= 0.2.9 && < 0.3, @@ -57,7 +57,7 @@ Executable expresso Main-Is: Repl.hs Hs-Source-Dirs: src Default-Language: Haskell2010 - + Buildable: False Build-Depends: base, containers, hashable, mtl, parsec, wl-pprint, text, unordered-containers, haskeline, directory, filepath Other-Modules: Expresso.Parser