Re-generate all Haskell packages with the latest version of cabal2nix.

This change brings support for building and running the regressions test suites.
This commit is contained in:
Peter Simons
2013-02-24 22:09:07 +01:00
parent d0bfd6936e
commit a30df95691
146 changed files with 680 additions and 180 deletions

View File

@@ -1,10 +1,16 @@
{ cabal, blazeBuilder, happy, mtl, utf8Light, utf8String }:
{ cabal, blazeBuilder, Cabal, happy, HUnit, mtl, QuickCheck
, testFramework, testFrameworkHunit, utf8Light, utf8String
}:
cabal.mkDerivation (self: {
pname = "language-javascript";
version = "0.5.7";
sha256 = "0mndz0bqxkayzm7g92cvai9ahb9msr99syp9djhaya1d45595ad3";
buildDepends = [ blazeBuilder mtl utf8Light utf8String ];
testDepends = [
blazeBuilder Cabal HUnit mtl QuickCheck testFramework
testFrameworkHunit utf8Light utf8String
];
buildTools = [ happy ];
meta = {
homepage = "http://github.com/alanz/language-javascript";