Skip to content

Commit

Permalink
Expresso REPL fails to build on Hackage, disable for now
Browse files Browse the repository at this point in the history
  • Loading branch information
willtim committed Jan 2, 2019
1 parent aa8a4ab commit d36baf4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 3 additions & 7 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions expresso.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit d36baf4

Please sign in to comment.