0f1f2115e9
This also tweaks the version number to just use the SVN revision (rather than date), since it's unambiguous and increasing anyway. Signed-off-by: Austin Seipp <aseipp@pobox.com>
27 lines
698 B
Nix
27 lines
698 B
Nix
{ stdenv, fetchsvn }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "hol_light-mode-${version}";
|
|
version = "73";
|
|
|
|
src = fetchsvn {
|
|
url = http://seanmcl-ocaml-lib.googlecode.com/svn/trunk/workshop/software/emacs;
|
|
rev = version;
|
|
sha256 = "3ca83098960439da149a47e1caff32536601559a77f04822be742a390c67feb7";
|
|
};
|
|
|
|
installPhase = ''
|
|
DEST=$out/share/emacs/site-lisp
|
|
mkdir -p $DEST
|
|
cp -a * $DEST
|
|
'';
|
|
|
|
meta = {
|
|
description = "A HOL Light mode for Emacs";
|
|
homepage = http://www.cl.cam.ac.uk/~jrh13/hol-light/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|