Merge pull request #38013 from LnL7/darwin-zhf

disable broken packages on darwin
This commit is contained in:
Daiderd Jordan
2018-04-05 21:33:35 +02:00
committed by GitHub
26 changed files with 30 additions and 30 deletions

View File

@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = http://www.dlib.net;
license = licenses.boost;
maintainers = with maintainers; [ christopherpoole ];
platforms = platforms.all;
platforms = platforms.linux;
};
}

View File

@@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Library for interacting with smart card devices";
license = licenses.gpl3;
platforms = platforms.all;
platforms = platforms.linux;
};
}

View File

@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
description = "C++ interface for GStreamer";
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
license = licenses.lgpl21Plus;
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};

View File

@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
};
meta = {
meta = with stdenv.lib; {
homepage = http://herqq.org;
description = "A software library for building UPnP devices and control points";
inherit (qt5.qtbase.meta) platforms;
platforms = platforms.linux;
maintainers = [ ];
};
}

View File

@@ -32,7 +32,7 @@ stdenv.mkDerivation rec
LOG4CPLUS_LIB=
BLOSC_INCLUDE_DIR=${c-blosc}/include/
BLOSC_LIB_DIR=${c-blosc}/lib/
'';
'';
installFlags = ''DESTDIR=$(out)'';
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec
description = "An open framework for voxel";
homepage = "http://www.openvdb.org";
maintainers = [ maintainers.guibou ];
platforms = platforms.all;
platforms = platforms.linux;
license = licenses.mpl20;
};
}

View File

@@ -22,6 +22,6 @@ stdenv.mkDerivation {
homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}

View File

@@ -137,7 +137,7 @@ stdenv.mkDerivation rec {
algorithms. You can bring your creations to scale using the power of GPUs in the
cloud or to the masses on mobile with Caffe2's cross-platform libraries.
'';
platforms = with stdenv.lib.platforms; linux ++ darwin;
platforms = with stdenv.lib.platforms; linux;
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ yuriaisaka ];
};