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

19 lines
453 B
Nix
Raw Normal View History

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