2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, Agda }:
|
2011-04-07 14:10:38 +02:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-04-07 14:10:38 +02:00
|
|
|
pname = "Agda-executable";
|
2012-03-12 15:06:18 +01:00
|
|
|
version = "2.3.0.1";
|
|
|
|
sha256 = "156nzvpmqi7yizjr4yym2ybc0iv4nqfp84qrpdxcha682k298ib1";
|
2011-08-10 02:35:08 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ Agda ];
|
2012-11-12 12:48:04 +01:00
|
|
|
jailbreak = true;
|
2011-04-07 14:10:38 +02:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
homepage = "http://wiki.portal.chalmers.se/agda/";
|
2011-04-07 14:10:38 +02:00
|
|
|
description = "Command-line program for type-checking and compiling Agda programs";
|
2011-08-10 02:35:08 +02:00
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-04-07 14:10:38 +02:00
|
|
|
};
|
|
|
|
})
|