Updated a few Haskell packages.

svn path=/nixpkgs/trunk/; revision=28399
This commit is contained in:
Andres Löh 2011-08-08 19:02:17 +00:00
parent c30ea08c40
commit 23e5a11a1d
4 changed files with 25 additions and 15 deletions

View File

@ -5,9 +5,9 @@ cabal.mkDerivation (self : {
version = "0.4"; version = "0.4";
sha256 = "0nq13jm3akrmgk6n2clisip16v0jf1xkm0hm678v63s87hxqb1ma"; sha256 = "0nq13jm3akrmgk6n2clisip16v0jf1xkm0hm678v63s87hxqb1ma";
meta = { meta = {
description = "Another lightweight testing library in Haskell"; description = "Another lightweight testing library in Haskell.";
license = "BSD"; license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ]; maintainers = [ self.stdenv.lib.maintainers.andres ];
}; };
}) })

View File

@ -5,6 +5,10 @@ cabal.mkDerivation (self : {
version = "0.9.13"; version = "0.9.13";
sha256 = "115fxvx5lqyjdwws6gkcixk1gi2p5gkyqinww7gbp54p4n0yy7n0"; sha256 = "115fxvx5lqyjdwws6gkcixk1gi2p5gkyqinww7gbp54p4n0yy7n0";
meta = { meta = {
description = "Haskell Utecht Tools Library"; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Haskell Utrecht Tools Library";
license = "LGPL";
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
}; };
}) })

View File

@ -1,12 +1,17 @@
{cabal, uulib}: { cabal, haskellSrcExts, mtl, uulib }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "uuagc"; pname = "uuagc";
version = "0.9.36"; version = "0.9.38.6";
name = self.fname; sha256 = "1dr8vxis16rcdvklp0rv2d50bi33jag7n4wynbfqw9bzgyfbagnw";
sha256 = "02sl19apxwhgj7zq37pl6xkl35pafma2683d7hyzyyn6y5kqma1j"; isLibrary = true;
extraBuildInputs = [uulib]; isExecutable = true;
buildDepends = [ haskellSrcExts mtl uulib ];
meta = { meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Attribute Grammar System of Universiteit Utrecht"; description = "Attribute Grammar System of Universiteit Utrecht";
license = "GPL";
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
}; };
}) })

View File

@ -1028,6 +1028,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
parsec = self.parsec2; parsec = self.parsec2;
}; };
# known not to work with anything above ghc-6.10.*
scion = callPackage ../development/libraries/haskell/scion {}; scion = callPackage ../development/libraries/haskell/scion {};
sendfile = callPackage ../development/libraries/haskell/sendfile {}; sendfile = callPackage ../development/libraries/haskell/sendfile {};