2014-02-27 15:05:29 +01:00
|
|
|
{ cabal, alex, binary, deepseq, emacs, filepath, geniplate, happy
|
2012-11-12 12:34:28 +01:00
|
|
|
, hashable, hashtables, haskeline, haskellSrcExts, mtl, parallel
|
2013-06-03 22:09:09 +02:00
|
|
|
, QuickCheck, text, time, 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";
|
2013-10-30 21:59:27 +01:00
|
|
|
version = "2.3.2.2";
|
|
|
|
sha256 = "0zr2rg2yvq6pqg69c6h7hqqpc5nj8prfhcvj5p2alkby0vs110qc";
|
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
|
2013-06-03 22:09:09 +02:00
|
|
|
haskellSrcExts mtl parallel QuickCheck text time
|
|
|
|
unorderedContainers xhtml zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
2014-02-27 15:05:29 +01:00
|
|
|
buildTools = [ alex emacs happy ];
|
2013-02-09 18:17:32 +01:00
|
|
|
jailbreak = true;
|
2014-02-27 15:05:29 +01:00
|
|
|
postInstall = ''
|
|
|
|
$out/bin/agda-mode compile
|
|
|
|
'';
|
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-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 23:05:30 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|