about summary refs log tree commit diff
path: root/pkgs/applications/emulators/hercules/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/emulators/hercules/default.nix')
-rw-r--r--pkgs/applications/emulators/hercules/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/hercules/default.nix b/pkgs/applications/emulators/hercules/default.nix
new file mode 100644
index 0000000000000..67506d36b63c1
--- /dev/null
+++ b/pkgs/applications/emulators/hercules/default.nix
@@ -0,0 +1,27 @@
+{ 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 ];
+  };
+}