libx86emu: make linux-only

This commit is contained in:
Matthew Bauer 2017-04-07 21:59:41 -05:00
parent 94acb5b780
commit 04f8199e5b
No known key found for this signature in database
GPG Key ID: E04D0AD9469141C3

View File

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
sed -i 's|/usr/|/|g' Makefile
'';
makeFlags = "shared";
makeFlags = [ "shared" ];
installPhase = ''
make install DESTDIR=$out/ LIBDIR=lib
@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd2;
homepage = https://github.com/wfeldt/libx86emu;
maintainers = with maintainers; [ bobvanderlinden ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}