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,11 @@
{ cabal, attoparsec }:
{ cabal, attoparsec, doctest, hspec, time }:
cabal.mkDerivation (self: {
pname = "http-date";
version = "0.0.4";
sha256 = "1pbm066i1cpa3z2kfsqpva0qixnx87s76dpafz3wf6dkaqj8n8i5";
buildDepends = [ attoparsec ];
testDepends = [ doctest hspec time ];
meta = {
description = "HTTP Date parser/formatter";
license = self.stdenv.lib.licenses.bsd3;