2021-06-29 01:39:37 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, libX11
|
|
|
|
}:
|
2010-07-28 20:01:17 +02:00
|
|
|
|
2017-01-27 16:26:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gxemul";
|
2021-06-29 01:39:37 +02:00
|
|
|
version = "0.7.0";
|
2015-04-11 20:33:21 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-29 01:39:37 +02:00
|
|
|
url = "http://gavare.se/gxemul/src/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-ecRDfG+MqQT0bTOsNgYqZf3PSpKiSEeOQIqxEpXPjoM=";
|
2015-04-11 20:33:21 +02:00
|
|
|
};
|
|
|
|
|
2021-06-29 01:39:37 +02:00
|
|
|
buildInputs = [
|
|
|
|
libX11
|
|
|
|
];
|
2015-04-11 20:33:21 +02:00
|
|
|
|
2021-06-29 01:39:37 +02:00
|
|
|
patches = [
|
|
|
|
# Fix compilation; remove when next release arrives
|
|
|
|
./0001-fix-attributes.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
dontAddPrefix = true;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export PREFIX=${placeholder "out"}
|
2017-01-27 16:26:41 +01:00
|
|
|
'';
|
2007-09-03 14:10:57 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-08-10 15:18:46 +02:00
|
|
|
homepage = "http://gavare.se/gxemul/";
|
2015-04-11 20:33:21 +02: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 01:39:37 +02: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 20:33:21 +02:00
|
|
|
'';
|
2020-08-10 15:18:46 +02:00
|
|
|
license = licenses.bsd3;
|
2021-06-29 01:39:37 +02:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = platforms.unix;
|
2007-09-03 14:10:57 +02:00
|
|
|
};
|
|
|
|
}
|