tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hercules: refactor
AndersonTorres
4 years ago
cecc4e40
b3c62405
+11
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
emulators
hercules
default.nix
+11
-2
pkgs/applications/emulators/hercules/default.nix
···
1
-
{ lib, stdenv, fetchurl }:
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "hercules";
···
10
};
11
12
meta = with lib; {
0
13
description = "IBM mainframe emulator";
14
-
homepage = "http://www.hercules-390.eu";
0
0
0
0
0
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
};