about summary refs log tree commit diff
path: root/pkgs/development/compilers/abcl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/abcl/default.nix')
-rw-r--r--pkgs/development/compilers/abcl/default.nix72
1 files changed, 0 insertions, 72 deletions
diff --git a/pkgs/development/compilers/abcl/default.nix b/pkgs/development/compilers/abcl/default.nix
deleted file mode 100644
index f02e77753bc5..000000000000
--- a/pkgs/development/compilers/abcl/default.nix
+++ /dev/null
@@ -1,72 +0,0 @@
-{ lib
-, stdenv
-, writeShellScriptBin
-, fetchurl
-, ant
-, jdk
-, jre
-, makeWrapper
-, stripJavaArchivesHook
-}:
-
-let
-  fakeHostname = writeShellScriptBin "hostname" ''
-    echo nix-builder.localdomain
-  '';
-in
-stdenv.mkDerivation (finalAttrs: {
-  pname = "abcl";
-  version = "1.9.2";
-
-  src = fetchurl {
-    url = "https://common-lisp.net/project/armedbear/releases/${finalAttrs.version}/abcl-src-${finalAttrs.version}.tar.gz";
-    hash = "sha256-Ti9Lj4Xi2V2V5b282foXrWExoX4vzxK8Gf+5e0i8HTg=";
-  };
-
-  # note for the future:
-  # if you use makeBinaryWrapper, you will trade bash for glibc, the closure will be slightly larger
-  nativeBuildInputs = [
-    ant
-    jdk
-    fakeHostname
-    makeWrapper
-    stripJavaArchivesHook
-  ];
-
-  buildPhase = ''
-    runHook preBuild
-
-    ant
-
-    runHook postBuild
-  '';
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p "$out"/{share/doc/abcl,lib/abcl}
-    cp -r README COPYING CHANGES examples/  "$out/share/doc/abcl/"
-    cp -r dist/*.jar contrib/ "$out/lib/abcl/"
-
-    makeWrapper ${jre}/bin/java $out/bin/abcl \
-      --add-flags "-classpath $out/lib/abcl/\*" \
-      ${lib.optionalString (lib.versionAtLeast jre.version "17")
-        # Fix for https://github.com/armedbear/abcl/issues/484
-        "--add-flags --add-opens=java.base/java.util.jar=ALL-UNNAMED \\"
-      }
-      --add-flags org.armedbear.lisp.Main
-
-    runHook postInstall
-  '';
-
-  passthru.updateScript = ./update.sh;
-
-  meta = {
-    description = "JVM-based Common Lisp implementation";
-    homepage = "https://common-lisp.net/project/armedbear/";
-    license = lib.licenses.gpl2Classpath;
-    mainProgram = "abcl";
-    maintainers = lib.teams.lisp.members;
-    platforms = lib.platforms.darwin ++ lib.platforms.linux;
-  };
-})