hercules: refactor

+11 -2
+11 -2
pkgs/applications/emulators/hercules/default.nix
··· 1 - { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 pname = "hercules"; ··· 10 }; 11 12 meta = with lib; { 13 description = "IBM mainframe emulator"; 14 - homepage = "http://www.hercules-390.eu"; 15 license = licenses.qpl; 16 maintainers = [ maintainers.anna328p ]; 17 };
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + }: 5 6 stdenv.mkDerivation rec { 7 pname = "hercules"; ··· 13 }; 14 15 meta = with lib; { 16 + homepage = "http://www.hercules-390.eu"; 17 description = "IBM mainframe emulator"; 18 + longDescription = '' 19 + Hercules is an open source software implementation of the mainframe 20 + System/370 and ESA/390 architectures, in addition to the latest 64-bit 21 + z/Architecture. Hercules runs under Linux, Windows, Solaris, FreeBSD, and 22 + Mac OS X. 23 + ''; 24 license = licenses.qpl; 25 maintainers = [ maintainers.anna328p ]; 26 };