nixpkgs/pkgs/applications/emulators/hercules/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
735 B
Nix
Raw Normal View History

2022-02-16 05:36:48 +01:00
{ lib
, stdenv
, fetchurl
}:
2020-02-02 03:34:01 +01:00
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; {
2020-02-02 03:34:01 +01:00
homepage = "http://www.hercules-390.eu";
2022-02-16 05:36:48 +01:00
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.
'';
2020-02-02 03:34:01 +01:00
license = licenses.qpl;
2020-07-29 04:48:16 +02:00
maintainers = [ maintainers.anna328p ];
2020-02-02 03:34:01 +01:00
};
}