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

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

48 lines
1.2 KiB
Nix
Raw Normal View History

2021-06-29 02:39:37 +03:00
{ lib
, stdenv
, fetchurl
, libX11
}:
stdenv.mkDerivation rec {
pname = "gxemul";
2021-06-29 02:39:37 +03:00
version = "0.7.0";
2015-04-11 21:33:21 +03:00
src = fetchurl {
2021-06-29 02:39:37 +03:00
url = "http://gavare.se/gxemul/src/${pname}-${version}.tar.gz";
sha256 = "sha256-ecRDfG+MqQT0bTOsNgYqZf3PSpKiSEeOQIqxEpXPjoM=";
2015-04-11 21:33:21 +03:00
};
2021-06-29 02:39:37 +03:00
buildInputs = [
libX11
];
2015-04-11 21:33:21 +03:00
2021-06-29 02:39:37 +03:00
patches = [
# Fix compilation; remove when next release arrives
./0001-fix-attributes.patch
];
dontAddPrefix = true;
preConfigure = ''
export PREFIX=${placeholder "out"}
'';
meta = with lib; {
2020-08-10 16:18:46 +03:00
homepage = "http://gavare.se/gxemul/";
2015-04-11 21:33:21 +03:00
description = "Gavare's experimental emulator";
longDescription = ''
GXemul is a framework for full-system computer architecture
emulation. Several real machines have been implemented within the
2021-06-29 02:39:37 +03:00
framework, consisting of processors (ARM, MIPS, Motorola 88K, PowerPC, and
SuperH) and surrounding hardware components such as framebuffers,
interrupt controllers, busses, disk controllers, and serial
controllers. The emulation is working well enough to allow several
unmodified "guest" operating systems to run.
2015-04-11 21:33:21 +03:00
'';
2020-08-10 16:18:46 +03:00
license = licenses.bsd3;
2021-06-29 02:39:37 +03:00
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};
}