···4848 license = with licenses; [ mit ];
4949 maintainers = with maintainers; [ shamilton ];
5050 platforms = platforms.unix;
5151+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
5252+ broken = stdenv.isDarwin;
5153 };
5254}
···2323 maintainers = with maintainers; [ qyliss ];
2424 license = licenses.gpl3Plus;
2525 platforms = platforms.unix;
2626+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
2727+ broken = stdenv.isDarwin;
2628 };
2729}
···5757 runHook postConfigure
5858 '';
59596060+ # Only affects unused scripts in $out/share/element/electron/scripts. Also
6161+ # breaks because there are some `node`-scripts with a `npx`-shebang and
6262+ # this shouldn't be in the closure just for unused scripts.
6363+ dontPatchShebangs = true;
6464+6065 buildPhase = ''
6166 runHook preBuild
6267
···4949 license = licenses.lgpl21Only;
5050 maintainers = with maintainers; [ ];
5151 platforms = platforms.unix;
5252+ # never built on aarch64-darwin since first introduction in nixpkgs
5353+ broken = stdenv.isDarwin && stdenv.isAarch64;
5254 };
5355}
···6868 license = lib.licenses.gpl2;
6969 platforms = with lib.platforms; linux ++ darwin;
7070 maintainers = [ lib.maintainers.cge ];
7171+ # never built on aarch64-darwin since first introduction in nixpkgs
7272+ broken = stdenv.isDarwin && stdenv.isAarch64;
7173 };
7274}
···6363 license = with licenses; gpl3Plus;
6464 maintainers = with maintainers; [ AndersonTorres ];
6565 platforms = with platforms; unix;
6666+ # never built on aarch64-darwin since first introduction in nixpkgs
6767+ broken = stdenv.isDarwin && stdenv.isAarch64;
6668 };
6769}
···9494 larger LLVM Project, such as the Clang expression parser and LLVM
9595 disassembler.
9696 '';
9797+ # never built on aarch64-darwin since first introduction in nixpkgs
9898+ broken = stdenv.isDarwin && stdenv.isAarch64;
9799 };
98100} // lib.optionalAttrs enableManpages {
99101 pname = "lldb-manpages";
···8282 larger LLVM Project, such as the Clang expression parser and LLVM
8383 disassembler.
8484 '';
8585+ # never built on aarch64-darwin since first introduction in nixpkgs
8686+ broken = stdenv.isDarwin && stdenv.isAarch64;
8587 };
8688}
···8282 larger LLVM Project, such as the Clang expression parser and LLVM
8383 disassembler.
8484 '';
8585+ # never built on aarch64-darwin since first introduction in nixpkgs
8686+ broken = stdenv.isDarwin && stdenv.isAarch64;
8587 };
8688}
···8585 larger LLVM Project, such as the Clang expression parser and LLVM
8686 disassembler.
8787 '';
8888+ # never built on aarch64-darwin since first introduction in nixpkgs
8989+ broken = stdenv.isDarwin && stdenv.isAarch64;
8890 };
8991}
+2
pkgs/development/compilers/polyml/5.7.nix
···4444 license = licenses.lgpl21;
4545 platforms = with platforms; (linux ++ darwin);
4646 maintainers = with maintainers; [ maggesi ];
4747+ # never built on aarch64-darwin since first introduction in nixpkgs
4848+ broken = stdenv.isDarwin && stdenv.isAarch64;
4749 };
4850}
+2
pkgs/development/compilers/smlnj/default.nix
···8888 platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
8989 maintainers = with maintainers; [ thoughtpolice ];
9090 mainProgram = "sml";
9191+ # never built on x86_64-darwin since first introduction in nixpkgs
9292+ broken = stdenv.isDarwin && stdenv.isx86_64;
9193 };
9294}
+2
pkgs/development/compilers/terra/default.nix
···8989 platforms = platforms.all;
9090 maintainers = with maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ];
9191 license = licenses.mit;
9292+ # never built on aarch64-darwin since first introduction in nixpkgs
9393+ broken = stdenv.isDarwin && stdenv.isAarch64;
9294 };
9395}
+2
pkgs/development/interpreters/bic/default.nix
···3838 homepage = "https://github.com/hexagonal-sun/bic";
3939 platforms = platforms.unix;
4040 maintainers = with maintainers; [ hexagonal-sun ];
4141+ # never built on aarch64-darwin since first introduction in nixpkgs
4242+ broken = stdenv.isDarwin && stdenv.isAarch64;
4143 };
4244}
+2
pkgs/development/libraries/classads/default.nix
···2020 description = "The Classified Advertisements library provides a generic means for matching resources";
2121 license = lib.licenses.asl20;
2222 platforms = lib.platforms.unix;
2323+ # never built on aarch64-darwin since first introduction in nixpkgs
2424+ broken = stdenv.isDarwin && stdenv.isAarch64;
2325 };
2426}
+2
pkgs/development/libraries/enchant/1.x.nix
···1818 platforms = platforms.unix;
1919 badPlatforms = [ "x86_64-darwin" ];
2020 license = licenses.lgpl21;
2121+ # never built on aarch64-darwin since first introduction in nixpkgs
2222+ broken = stdenv.isDarwin && stdenv.isAarch64;
2123 };
2224}
···1313 license = lib.licenses.gpl2;
1414 maintainers = [ ];
1515 platforms = lib.platforms.unix;
1616+ # never built on aarch64-darwin since first introduction in nixpkgs
1717+ broken = stdenv.isDarwin && stdenv.isAarch64;
1618 };
1719}
+2
pkgs/development/libraries/gcc/libstdc++/5.nix
···113113 description = "GNU Compiler Collection, version ${version} -- C++ standard library";
114114 platforms = platforms.linux;
115115 maintainers = with maintainers; [ abbradar ];
116116+ # never built on aarch64-linux since first introduction in nixpkgs
117117+ broken = stdenv.isLinux && stdenv.isAarch64;
116118 };
117119}
+2
pkgs/development/libraries/gmp/4.3.2.nix
···7171 maintainers = [ ];
7272 platforms = lib.platforms.all;
7373 badPlatforms = [ "x86_64-darwin" ];
7474+ # never built on aarch64-darwin, aarch64-linux since first introduction in nixpkgs
7575+ broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
7476 };
7577};
7678 in self
+2
pkgs/development/libraries/gmp/5.1.x.nix
···80808181 platforms = platforms.all;
8282 badPlatforms = [ "x86_64-darwin" ];
8383+ # never built on aarch64-darwin since first introduction in nixpkgs
8484+ broken = stdenv.isDarwin && stdenv.isAarch64;
8385 };
8486};
8587 in self
+2
pkgs/development/libraries/htmlcxx/default.nix
···2020 description = "A simple non-validating css1 and html parser for C++";
2121 license = licenses.lgpl2;
2222 platforms = platforms.all;
2323+ # never built on aarch64-darwin since first introduction in nixpkgs
2424+ broken = stdenv.isDarwin && stdenv.isAarch64;
2325 };
2426}
+2
pkgs/development/libraries/imlib/default.nix
···5858 description = "An image loading and rendering library for X11";
5959 platforms = platforms.unix;
6060 license = with licenses; [ gpl2Only lgpl2Only ];
6161+ # never built on aarch64-darwin since first introduction in nixpkgs
6262+ broken = stdenv.isDarwin && stdenv.isAarch64;
6163 };
6264}
+2
pkgs/development/libraries/libLAS/default.nix
···3131 license = lib.licenses.bsd3;
3232 platforms = lib.platforms.unix;
3333 maintainers = [ lib.maintainers.michelk ];
3434+ # never built on aarch64-darwin since first introduction in nixpkgs
3535+ broken = stdenv.isDarwin && stdenv.isAarch64;
3436 };
3537}
+2
pkgs/development/libraries/libbde/default.nix
···2525 license = licenses.lgpl3;
2626 maintainers = with maintainers; [ eliasp ];
2727 platforms = platforms.all;
2828+ # never built on aarch64-darwin since first introduction in nixpkgs
2929+ broken = stdenv.isDarwin && stdenv.isAarch64;
2830 };
2931}
+2
pkgs/development/libraries/libffcall/default.nix
···2424 homepage = "https://www.gnu.org/software/libffcall/";
2525 license = licenses.gpl2Plus;
2626 platforms = platforms.unix;
2727+ # never built on aarch64-darwin since first introduction in nixpkgs
2828+ broken = stdenv.isDarwin && stdenv.isAarch64;
2729 };
2830}
+2
pkgs/development/libraries/libffi/3.3.nix
···6060 license = licenses.mit;
6161 maintainers = with maintainers; [ armeenm ];
6262 platforms = platforms.all;
6363+ # never built on aarch64-darwin since first introduction in nixpkgs
6464+ broken = stdenv.isDarwin && stdenv.isAarch64;
6365 };
6466}
···2121 homepage = "https://github.com/nfc-tools/libfreefare";
2222 maintainers = with maintainers; [bobvanderlinden];
2323 platforms = platforms.unix;
2424+ # never built on aarch64-darwin since first introduction in nixpkgs
2525+ broken = stdenv.isDarwin && stdenv.isAarch64;
2426 };
2527}
···6060 license = licenses.gpl2Plus;
6161 maintainers = with maintainers; [ siraben luc65r ];
6262 platforms = with platforms; linux ++ darwin;
6363+ # never built on aarch64-darwin since first introduction in nixpkgs
6464+ broken = stdenv.isDarwin && stdenv.isAarch64;
6365 };
6466}
+2
pkgs/development/libraries/libtommath/default.nix
···3131 description = "A library for integer-based number-theoretic applications";
3232 license = with licenses; [ publicDomain wtfpl ];
3333 platforms = platforms.unix;
3434+ # never built on aarch64-darwin since first introduction in nixpkgs
3535+ broken = stdenv.isDarwin && stdenv.isAarch64;
3436 };
3537}
+2
pkgs/development/libraries/openslp/default.nix
···3030 maintainers = with maintainers; [ ttuegel ];
3131 license = licenses.bsd3;
3232 platforms = platforms.all;
3333+ # never built on aarch64-darwin since first introduction in nixpkgs
3434+ broken = stdenv.isDarwin && stdenv.isAarch64;
3335 };
34363537}
···1919 description = "Implementation of calculation of the hadron jet cross sections";
2020 platforms = lib.platforms.unix;
2121 maintainers = with lib.maintainers; [ veprbl ];
2222+ # never built on aarch64-darwin since first introduction in nixpkgs
2323+ broken = stdenv.isDarwin && stdenv.isAarch64;
2224 };
2325}
···2525 license = licenses.gpl3Only;
2626 maintainers = with maintainers; [ veprbl ];
2727 platforms = platforms.unix;
2828+ # never built on aarch64-darwin since first introduction in nixpkgs
2929+ broken = stdenv.isDarwin && stdenv.isAarch64;
2830 };
2931}
+2
pkgs/development/libraries/rlottie/default.nix
···3434 license = with licenses; [ mit bsd3 mpl11 ftl ];
3535 platforms = platforms.all;
3636 maintainers = with maintainers; [ CRTified ];
3737+ # never built on aarch64-darwin since first introduction in nixpkgs
3838+ broken = stdenv.isDarwin && stdenv.isAarch64;
3739 };
3840}
···4747 license = licenses.epl10;
4848 platforms = platforms.unix;
4949 maintainers = with maintainers; [ aanderse ];
5050+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
5151+ broken = stdenv.isDarwin;
5052 };
5153}
···2626 license = licenses.gpl3;
2727 maintainers = with maintainers; [];
2828 platforms = with platforms; unix;
2929+ # never built on aarch64-darwin since first introduction in nixpkgs
3030+ broken = stdenv.isDarwin && stdenv.isAarch64;
2931 };
3032}
···173173 license = licenses.asl20;
174174 maintainers = lib.teams.bazel.members;
175175 inherit platforms;
176176+ # never built on aarch64-darwin since first introduction in nixpkgs
177177+ broken = stdenv.isDarwin && stdenv.isAarch64;
176178 };
177179178180 inherit src;
+2
pkgs/development/tools/explain/default.nix
···4242 license = licenses.lgpl3Plus;
4343 maintainers = with maintainers; [ McSinyx ];
4444 platforms = platforms.unix;
4545+ # never built on aarch64-linux since first introduction in nixpkgs
4646+ broken = stdenv.isLinux && stdenv.isAarch64;
4547 };
4648}
+2
pkgs/development/tools/glslviewer/default.nix
···4949 license = licenses.bsd3;
5050 platforms = platforms.linux ++ platforms.darwin;
5151 maintainers = [ maintainers.hodapp ];
5252+ # never built on aarch64-darwin since first introduction in nixpkgs
5353+ broken = stdenv.isDarwin && stdenv.isAarch64;
5254 };
5355}
+2
pkgs/development/tools/lightningcss/default.nix
···3636 changelog = "https://github.com/parcel-bundler/lightningcss/releases/tag/v${version}";
3737 license = licenses.mpl20;
3838 maintainers = with maintainers; [ toastal ];
3939+ # never built on aarch64-linux since first introduction in nixpkgs
4040+ broken = stdenv.isLinux && stdenv.isAarch64;
3941 };
4042}
+2
pkgs/development/tools/misc/pwndbg/default.nix
···4949 license = licenses.mit;
5050 platforms = platforms.all;
5151 maintainers = with maintainers; [ mic92 ];
5252+ # never built on aarch64-darwin since first introduction in nixpkgs
5353+ broken = stdenv.isDarwin && stdenv.isAarch64;
5254 };
5355}
+2
pkgs/development/tools/rojo/default.nix
···3838 changelog = "https://github.com/rojo-rbx/rojo/raw/v${version}/CHANGELOG.md";
3939 license = licenses.mpl20;
4040 maintainers = with maintainers; [ wackbyte ];
4141+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
4242+ broken = stdenv.isDarwin;
4143 };
4244}
+2
pkgs/games/opendungeons/default.nix
···2929 homepage = "https://opendungeons.github.io";
3030 license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ];
3131 platforms = platforms.linux;
3232+ # never built on aarch64-linux since first introduction in nixpkgs
3333+ broken = stdenv.isLinux && stdenv.isAarch64;
3234 };
3335}
+2-1
pkgs/games/openspades/default.nix
···5858 NIX_CFLAGS_LINK = "-lopenal";
59596060 meta = with lib; {
6161- broken = stdenv.isDarwin;
6261 description = "A compatible client of Ace of Spades 0.75";
6362 homepage = "https://github.com/yvt/openspades/";
6463 license = licenses.gpl3;
6564 platforms = platforms.all;
6665 maintainers = with maintainers; [ abbradar azahi ];
6666+ # never built on aarch64-linux since first introduction in nixpkgs
6767+ broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64);
6768 };
6869}
+2
pkgs/games/quake3/quake3e/default.nix
···4848 platforms = platforms.linux;
4949 maintainers = with maintainers; [ pmiddend ];
5050 badPlatforms = [ platforms.aarch64 ];
5151+ # never built on aarch64-linux since first introduction in nixpkgs
5252+ broken = stdenv.isLinux && stdenv.isAarch64;
5153 };
5254}
+2
pkgs/games/quantumminigolf/default.nix
···3434 license = licenses.gpl2;
3535 maintainers = with maintainers; [ raskin ];
3636 platforms = platforms.linux;
3737+ # never built on aarch64-linux since first introduction in nixpkgs
3838+ broken = stdenv.isLinux && stdenv.isAarch64;
3739 };
3840}
+2
pkgs/games/scummvm/default.nix
···4747 license = licenses.gpl2;
4848 maintainers = [ maintainers.peterhoeg ];
4949 platforms = platforms.unix;
5050+ # never built on aarch64-darwin since first introduction in nixpkgs
5151+ broken = stdenv.isDarwin && stdenv.isAarch64;
5052 };
5153}
+2
pkgs/games/solicurses/default.nix
···3333 maintainers = with maintainers; [ laalsaas ];
3434 license = licenses.gpl3Only;
3535 inherit (ncurses.meta) platforms;
3636+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
3737+ broken = stdenv.isDarwin;
3638 };
3739}
+2
pkgs/games/stepmania/default.nix
···4242 platforms = platforms.linux;
4343 license = licenses.mit; # expat version
4444 maintainers = [ ];
4545+ # never built on aarch64-linux since first introduction in nixpkgs
4646+ broken = stdenv.isLinux && stdenv.isAarch64;
4547 };
4648}
+2
pkgs/games/xskat/default.nix
···2626 license = licenses.free;
2727 longDescription = "Play the german card game Skat against the AI or over IRC.";
2828 homepage = "http://www.xskat.de/";
2929+ # never built on aarch64-darwin since first introduction in nixpkgs
3030+ broken = stdenv.isDarwin && stdenv.isAarch64;
2931 };
3032}
+2
pkgs/games/xsok/default.nix
···4242 maintainers = [lib.maintainers.raskin];
4343 platforms = lib.platforms.unix;
4444 homepage = "https://tracker.debian.org/pkg/xsok";
4545+ # never built on aarch64-darwin since first introduction in nixpkgs
4646+ broken = stdenv.isDarwin && stdenv.isAarch64;
4547 };
4648}
+2
pkgs/os-specific/darwin/noah/default.nix
···2020 license = [ licenses.mit licenses.gpl2 ];
2121 maintainers = [ maintainers.marsam ];
2222 platforms = platforms.darwin;
2323+ # never built on aarch64-darwin since first introduction in nixpkgs
2424+ broken = stdenv.isDarwin && stdenv.isAarch64;
2325 };
2426}
+2
pkgs/os-specific/linux/lsirec/default.nix
···3232 platforms = platforms.linux;
3333 license = licenses.bsd2;
3434 maintainers = with maintainers; [ Luflosi ];
3535+ # never built on aarch64-linux since first introduction in nixpkgs
3636+ broken = stdenv.isLinux && stdenv.isAarch64;
3537 };
3638}
+2
pkgs/os-specific/linux/nsncd/default.nix
···2626 homepage = "https://github.com/twosigma/nsncd";
2727 license = licenses.asl20;
2828 maintainers = with maintainers; [ flokli ninjatrappeur ];
2929+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
3030+ broken = stdenv.isDarwin;
2931 };
3032}
+2
pkgs/servers/isso/default.nix
···6363 homepage = "https://posativ.org/isso/";
6464 license = licenses.mit;
6565 maintainers = with maintainers; [ fgaz ];
6666+ # never built on aarch64-darwin since first introduction in nixpkgs
6767+ broken = stdenv.isDarwin && stdenv.isAarch64;
6668 };
6769}
···5454 keyboard, multimedia keys and buttons for starting applications. Even
5555 powering on the computer via Wake On Lan is supported.
5656 '';
5757+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
5858+ broken = stdenv.isDarwin;
5759 };
5860}
+2
pkgs/servers/monitoring/lcdproc/default.nix
···7474 license = licenses.gpl2;
7575 maintainers = with maintainers; [ peterhoeg ];
7676 platforms = platforms.unix;
7777+ # never built on aarch64-darwin since first introduction in nixpkgs
7878+ broken = stdenv.isDarwin && stdenv.isAarch64;
7779 };
7880}
+2
pkgs/servers/mx-puppet-discord/default.nix
···4646 homepage = "https://gitlab.com/mx-puppet/discord/mx-puppet-discord";
4747 maintainers = with maintainers; [ expipiplus1 ];
4848 platforms = platforms.unix;
4949+ # never built on aarch64-darwin since first introduction in nixpkgs
5050+ broken = stdenv.isDarwin && stdenv.isAarch64;
4951 };
5052}
+2
pkgs/servers/search/qdrant/default.nix
···3737 homepage = "https://github.com/qdrant/qdrant";
3838 license = licenses.asl20;
3939 maintainers = with maintainers; [ dit7ya ];
4040+ # never built on x86_64-darwin since first introduction in nixpkgs
4141+ broken = stdenv.isDarwin && stdenv.isx86_64;
4042 };
4143}
+2
pkgs/tools/archivers/gbl/default.nix
···4747 homepage = "https://github.com/dac-gmbh/gbl";
4848 license = licenses.mit;
4949 maintainers = [ maintainers.raboof ];
5050+ # never built on aarch64-darwin since first introduction in nixpkgs
5151+ broken = stdenv.isDarwin && stdenv.isAarch64;
5052 };
5153}
+2
pkgs/tools/compression/imagelol/default.nix
···3333 license = licenses.mit;
3434 maintainers = [ maintainers.ivar ];
3535 platforms = platforms.unix;
3636+ # never built on aarch64-darwin since first introduction in nixpkgs
3737+ broken = stdenv.isDarwin && stdenv.isAarch64;
3638 };
3739}
+2
pkgs/tools/filesystems/securefs/default.nix
···4242 '';
4343 license = with licenses; [ bsd2 mit ];
4444 platforms = platforms.unix;
4545+ # never built on aarch64-darwin since first introduction in nixpkgs
4646+ broken = stdenv.isDarwin && stdenv.isAarch64;
4547 };
4648}
+2
pkgs/tools/filesystems/xtreemfs/default.nix
···9090 maintainers = with lib.maintainers; [ raskin matejc ];
9191 platforms = lib.platforms.linux;
9292 license = lib.licenses.bsd3;
9393+ # never built on aarch64-linux since first introduction in nixpkgs
9494+ broken = stdenv.isLinux && stdenv.isAarch64;
9395 };
9496}
···3434 license = licenses.mit;
3535 maintainers = with maintainers; [ astro ];
3636 platforms = lib.platforms.unix;
3737+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
3838+ broken = stdenv.isDarwin;
3739 };
3840}
+4-4
pkgs/tools/graphics/sic-image-cli/default.nix
···2233rustPlatform.buildRustPackage rec {
44 pname = "sic-image-cli";
55- version = "0.20.0";
55+ version = "0.20.1";
6677 src = fetchFromGitHub {
88 owner = "foresterre";
99 repo = "sic";
1010 rev = "v${version}";
1111- sha256 = "sha256-KoDX/d457dTHsmz8VTPhfF2MiB5vZzLFKG46/L351SQ=";
1111+ sha256 = "sha256-VSBOmE5xdAS15z/KgQ54KfxM2/plEKtpmjOB+T9kLt4=";
1212 };
13131414- cargoSha256 = "sha256-sKEZhJivLbos0KLzPCEnGgTCgbyWSIOvHMhoC1IaJRo=";
1414+ cargoSha256 = "sha256-hkK22c7Z/Wj8ebQkjcdK7H6dms6MI9Sm9yrpqfCCxGA=";
15151616 nativeBuildInputs = [ installShellFiles nasm ];
1717···26262727 meta = with lib; {
2828 description = "Accessible image processing and conversion from the terminal";
2929- homepage = "https://github.com/foresterre/sic-image-cli";
2929+ homepage = "https://github.com/foresterre/sic";
3030 changelog = "https://github.com/foresterre/sic/blob/v${version}/CHANGELOG.md";
3131 license = with licenses; [ asl20 /* or */ mit ];
3232 maintainers = with maintainers; [ figsoda ];
···5555 platforms = platforms.unix;
5656 license = licenses.gpl2Only;
5757 maintainers = with maintainers; [ pedrohlc ];
5858+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
5959+ broken = stdenv.isDarwin;
5860 };
5961}
+2
pkgs/tools/misc/bmon/default.nix
···3030 license = licenses.bsd2;
3131 platforms = platforms.unix;
3232 maintainers = with maintainers; [ bjornfor pSub ];
3333+ # never built on aarch64-darwin since first introduction in nixpkgs
3434+ broken = stdenv.isDarwin && stdenv.isAarch64;
3335 };
3436}
+2
pkgs/tools/misc/cpuminer/default.nix
···3030 license = licenses.gpl2;
3131 platforms = platforms.all;
3232 maintainers = with maintainers; [ pSub ];
3333+ # never built on aarch64-darwin since first introduction in nixpkgs
3434+ broken = stdenv.isDarwin && stdenv.isAarch64;
3335 };
3436}
+2
pkgs/tools/misc/jsonwatch/default.nix
···3434 homepage = "https://github.com/dbohdan/jsonwatch";
3535 license = licenses.mit;
3636 maintainers = with maintainers; [ fab ];
3737+ # never built on aarch64-darwin since first introduction in nixpkgs
3838+ broken = stdenv.isDarwin && stdenv.isAarch64;
3739 };
3840}
···3333 '';
3434 license = licenses.asl20;
3535 maintainers = with maintainers; [ bezmuth ];
3636+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
3737+ broken = stdenv.isDarwin;
3638 };
3739}
···4343 # windows and darwin could work, but untested
4444 # feel free add them if you have a machine to test
4545 platforms = with platforms; linux;
4646+ # never built on aarch64-linux since first introduction in nixpkgs
4747+ broken = stdenv.isLinux && stdenv.isAarch64;
4648 };
4749}
+2
pkgs/tools/misc/vtm/default.nix
···2525 license = lib.licenses.mit;
2626 platforms = lib.platforms.all;
2727 maintainers = with lib.maintainers; [ ahuzik ];
2828+ # never built on aarch64-linux since first introduction in nixpkgs
2929+ broken = stdenv.isLinux && stdenv.isAarch64;
2830 };
2931}
···110110 homepage = "https://www.datadoghq.com";
111111 license = licenses.bsd3;
112112 maintainers = with maintainers; [ thoughtpolice domenkozar rvl viraptor ];
113113+ # never built on aarch64-darwin since first introduction in nixpkgs
114114+ broken = stdenv.isDarwin && stdenv.isAarch64;
113115 };
114116}
+2
pkgs/tools/networking/junkie/default.nix
···4040 - a nettop tool;
4141 - a tool listing TLS certificates...
4242 '';
4343+ # never built on aarch64-darwin since first introduction in nixpkgs
4444+ broken = stdenv.isDarwin && stdenv.isAarch64;
4345 };
4446}
+2
pkgs/tools/networking/netcat-openbsd/default.nix
···4444 license = licenses.bsd3;
4545 platforms = platforms.unix;
4646 mainProgram = "nc";
4747+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
4848+ broken = stdenv.isDarwin;
4749 };
4850}
+2
pkgs/tools/networking/srelay/default.nix
···2020 homepage = "http://socks-relay.sourceforge.net/";
2121 platforms = lib.platforms.unix;
2222 license = lib.licenses.bsd3;
2323+ # never built on aarch64-linux since first introduction in nixpkgs
2424+ broken = stdenv.isLinux && stdenv.isAarch64;
2325 };
2426}
+2
pkgs/tools/networking/wrk2/default.nix
···3838 license = lib.licenses.bsd3;
3939 platforms = lib.platforms.linux;
4040 maintainers = with lib.maintainers; [ thoughtpolice ];
4141+ # never built on aarch64-linux since first introduction in nixpkgs
4242+ broken = stdenv.isLinux && stdenv.isAarch64;
4143 };
4244}
+2
pkgs/tools/networking/x11-ssh-askpass/default.nix
···3030 description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH";
3131 license = licenses.mit;
3232 platforms = platforms.unix;
3333+ # never built on aarch64-darwin since first introduction in nixpkgs
3434+ broken = stdenv.isDarwin && stdenv.isAarch64;
3335 };
3436}
+2
pkgs/tools/security/feroxbuster/default.nix
···4040 homepage = "https://github.com/epi052/feroxbuster";
4141 license = with licenses; [ mit ];
4242 maintainers = with maintainers; [ fab ];
4343+ # never built on aarch64-linux since first introduction in nixpkgs
4444+ broken = stdenv.isLinux && stdenv.isAarch64;
4345 };
4446}
4547
+2
pkgs/tools/security/john/default.nix
···8383 homepage = "https://github.com/openwall/john/";
8484 maintainers = with maintainers; [ offline matthewbauer ];
8585 platforms = platforms.unix;
8686+ # never built on aarch64-darwin since first introduction in nixpkgs
8787+ broken = stdenv.isDarwin && stdenv.isAarch64;
8688 };
8789}
+2
pkgs/tools/security/libacr38u/default.nix
···3838 license = licenses.lgpl2Plus;
3939 maintainers = with maintainers; [ berce ];
4040 platforms = with platforms; unix;
4141+ # never built on aarch64-darwin since first introduction in nixpkgs
4242+ broken = stdenv.isDarwin && stdenv.isAarch64;
4143 };
4244}
+2
pkgs/tools/security/yersinia/default.nix
···5858 # so not sure, but it could work on openbsd, illumos, and freebsd
5959 # if you have a machine to test with, feel free to add these
6060 platforms = with platforms; linux;
6161+ # never built on aarch64-linux since first introduction in nixpkgs
6262+ broken = stdenv.isLinux && stdenv.isAarch64;
6163 };
6264}
+2
pkgs/tools/text/jumanpp/default.nix
···2727 license = licenses.asl20;
2828 maintainers = with maintainers; [ mt-caret ];
2929 platforms = platforms.all;
3030+ # never built on aarch64-darwin since first introduction in nixpkgs
3131+ broken = stdenv.isDarwin && stdenv.isAarch64;
3032 };
3133}
+2
pkgs/tools/video/tsduck/default.nix
···7979 license = licenses.bsd2;
8080 maintainers = with maintainers; [ siriobalmelli ];
8181 platforms = platforms.all;
8282+ # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
8383+ broken = stdenv.isDarwin;
8284 };
8385}