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, alexMeta, happyMeta, haskellSrcMeta }:
{ cabal, alexMeta, Cabal, happyMeta, haskellSrcMeta }:
cabal.mkDerivation (self: {
pname = "BNFC-meta";
version = "0.2.2";
sha256 = "07jfc0dcrcckibbw0xca1h7x3lnc9jfylfkcs23f0hyg31irf8dx";
buildDepends = [ alexMeta happyMeta haskellSrcMeta ];
buildDepends = [ alexMeta Cabal happyMeta haskellSrcMeta ];
meta = {
description = "Deriving Quasi-Quoters from BNF Grammars";
license = self.stdenv.lib.licenses.gpl2;

View File

@@ -1,4 +1,4 @@
{ cabal, mtl }:
{ cabal, Cabal, mtl }:
cabal.mkDerivation (self: {
pname = "BNFC";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "0nnalzsql1k5y3s93g5y2hy2gcdsrbi8r7cwzmdcy4vyy589pin0";
isLibrary = false;
isExecutable = true;
buildDepends = [ mtl ];
buildDepends = [ Cabal mtl ];
meta = {
homepage = "http://www.cse.chalmers.se/research/group/Language-technology/BNFC/";
description = "A compiler front-end generator";

View File

@@ -1,4 +1,4 @@
{ cabal, hint, mtl, network, syb }:
{ cabal, Cabal, filepath, hint, mtl, network, syb }:
cabal.mkDerivation (self: {
pname = "HaRe";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "13mi6z37fszrl97mll4injhq8dyhqzm344x7y2vw8krr5xjj3kw2";
isLibrary = false;
isExecutable = true;
buildDepends = [ hint mtl network syb ];
buildDepends = [ Cabal filepath hint mtl network syb ];
meta = {
homepage = "http://www.cs.kent.ac.uk/projects/refactor-fp";
description = "the Haskell Refactorer";

View File

@@ -1,5 +1,5 @@
{ cabal, extensibleExceptions, fgl, Graphalyze, graphviz
, haskellSrcExts, mtl, multiset, random
{ cabal, Cabal, extensibleExceptions, fgl, filepath, Graphalyze
, graphviz, haskellSrcExts, mtl, multiset, random
}:
cabal.mkDerivation (self: {
@@ -9,8 +9,8 @@ cabal.mkDerivation (self: {
isLibrary = false;
isExecutable = true;
buildDepends = [
extensibleExceptions fgl Graphalyze graphviz haskellSrcExts mtl
multiset random
Cabal extensibleExceptions fgl filepath Graphalyze graphviz
haskellSrcExts mtl multiset random
];
meta = {
description = "Static code analysis using graph-theoretic techniques";

View File

@@ -1,10 +1,10 @@
{ cabal, haskellSrcMeta }:
{ cabal, Cabal, haskellSrcMeta }:
cabal.mkDerivation (self: {
pname = "alex-meta";
version = "0.2.0.2";
sha256 = "1v47p1nrx2nb92aasq7ml6i0sy1nfyybgm9n4r1sw1g86dg1y8z1";
buildDepends = [ haskellSrcMeta ];
buildDepends = [ Cabal haskellSrcMeta ];
meta = {
description = "Quasi-quoter for Alex lexers";
license = self.stdenv.lib.licenses.bsd3;

View File

@@ -1,4 +1,4 @@
{ cabal }:
{ cabal, Cabal, filepath }:
cabal.mkDerivation (self: {
pname = "cabal-ghci";
@@ -6,6 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "0za0bf59f4a3v5zvyy7h1xvxskrazdga4j1cs6psfv9fv80qig9r";
isLibrary = true;
isExecutable = true;
buildDepends = [ Cabal filepath ];
meta = {
homepage = "http://code.atnnn.com/projects/cabal-ghci/wiki";
description = "Set up ghci with options taken from a .cabal file";

View File

@@ -1,10 +1,10 @@
{ cabal, haskellSrcMeta, mtl }:
{ cabal, Cabal, haskellSrcMeta, mtl }:
cabal.mkDerivation (self: {
pname = "happy-meta";
version = "0.2.0.3";
sha256 = "0bvm4rbmd48vfpyjjfq476466s9hf7x3y0bgzdfkacm89xx080g9";
buildDepends = [ haskellSrcMeta mtl ];
buildDepends = [ Cabal haskellSrcMeta mtl ];
meta = {
description = "Quasi-quoter for Happy parsers";
license = self.stdenv.lib.licenses.bsd3;

View File

@@ -1,4 +1,6 @@
{ cabal, cpphs, haskellSrcExts, hscolour, transformers, uniplate }:
{ cabal, Cabal, cpphs, filepath, haskellSrcExts, hscolour
, transformers, uniplate
}:
cabal.mkDerivation (self: {
pname = "hlint";
@@ -7,7 +9,7 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [
cpphs haskellSrcExts hscolour transformers uniplate
Cabal cpphs filepath haskellSrcExts hscolour transformers uniplate
];
meta = {
homepage = "http://community.haskell.org/~ndm/hlint/";

View File

@@ -1,4 +1,4 @@
{ cabal, mtl, network, time }:
{ cabal, Cabal, mtl, network, time }:
cabal.mkDerivation (self: {
pname = "hslogger";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "0lk966csxxyjjdg5jg4pzzl5118zj8ms78vn1n9imb7f4vcs8vk7";
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl network time ];
buildDepends = [ Cabal mtl network time ];
meta = {
homepage = "http://software.complete.org/hslogger";
description = "Versatile logging framework";

View File

@@ -1,9 +1,10 @@
{ cabal }:
{ cabal, Cabal, filepath }:
cabal.mkDerivation (self: {
pname = "tar";
version = "0.3.2.0";
sha256 = "0yplrfai8bwihyn18whi0jiz1qzll9hgbc37xcy2jkr28480jba9";
buildDepends = [ Cabal filepath ];
meta = {
description = "Reading, writing and manipulating \".tar\" archive files.";
license = self.stdenv.lib.licenses.bsd3;

View File

@@ -1,9 +1,10 @@
{ cabal }:
{ cabal, Cabal, filepath }:
cabal.mkDerivation (self: {
pname = "tar";
version = "0.4.0.0";
sha256 = "04qijdfyiqb64q58g0bf46qfgaxqjl3kl68x6z31cv36p3hpplx3";
buildDepends = [ Cabal filepath ];
meta = {
description = "Reading, writing and manipulating \".tar\" archive files.";
license = self.stdenv.lib.licenses.bsd3;

View File

@@ -1,5 +1,5 @@
{ cabal, binary, cairo, deepseq, ghcEvents, glib, gtk, mtl, pango
, time
{ cabal, binary, Cabal, cairo, deepseq, filepath, ghcEvents, glib
, gtk, mtl, pango, time
}:
cabal.mkDerivation (self: {
@@ -9,7 +9,8 @@ cabal.mkDerivation (self: {
isLibrary = false;
isExecutable = true;
buildDepends = [
binary cairo deepseq ghcEvents glib gtk mtl pango time
binary Cabal cairo deepseq filepath ghcEvents glib gtk mtl pango
time
];
configureFlags = "--ghc-options=-rtsopts";
meta = {

View File

@@ -1,4 +1,4 @@
{ cabal, haskellSrcExts, mtl, uulib }:
{ cabal, Cabal, filepath, haskellSrcExts, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-bootstrap";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "0zsb8pz2zx7y8sjp392hpdk30dzzmppjizcnlgd1wvq2csacnfxq";
isLibrary = true;
isExecutable = true;
buildDepends = [ haskellSrcExts mtl uulib ];
buildDepends = [ Cabal filepath haskellSrcExts mtl uulib ];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Attribute Grammar System of Universiteit Utrecht";

View File

@@ -1,10 +1,10 @@
{ cabal, mtl, uulib }:
{ cabal, Cabal, filepath, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-cabal";
version = "1.0.2.0";
sha256 = "0nvnyc6c1611rziglpp0ywqkgg9sgfi9ph33ya33k5zv3jxxh1q0";
buildDepends = [ mtl uulib ];
buildDepends = [ Cabal filepath mtl uulib ];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Cabal plugin for the Universiteit Utrecht Attribute Grammar System";

View File

@@ -1,4 +1,6 @@
{ cabal, haskellSrcExts, mtl, uuagcBootstrap, uuagcCabal, uulib }:
{ cabal, Cabal, filepath, haskellSrcExts, mtl, uuagcBootstrap
, uuagcCabal, uulib
}:
cabal.mkDerivation (self: {
pname = "uuagc";
@@ -7,7 +9,7 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [
haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
Cabal filepath haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";