about summary refs log tree commit diff
path: root/pkgs/development/compilers/abcl
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/abcl')
-rw-r--r--pkgs/development/compilers/abcl/default.nix72
-rwxr-xr-xpkgs/development/compilers/abcl/update.sh5
2 files changed, 0 insertions, 77 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;
-  };
-})
diff --git a/pkgs/development/compilers/abcl/update.sh b/pkgs/development/compilers/abcl/update.sh
deleted file mode 100755
index a8b38e776f25..000000000000
--- a/pkgs/development/compilers/abcl/update.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/env nix-shell
-#!nix-shell -i bash -p nix-update subversion
-
-new_version=$(svn ls https://abcl.org/svn/tags | tail -1 | tr -d /)
-nix-update abcl --version "$new_version"