Merge pull request #38013 from LnL7/darwin-zhf
disable broken packages on darwin
This commit is contained in:
@@ -23,6 +23,6 @@ in stdenv.mkDerivation {
|
||||
homepage = https://github.com/wingo/fibers;
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ vyp ];
|
||||
platforms = platforms.all;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
|
||||
|
||||
@@ -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 = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user