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,4 +1,6 @@
{ cabal, binary, ConfigFile, gtk, mtl, random, zlib }:
{ cabal, binary, Cabal, ConfigFile, filepath, gtk, mtl, random
, zlib
}:
cabal.mkDerivation (self: {
pname = "LambdaHack";
@@ -6,7 +8,9 @@ cabal.mkDerivation (self: {
sha256 = "09lgbpwrlw29n797q3k5aafvkg04nd8cw6pi41g914phf7lxzq4c";
isLibrary = true;
isExecutable = true;
buildDepends = [ binary ConfigFile gtk mtl random zlib ];
buildDepends = [
binary Cabal ConfigFile filepath gtk mtl random zlib
];
meta = {
homepage = "http://github.com/kosmikus/LambdaHack";
description = "A roguelike game engine in early and very active development";

View File

@@ -1,4 +1,4 @@
{ cabal, HUnit, mtl, random, regexPosix, time }:
{ cabal, Cabal, filepath, HUnit, mtl, random, regexPosix, time }:
cabal.mkDerivation (self: {
pname = "MazesOfMonad";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
sha256 = "1zk6bckll03b40iq8z13753glkmcan6439w8cc6rn5h2fhp189v9";
isLibrary = false;
isExecutable = true;
buildDepends = [ HUnit mtl random regexPosix time ];
buildDepends = [ Cabal filepath HUnit mtl random regexPosix time ];
meta = {
description = "Console-based Role Playing Game";
license = self.stdenv.lib.licenses.bsd3;