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, stm, wxcore }:
{ cabal, Cabal, stm, wxcore }:
cabal.mkDerivation (self: {
pname = "wx";
version = "0.13.2.1";
sha256 = "0s5jmsrip26ahvz7mzf12m9rcibrk9is3kwbswz87h0sr0k11nbv";
buildDepends = [ stm wxcore ];
buildDepends = [ Cabal stm wxcore ];
meta = {
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "wxHaskell";

View File

@@ -1,10 +1,12 @@
{ cabal, libX11, mesa, parsec, stm, time, wxdirect, wxGTK }:
{ cabal, Cabal, filepath, libX11, mesa, parsec, stm, time, wxdirect
, wxGTK
}:
cabal.mkDerivation (self: {
pname = "wxcore";
version = "0.13.2.1";
sha256 = "0p0d9vxw2pyvnhswsgasdd62hj86w3ixbbsx41wkswzkjjjib9i6";
buildDepends = [ parsec stm time wxdirect ];
buildDepends = [ Cabal filepath parsec stm time wxdirect ];
extraLibraries = [ libX11 mesa wxGTK ];
meta = {
homepage = "http://haskell.org/haskellwiki/WxHaskell";

View File

@@ -1,4 +1,4 @@
{ cabal, parsec, strict, time }:
{ cabal, Cabal, parsec, strict, time }:
cabal.mkDerivation (self: {
pname = "wxdirect";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "1gn5si6939yizlkf7hzm2a2gff5sa98m7q5q1hz23av98zfa8pv7";
isLibrary = true;
isExecutable = true;
buildDepends = [ parsec strict time ];
buildDepends = [ Cabal parsec strict time ];
meta = {
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "helper tool for building wxHaskell";