Merge pull request #24760 from matthewbauer/linux-only-pkgs
Mark linux-only pkgs
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.lgpl2;
|
||||
homepage = https://01.org/linux-nfc;
|
||||
maintainers = with maintainers; [ tstrobel ];
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -62,8 +62,8 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
||||
meta = {
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = http://linux.techass.com/projects/xdb/;
|
||||
description = "C++ class library formerly known as XDB";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user