3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/logic/leo3/binary.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
884 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{lib, stdenv, fetchurl, openjdk, runtimeShell}:
2019-01-27 00:56:56 +00:00
stdenv.mkDerivation rec {
pname = "leo3";
version = "1.2";
2021-07-14 15:38:38 +01:00
src = fetchurl {
2019-01-27 00:56:56 +00:00
url = "https://github.com/leoprover/Leo-III/releases/download/v${version}/leo3.jar";
sha256 = "1lgwxbr1rnk72rnvc8raq5i1q71ckhn998pwd9xk6zf27wlzijk7";
};
2021-07-14 15:38:38 +01:00
dontUnpack = true;
2019-01-27 00:56:56 +00:00
installPhase = ''
mkdir -p "$out"/{bin,lib/java/leo3}
2021-07-14 15:38:38 +01:00
cp "${src}" "$out/lib/java/leo3/leo3.jar"
echo "#!${runtimeShell}" > "$out/bin/leo3"
2020-09-19 14:05:02 +01:00
echo "'${openjdk}/bin/java' -jar '$out/lib/java/leo3/leo3.jar' \"\$@\"" >> "$out/bin/leo3"
2019-01-27 00:56:56 +00:00
chmod a+x "$out/bin/leo3"
'';
2021-07-14 15:38:38 +01:00
meta = with lib; {
2019-01-27 00:56:56 +00:00
description = "An automated theorem prover for classical higher-order logic with choice";
2021-07-14 15:38:38 +01:00
license = licenses.bsd3;
maintainers = [maintainers.raskin];
platforms = platforms.linux;
2019-01-27 00:56:56 +00:00
homepage = "https://page.mi.fu-berlin.de/lex/leo3/";
};
}