darwin: disable broken packages

This commit is contained in:
Matthew Bauer 2018-03-07 22:11:52 -06:00
parent 4ff4ef51b7
commit 54e2c28b09
10 changed files with 17 additions and 11 deletions

View file

@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
'';
license = licenses.lgpl2;
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = [ maintainers.ardumont ];
};

View file

@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
description = "AA-lib demo";
license = licenses.gpl2;
maintainers = [ maintainers.rnhmjoj ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}

View file

@ -23,6 +23,6 @@ stdenv.mkDerivation {
homepage = http://www.toastfreeware.priv.at/confclerk;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ehmry ];
inherit (qt4.meta) platforms;
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ python3Packages.pytest ];
doCheck = true;
doCheck = !stdenv.isDarwin;
checkPhase = ''
python3 -m pytest test.py
'';

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
doCheck = true;
doCheck = !stdenv.isDarwin;
checkPhase = ''
export LD_LIBRARY_PATH=$(readlink -f ./src)
CTEST_OUTPUT_ON_FAILURE=1 make test

View file

@ -54,7 +54,7 @@ stdenv.mkDerivation {
description = "GNU Compiler Collection, version ${version} for AVR microcontrollers";
homepage = http://gcc.gnu.org;
license = licenses.gpl3Plus;
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = with maintainers; [ mguentner ];
};
}

View file

@ -10,10 +10,12 @@ appleDerivation rec {
# - su ('security/pam_appl.h' file not found)
# - find (Undefined symbol '_get_date')
# - w (Undefined symbol '_res_9_init')
# - expr
substituteInPlace shell_cmds.xcodeproj/project.pbxproj \
--replace "FCBA168714A146D000AA698B /* PBXTargetDependency */," "" \
--replace "FCBA165914A146D000AA698B /* PBXTargetDependency */," "" \
--replace "FCBA169514A146D000AA698B /* PBXTargetDependency */," ""
--replace "FCBA169514A146D000AA698B /* PBXTargetDependency */," "" \
--replace "FCBA165514A146D000AA698B /* PBXTargetDependency */," ""
# disable w, test install
# get rid of permission stuff

View file

@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
description = "Fast block device synchronizing tool";
homepage = https://github.com/TargetHolding/bdsync;
license = licenses.gpl2;
platforms = platforms.all;
platforms = platforms.linux;
maintainers = with maintainers; [ jluttine ];
};

View file

@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
homepage = http://cutecom.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.bennofs ];
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -12273,7 +12273,9 @@ with pkgs;
knot-dns = callPackage ../servers/dns/knot-dns { };
knot-resolver = callPackage ../servers/dns/knot-resolver {
# TODO: vimNox after it gets fixed on Darwin or something lighter
hexdump = if stdenv.isLinux then utillinux.bin else vim/*xxd*/;
hexdump = if stdenv.isLinux then utillinux.bin
else if stdenv.isDarwin then darwin.shell_cmds
else vim/*xxd*/;
};
rdkafka = callPackage ../development/libraries/rdkafka { };
@ -19884,7 +19886,9 @@ with pkgs;
pcalc = callPackage ../applications/science/math/pcalc { };
bcal = callPackage ../applications/science/math/bcal { };
bcal = callPackage ../applications/science/math/bcal {
stdenv = gccStdenv;
};
pspp = callPackage ../applications/science/math/pspp {
inherit (gnome3) gtksourceview;