summary refs log tree commit diff
path: root/pkgs/applications/science/logic
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2022-03-01 12:11:25 +0100
committerGitHub <noreply@github.com>2022-03-01 12:11:25 +0100
commit8934eb7c91421bb1f1479a3b08da1c156ff56004 (patch)
tree546da00e1844ba56f5b65e8fe100808384dcf51a /pkgs/applications/science/logic
parent80f0dc461fc3842fab2504517229530d14dedb95 (diff)
parent75f5b1f5b287f8f34cc5442891406438d6cd6ac7 (diff)
downloadnixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar.gz
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar.bz2
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar.lz
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar.xz
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.tar.zst
nixpkgs-8934eb7c91421bb1f1479a3b08da1c156ff56004.zip
Merge pull request #157843 from jvanbruegge/isabelle_setup
isabelle: Rebuild isabelle_setup.jar
Diffstat (limited to 'pkgs/applications/science/logic')
-rw-r--r--pkgs/applications/science/logic/isabelle/default.nix24
1 files changed, 23 insertions, 1 deletions
diff --git a/pkgs/applications/science/logic/isabelle/default.nix b/pkgs/applications/science/logic/isabelle/default.nix
index 96e8da059a4..aaac288b615 100644
--- a/pkgs/applications/science/logic/isabelle/default.nix
+++ b/pkgs/applications/science/logic/isabelle/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, coreutils, nettools, java, polyml, z3, veriT, vampire, eprover-ho, rlwrap, makeDesktopItem }:
+{ lib, stdenv, fetchurl, coreutils, nettools, java, scala, polyml, z3, veriT, vampire, eprover-ho, rlwrap, perl, makeDesktopItem }:
 # nettools needed for hostname
 
 stdenv.mkDerivation rec {
@@ -77,6 +77,10 @@ stdenv.mkDerivation rec {
     substituteInPlace lib/Tools/env \
       --replace /usr/bin/env ${coreutils}/bin/env
 
+    substituteInPlace src/Tools/Setup/src/Environment.java \
+      --replace 'cmd.add("/usr/bin/env");' "" \
+      --replace 'cmd.add("bash");' "cmd.add(\"$SHELL\");"
+
     rm -r heaps
   '' + (if ! stdenv.isLinux then "" else ''
     arch=${if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64-linux" else "x86-linux"}
@@ -90,6 +94,24 @@ stdenv.mkDerivation rec {
 
   buildPhase = ''
     export HOME=$TMP # The build fails if home is not set
+    setup_name=$(basename contrib/isabelle_setup*)
+
+    #The following is adapted from https://isabelle.sketis.net/repos/isabelle/file/Isabelle2021-1/Admin/lib/Tools/build_setup
+    TARGET_DIR="contrib/$setup_name/lib"
+    rm -rf "$TARGET_DIR"
+    mkdir -p "$TARGET_DIR/isabelle/setup"
+    declare -a ARGS=("-Xlint:unchecked")
+
+    SOURCES="$(${perl}/bin/perl -e 'while (<>) { if (m/(\S+\.java)/)  { print "$1 "; } }' "src/Tools/Setup/etc/build.props")"
+    for SRC in $SOURCES
+    do
+      ARGS["''${#ARGS[@]}"]="src/Tools/Setup/$SRC"
+    done
+    ${java}/bin/javac -d "$TARGET_DIR" -classpath ${scala}/lib/scala-compiler.jar "''${ARGS[@]}"
+    ${java}/bin/jar -c -f "$TARGET_DIR/isabelle_setup.jar" -e "isabelle.setup.Setup" -C "$TARGET_DIR" isabelle
+    rm -rf "$TARGET_DIR/isabelle"
+
+    # Prebuild HOL Session
     bin/isabelle build -v -o system_heaps -b HOL
   '';