mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
commit
43be4ebfb1
@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
license = licenses.lgpl2;
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.ardumont ];
|
||||
};
|
||||
|
||||
|
@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
|
||||
description = "AA-lib demo";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.rnhmjoj ];
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ python3Packages.pytest ];
|
||||
|
||||
doCheck = true;
|
||||
doCheck = !stdenv.isDarwin;
|
||||
checkPhase = ''
|
||||
python3 -m pytest test.py
|
||||
'';
|
||||
|
@ -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
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -7,11 +7,13 @@ appleDerivation rec {
|
||||
|
||||
# "spray" requires some files that aren't compiling correctly in xcbuild.
|
||||
# "rtadvd" seems to fail with some missing constants.
|
||||
# We disable spray and rtadvd here for now.
|
||||
# "traceroute6" and "ping6" require ipsec which doesn't build correctly
|
||||
patchPhase = ''
|
||||
substituteInPlace network_cmds.xcodeproj/project.pbxproj \
|
||||
--replace "7294F0EA0EE8BAC80052EC88 /* PBXTargetDependency */," "" \
|
||||
--replace "7216D34D0EE89FEC00AE70E4 /* PBXTargetDependency */," ""
|
||||
--replace "7216D34D0EE89FEC00AE70E4 /* PBXTargetDependency */," "" \
|
||||
--replace "72CD1D9C0EE8C47C005F825D /* PBXTargetDependency */," "" \
|
||||
--replace "7216D2C20EE89ADF00AE70E4 /* PBXTargetDependency */," ""
|
||||
'';
|
||||
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
|
@ -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
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -12283,7 +12283,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 { };
|
||||
@ -19904,7 +19906,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;
|
||||
|
Loading…
Reference in New Issue
Block a user