3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/logic/hol/default.nix

89 lines
2.6 KiB
Nix
Raw Normal View History

2015-06-23 23:17:51 +01:00
{stdenv, pkgs, fetchurl, graphviz, fontconfig, liberation_ttf,
2013-11-16 01:43:38 +00:00
experimentalKernel ? true}:
let
pname = "hol4";
2015-06-23 23:17:51 +01:00
vnum = "10";
in
let
version = "k.${vnum}";
longVersion = "kananaskis-${vnum}";
holsubdir = "hol-${longVersion}";
kernelFlag = if experimentalKernel then "-expk" else "-stdknl";
in
2015-06-23 23:17:51 +01:00
let
polymlEnableShared = with pkgs; lib.overrideDerivation polyml (attrs: {
configureFlags = "--enable-shared";
});
in
stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
2015-06-23 23:17:51 +01:00
url = "mirror://sourceforge/hol/hol/${longVersion}/${holsubdir}.tar.gz";
sha256 = "0x2wxksr305h1lrbklf6p42lp09rbhb4rsh74g0l70sgapyiac9b";
};
2015-06-23 23:17:51 +01:00
buildInputs = [polymlEnableShared graphviz fontconfig liberation_ttf];
buildCommand = ''
2013-11-16 01:43:38 +00:00
mkdir chroot-fontconfig
cat ${fontconfig.out}/etc/fonts/fonts.conf > chroot-fontconfig/fonts.conf
2013-11-16 01:43:38 +00:00
sed -e 's@</fontconfig>@@' -i chroot-fontconfig/fonts.conf
echo "<dir>${liberation_ttf}</dir>" >> chroot-fontconfig/fonts.conf
echo "</fontconfig>" >> chroot-fontconfig/fonts.conf
export FONTCONFIG_FILE=$(pwd)/chroot-fontconfig/fonts.conf
mkdir -p "$out/src"
cd "$out/src"
tar -xzf "$src"
cd ${holsubdir}
substituteInPlace tools/Holmake/Holmake_types.sml \
--replace "\"/bin/mv\"" "\"mv\"" \
--replace "\"/bin/cp\"" "\"cp\""
2013-11-16 01:43:38 +00:00
for f in tools/buildutils.sml help/src-sml/DOT;
do
substituteInPlace $f --replace "\"/usr/bin/dot\"" "\"${graphviz}/bin/dot\""
done
#sed -ie "/compute/,999 d" tools/build-sequence # for testing
poly < tools/smart-configure.sml
2015-06-23 23:17:51 +01:00
bin/build ${kernelFlag} -symlink
mkdir -p "$out/bin"
2013-11-16 00:52:36 +00:00
ln -st $out/bin $out/src/${holsubdir}/bin/*
# ln -s $out/src/hol4.${version}/bin $out/bin
'';
2015-06-23 23:17:51 +01:00
meta = with stdenv.lib; {
description = "Interactive theorem prover based on Higher-Order Logic";
longDescription = ''
HOL4 is the latest version of the HOL interactive proof
assistant for higher order logic: a programming environment in
which theorems can be proved and proof tools
implemented. Built-in decision procedures and theorem provers
can automatically establish many simple theorems (users may have
to prove the hard theorems themselves!) An oracle mechanism
gives access to external programs such as SMT and BDD
engines. HOL4 is particularly suitable as a platform for
implementing combinations of deduction, execution and property
checking.
'';
homepage = http://hol.sourceforge.net/;
2015-06-23 23:17:51 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ mudri ];
platforms = with platforms; linux;
2017-03-14 14:36:06 +00:00
broken = true;
};
}