summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:36:48 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:40:00 -0300
commitcecc4e406d748857bd64a51c43570d5360300f1d (patch)
treedc60205f33f03c81c4dfaf65d572df2ad244ae07
parentb3c62405d4e67f3ad748b374f6ef60326a4ce448 (diff)
downloadnixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar.gz
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar.bz2
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar.lz
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar.xz
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.tar.zst
nixpkgs-cecc4e406d748857bd64a51c43570d5360300f1d.zip
hercules: refactor
-rw-r--r--pkgs/applications/emulators/hercules/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/applications/emulators/hercules/default.nix b/pkgs/applications/emulators/hercules/default.nix
index f33055baacb..67506d36b63 100644
--- a/pkgs/applications/emulators/hercules/default.nix
+++ b/pkgs/applications/emulators/hercules/default.nix
@@ -1,4 +1,7 @@
-{ lib, stdenv, fetchurl }:
+{ lib
+, stdenv
+, fetchurl
+}:
 
 stdenv.mkDerivation rec {
   pname = "hercules";
@@ -10,8 +13,14 @@ stdenv.mkDerivation rec {
   };
 
   meta = with lib; {
-    description = "IBM mainframe emulator";
     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 ];
   };