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