2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, alex, binary, filepath, happy, hashable, hashtables
|
2012-02-14 18:00:37 +01:00
|
|
|
, haskeline, haskellSrcExts, mtl, QuickCheck, syb, xhtml, zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2009-04-21 23:05:30 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 23:05:30 +02:00
|
|
|
pname = "Agda";
|
2011-11-25 14:44:40 +01:00
|
|
|
version = "2.3.0";
|
|
|
|
sha256 = "1p0cwf3d146z73gp49cm8fmk33hcbjsvyijbakm1871ssc5i73k0";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
binary filepath hashable hashtables haskeline haskellSrcExts mtl
|
|
|
|
QuickCheck syb xhtml zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
|
|
|
buildTools = [ alex happy ];
|
2009-04-21 23:05:30 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://wiki.portal.chalmers.se/agda/";
|
|
|
|
description = "A dependently typed functional programming language and proof assistant";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-21 23:05:30 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|