Merge pull request #24760 from matthewbauer/linux-only-pkgs

Mark linux-only pkgs
This commit is contained in:
Peter Simons
2017-04-09 14:18:10 +02:00
committed by GitHub
12 changed files with 18 additions and 18 deletions

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;
};
}

View File

@@ -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;
};
}

View File

@@ -62,8 +62,8 @@ stdenv.mkDerivation rec {
};
enableParallelBuilding = true;
meta = {
platforms = stdenv.lib.platforms.all;
platforms = stdenv.lib.platforms.linux;
};
}

View File

@@ -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 = [ ];
};
}