2015-04-25 16:55:47 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2009-10-24 21:58:07 +02:00
|
|
|
|
2015-04-25 16:55:47 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libx86-${version}";
|
|
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.codon.org.uk/~mjg59/libx86/downloads/${name}.tar.gz";
|
2015-04-25 16:55:47 +02:00
|
|
|
sha256 = "0j6h6bc02c6qi0q7c1ncraz4d1hkm5936r35rfsp4x1jrc233wav";
|
|
|
|
};
|
|
|
|
patches = [./constants.patch ./non-x86.patch ];
|
2011-04-17 00:47:15 +02:00
|
|
|
|
2011-04-17 01:00:47 +02:00
|
|
|
# using BACKEND=x86emu on 64bit systems fixes:
|
|
|
|
# http://www.mail-archive.com/suspend-devel@lists.sourceforge.net/msg02355.html
|
2009-10-24 21:58:07 +02:00
|
|
|
makeFlags = [
|
2015-04-25 16:55:47 +02:00
|
|
|
"DESTDIR=$(out)"
|
2017-10-22 22:43:56 +02:00
|
|
|
] ++ stdenv.lib.optional (!stdenv.isi686) "BACKEND=x86emu";
|
2011-04-17 01:00:47 +02:00
|
|
|
|
2015-04-25 16:55:47 +02:00
|
|
|
preBuild = ''
|
2010-11-10 18:32:08 +01:00
|
|
|
sed -i lrmi.c -e 's@defined(__i386__)@(defined(__i386__) || defined(__x86_64__))@'
|
2009-10-24 21:58:07 +02:00
|
|
|
sed -e s@/usr@@ -i Makefile
|
2015-04-25 16:55:47 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-10-24 21:58:07 +02:00
|
|
|
description = "Real-mode x86 code emulator";
|
2015-04-25 16:55:47 +02:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2017-10-22 22:43:56 +02:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2015-04-25 16:55:47 +02:00
|
|
|
license = licenses.mit;
|
2009-10-24 21:58:07 +02:00
|
|
|
};
|
|
|
|
}
|