2012-11-05 07:19:52 -08:00
|
|
|
{ cabal, filepath, haskellSrcExts, mtl, uuagcCabal, uulib }:
|
2008-01-23 00:36:03 -08:00
|
|
|
|
2011-08-08 12:02:17 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-23 00:36:03 -08:00
|
|
|
pname = "uuagc";
|
2012-12-08 02:35:03 -08:00
|
|
|
version = "0.9.42.2";
|
|
|
|
sha256 = "1l7w3gimcx079giw5ri4qfr1xfi1wfj93v29r8hvs8q8a6ffjifn";
|
2011-08-08 12:02:17 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-11-05 07:19:52 -08:00
|
|
|
buildDepends = [ filepath haskellSrcExts mtl uuagcCabal uulib ];
|
2008-01-23 00:36:03 -08:00
|
|
|
meta = {
|
2011-08-08 12:02:17 -07:00
|
|
|
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
|
2008-01-23 00:36:03 -08:00
|
|
|
description = "Attribute Grammar System of Universiteit Utrecht";
|
2011-08-12 04:52:07 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 06:57:25 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-01-23 00:36:03 -08:00
|
|
|
};
|
|
|
|
})
|