cryptol: constrain happy to <1.19.6 (#18848)
This commit is contained in:
parent
02a538fb88
commit
19f42a2522
1 changed files with 7 additions and 1 deletions
|
@ -20,7 +20,13 @@ class Cryptol < Formula
|
||||||
depends_on "z3" => :run
|
depends_on "z3" => :run
|
||||||
|
|
||||||
def install
|
def install
|
||||||
install_cabal_package :using => ["alex", "happy"]
|
# Remove the "happy<1.19.6" for cryptol > 2.5.0
|
||||||
|
# See revision 1 of http://hackage.haskell.org/package/cryptol-2.5.0/revisions/
|
||||||
|
if build.stable?
|
||||||
|
install_cabal_package :using => ["alex", "happy<1.19.6"]
|
||||||
|
else
|
||||||
|
install_cabal_package :using => ["alex", "happy"]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
|
|
Loading…
Reference in a new issue