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
commit 1f69ca23a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 30 additions and 30 deletions

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "Simple, distraction-free writing environment"; description = "Simple, distraction-free writing environment";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ madjar ]; maintainers = with maintainers; [ madjar ];
platforms = platforms.all; platforms = platforms.linux;
homepage = https://gottcode.org/focuswriter/; homepage = https://gottcode.org/focuswriter/;
}; };
} }

View file

@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
homepage = http://gkrellm.srcbox.net; homepage = http://gkrellm.srcbox.net;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = [ ]; maintainers = [ ];
platforms = platforms.unix; platforms = platforms.linux;
}; };
} }

View file

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/johanmalm/jgmenu; homepage = https://github.com/johanmalm/jgmenu;
description = "Small X11 menu intended to be used with openbox and tint2"; description = "Small X11 menu intended to be used with openbox and tint2";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = [ maintainers.romildo ];
}; };
} }

View file

@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = http://posterazor.sourceforge.net/; homepage = http://posterazor.sourceforge.net/;
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster"; description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
maintainers = [ stdenv.lib.maintainers.madjar ]; maintainers = [ stdenv.lib.maintainers.madjar ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
}; };
} }

View file

@ -28,6 +28,6 @@ stdenv.mkDerivation {
description = "Offline RSS/Atom reader"; description = "Offline RSS/Atom reader";
license="AGPLv3+"; license="AGPLv3+";
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all; platforms = stdenv.lib.platforms.linux;
}; };
} }

View file

@ -61,7 +61,7 @@ pythonPackages.buildPythonApplication rec {
options. options.
''; '';
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = [ maintainers.romildo ];
}; };
} }

View file

@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = http://www.icewm.org/; homepage = http://www.icewm.org/;
license = licenses.lgpl2; license = licenses.lgpl2;
maintainers = [ maintainers.AndersonTorres ]; maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix; platforms = platforms.linux;
}; };
} }

View file

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
description = "Open source emoji set"; description = "Open source emoji set";
homepage = http://emojione.com/; homepage = http://emojione.com/;
license = licenses.cc-by-40; license = licenses.cc-by-40;
platforms = platforms.all; platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];
}; };
} }

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Calculator for the MATE desktop"; description = "Calculator for the MATE desktop";
homepage = http://mate-desktop.org; homepage = http://mate-desktop.org;
license = [ licenses.gpl2Plus ]; license = [ licenses.gpl2Plus ];
platforms = platforms.unix; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = [ maintainers.romildo ];
}; };
} }

View file

@ -12,18 +12,18 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ]; nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
buildInputs = [ librsvg hicolor-icon-theme ]; buildInputs = [ librsvg hicolor-icon-theme ];
postInstall = '' postInstall = ''
for theme in "$out"/share/icons/*; do for theme in "$out"/share/icons/*; do
"${gtk3.out}/bin/gtk-update-icon-cache" "$theme" "${gtk3.out}/bin/gtk-update-icon-cache" "$theme"
done done
''; '';
meta = { meta = {
description = "Icon themes from MATE"; description = "Icon themes from MATE";
homepage = http://mate-desktop.org; homepage = http://mate-desktop.org;
license = stdenv.lib.licenses.lgpl3; license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.romildo ]; maintainers = [ stdenv.lib.maintainers.romildo ];
}; };
} }

View file

@ -23,6 +23,6 @@ in stdenv.mkDerivation {
homepage = https://github.com/wingo/fibers; homepage = https://github.com/wingo/fibers;
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ]; maintainers = with maintainers; [ vyp ];
platforms = platforms.all; platforms = platforms.linux;
}; };
} }

View file

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = http://www.dlib.net; homepage = http://www.dlib.net;
license = licenses.boost; license = licenses.boost;
maintainers = with maintainers; [ christopherpoole ]; 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/; homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Library for interacting with smart card devices"; description = "Library for interacting with smart card devices";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.all; platforms = platforms.linux;
}; };
} }

View file

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

View file

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

View file

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

View file

@ -22,6 +22,6 @@ stdenv.mkDerivation {
homepage = http://diracvideo.org/; homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ]; maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ]; 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 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. 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; license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ yuriaisaka ]; maintainers = with stdenv.lib.maintainers; [ yuriaisaka ];
}; };

View file

@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
homepage = https://www.pureftpd.org; homepage = https://www.pureftpd.org;
license = licenses.isc; # with some parts covered by BSD3(?) license = licenses.isc; # with some parts covered by BSD3(?)
maintainers = [ maintainers.lethalman ]; maintainers = [ maintainers.lethalman ];
platforms = platforms.unix; platforms = platforms.linux;
}; };
} }

View file

@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
homepage = https://www.opensmtpd.org/; homepage = https://www.opensmtpd.org/;
description = "Extra plugins for the OpenSMTPD mail server"; description = "Extra plugins for the OpenSMTPD mail server";
license = licenses.isc; license = licenses.isc;
platforms = platforms.unix; platforms = platforms.linux;
maintainers = with maintainers; [ gebner ]; maintainers = with maintainers; [ gebner ];
}; };
} }

View file

@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/projects/mtx/; homepage = https://sourceforge.net/projects/mtx/;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.redvers ]; maintainers = [ stdenv.lib.maintainers.redvers ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
}; };
} }

View file

@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
description = "Console downloading program with some features for parallel connections for faster downloading"; description = "Console downloading program with some features for parallel connections for faster downloading";
homepage = http://axel.alioth.debian.org/; homepage = http://axel.alioth.debian.org/;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux;
}; };
} }

View file

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Utility to fetch time and set the system clock over HTTP"; description = "Utility to fetch time and set the system clock over HTTP";
homepage = http://www.vervest.org/htp/; homepage = http://www.vervest.org/htp/;
platforms = platforms.unix; platforms = platforms.linux;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
}; };
} }

View file

@ -32,7 +32,7 @@ stdenv.mkDerivation {
description = ''Command-line interface to IPMI-enabled devices''; description = ''Command-line interface to IPMI-enabled devices'';
license = licenses.bsd3; license = licenses.bsd3;
homepage = https://sourceforge.net/projects/ipmitool/; homepage = https://sourceforge.net/projects/ipmitool/;
platforms = platforms.unix; platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ]; maintainers = with maintainers; [ fpletz ];
}; };
} }

View file

@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
meta = { meta = {
homepage = http://skarnet.org/software/s6-rc/; homepage = http://skarnet.org/software/s6-rc/;
description = "A service manager for s6-based systems"; description = "A service manager for s6-based systems";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.isc; license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ pmahoney ]; maintainers = with stdenv.lib.maintainers; [ pmahoney ];
}; };

View file

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
homepage = http://sg.danny.cz/sg/; homepage = http://sg.danny.cz/sg/;
description = "Utilities that send SCSI commands to devices"; description = "Utilities that send SCSI commands to devices";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
maintainers = [ ]; maintainers = [ ];
}; };
} }