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
1 changed files with 3 additions and 2 deletions

View File

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