2012-11-12 12:34:28 +01:00
|
|
|
{ cabal, alex, binary, deepseq, filepath, geniplate, happy
|
|
|
|
, hashable, hashtables, haskeline, haskellSrcExts, mtl, parallel
|
|
|
|
, QuickCheck, text, unorderedContainers, 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";
|
2012-11-12 12:34:28 +01:00
|
|
|
version = "2.3.2";
|
|
|
|
sha256 = "1xp0qvag6wx6zjwhmb7nm13hp63vlh8h4a2rkc85rsh610m0nynl";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-11-12 12:34:28 +01:00
|
|
|
binary deepseq filepath geniplate hashable hashtables haskeline
|
|
|
|
haskellSrcExts mtl parallel QuickCheck text unorderedContainers
|
|
|
|
xhtml zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
|
|
|
buildTools = [ alex happy ];
|
2013-02-09 18:17:32 +01:00
|
|
|
jailbreak = true;
|
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;
|
2013-03-23 14:57:25 +01:00
|
|
|
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
|
|
|
})
|