about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorAdrian Pistol <vifino@posteo.net>2023-11-17 00:59:58 +0100
committerAdrian Pistol <vifino@posteo.net>2023-12-09 00:27:53 +0100
commit90c3e1212c91a74bae73567a43a83e0e56a5b669 (patch)
treeda7c9da32e87c5691499c346b4ff9b625ce8ca64 /pkgs/applications/emulators
parent4fef1f7abf7fe20e567fa6b4d98e6e9424dcafbb (diff)
downloadnixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar.gz
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar.bz2
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar.lz
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar.xz
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.tar.zst
nixlib-90c3e1212c91a74bae73567a43a83e0e56a5b669.zip
hercules: 3.13 -> 4.6
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/hercules/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/applications/emulators/hercules/default.nix b/pkgs/applications/emulators/hercules/default.nix
deleted file mode 100644
index 67506d36b63c..000000000000
--- a/pkgs/applications/emulators/hercules/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-}:
-
-stdenv.mkDerivation rec {
-  pname = "hercules";
-  version = "3.13";
-
-  src = fetchurl {
-    url = "http://downloads.hercules-390.eu/${pname}-${version}.tar.gz";
-    sha256 = "0zg6rwz8ib4alibf8lygi8qn69xx8n92kbi8b3jhi1ymb32mf349";
-  };
-
-  meta = with lib; {
-    homepage = "http://www.hercules-390.eu";
-    description = "IBM mainframe emulator";
-    longDescription = ''
-      Hercules is an open source software implementation of the mainframe
-      System/370 and ESA/390 architectures, in addition to the latest 64-bit
-      z/Architecture. Hercules runs under Linux, Windows, Solaris, FreeBSD, and
-      Mac OS X.
-    '';
-    license = licenses.qpl;
-    maintainers = [ maintainers.anna328p ];
-  };
-}