libx86emu: make linux-only
This commit is contained in:
parent
94acb5b780
commit
04f8199e5b
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
sed -i 's|/usr/|/|g' Makefile
|
sed -i 's|/usr/|/|g' Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = "shared";
|
makeFlags = [ "shared" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
make install DESTDIR=$out/ LIBDIR=lib
|
make install DESTDIR=$out/ LIBDIR=lib
|
||||||
|
@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
homepage = https://github.com/wfeldt/libx86emu;
|
homepage = https://github.com/wfeldt/libx86emu;
|
||||||
maintainers = with maintainers; [ bobvanderlinden ];
|
maintainers = with maintainers; [ bobvanderlinden ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue