2017-01-27 16:26:41 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2010-07-28 20:01:17 +02:00
|
|
|
|
2017-01-27 16:26:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gxemul-${version}";
|
|
|
|
version = "0.6.0.1";
|
2015-04-11 20:33:21 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-14 20:01:28 +01:00
|
|
|
url = "http://gxemul.sourceforge.net/src/${name}.tar.gz";
|
2015-04-11 20:33:21 +02:00
|
|
|
sha256 = "1afd9l0igyv7qgc0pn3rkdgrl5d0ywlyib0qhg4li23zilyq5407";
|
|
|
|
};
|
|
|
|
|
|
|
|
configurePhase = "./configure";
|
|
|
|
|
2017-01-27 16:26:41 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin;
|
|
|
|
mkdir -p $out/share/${name};
|
|
|
|
cp gxemul $out/bin;
|
|
|
|
cp -r doc $out/share/${name};
|
|
|
|
cp -r demos $out/share/${name};
|
|
|
|
cp -r ./man $out/;
|
|
|
|
'';
|
2007-09-03 14:10:57 +02:00
|
|
|
|
2009-03-07 00:21:28 +01:00
|
|
|
meta = {
|
2014-12-21 00:00:35 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
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
|
|
|
|
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.
|
|
|
|
'';
|
2014-12-21 00:00:35 +01:00
|
|
|
homepage = http://gxemul.sourceforge.net/;
|
2007-09-03 14:10:57 +02:00
|
|
|
};
|
|
|
|
}
|