haskell-language-javascript: remove pre-generated lexer and parsers to fix the build with GHC 7.8.1

https://github.com/alanz/language-javascript/issues/26
This commit is contained in:
Peter Simons 2014-03-27 22:18:12 +01:00
parent 4c8ea71d64
commit feed777cf2

View file

@ -1,5 +1,5 @@
{ cabal, blazeBuilder, Cabal, happy, HUnit, mtl, QuickCheck
, testFramework, testFrameworkHunit, utf8Light, utf8String
, testFramework, testFrameworkHunit, utf8Light, utf8String, alex
}:
cabal.mkDerivation (self: {
@ -11,7 +11,8 @@ cabal.mkDerivation (self: {
blazeBuilder Cabal HUnit mtl QuickCheck testFramework
testFrameworkHunit utf8Light utf8String
];
buildTools = [ happy ];
buildTools = [ happy alex ];
preConfigure = "rm -rv dist; $SHELL runalex.sh";
meta = {
homepage = "http://github.com/alanz/language-javascript";
description = "Parser for JavaScript";