2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, alex, happy, QuickCheck, binary, haskeline, haskellSrcExts
|
|
|
|
, mtl, syb, xhtml, zlib
|
|
|
|
}:
|
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-03-12 18:28:15 +01:00
|
|
|
version = "2.2.10";
|
|
|
|
sha256 = "1bh96g5c6b6jzaf3m9gm0vr64avgi86kb45p8i1vg1jbfjdbdlsw";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
QuickCheck binary haskeline haskellSrcExts mtl syb xhtml zlib
|
|
|
|
];
|
|
|
|
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
|
|
|
})
|