513d653d68
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
26 lines
488 B
Nix
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";
|
|
};
|
|
}
|