1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Update HOL Light to version 2015-11-02

This commit is contained in:
Marco Maggesi 2015-11-03 15:24:32 +01:00
parent 4a6c595b0f
commit a487b3326b

View file

@ -1,4 +1,4 @@
{ stdenv, fetchsvn, writeScript, ocaml, camlp5 }: { stdenv, fetchFromGitHub, writeScript, ocaml, camlp5 }:
let let
start_script = '' start_script = ''
@ -8,14 +8,14 @@ let
''; '';
in in
stdenv.mkDerivation rec { stdenv.mkDerivation {
name = "hol_light-${version}"; name = "hol_light-2015-11-02";
version = "244";
src = fetchsvn { src = fetchFromGitHub {
url = http://hol-light.googlecode.com/svn/trunk; owner = "jrh13";
rev = version; repo = "hol-light";
sha256 = "1qzb48j7zbx7c327ixmvq2k0ap7y6fqvwal0195chfxvhs858lfq"; rev = "10265313397476ddff4ce13e7bbb588025e7272c";
sha256 = "17b6a7vk9fhppl0h366y7pw6a9sknq1a8gxqg67dzqpb47vda1n0";
}; };
buildInputs = [ ocaml camlp5 ]; buildInputs = [ ocaml camlp5 ];