2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, filepath, haskellSrcExts, mtl, uuagcBootstrap, uuagcCabal
|
|
|
|
, uulib
|
2012-02-14 17:00:37 +00:00
|
|
|
}:
|
2008-01-23 08:36:03 +00:00
|
|
|
|
2011-08-08 20:02:17 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-23 08:36:03 +00:00
|
|
|
pname = "uuagc";
|
2011-12-22 12:19:28 +00:00
|
|
|
version = "0.9.40.2";
|
|
|
|
sha256 = "1qc5sqm2lqysm5rplzc229rfw5750w4z8b7cgxaid7jjv4csrbf8";
|
2011-08-08 20:02:17 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-12 12:52:07 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
filepath haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
|
2011-08-12 12:52:07 +01:00
|
|
|
];
|
2008-01-23 08:36:03 +00:00
|
|
|
meta = {
|
2011-08-08 20:02:17 +01:00
|
|
|
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
|
2008-01-23 08:36:03 +00:00
|
|
|
description = "Attribute Grammar System of Universiteit Utrecht";
|
2011-08-12 12:52:07 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-01-23 08:36:03 +00:00
|
|
|
};
|
|
|
|
})
|