2008-12-20 01:20:35 +00:00
|
|
|
args: with args;
|
|
|
|
let edf = composableDerivation.edf;
|
|
|
|
name = "gxemul-0.4.6"; in
|
2009-03-06 23:21:28 +00:00
|
|
|
composableDerivation.composableDerivation {} {
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
inherit name;
|
|
|
|
flags = {
|
|
|
|
doc = { installPhase = "ensureDir \$out/share/${name}; cp -r doc \$out/share/${name};"; implies = "man"; };
|
|
|
|
demos = { installPhase = "ensureDir \$out/share/${name}; cp -r demos \$out/share/${name};"; };
|
|
|
|
man = { installPhase = "cp -r ./man \$out/;";};
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
cfg = {
|
|
|
|
docSupport = true;
|
|
|
|
demosSupport = true;
|
|
|
|
manSupport = true;
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
installPhase = "ensureDir \$out/bin; cp gxemul \$out/bin;";
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://gavare.se/gxemul/src/gxemul-0.4.6.tar.gz;
|
|
|
|
sha256 = "0hf3gi6hfd2qr5090zimfiddcjgank2q6m7dfsr81wwpxfbhb2z3";
|
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
configurePhase="./configure";
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
meta = {
|
|
|
|
license = "BSD";
|
|
|
|
description = "A Machine Emulator, Mainly emulates MIPS, but supports other CPU type";
|
|
|
|
homepage = http://gavare.se/gxemul/;
|
2007-09-03 13:10:57 +01:00
|
|
|
};
|
2009-03-06 23:21:28 +00:00
|
|
|
|
|
|
|
mergeAttrBy = { installPhase = a : b : "${a}\n${b}"; };
|
2007-09-03 13:10:57 +01:00
|
|
|
}
|