nixpkgs/pkgs/applications/editors/emacs-modes/hol_light/default.nix
Marco Maggesi 513d653d68 Add HOL Light and its dependencies.
Add pkgs/applications/science/logic/hol_light
and pkgs/applications/science/emacs-modes/hol_light

Some functionalities of HOL Light requires the compiled sources of
OCaml.  For now we provide a new package ocaml_with_sources.  After
this shuold be merged with the current version of OCaml already
present in nixpkgs.


svn path=/nixpkgs/trunk/; revision=20008
2010-02-15 11:00:02 +00:00

26 lines
488 B
Nix

{stdenv, fetchsvn}:
let
revision = "73";
in
stdenv.mkDerivation {
name = "hol_light_mode-${revision}";
src = fetchsvn {
url = http://seanmcl-ocaml-lib.googlecode.com/svn/trunk/workshop/software/emacs;
rev = revision;
sha256 = "3ca83098960439da149a47e1caff32536601559a77f04822be742a390c67feb7";
};
installPhase = ''
DEST=$out/share/emacs/site-lisp
ensureDir $DEST
cp -a * $DEST
'';
meta = {
description = "A HOL Light mode for emacs";
};
}