3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #1846 from klao/agda-mode

Byte-compile Agda's elisp files
This commit is contained in:
Peter Simons 2014-02-28 10:14:43 +01:00
commit 12e00cbaa7

View file

@ -1,4 +1,4 @@
{ cabal, alex, binary, deepseq, filepath, geniplate, happy
{ cabal, alex, binary, deepseq, emacs, filepath, geniplate, happy
, hashable, hashtables, haskeline, haskellSrcExts, mtl, parallel
, QuickCheck, text, time, unorderedContainers, xhtml, zlib
}:
@ -14,8 +14,11 @@ cabal.mkDerivation (self: {
haskellSrcExts mtl parallel QuickCheck text time
unorderedContainers xhtml zlib
];
buildTools = [ alex happy ];
buildTools = [ alex emacs happy ];
jailbreak = true;
postInstall = ''
$out/bin/agda-mode compile
'';
meta = {
homepage = "http://wiki.portal.chalmers.se/agda/";
description = "A dependently typed functional programming language and proof assistant";