haskell-uuagc: updated to version 0.9.39.0

svn path=/nixpkgs/trunk/; revision=28514
This commit is contained in:
Peter Simons 2011-08-12 11:52:07 +00:00
parent 0891479ca6
commit 0ae69dbfbe
4 changed files with 46 additions and 5 deletions

View File

@ -0,0 +1,20 @@
{ cabal, haskellSrcExts, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-bootstrap";
version = "0.9.39.0.0";
sha256 = "1ds98nif6naafgf6vgf19nmwx5gbhz88gsh2zyxc4d4iqb0z5drv";
isLibrary = true;
isExecutable = true;
buildDepends = [ haskellSrcExts mtl uulib ];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Attribute Grammar System of Universiteit Utrecht";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View File

@ -0,0 +1,17 @@
{ cabal, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-cabal";
version = "1.0.0.2";
sha256 = "0j5f30xx3z9fqcn4y2hhssbc9h0dycadk552d3a7i9rq7gsy59br";
buildDepends = [ mtl uulib ];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Cabal plugin for the Universiteit Utrecht Attribute Grammar System";
license = self.stdenv.lib.licenses.bsd3;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View File

@ -1,16 +1,18 @@
{ cabal, haskellSrcExts, mtl, uulib }:
{ cabal, haskellSrcExts, mtl, uuagcBootstrap, uuagcCabal, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc";
version = "0.9.38.6";
sha256 = "1dr8vxis16rcdvklp0rv2d50bi33jag7n4wynbfqw9bzgyfbagnw";
version = "0.9.39.0";
sha256 = "1jx1cisch97dd2dy2ddlx7s8zxrrv1wwp9pm2bl59sjakpp1kqwh";
isLibrary = true;
isExecutable = true;
buildDepends = [ haskellSrcExts mtl uulib ];
buildDepends = [
haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Attribute Grammar System of Universiteit Utrecht";
license = "GPL";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres

View File

@ -1390,6 +1390,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
threadscope = callPackage ../development/tools/haskell/threadscope {};
uuagcBootstrap = callPackage ../development/tools/haskell/uuagc/bootstrap.nix {};
uuagcCabal = callPackage ../development/tools/haskell/uuagc/cabal.nix {};
uuagc = callPackage ../development/tools/haskell/uuagc {};
# Applications.