gxemul: 0.6.0.1 -> 0.6.2

This commit is contained in:
IvarWithoutBones 2020-08-10 15:18:46 +02:00
parent 65539ae904
commit 0bbae9cd4f

View File

@ -2,26 +2,24 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gxemul"; pname = "gxemul";
version = "0.6.0.1"; version = "0.6.2";
src = fetchurl { src = fetchurl {
url = "http://gxemul.sourceforge.net/src/${pname}-${version}.tar.gz"; url = "http://gavare.se/gxemul/src/gxemul-${version}.tar.gz";
sha256 = "1afd9l0igyv7qgc0pn3rkdgrl5d0ywlyib0qhg4li23zilyq5407"; sha256 = "0iqmazfn7ss5n27m1a9n9nps3vzhag1phzb7qw0wgczycmwsq0x7";
}; };
configurePhase = "./configure"; configurePhase = "./configure";
installPhase = '' installPhase = ''
mkdir -p $out/bin; mkdir -p {$out/bin,$out/share/${pname}-${version}}
mkdir -p $out/share/${pname}-${version}; cp -r {doc,demos} $out/share/${pname}-${version}
cp gxemul $out/bin; cp gxemul $out/bin
cp -r doc $out/share/${pname}-${version}; cp -r ./man $out
cp -r demos $out/share/${pname}-${version};
cp -r ./man $out/;
''; '';
meta = { meta = with stdenv.lib; {
license = stdenv.lib.licenses.bsd3; homepage = "http://gavare.se/gxemul/";
description = "Gavare's experimental emulator"; description = "Gavare's experimental emulator";
longDescription = '' longDescription = ''
GXemul is a framework for full-system computer architecture GXemul is a framework for full-system computer architecture
@ -32,6 +30,6 @@ stdenv.mkDerivation rec {
and serial controllers. The emulation is working well enough to and serial controllers. The emulation is working well enough to
allow several unmodified "guest" operating systems to run. allow several unmodified "guest" operating systems to run.
''; '';
homepage = "http://gxemul.sourceforge.net/"; license = licenses.bsd3;
}; };
} }