Regenerated all Haskell packages with the latest version of cabal2nix.

svn path=/nixpkgs/trunk/; revision=32292
This commit is contained in:
Peter Simons
2012-02-14 17:00:37 +00:00
parent 844d950d13
commit ac69747aa8
563 changed files with 1383 additions and 1119 deletions

View File

@@ -1,10 +1,10 @@
{ cabal, deepseq, text }:
{ cabal, Cabal, deepseq, text }:
cabal.mkDerivation (self: {
pname = "attoparsec";
version = "0.10.1.1";
sha256 = "07zl85nkimpswlb4rxycisaphhyrlq4la2limxxi7sk21gyh88b0";
buildDepends = [ deepseq text ];
buildDepends = [ Cabal deepseq text ];
meta = {
homepage = "https://github.com/bos/attoparsec";
description = "Fast combinator parsing for bytestrings";

View File

@@ -1,10 +1,10 @@
{ cabal, attoparsec, enumerator, text }:
{ cabal, attoparsec, Cabal, enumerator, text }:
cabal.mkDerivation (self: {
pname = "attoparsec-enumerator";
version = "0.3";
sha256 = "1sfqcr1mvny9gf0zzggwvs2b20knxrbb208rzaa86ay0b5b5jw5v";
buildDepends = [ attoparsec enumerator text ];
buildDepends = [ attoparsec Cabal enumerator text ];
meta = {
homepage = "https://john-millikin.com/software/attoparsec-enumerator/";
description = "Pass input from an enumerator to an Attoparsec parser";