lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #38013 from LnL7/darwin-zhf

disable broken packages on darwin

authored by

Daiderd Jordan and committed by
GitHub
1f69ca23 9d999d32

+30 -30
+1 -1
pkgs/applications/editors/focuswriter/default.nix
··· 21 21 description = "Simple, distraction-free writing environment"; 22 22 license = licenses.gpl3Plus; 23 23 maintainers = with maintainers; [ madjar ]; 24 - platforms = platforms.all; 24 + platforms = platforms.linux; 25 25 homepage = https://gottcode.org/focuswriter/; 26 26 }; 27 27 }
+1 -1
pkgs/applications/misc/gkrellm/default.nix
··· 41 41 homepage = http://gkrellm.srcbox.net; 42 42 license = licenses.gpl3Plus; 43 43 maintainers = [ ]; 44 - platforms = platforms.unix; 44 + platforms = platforms.linux; 45 45 }; 46 46 }
+1 -1
pkgs/applications/misc/jgmenu/default.nix
··· 34 34 homepage = https://github.com/johanmalm/jgmenu; 35 35 description = "Small X11 menu intended to be used with openbox and tint2"; 36 36 license = licenses.gpl2; 37 - platforms = platforms.unix; 37 + platforms = platforms.linux; 38 38 maintainers = [ maintainers.romildo ]; 39 39 }; 40 40 }
+1 -1
pkgs/applications/misc/posterazor/default.nix
··· 32 32 homepage = http://posterazor.sourceforge.net/; 33 33 description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster"; 34 34 maintainers = [ stdenv.lib.maintainers.madjar ]; 35 - platforms = stdenv.lib.platforms.all; 35 + platforms = stdenv.lib.platforms.linux; 36 36 }; 37 37 }
+1 -1
pkgs/applications/networking/offrss/default.nix
··· 28 28 description = "Offline RSS/Atom reader"; 29 29 license="AGPLv3+"; 30 30 maintainers = with stdenv.lib.maintainers; [viric]; 31 - platforms = with stdenv.lib.platforms; all; 31 + platforms = stdenv.lib.platforms.linux; 32 32 }; 33 33 }
+1 -1
pkgs/applications/search/catfish/default.nix
··· 61 61 options. 62 62 ''; 63 63 license = licenses.gpl2Plus; 64 - platforms = platforms.unix; 64 + platforms = platforms.linux; 65 65 maintainers = [ maintainers.romildo ]; 66 66 }; 67 67 }
+1 -1
pkgs/applications/window-managers/icewm/default.nix
··· 34 34 homepage = http://www.icewm.org/; 35 35 license = licenses.lgpl2; 36 36 maintainers = [ maintainers.AndersonTorres ]; 37 - platforms = platforms.unix; 37 + platforms = platforms.linux; 38 38 }; 39 39 }
+1 -1
pkgs/data/fonts/emojione/default.nix
··· 29 29 description = "Open source emoji set"; 30 30 homepage = http://emojione.com/; 31 31 license = licenses.cc-by-40; 32 - platforms = platforms.all; 32 + platforms = platforms.linux; 33 33 maintainers = with maintainers; [ abbradar ]; 34 34 }; 35 35 }
+1 -1
pkgs/desktops/mate/mate-calc/default.nix
··· 25 25 description = "Calculator for the MATE desktop"; 26 26 homepage = http://mate-desktop.org; 27 27 license = [ licenses.gpl2Plus ]; 28 - platforms = platforms.unix; 28 + platforms = platforms.linux; 29 29 maintainers = [ maintainers.romildo ]; 30 30 }; 31 31 }
+3 -3
pkgs/desktops/mate/mate-icon-theme/default.nix
··· 12 12 nativeBuildInputs = [ pkgconfig intltool iconnamingutils ]; 13 13 14 14 buildInputs = [ librsvg hicolor-icon-theme ]; 15 - 15 + 16 16 postInstall = '' 17 17 for theme in "$out"/share/icons/*; do 18 18 "${gtk3.out}/bin/gtk-update-icon-cache" "$theme" 19 19 done 20 20 ''; 21 - 21 + 22 22 meta = { 23 23 description = "Icon themes from MATE"; 24 24 homepage = http://mate-desktop.org; 25 25 license = stdenv.lib.licenses.lgpl3; 26 - platforms = stdenv.lib.platforms.unix; 26 + platforms = stdenv.lib.platforms.linux; 27 27 maintainers = [ stdenv.lib.maintainers.romildo ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/guile-modules/guile-fibers/default.nix
··· 23 23 homepage = https://github.com/wingo/fibers; 24 24 license = licenses.lgpl3Plus; 25 25 maintainers = with maintainers; [ vyp ]; 26 - platforms = platforms.all; 26 + platforms = platforms.linux; 27 27 }; 28 28 }
+1 -1
pkgs/development/libraries/dlib/default.nix
··· 26 26 homepage = http://www.dlib.net; 27 27 license = licenses.boost; 28 28 maintainers = with maintainers; [ christopherpoole ]; 29 - platforms = platforms.all; 29 + platforms = platforms.linux; 30 30 }; 31 31 } 32 32
+1 -1
pkgs/development/libraries/globalplatform/default.nix
··· 16 16 homepage = https://sourceforge.net/p/globalplatform/wiki/Home/; 17 17 description = "Library for interacting with smart card devices"; 18 18 license = licenses.gpl3; 19 - platforms = platforms.all; 19 + platforms = platforms.linux; 20 20 }; 21 21 }
+1 -1
pkgs/development/libraries/gstreamer/gstreamermm/default.nix
··· 24 24 description = "C++ interface for GStreamer"; 25 25 homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html; 26 26 license = licenses.lgpl21Plus; 27 - platforms = platforms.unix; 27 + platforms = platforms.linux; 28 28 maintainers = with maintainers; [ romildo ]; 29 29 }; 30 30
+2 -2
pkgs/development/libraries/herqq/default.nix
··· 15 15 sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m"; 16 16 }; 17 17 18 - meta = { 18 + meta = with stdenv.lib; { 19 19 homepage = http://herqq.org; 20 20 description = "A software library for building UPnP devices and control points"; 21 - inherit (qt5.qtbase.meta) platforms; 21 + platforms = platforms.linux; 22 22 maintainers = [ ]; 23 23 }; 24 24 }
+2 -2
pkgs/development/libraries/openvdb/default.nix
··· 32 32 LOG4CPLUS_LIB= 33 33 BLOSC_INCLUDE_DIR=${c-blosc}/include/ 34 34 BLOSC_LIB_DIR=${c-blosc}/lib/ 35 - ''; 35 + ''; 36 36 37 37 installFlags = ''DESTDIR=$(out)''; 38 38 ··· 43 43 description = "An open framework for voxel"; 44 44 homepage = "http://www.openvdb.org"; 45 45 maintainers = [ maintainers.guibou ]; 46 - platforms = platforms.all; 46 + platforms = platforms.linux; 47 47 license = licenses.mpl20; 48 48 }; 49 49 }
+1 -1
pkgs/development/libraries/schroedinger/default.nix
··· 22 22 homepage = http://diracvideo.org/; 23 23 maintainers = [ maintainers.spwhitt ]; 24 24 license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ]; 25 - platforms = platforms.unix; 25 + platforms = platforms.linux; 26 26 }; 27 27 }
+1 -1
pkgs/development/libraries/science/math/caffe2/default.nix
··· 137 137 algorithms. You can bring your creations to scale using the power of GPUs in the 138 138 cloud or to the masses on mobile with Caffe2's cross-platform libraries. 139 139 ''; 140 - platforms = with stdenv.lib.platforms; linux ++ darwin; 140 + platforms = with stdenv.lib.platforms; linux; 141 141 license = stdenv.lib.licenses.asl20; 142 142 maintainers = with stdenv.lib.maintainers; [ yuriaisaka ]; 143 143 };
+1 -1
pkgs/servers/ftp/pure-ftpd/default.nix
··· 17 17 homepage = https://www.pureftpd.org; 18 18 license = licenses.isc; # with some parts covered by BSD3(?) 19 19 maintainers = [ maintainers.lethalman ]; 20 - platforms = platforms.unix; 20 + platforms = platforms.linux; 21 21 }; 22 22 }
+1 -1
pkgs/servers/mail/opensmtpd/extras.nix
··· 75 75 homepage = https://www.opensmtpd.org/; 76 76 description = "Extra plugins for the OpenSMTPD mail server"; 77 77 license = licenses.isc; 78 - platforms = platforms.unix; 78 + platforms = platforms.linux; 79 79 maintainers = with maintainers; [ gebner ]; 80 80 }; 81 81 }
+1 -1
pkgs/tools/backup/mtx/default.nix
··· 22 22 homepage = https://sourceforge.net/projects/mtx/; 23 23 license = stdenv.lib.licenses.gpl2; 24 24 maintainers = [ stdenv.lib.maintainers.redvers ]; 25 - platforms = stdenv.lib.platforms.all; 25 + platforms = stdenv.lib.platforms.linux; 26 26 }; 27 27 }
+1 -1
pkgs/tools/networking/axel/default.nix
··· 19 19 description = "Console downloading program with some features for parallel connections for faster downloading"; 20 20 homepage = http://axel.alioth.debian.org/; 21 21 maintainers = with maintainers; [ pSub ]; 22 - platforms = with platforms; linux ++ darwin; 22 + platforms = with platforms; linux; 23 23 }; 24 24 }
+1 -1
pkgs/tools/networking/htpdate/default.nix
··· 20 20 meta = with stdenv.lib; { 21 21 description = "Utility to fetch time and set the system clock over HTTP"; 22 22 homepage = http://www.vervest.org/htp/; 23 - platforms = platforms.unix; 23 + platforms = platforms.linux; 24 24 license = licenses.gpl2Plus; 25 25 }; 26 26 }
+1 -1
pkgs/tools/system/ipmitool/default.nix
··· 32 32 description = ''Command-line interface to IPMI-enabled devices''; 33 33 license = licenses.bsd3; 34 34 homepage = https://sourceforge.net/projects/ipmitool/; 35 - platforms = platforms.unix; 35 + platforms = platforms.linux; 36 36 maintainers = with maintainers; [ fpletz ]; 37 37 }; 38 38 }
+1 -1
pkgs/tools/system/s6-rc/default.nix
··· 37 37 meta = { 38 38 homepage = http://skarnet.org/software/s6-rc/; 39 39 description = "A service manager for s6-based systems"; 40 - platforms = stdenv.lib.platforms.all; 40 + platforms = stdenv.lib.platforms.linux; 41 41 license = stdenv.lib.licenses.isc; 42 42 maintainers = with stdenv.lib.maintainers; [ pmahoney ]; 43 43 };
+1 -1
pkgs/tools/system/sg3_utils/default.nix
··· 11 11 meta = { 12 12 homepage = http://sg.danny.cz/sg/; 13 13 description = "Utilities that send SCSI commands to devices"; 14 - platforms = stdenv.lib.platforms.all; 14 + platforms = stdenv.lib.platforms.linux; 15 15 maintainers = [ ]; 16 16 }; 17 17 }