Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
1e7dd986 d07c2d73

+449 -105
+9
maintainers/maintainer-list.nix
··· 1677 githubId = 214787; 1678 name = "Herwig Hochleitner"; 1679 }; 1680 benesim = { 1681 name = "Benjamin Isbarn"; 1682 email = "benjamin.isbarn@gmail.com";
··· 1677 githubId = 214787; 1678 name = "Herwig Hochleitner"; 1679 }; 1680 + benediktbroich = { 1681 + name = "Benedikt Broich"; 1682 + email = "b.broich@posteo.de"; 1683 + github = "BenediktBroich"; 1684 + githubId = 32903896; 1685 + keys = [{ 1686 + fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976"; 1687 + }]; 1688 + }; 1689 benesim = { 1690 name = "Benjamin Isbarn"; 1691 email = "benjamin.isbarn@gmail.com";
+2
pkgs/applications/accessibility/contrast/default.nix
··· 70 license = licenses.gpl3Plus; 71 maintainers = with maintainers; [ jtojnar ]; 72 platforms = platforms.unix; 73 }; 74 } 75
··· 70 license = licenses.gpl3Plus; 71 maintainers = with maintainers; [ jtojnar ]; 72 platforms = platforms.unix; 73 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 74 + broken = stdenv.isDarwin; 75 }; 76 } 77
+2
pkgs/applications/audio/cardinal/default.nix
··· 62 license = lib.licenses.gpl3; 63 maintainers = [ lib.maintainers.magnetophon ]; 64 platforms = lib.platforms.all; 65 }; 66 }
··· 62 license = lib.licenses.gpl3; 63 maintainers = [ lib.maintainers.magnetophon ]; 64 platforms = lib.platforms.all; 65 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 66 + broken = stdenv.isDarwin; 67 }; 68 }
+2
pkgs/applications/audio/chuck/default.nix
··· 37 license = licenses.gpl2; 38 platforms = platforms.unix; 39 maintainers = with maintainers; [ ftrvxmtrx ]; 40 }; 41 }
··· 37 license = licenses.gpl2; 38 platforms = platforms.unix; 39 maintainers = with maintainers; [ ftrvxmtrx ]; 40 + # never built on aarch64-darwin since first introduction in nixpkgs 41 + broken = stdenv.isDarwin && stdenv.isAarch64; 42 }; 43 }
+2
pkgs/applications/audio/snapcast/default.nix
··· 45 maintainers = with maintainers; [ fpletz ]; 46 platforms = platforms.linux ++ platforms.darwin; 47 license = licenses.gpl3Plus; 48 }; 49 }
··· 45 maintainers = with maintainers; [ fpletz ]; 46 platforms = platforms.linux ++ platforms.darwin; 47 license = licenses.gpl3Plus; 48 + # never built on x86_64-darwin since first introduction in nixpkgs 49 + broken = stdenv.isDarwin && stdenv.isx86_64; 50 }; 51 }
+2
pkgs/applications/blockchains/haven-cli/default.nix
··· 59 license = licenses.bsd3; 60 platforms = platforms.all; 61 maintainers = with maintainers; [ kim0 ]; 62 }; 63 }
··· 59 license = licenses.bsd3; 60 platforms = platforms.all; 61 maintainers = with maintainers; [ kim0 ]; 62 + # never built on aarch64-darwin since first introduction in nixpkgs 63 + broken = stdenv.isDarwin && stdenv.isAarch64; 64 }; 65 }
+2
pkgs/applications/blockchains/solana-validator/default.nix
··· 83 license = licenses.asl20; 84 maintainers = with maintainers; [ adjacentresearch ]; 85 platforms = platforms.unix; 86 }; 87 passthru.updateScript = ./update.sh; 88 }
··· 83 license = licenses.asl20; 84 maintainers = with maintainers; [ adjacentresearch ]; 85 platforms = platforms.unix; 86 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 87 + broken = stdenv.isDarwin; 88 }; 89 passthru.updateScript = ./update.sh; 90 }
+2 -2
pkgs/applications/editors/vim/plugins/overrides.nix
··· 387 }); 388 389 forms = super.forms.overrideAttrs (old: { 390 - dependencies = with self; [ self.self ]; 391 }); 392 393 fruzzy = ··· 713 }; 714 715 skim-vim = super.skim-vim.overrideAttrs (old: { 716 - dependencies = with self; [ skim ]; 717 }); 718 719 sniprun =
··· 387 }); 388 389 forms = super.forms.overrideAttrs (old: { 390 + dependencies = [ self.self ]; 391 }); 392 393 fruzzy = ··· 713 }; 714 715 skim-vim = super.skim-vim.overrideAttrs (old: { 716 + dependencies = [ self.skim ]; 717 }); 718 719 sniprun =
+2
pkgs/applications/editors/xedit/default.nix
··· 48 license = with licenses; [ mit ]; 49 maintainers = with maintainers; [ shamilton ]; 50 platforms = platforms.unix; 51 }; 52 }
··· 48 license = with licenses; [ mit ]; 49 maintainers = with maintainers; [ shamilton ]; 50 platforms = platforms.unix; 51 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 52 + broken = stdenv.isDarwin; 53 }; 54 }
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 46 47 stdenv.mkDerivation rec { 48 pname = "imagemagick"; 49 - version = "7.1.0-53"; 50 51 src = fetchFromGitHub { 52 owner = "ImageMagick"; 53 repo = "ImageMagick"; 54 rev = version; 55 - hash = "sha256-U111mor498zAyoYKqCerb9cnxUUOlXKYPfaIzKxZiUM="; 56 }; 57 58 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
··· 46 47 stdenv.mkDerivation rec { 48 pname = "imagemagick"; 49 + version = "7.1.0-54"; 50 51 src = fetchFromGitHub { 52 owner = "ImageMagick"; 53 repo = "ImageMagick"; 54 rev = version; 55 + hash = "sha256-aQipCcqOS9viOLPHEx21MrJHdxYKZl++3DIKMz97Ukw="; 56 }; 57 58 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+2
pkgs/applications/graphics/dia/default.nix
··· 39 maintainers = with maintainers; [ raskin ]; 40 license = licenses.gpl2; 41 platforms = platforms.unix; 42 }; 43 }
··· 39 maintainers = with maintainers; [ raskin ]; 40 license = licenses.gpl2; 41 platforms = platforms.unix; 42 + # never built on aarch64-darwin since first introduction in nixpkgs 43 + broken = stdenv.isDarwin && stdenv.isAarch64; 44 }; 45 }
+2
pkgs/applications/graphics/foxotron/default.nix
··· 70 license = licenses.unlicense; 71 maintainers = with maintainers; [ OPNA2608 ]; 72 platforms = platforms.all; 73 }; 74 }
··· 70 license = licenses.unlicense; 71 maintainers = with maintainers; [ OPNA2608 ]; 72 platforms = platforms.all; 73 + # never built on aarch64-darwin since first introduction in nixpkgs 74 + broken = stdenv.isDarwin && stdenv.isAarch64; 75 }; 76 }
+8 -4
pkgs/applications/graphics/megapixels/default.nix
··· 6 , ninja 7 , pkg-config 8 , wrapGAppsHook4 9 - , libepoxy 10 , gtk4 11 , zbar 12 , tiffSupport ? true 13 , libraw ··· 27 in 28 stdenv.mkDerivation rec { 29 pname = "megapixels"; 30 - version = "1.5.2"; 31 32 src = fetchFromGitLab { 33 owner = "postmarketOS"; 34 repo = "megapixels"; 35 rev = version; 36 - hash = "sha256-UH3NQdMlZTi4hc8HNSbCcQSm0rxI78RMCRYll1NCBO8="; 37 }; 38 39 nativeBuildInputs = [ ··· 45 ]; 46 47 buildInputs = [ 48 - libepoxy 49 gtk4 50 zbar 51 ]; 52
··· 6 , ninja 7 , pkg-config 8 , wrapGAppsHook4 9 + , feedbackd 10 , gtk4 11 + , libepoxy 12 + , xorg 13 , zbar 14 , tiffSupport ? true 15 , libraw ··· 29 in 30 stdenv.mkDerivation rec { 31 pname = "megapixels"; 32 + version = "1.6.0"; 33 34 src = fetchFromGitLab { 35 owner = "postmarketOS"; 36 repo = "megapixels"; 37 rev = version; 38 + hash = "sha256-xrO9Xr9DPjlDs4yaKy32yb4X8wFqLKfy8rsjtBuN+Rg="; 39 }; 40 41 nativeBuildInputs = [ ··· 47 ]; 48 49 buildInputs = [ 50 + feedbackd 51 gtk4 52 + libepoxy 53 + xorg.libXrandr 54 zbar 55 ]; 56
+2
pkgs/applications/graphics/symbolic-preview/default.nix
··· 23 maintainers = with maintainers; [ qyliss ]; 24 license = licenses.gpl3Plus; 25 platforms = platforms.unix; 26 }; 27 }
··· 23 maintainers = with maintainers; [ qyliss ]; 24 license = licenses.gpl3Plus; 25 platforms = platforms.unix; 26 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 27 + broken = stdenv.isDarwin; 28 }; 29 }
+74
pkgs/applications/misc/citations/default.nix
···
··· 1 + { darwin 2 + , desktop-file-utils 3 + , fetchFromGitLab 4 + , gettext 5 + , glib 6 + , gtk4 7 + , gtksourceview5 8 + , lib 9 + , libadwaita 10 + , meson 11 + , ninja 12 + , pkg-config 13 + , poppler 14 + , rustPlatform 15 + , stdenv 16 + , testers 17 + , wrapGAppsHook4 18 + }: 19 + stdenv.mkDerivation (finalAttrs: { 20 + pname = "citations"; 21 + version = "0.5.1"; 22 + 23 + src = fetchFromGitLab { 24 + domain = "gitlab.gnome.org"; 25 + owner = "World"; 26 + repo = finalAttrs.pname; 27 + rev = finalAttrs.version; 28 + hash = "sha256-QPK6Nw0tDdttUDFKMgThTYMTxGXsn5OReqf1LNAai7g="; 29 + }; 30 + 31 + cargoDeps = rustPlatform.fetchCargoTarball { 32 + src = finalAttrs.src; 33 + name = "${finalAttrs.pname}-${finalAttrs.version}"; 34 + hash = "sha256-Kounxi4JxoU4+rWMWNB8rzTyG3MDKYD0OzYfAHwm6bY="; 35 + }; 36 + 37 + nativeBuildInputs = [ 38 + desktop-file-utils 39 + gettext 40 + glib 41 + meson 42 + ninja 43 + pkg-config 44 + rustPlatform.cargoSetupHook 45 + rustPlatform.rust.cargo 46 + rustPlatform.rust.rustc 47 + wrapGAppsHook4 48 + ]; 49 + 50 + buildInputs = [ 51 + glib 52 + gtk4 53 + gtksourceview5 54 + libadwaita 55 + poppler 56 + ] ++ lib.optional stdenv.isDarwin [ 57 + darwin.apple_sdk.frameworks.Foundation 58 + ]; 59 + 60 + doCheck = true; 61 + 62 + passthru.tests.version = testers.testVersion { 63 + package = finalAttrs.finalPackage; 64 + command = "citations --help"; 65 + }; 66 + 67 + meta = with lib; { 68 + description = "Manage your bibliographies using the BibTeX format"; 69 + homepage = "https://apps.gnome.org/app/org.gnome.World.Citations"; 70 + license = licenses.gpl3Plus; 71 + maintainers = with maintainers; [ benediktbroich ]; 72 + platforms = platforms.unix; 73 + }; 74 + })
+2
pkgs/applications/misc/gnome-extension-manager/default.nix
··· 60 license = licenses.gpl3Plus; 61 platforms = platforms.linux; 62 maintainers = with maintainers; [ foo-dogsquared ]; 63 }; 64 }
··· 60 license = licenses.gpl3Plus; 61 platforms = platforms.linux; 62 maintainers = with maintainers; [ foo-dogsquared ]; 63 + # never built on aarch64-linux since first introduction in nixpkgs 64 + broken = stdenv.isLinux && stdenv.isAarch64; 65 }; 66 }
+2
pkgs/applications/misc/oneko/default.nix
··· 35 license = with licenses; [ publicDomain ]; 36 maintainers = with maintainers; [ xaverdh irenes ]; 37 platforms = platforms.unix; 38 }; 39 }
··· 35 license = with licenses; [ publicDomain ]; 36 maintainers = with maintainers; [ xaverdh irenes ]; 37 platforms = platforms.unix; 38 + # never built on aarch64-darwin since first introduction in nixpkgs 39 + broken = stdenv.isDarwin && stdenv.isAarch64; 40 }; 41 }
+2
pkgs/applications/misc/openbangla-keyboard/default.nix
··· 68 license = licenses.gpl3Plus; 69 maintainers = with maintainers; [ hqurve ]; 70 platforms = platforms.linux; 71 }; 72 }
··· 68 license = licenses.gpl3Plus; 69 maintainers = with maintainers; [ hqurve ]; 70 platforms = platforms.linux; 71 + # never built on aarch64-linux since first introduction in nixpkgs 72 + broken = stdenv.isLinux && stdenv.isAarch64; 73 }; 74 }
+2 -2
pkgs/applications/misc/sweethome3d/default.nix
··· 111 112 application = mkSweetHome3D rec { 113 pname = lib.toLower module + "-application"; 114 - version = "6.6"; 115 module = "SweetHome3D"; 116 description = "Design and visualize your future home"; 117 license = lib.licenses.gpl2Plus; 118 src = fetchurl { 119 url = "mirror://sourceforge/sweethome3d/${module}-${version}-src.zip"; 120 - sha256 = "sha256-CnVXpmodmyoZdqmt7OgRyzuLeDhkPhrAS/CldFM8SQs="; 121 }; 122 desktopName = "Sweet Home 3D"; 123 icons = {
··· 111 112 application = mkSweetHome3D rec { 113 pname = lib.toLower module + "-application"; 114 + version = "7.0.2"; 115 module = "SweetHome3D"; 116 description = "Design and visualize your future home"; 117 license = lib.licenses.gpl2Plus; 118 src = fetchurl { 119 url = "mirror://sourceforge/sweethome3d/${module}-${version}-src.zip"; 120 + sha256 = "sha256-9Jv/U7afG6+LwPB6IhqLePjQA67bPKelP+UcuvizBqo="; 121 }; 122 desktopName = "Sweet Home 3D"; 123 icons = {
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 19 } 20 }, 21 "beta": { 22 - "version": "109.0.5414.25", 23 - "sha256": "1yl8bxbxnlvypqvnb0kd4z3c793m375pwza43gab35kc1azxfnrg", 24 - "sha256bin64": "1rld29mq6dvd85nvsrxj155m79hylxknhphlmw82i74fa7r6lxhm", 25 "deps": { 26 "gn": { 27 "version": "2022-11-10",
··· 19 } 20 }, 21 "beta": { 22 + "version": "109.0.5414.36", 23 + "sha256": "14kicgbadb83401dpfqnz3hb3dxi55nfydj5wpmg29dyw0bdndpm", 24 + "sha256bin64": "11lpv9432xqkdj4q89sfyd0261444s9amncnzdmij93ni1wac8b4", 25 "deps": { 26 "gn": { 27 "version": "2022-11-10",
+2
pkgs/applications/networking/cluster/docker-machine/xhyve.nix
··· 35 license = licenses.bsd3; 36 maintainers = with maintainers; [ periklis ]; 37 platforms = platforms.darwin; 38 }; 39 }
··· 35 license = licenses.bsd3; 36 maintainers = with maintainers; [ periklis ]; 37 platforms = platforms.darwin; 38 + # never built on aarch64-darwin since first introduction in nixpkgs 39 + broken = stdenv.isDarwin && stdenv.isAarch64; 40 }; 41 }
+2 -3
pkgs/applications/networking/cluster/fn-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "fn"; 5 - version = "0.6.22"; 6 7 src = fetchFromGitHub { 8 owner = "fnproject"; 9 repo = "cli"; 10 rev = version; 11 - hash = "sha256-FXgDCZcHcKvgkV1YFjMKl+5oJ5H1DV/Gj9am5VJuIjw="; 12 }; 13 14 vendorSha256 = null; ··· 32 homepage = "https://fnproject.io"; 33 license = licenses.asl20; 34 maintainers = [ maintainers.c4605 ]; 35 - broken = stdenv.isDarwin; 36 }; 37 }
··· 2 3 buildGoModule rec { 4 pname = "fn"; 5 + version = "0.6.23"; 6 7 src = fetchFromGitHub { 8 owner = "fnproject"; 9 repo = "cli"; 10 rev = version; 11 + hash = "sha256-3g8S3cJ3RC06rvPMyQSKf8L4DkDTZ0Oe+6eh+rwyqg8="; 12 }; 13 14 vendorSha256 = null; ··· 32 homepage = "https://fnproject.io"; 33 license = licenses.asl20; 34 maintainers = [ maintainers.c4605 ]; 35 }; 36 }
+11 -7
pkgs/applications/networking/cluster/kube-score/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "kube-score"; 5 - version = "1.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "zegl"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-6/+S1aj2qoUPz+6+8Z4Z5dpfyOi/DnrLLUpPgBn/OxU="; 12 }; 13 14 - vendorSha256 = "sha256-0Zi62FmX4rFl3os2ehtussSSUPJtxLq7622CEdeKZCs="; 15 16 meta = with lib; { 17 description = "Kubernetes object analysis with recommendations for improved reliability and security"; 18 - homepage = "https://github.com/zegl/kube-score"; 19 - license = licenses.mit; 20 - maintainers = [ maintainers.j4m3s ]; 21 }; 22 }
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 6 buildGoModule rec { 7 pname = "kube-score"; 8 + version = "1.16.0"; 9 10 src = fetchFromGitHub { 11 owner = "zegl"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-dKvPLAT9e8gNJkKDF7dQPGLSkv9QUjQklUX8Dm8i33E="; 15 }; 16 17 + vendorHash = "sha256-pcNdszOfsYKiASOUNKflbr89j/wb9ILQvjMJYsiGPWo="; 18 19 meta = with lib; { 20 description = "Kubernetes object analysis with recommendations for improved reliability and security"; 21 + homepage = "https://github.com/zegl/kube-score"; 22 + changelog = "https://github.com/zegl/kube-score/releases/tag/v${version}"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ j4m3s ]; 25 }; 26 }
+10 -8
pkgs/applications/networking/cluster/kubeone/default.nix
··· 8 9 buildGoModule rec { 10 pname = "kubeone"; 11 - version = "1.5.3"; 12 13 src = fetchFromGitHub { 14 owner = "kubermatic"; 15 repo = "kubeone"; 16 rev = "v${version}"; 17 - sha256 = "sha256-CjT6YKC6DJvs+LeKIzOl2Y6n0/yGv0nz8EfHqiSnIDo="; 18 }; 19 20 - vendorSha256 = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA="; 21 22 ldflags = [ 23 - "-s -w" 24 "-X k8c.io/kubeone/pkg/cmd.version=${version}" 25 "-X k8c.io/kubeone/pkg/cmd.date=unknown" 26 ]; ··· 40 command = "kubeone version"; 41 }; 42 43 - meta = { 44 - description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments."; 45 homepage = "https://kubeone.io/"; 46 - license = lib.licenses.asl20; 47 - maintainers = with lib.maintainers; [ lblasc ]; 48 }; 49 }
··· 8 9 buildGoModule rec { 10 pname = "kubeone"; 11 + version = "1.5.4"; 12 13 src = fetchFromGitHub { 14 owner = "kubermatic"; 15 repo = "kubeone"; 16 rev = "v${version}"; 17 + hash = "sha256-s94o2/wInWMWbJcq8cpEbJYHL6vpD3Vurl/rOigzQRk="; 18 }; 19 20 + vendorHash = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA="; 21 22 ldflags = [ 23 + "-s" 24 + "-w" 25 "-X k8c.io/kubeone/pkg/cmd.version=${version}" 26 "-X k8c.io/kubeone/pkg/cmd.date=unknown" 27 ]; ··· 41 command = "kubeone version"; 42 }; 43 44 + meta = with lib; { 45 + description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments"; 46 homepage = "https://kubeone.io/"; 47 + changelog = "https://github.com/kubermatic/kubeone/releases/tag/v${version}"; 48 + license = licenses.asl20; 49 + maintainers = with maintainers; [ lblasc ]; 50 }; 51 }
+5
pkgs/applications/networking/instant-messengers/element/element-desktop.nix
··· 57 runHook postConfigure 58 ''; 59 60 buildPhase = '' 61 runHook preBuild 62
··· 57 runHook postConfigure 58 ''; 59 60 + # Only affects unused scripts in $out/share/element/electron/scripts. Also 61 + # breaks because there are some `node`-scripts with a `npx`-shebang and 62 + # this shouldn't be in the closure just for unused scripts. 63 + dontPatchShebangs = true; 64 + 65 buildPhase = '' 66 runHook preBuild 67
+5 -5
pkgs/applications/networking/instant-messengers/element/pin.json
··· 1 { 2 - "version": "1.11.15", 3 - "desktopSrcHash": "l+IjI3uvnOjaJA6IszDSuOO08SMqbUf8rI/u12g5Rxo=", 4 - "desktopYarnHash": "024vd7xiwialfrag325558qjrqlfxzy9xq7jb15ysawand1k2xyv", 5 - "webSrcHash": "YLQ4z333RMx9qyVRTBbDCWLTy5QqLlHmYpmOa8vlCbg=", 6 - "webYarnHash": "1ll2sj9q3h2b76383bqv8a8ckqlk8b131zwx223fnz8mfqsc9br0" 7 }
··· 1 { 2 + "version": "1.11.16", 3 + "desktopSrcHash": "EeED62HRpaWN91yxcDvwwNUWmDRU38lyT5ba1S4go6Q=", 4 + "desktopYarnHash": "1f0bghcbzab2dkvxmvhhc0dzyk3js09v2sh93gsjsq9mkhld1k0w", 5 + "webSrcHash": "T6UcGNm4i+Nc4Yk/mVFc4L9jxWQtOpjps1ZtEhilHW0=", 6 + "webYarnHash": "1jyzym34lzadniqrysbm1m5agw03hzw6ymmdxpbay38afrhrciyk" 7 }
+2 -1
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/default.nix
··· 217 }; 218 219 meta = { 220 - broken = (stdenv.isLinux && stdenv.isAarch64); 221 description = "Kotatogram – experimental Telegram Desktop fork"; 222 longDescription = '' 223 Unofficial desktop client for the Telegram messenger, based on Telegram Desktop. ··· 229 homepage = "https://kotatogram.github.io"; 230 changelog = "https://github.com/kotatogram/kotatogram-desktop/releases/tag/k{version}"; 231 maintainers = with maintainers; [ ilya-fedin ]; 232 }; 233 }
··· 217 }; 218 219 meta = { 220 description = "Kotatogram – experimental Telegram Desktop fork"; 221 longDescription = '' 222 Unofficial desktop client for the Telegram messenger, based on Telegram Desktop. ··· 228 homepage = "https://kotatogram.github.io"; 229 changelog = "https://github.com/kotatogram/kotatogram-desktop/releases/tag/k{version}"; 230 maintainers = with maintainers; [ ilya-fedin ]; 231 + # never built on aarch64-darwin since first introduction in nixpkgs 232 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 233 }; 234 }
+2
pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
··· 49 license = licenses.lgpl21Only; 50 maintainers = with maintainers; [ ]; 51 platforms = platforms.unix; 52 }; 53 }
··· 49 license = licenses.lgpl21Only; 50 maintainers = with maintainers; [ ]; 51 platforms = platforms.unix; 52 + # never built on aarch64-darwin since first introduction in nixpkgs 53 + broken = stdenv.isDarwin && stdenv.isAarch64; 54 }; 55 }
+2
pkgs/applications/networking/mailreaders/sylpheed/default.nix
··· 45 maintainers = with maintainers; [ eelco ]; 46 platforms = platforms.linux ++ platforms.darwin; 47 license = licenses.gpl2; 48 }; 49 }
··· 45 maintainers = with maintainers; [ eelco ]; 46 platforms = platforms.linux ++ platforms.darwin; 47 license = licenses.gpl2; 48 + # never built on aarch64-darwin since first introduction in nixpkgs 49 + broken = stdenv.isDarwin && stdenv.isAarch64; 50 }; 51 }
+2
pkgs/applications/networking/sync/lsyncd/default.nix
··· 44 license = licenses.gpl2Plus; 45 platforms = platforms.all; 46 maintainers = with maintainers; [ bobvanderlinden ]; 47 }; 48 }
··· 44 license = licenses.gpl2Plus; 45 platforms = platforms.all; 46 maintainers = with maintainers; [ bobvanderlinden ]; 47 + # never built on aarch64-darwin since first introduction in nixpkgs 48 + broken = stdenv.isDarwin && stdenv.isAarch64; 49 }; 50 }
+2
pkgs/applications/networking/umurmur/default.nix
··· 24 license = licenses.bsd3; 25 homepage = "https://github.com/umurmur/umurmur"; 26 platforms = platforms.all; 27 }; 28 }
··· 24 license = licenses.bsd3; 25 homepage = "https://github.com/umurmur/umurmur"; 26 platforms = platforms.all; 27 + # never built on aarch64-darwin since first introduction in nixpkgs 28 + broken = stdenv.isDarwin && stdenv.isAarch64; 29 }; 30 }
+2
pkgs/applications/radio/m17-cxx-demod/default.nix
··· 20 license = licenses.gpl3Only; 21 platforms = platforms.unix; 22 maintainers = teams.c3d2.members; 23 }; 24 }
··· 20 license = licenses.gpl3Only; 21 platforms = platforms.unix; 22 maintainers = teams.c3d2.members; 23 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 24 + broken = stdenv.isDarwin; 25 }; 26 }
+2
pkgs/applications/science/astronomy/xearth/default.nix
··· 26 maintainers = [ maintainers.mafo ]; 27 license = "xearth"; 28 platforms=platforms.unix; 29 }; 30 31 }
··· 26 maintainers = [ maintainers.mafo ]; 27 license = "xearth"; 28 platforms=platforms.unix; 29 + # never built on aarch64-darwin since first introduction in nixpkgs 30 + broken = stdenv.isDarwin && stdenv.isAarch64; 31 }; 32 33 }
+2
pkgs/applications/science/chemistry/gwyddion/default.nix
··· 68 license = lib.licenses.gpl2; 69 platforms = with lib.platforms; linux ++ darwin; 70 maintainers = [ lib.maintainers.cge ]; 71 }; 72 }
··· 68 license = lib.licenses.gpl2; 69 platforms = with lib.platforms; linux ++ darwin; 70 maintainers = [ lib.maintainers.cge ]; 71 + # never built on aarch64-darwin since first introduction in nixpkgs 72 + broken = stdenv.isDarwin && stdenv.isAarch64; 73 }; 74 }
+2 -1
pkgs/applications/science/physics/nnpdf/default.nix
··· 62 ]; 63 64 meta = with lib; { 65 - broken = (stdenv.isLinux && stdenv.isAarch64); 66 description = "An open-source machine learning framework for global analyses of parton distributions"; 67 homepage = "https://docs.nnpdf.science/"; 68 license = licenses.gpl3Only; 69 maintainers = [ maintainers.veprbl ]; 70 platforms = platforms.unix; 71 }; 72 }
··· 62 ]; 63 64 meta = with lib; { 65 description = "An open-source machine learning framework for global analyses of parton distributions"; 66 homepage = "https://docs.nnpdf.science/"; 67 license = licenses.gpl3Only; 68 maintainers = [ maintainers.veprbl ]; 69 platforms = platforms.unix; 70 + # never built on aarch64-darwin since first introduction in nixpkgs 71 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 72 }; 73 }
+2
pkgs/applications/science/physics/sacrifice/default.nix
··· 44 homepage = "https://agile.hepforge.org/trac/wiki/Sacrifice"; 45 platforms = lib.platforms.unix; 46 maintainers = with lib.maintainers; [ veprbl ]; 47 }; 48 }
··· 44 homepage = "https://agile.hepforge.org/trac/wiki/Sacrifice"; 45 platforms = lib.platforms.unix; 46 maintainers = with lib.maintainers; [ veprbl ]; 47 + # never built on aarch64-darwin since first introduction in nixpkgs 48 + broken = stdenv.isDarwin && stdenv.isAarch64; 49 }; 50 }
+2
pkgs/applications/science/physics/sherpa/default.nix
··· 34 homepage = "https://gitlab.com/sherpa-team/sherpa"; 35 platforms = platforms.unix; 36 maintainers = with maintainers; [ veprbl ]; 37 }; 38 }
··· 34 homepage = "https://gitlab.com/sherpa-team/sherpa"; 35 platforms = platforms.unix; 36 maintainers = with maintainers; [ veprbl ]; 37 + # never built on aarch64-darwin since first introduction in nixpkgs 38 + broken = stdenv.isDarwin && stdenv.isAarch64; 39 }; 40 }
+2
pkgs/applications/version-management/got/default.nix
··· 46 license = licenses.isc; 47 platforms = platforms.linux ++ platforms.darwin; 48 maintainers = with maintainers; [ abbe afh ]; 49 }; 50 }
··· 46 license = licenses.isc; 47 platforms = platforms.linux ++ platforms.darwin; 48 maintainers = with maintainers; [ abbe afh ]; 49 + # never built on x86_64-darwin since first introduction in nixpkgs 50 + broken = stdenv.isDarwin && stdenv.isx86_64; 51 }; 52 }
+2
pkgs/applications/video/motion/default.nix
··· 22 license = licenses.gpl2Plus; 23 maintainers = with maintainers; [ puffnfresh veprbl ]; 24 platforms = platforms.unix; 25 }; 26 }
··· 22 license = licenses.gpl2Plus; 23 maintainers = with maintainers; [ puffnfresh veprbl ]; 24 platforms = platforms.unix; 25 + # never built on aarch64-darwin since first introduction in nixpkgs 26 + broken = stdenv.isDarwin && stdenv.isAarch64; 27 }; 28 }
+2
pkgs/applications/video/obs-studio/plugins/input-overlay.nix
··· 43 maintainers = with maintainers; [ glittershark ]; 44 license = licenses.gpl2; 45 platforms = platforms.linux; 46 }; 47 }
··· 43 maintainers = with maintainers; [ glittershark ]; 44 license = licenses.gpl2; 45 platforms = platforms.linux; 46 + # never built on aarch64-linux since first introduction in nixpkgs 47 + broken = stdenv.isLinux && stdenv.isAarch64; 48 }; 49 }
+2
pkgs/applications/video/olive-editor/default.nix
··· 34 license = licenses.gpl3; 35 maintainers = [ maintainers.balsoft ]; 36 platforms = platforms.unix; 37 }; 38 }
··· 34 license = licenses.gpl3; 35 maintainers = [ maintainers.balsoft ]; 36 platforms = platforms.unix; 37 + # never built on aarch64-darwin since first introduction in nixpkgs 38 + broken = stdenv.isDarwin && stdenv.isAarch64; 39 }; 40 }
+2
pkgs/applications/video/openshot-qt/libopenshot-audio.nix
··· 63 license = with licenses; gpl3Plus; 64 maintainers = with maintainers; [ AndersonTorres ]; 65 platforms = with platforms; unix; 66 }; 67 }
··· 63 license = with licenses; gpl3Plus; 64 maintainers = with maintainers; [ AndersonTorres ]; 65 platforms = with platforms; unix; 66 + # never built on aarch64-darwin since first introduction in nixpkgs 67 + broken = stdenv.isDarwin && stdenv.isAarch64; 68 }; 69 }
+2
pkgs/applications/virtualization/xhyve/default.nix
··· 33 maintainers = [ maintainers.lnl7 ]; 34 license = licenses.bsd2; 35 platforms = platforms.darwin; 36 }; 37 }
··· 33 maintainers = [ maintainers.lnl7 ]; 34 license = licenses.bsd2; 35 platforms = platforms.darwin; 36 + # never built on aarch64-darwin since first introduction in nixpkgs 37 + broken = stdenv.isDarwin && stdenv.isAarch64; 38 }; 39 }
+2
pkgs/development/compilers/cakelisp/default.nix
··· 38 license = licenses.gpl3Plus; 39 platforms = platforms.darwin ++ platforms.linux; 40 maintainers = [ maintainers.sbond75 ]; 41 }; 42 }
··· 38 license = licenses.gpl3Plus; 39 platforms = platforms.darwin ++ platforms.linux; 40 maintainers = [ maintainers.sbond75 ]; 41 + # never built on aarch64-darwin since first introduction in nixpkgs 42 + broken = stdenv.isDarwin && stdenv.isAarch64; 43 }; 44 }
+2
pkgs/development/compilers/ecl/16.1.2.nix
··· 93 license = licenses.mit; 94 maintainers = with maintainers; [ raskin ]; 95 platforms = platforms.unix; 96 }; 97 }
··· 93 license = licenses.mit; 94 maintainers = with maintainers; [ raskin ]; 95 platforms = platforms.unix; 96 + # never built on aarch64-darwin since first introduction in nixpkgs 97 + broken = stdenv.isDarwin && stdenv.isAarch64; 98 }; 99 }
+2 -1
pkgs/development/compilers/inform7/default.nix
··· 22 ''; 23 24 meta = with lib; { 25 - broken = (stdenv.isLinux && stdenv.isAarch64); 26 description = "A design system for interactive fiction"; 27 homepage = "http://inform7.com/"; 28 license = licenses.artistic2; 29 maintainers = with maintainers; [ mbbx6spp ]; 30 platforms = platforms.unix; 31 }; 32 }
··· 22 ''; 23 24 meta = with lib; { 25 description = "A design system for interactive fiction"; 26 homepage = "http://inform7.com/"; 27 license = licenses.artistic2; 28 maintainers = with maintainers; [ mbbx6spp ]; 29 platforms = platforms.unix; 30 + # never built on aarch64-darwin since first introduction in nixpkgs 31 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 32 }; 33 }
+2
pkgs/development/compilers/llvm/10/lldb/default.nix
··· 94 larger LLVM Project, such as the Clang expression parser and LLVM 95 disassembler. 96 ''; 97 }; 98 } // lib.optionalAttrs enableManpages { 99 pname = "lldb-manpages";
··· 94 larger LLVM Project, such as the Clang expression parser and LLVM 95 disassembler. 96 ''; 97 + # never built on aarch64-darwin since first introduction in nixpkgs 98 + broken = stdenv.isDarwin && stdenv.isAarch64; 99 }; 100 } // lib.optionalAttrs enableManpages { 101 pname = "lldb-manpages";
+2
pkgs/development/compilers/llvm/5/lldb/default.nix
··· 82 larger LLVM Project, such as the Clang expression parser and LLVM 83 disassembler. 84 ''; 85 }; 86 }
··· 82 larger LLVM Project, such as the Clang expression parser and LLVM 83 disassembler. 84 ''; 85 + # never built on aarch64-darwin since first introduction in nixpkgs 86 + broken = stdenv.isDarwin && stdenv.isAarch64; 87 }; 88 }
+2
pkgs/development/compilers/llvm/6/lldb/default.nix
··· 82 larger LLVM Project, such as the Clang expression parser and LLVM 83 disassembler. 84 ''; 85 }; 86 }
··· 82 larger LLVM Project, such as the Clang expression parser and LLVM 83 disassembler. 84 ''; 85 + # never built on aarch64-darwin since first introduction in nixpkgs 86 + broken = stdenv.isDarwin && stdenv.isAarch64; 87 }; 88 }
+2
pkgs/development/compilers/llvm/7/lldb/default.nix
··· 85 larger LLVM Project, such as the Clang expression parser and LLVM 86 disassembler. 87 ''; 88 }; 89 }
··· 85 larger LLVM Project, such as the Clang expression parser and LLVM 86 disassembler. 87 ''; 88 + # never built on aarch64-darwin since first introduction in nixpkgs 89 + broken = stdenv.isDarwin && stdenv.isAarch64; 90 }; 91 }
+2
pkgs/development/compilers/polyml/5.7.nix
··· 44 license = licenses.lgpl21; 45 platforms = with platforms; (linux ++ darwin); 46 maintainers = with maintainers; [ maggesi ]; 47 }; 48 }
··· 44 license = licenses.lgpl21; 45 platforms = with platforms; (linux ++ darwin); 46 maintainers = with maintainers; [ maggesi ]; 47 + # never built on aarch64-darwin since first introduction in nixpkgs 48 + broken = stdenv.isDarwin && stdenv.isAarch64; 49 }; 50 }
+2
pkgs/development/compilers/smlnj/default.nix
··· 88 platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 89 maintainers = with maintainers; [ thoughtpolice ]; 90 mainProgram = "sml"; 91 }; 92 }
··· 88 platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 89 maintainers = with maintainers; [ thoughtpolice ]; 90 mainProgram = "sml"; 91 + # never built on x86_64-darwin since first introduction in nixpkgs 92 + broken = stdenv.isDarwin && stdenv.isx86_64; 93 }; 94 }
+2
pkgs/development/compilers/terra/default.nix
··· 89 platforms = platforms.all; 90 maintainers = with maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ]; 91 license = licenses.mit; 92 }; 93 }
··· 89 platforms = platforms.all; 90 maintainers = with maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ]; 91 license = licenses.mit; 92 + # never built on aarch64-darwin since first introduction in nixpkgs 93 + broken = stdenv.isDarwin && stdenv.isAarch64; 94 }; 95 }
+2
pkgs/development/interpreters/bic/default.nix
··· 38 homepage = "https://github.com/hexagonal-sun/bic"; 39 platforms = platforms.unix; 40 maintainers = with maintainers; [ hexagonal-sun ]; 41 }; 42 }
··· 38 homepage = "https://github.com/hexagonal-sun/bic"; 39 platforms = platforms.unix; 40 maintainers = with maintainers; [ hexagonal-sun ]; 41 + # never built on aarch64-darwin since first introduction in nixpkgs 42 + broken = stdenv.isDarwin && stdenv.isAarch64; 43 }; 44 }
+2
pkgs/development/libraries/classads/default.nix
··· 20 description = "The Classified Advertisements library provides a generic means for matching resources"; 21 license = lib.licenses.asl20; 22 platforms = lib.platforms.unix; 23 }; 24 }
··· 20 description = "The Classified Advertisements library provides a generic means for matching resources"; 21 license = lib.licenses.asl20; 22 platforms = lib.platforms.unix; 23 + # never built on aarch64-darwin since first introduction in nixpkgs 24 + broken = stdenv.isDarwin && stdenv.isAarch64; 25 }; 26 }
+2
pkgs/development/libraries/enchant/1.x.nix
··· 18 platforms = platforms.unix; 19 badPlatforms = [ "x86_64-darwin" ]; 20 license = licenses.lgpl21; 21 }; 22 }
··· 18 platforms = platforms.unix; 19 badPlatforms = [ "x86_64-darwin" ]; 20 license = licenses.lgpl21; 21 + # never built on aarch64-darwin since first introduction in nixpkgs 22 + broken = stdenv.isDarwin && stdenv.isAarch64; 23 }; 24 }
+2
pkgs/development/libraries/garmintools/default.nix
··· 13 license = lib.licenses.gpl2; 14 maintainers = [ ]; 15 platforms = lib.platforms.unix; 16 }; 17 }
··· 13 license = lib.licenses.gpl2; 14 maintainers = [ ]; 15 platforms = lib.platforms.unix; 16 + # never built on aarch64-darwin since first introduction in nixpkgs 17 + broken = stdenv.isDarwin && stdenv.isAarch64; 18 }; 19 }
+2
pkgs/development/libraries/gcc/libstdc++/5.nix
··· 113 description = "GNU Compiler Collection, version ${version} -- C++ standard library"; 114 platforms = platforms.linux; 115 maintainers = with maintainers; [ abbradar ]; 116 }; 117 }
··· 113 description = "GNU Compiler Collection, version ${version} -- C++ standard library"; 114 platforms = platforms.linux; 115 maintainers = with maintainers; [ abbradar ]; 116 + # never built on aarch64-linux since first introduction in nixpkgs 117 + broken = stdenv.isLinux && stdenv.isAarch64; 118 }; 119 }
+2
pkgs/development/libraries/gmp/4.3.2.nix
··· 71 maintainers = [ ]; 72 platforms = lib.platforms.all; 73 badPlatforms = [ "x86_64-darwin" ]; 74 }; 75 }; 76 in self
··· 71 maintainers = [ ]; 72 platforms = lib.platforms.all; 73 badPlatforms = [ "x86_64-darwin" ]; 74 + # never built on aarch64-darwin, aarch64-linux since first introduction in nixpkgs 75 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 76 }; 77 }; 78 in self
+2
pkgs/development/libraries/gmp/5.1.x.nix
··· 80 81 platforms = platforms.all; 82 badPlatforms = [ "x86_64-darwin" ]; 83 }; 84 }; 85 in self
··· 80 81 platforms = platforms.all; 82 badPlatforms = [ "x86_64-darwin" ]; 83 + # never built on aarch64-darwin since first introduction in nixpkgs 84 + broken = stdenv.isDarwin && stdenv.isAarch64; 85 }; 86 }; 87 in self
+2
pkgs/development/libraries/htmlcxx/default.nix
··· 20 description = "A simple non-validating css1 and html parser for C++"; 21 license = licenses.lgpl2; 22 platforms = platforms.all; 23 }; 24 }
··· 20 description = "A simple non-validating css1 and html parser for C++"; 21 license = licenses.lgpl2; 22 platforms = platforms.all; 23 + # never built on aarch64-darwin since first introduction in nixpkgs 24 + broken = stdenv.isDarwin && stdenv.isAarch64; 25 }; 26 }
+2
pkgs/development/libraries/imlib/default.nix
··· 58 description = "An image loading and rendering library for X11"; 59 platforms = platforms.unix; 60 license = with licenses; [ gpl2Only lgpl2Only ]; 61 }; 62 }
··· 58 description = "An image loading and rendering library for X11"; 59 platforms = platforms.unix; 60 license = with licenses; [ gpl2Only lgpl2Only ]; 61 + # never built on aarch64-darwin since first introduction in nixpkgs 62 + broken = stdenv.isDarwin && stdenv.isAarch64; 63 }; 64 }
+2
pkgs/development/libraries/libLAS/default.nix
··· 31 license = lib.licenses.bsd3; 32 platforms = lib.platforms.unix; 33 maintainers = [ lib.maintainers.michelk ]; 34 }; 35 }
··· 31 license = lib.licenses.bsd3; 32 platforms = lib.platforms.unix; 33 maintainers = [ lib.maintainers.michelk ]; 34 + # never built on aarch64-darwin since first introduction in nixpkgs 35 + broken = stdenv.isDarwin && stdenv.isAarch64; 36 }; 37 }
+2
pkgs/development/libraries/libbde/default.nix
··· 25 license = licenses.lgpl3; 26 maintainers = with maintainers; [ eliasp ]; 27 platforms = platforms.all; 28 }; 29 }
··· 25 license = licenses.lgpl3; 26 maintainers = with maintainers; [ eliasp ]; 27 platforms = platforms.all; 28 + # never built on aarch64-darwin since first introduction in nixpkgs 29 + broken = stdenv.isDarwin && stdenv.isAarch64; 30 }; 31 }
+2
pkgs/development/libraries/libffcall/default.nix
··· 24 homepage = "https://www.gnu.org/software/libffcall/"; 25 license = licenses.gpl2Plus; 26 platforms = platforms.unix; 27 }; 28 }
··· 24 homepage = "https://www.gnu.org/software/libffcall/"; 25 license = licenses.gpl2Plus; 26 platforms = platforms.unix; 27 + # never built on aarch64-darwin since first introduction in nixpkgs 28 + broken = stdenv.isDarwin && stdenv.isAarch64; 29 }; 30 }
+2
pkgs/development/libraries/libffi/3.3.nix
··· 60 license = licenses.mit; 61 maintainers = with maintainers; [ armeenm ]; 62 platforms = platforms.all; 63 }; 64 }
··· 60 license = licenses.mit; 61 maintainers = with maintainers; [ armeenm ]; 62 platforms = platforms.all; 63 + # never built on aarch64-darwin since first introduction in nixpkgs 64 + broken = stdenv.isDarwin && stdenv.isAarch64; 65 }; 66 }
+2
pkgs/development/libraries/libfreefare/default.nix
··· 21 homepage = "https://github.com/nfc-tools/libfreefare"; 22 maintainers = with maintainers; [bobvanderlinden]; 23 platforms = platforms.unix; 24 }; 25 }
··· 21 homepage = "https://github.com/nfc-tools/libfreefare"; 22 maintainers = with maintainers; [bobvanderlinden]; 23 platforms = platforms.unix; 24 + # never built on aarch64-darwin since first introduction in nixpkgs 25 + broken = stdenv.isDarwin && stdenv.isAarch64; 26 }; 27 }
+2
pkgs/development/libraries/libhdhomerun/default.nix
··· 31 license = licenses.lgpl21Only; 32 platforms = platforms.unix; 33 maintainers = [ maintainers.titanous ]; 34 }; 35 }
··· 31 license = licenses.lgpl21Only; 32 platforms = platforms.unix; 33 maintainers = [ maintainers.titanous ]; 34 + # never built on aarch64-darwin since first introduction in nixpkgs 35 + broken = stdenv.isDarwin && stdenv.isAarch64; 36 }; 37 }
+2
pkgs/development/libraries/liboil/default.nix
··· 29 license = licenses.bsd2; 30 maintainers = with maintainers; [ lovek323 ]; 31 platforms = platforms.all; 32 }; 33 }
··· 29 license = licenses.bsd2; 30 maintainers = with maintainers; [ lovek323 ]; 31 platforms = platforms.all; 32 + # never built on aarch64-darwin since first introduction in nixpkgs 33 + broken = stdenv.isDarwin && stdenv.isAarch64; 34 }; 35 }
+2 -1
pkgs/development/libraries/libsnark/default.nix
··· 18 }; 19 20 meta = with lib; { 21 - broken = (stdenv.isLinux && stdenv.isAarch64); 22 description = "C++ library for zkSNARKs"; 23 homepage = "https://github.com/scipr-lab/libsnark"; 24 license = licenses.mit; 25 platforms = lib.platforms.linux ++ lib.platforms.darwin; 26 }; 27 }
··· 18 }; 19 20 meta = with lib; { 21 description = "C++ library for zkSNARKs"; 22 homepage = "https://github.com/scipr-lab/libsnark"; 23 license = licenses.mit; 24 platforms = lib.platforms.linux ++ lib.platforms.darwin; 25 + # never built on aarch64-darwin since first introduction in nixpkgs 26 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 27 }; 28 }
+2
pkgs/development/libraries/libticables2/default.nix
··· 60 license = licenses.gpl2Plus; 61 maintainers = with maintainers; [ siraben luc65r ]; 62 platforms = with platforms; linux ++ darwin; 63 }; 64 }
··· 60 license = licenses.gpl2Plus; 61 maintainers = with maintainers; [ siraben luc65r ]; 62 platforms = with platforms; linux ++ darwin; 63 + # never built on aarch64-darwin since first introduction in nixpkgs 64 + broken = stdenv.isDarwin && stdenv.isAarch64; 65 }; 66 }
+2
pkgs/development/libraries/libtommath/default.nix
··· 31 description = "A library for integer-based number-theoretic applications"; 32 license = with licenses; [ publicDomain wtfpl ]; 33 platforms = platforms.unix; 34 }; 35 }
··· 31 description = "A library for integer-based number-theoretic applications"; 32 license = with licenses; [ publicDomain wtfpl ]; 33 platforms = platforms.unix; 34 + # never built on aarch64-darwin since first introduction in nixpkgs 35 + broken = stdenv.isDarwin && stdenv.isAarch64; 36 }; 37 }
+2
pkgs/development/libraries/openslp/default.nix
··· 30 maintainers = with maintainers; [ ttuegel ]; 31 license = licenses.bsd3; 32 platforms = platforms.all; 33 }; 34 35 }
··· 30 maintainers = with maintainers; [ ttuegel ]; 31 license = licenses.bsd3; 32 platforms = platforms.all; 33 + # never built on aarch64-darwin since first introduction in nixpkgs 34 + broken = stdenv.isDarwin && stdenv.isAarch64; 35 }; 36 37 }
+2
pkgs/development/libraries/physics/hepmc3/default.nix
··· 45 homepage = "http://hepmc.web.cern.ch/hepmc/"; 46 platforms = platforms.unix; 47 maintainers = with maintainers; [ veprbl ]; 48 }; 49 }
··· 45 homepage = "http://hepmc.web.cern.ch/hepmc/"; 46 platforms = platforms.unix; 47 maintainers = with maintainers; [ veprbl ]; 48 + # never built on aarch64-darwin since first introduction in nixpkgs 49 + broken = stdenv.isDarwin && stdenv.isAarch64; 50 }; 51 }
+2
pkgs/development/libraries/physics/nlojet/default.nix
··· 19 description = "Implementation of calculation of the hadron jet cross sections"; 20 platforms = lib.platforms.unix; 21 maintainers = with lib.maintainers; [ veprbl ]; 22 }; 23 }
··· 19 description = "Implementation of calculation of the hadron jet cross sections"; 20 platforms = lib.platforms.unix; 21 maintainers = with lib.maintainers; [ veprbl ]; 22 + # never built on aarch64-darwin since first introduction in nixpkgs 23 + broken = stdenv.isDarwin && stdenv.isAarch64; 24 }; 25 }
+2
pkgs/development/libraries/physics/thepeg/default.nix
··· 25 license = licenses.gpl3Only; 26 maintainers = with maintainers; [ veprbl ]; 27 platforms = platforms.unix; 28 }; 29 }
··· 25 license = licenses.gpl3Only; 26 maintainers = with maintainers; [ veprbl ]; 27 platforms = platforms.unix; 28 + # never built on aarch64-darwin since first introduction in nixpkgs 29 + broken = stdenv.isDarwin && stdenv.isAarch64; 30 }; 31 }
+2
pkgs/development/libraries/rlottie/default.nix
··· 34 license = with licenses; [ mit bsd3 mpl11 ftl ]; 35 platforms = platforms.all; 36 maintainers = with maintainers; [ CRTified ]; 37 }; 38 }
··· 34 license = with licenses; [ mit bsd3 mpl11 ftl ]; 35 platforms = platforms.all; 36 maintainers = with maintainers; [ CRTified ]; 37 + # never built on aarch64-darwin since first introduction in nixpkgs 38 + broken = stdenv.isDarwin && stdenv.isAarch64; 39 }; 40 }
+2
pkgs/development/libraries/science/math/bonmin/default.nix
··· 47 license = licenses.epl10; 48 platforms = platforms.unix; 49 maintainers = with maintainers; [ aanderse ]; 50 }; 51 }
··· 47 license = licenses.epl10; 48 platforms = platforms.unix; 49 maintainers = with maintainers; [ aanderse ]; 50 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 51 + broken = stdenv.isDarwin; 52 }; 53 }
+2
pkgs/development/libraries/science/math/m4rie/default.nix
··· 35 license = licenses.gpl2Plus; 36 maintainers = teams.sage.members; 37 platforms = platforms.unix; 38 }; 39 }
··· 35 license = licenses.gpl2Plus; 36 maintainers = teams.sage.members; 37 platforms = platforms.unix; 38 + # never built on aarch64-darwin since first introduction in nixpkgs 39 + broken = stdenv.isDarwin && stdenv.isAarch64; 40 }; 41 }
+2
pkgs/development/libraries/science/math/mongoose/default.nix
··· 26 license = licenses.gpl3; 27 maintainers = with maintainers; []; 28 platforms = with platforms; unix; 29 }; 30 }
··· 26 license = licenses.gpl3; 27 maintainers = with maintainers; []; 28 platforms = with platforms; unix; 29 + # never built on aarch64-darwin since first introduction in nixpkgs 30 + broken = stdenv.isDarwin && stdenv.isAarch64; 31 }; 32 }
+2 -1
pkgs/development/libraries/science/networking/ns-3/default.nix
··· 101 hardeningDisable = [ "fortify" "strictoverflow"]; 102 103 meta = with lib; { 104 - broken = (stdenv.isLinux && stdenv.isAarch64); 105 homepage = "http://www.nsnam.org"; 106 license = licenses.gpl3; 107 description = "A discrete time event network simulator"; 108 platforms = with platforms; unix; 109 maintainers = with maintainers; [ teto rgrunbla ]; 110 }; 111 }
··· 101 hardeningDisable = [ "fortify" "strictoverflow"]; 102 103 meta = with lib; { 104 homepage = "http://www.nsnam.org"; 105 license = licenses.gpl3; 106 description = "A discrete time event network simulator"; 107 platforms = with platforms; unix; 108 maintainers = with maintainers; [ teto rgrunbla ]; 109 + # never built on aarch64-darwin since first introduction in nixpkgs 110 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 111 }; 112 }
+2 -2
pkgs/development/libraries/sqlite/default.nix
··· 1 { lib, stdenv, fetchurl, zlib, readline, ncurses 2 3 # for tests 4 - , python3Packages, sqldiff, sqlite-analyzer 5 6 # uses readline & ncurses for a better interactive experience if set to true 7 , interactive ? false ··· 91 92 passthru.tests = { 93 inherit (python3Packages) sqlalchemy; 94 - inherit sqldiff sqlite-analyzer; 95 }; 96 97 meta = {
··· 1 { lib, stdenv, fetchurl, zlib, readline, ncurses 2 3 # for tests 4 + , python3Packages, sqldiff, sqlite-analyzer, tracker 5 6 # uses readline & ncurses for a better interactive experience if set to true 7 , interactive ? false ··· 91 92 passthru.tests = { 93 inherit (python3Packages) sqlalchemy; 94 + inherit sqldiff sqlite-analyzer tracker; 95 }; 96 97 meta = {
+2
pkgs/development/libraries/subunit/default.nix
··· 23 homepage = "https://launchpad.net/subunit"; 24 license = licenses.asl20; 25 platforms = platforms.all; 26 }; 27 }
··· 23 homepage = "https://launchpad.net/subunit"; 24 license = licenses.asl20; 25 platforms = platforms.all; 26 + # never built on aarch64-darwin since first introduction in nixpkgs 27 + broken = stdenv.isDarwin && stdenv.isAarch64; 28 }; 29 }
+2 -1
pkgs/development/libraries/vc/0.7.nix
··· 22 ''; 23 24 meta = with lib; { 25 - broken = (stdenv.isLinux && stdenv.isAarch64); 26 description = "Library for multiprecision complex arithmetic with exact rounding"; 27 homepage = "https://github.com/VcDevel/Vc"; 28 license = licenses.bsd3; 29 platforms = platforms.all; 30 maintainers = with maintainers; [ abbradar ]; 31 }; 32 }
··· 22 ''; 23 24 meta = with lib; { 25 description = "Library for multiprecision complex arithmetic with exact rounding"; 26 homepage = "https://github.com/VcDevel/Vc"; 27 license = licenses.bsd3; 28 platforms = platforms.all; 29 maintainers = with maintainers; [ abbradar ]; 30 + # never built on aarch64-darwin since first introduction in nixpkgs 31 + broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64); 32 }; 33 }
+2 -2
pkgs/development/libraries/xgboost/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "xgboost"; 18 - version = "1.5.2"; 19 20 src = fetchFromGitHub { 21 owner = "dmlc"; 22 repo = pname; 23 rev = "v${version}"; 24 fetchSubmodules = true; 25 - sha256 = "sha256-h7zcHCOxe1h7HRB6idtjf4HUBEoHC4V2pqbN9hpe00g="; 26 }; 27 28 nativeBuildInputs = [
··· 15 16 stdenv.mkDerivation rec { 17 pname = "xgboost"; 18 + version = "1.7.2"; 19 20 src = fetchFromGitHub { 21 owner = "dmlc"; 22 repo = pname; 23 rev = "v${version}"; 24 fetchSubmodules = true; 25 + hash = "sha256-nXF6IYaK13n8fuNt1wOXoJCVNve/lwUROV7UE5W3RKA="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/bluetooth-auto-recovery/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "bluetooth-auto-recovery"; 15 - version = "0.5.5"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.9"; ··· 21 owner = "Bluetooth-Devices"; 22 repo = pname; 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-f6HJlFqpmFhM9M1Cuvjz/63DXoikO33y/tmv57snI7g="; 25 }; 26 27 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "bluetooth-auto-recovery"; 15 + version = "1.0.0"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.9"; ··· 21 owner = "Bluetooth-Devices"; 22 repo = pname; 23 rev = "refs/tags/v${version}"; 24 + hash = "sha256-TkTWF8Ljt2cLIuz2FnktrZFAlpvTVkFh6evE8TSzJhk="; 25 }; 26 27 nativeBuildInputs = [
+11 -2
pkgs/development/python-modules/deploykit/default.nix
··· 5 , bash 6 , openssh 7 , pytestCheckHook 8 , stdenv 9 }: 10 11 buildPythonPackage rec { 12 pname = "deploykit"; 13 - version = "1.0.1"; 14 15 src = fetchFromGitHub { 16 owner = "numtide"; 17 repo = pname; 18 rev = version; 19 - hash = "sha256-eKyqsGgnJmF2wUYa7HjC1Jwsh03qVTJEP1MtL7JL4Ts="; 20 }; 21 22 buildInputs = [ ··· 34 # don't swallow stdout/stderr 35 pytestFlagsArray = [ "-s" ]; 36 37 meta = with lib; { 38 description = "Execute commands remote via ssh and locally in parallel with python"; 39 homepage = "https://github.com/numtide/deploykit"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ mic92 zowoq ]; 42 platforms = platforms.unix;
··· 5 , bash 6 , openssh 7 , pytestCheckHook 8 + , pythonOlder 9 , stdenv 10 }: 11 12 buildPythonPackage rec { 13 pname = "deploykit"; 14 + version = "1.0.2"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.8"; 18 19 src = fetchFromGitHub { 20 owner = "numtide"; 21 repo = pname; 22 rev = version; 23 + hash = "sha256-I1vAefWQBBRNykDw38LTNwdiPFxpPkLzCcevYAXO+Zo="; 24 }; 25 26 buildInputs = [ ··· 38 # don't swallow stdout/stderr 39 pytestFlagsArray = [ "-s" ]; 40 41 + pythonImportsCheck = [ 42 + "deploykit" 43 + ]; 44 + 45 meta = with lib; { 46 description = "Execute commands remote via ssh and locally in parallel with python"; 47 homepage = "https://github.com/numtide/deploykit"; 48 + changelog = "https://github.com/numtide/deploykit/releases/tag/${version}"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ mic92 zowoq ]; 51 platforms = platforms.unix;
+2 -2
pkgs/development/python-modules/pychromecast/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pychromecast"; 13 - version = "13.0.2"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "PyChromecast"; 20 inherit version; 21 - hash = "sha256-G1IOR3SSzY/gIuTQQeZ2BW1f/7tsBbL0UJgBoGvGe+w="; 22 }; 23 24 postPatch = ''
··· 10 11 buildPythonPackage rec { 12 pname = "pychromecast"; 13 + version = "13.0.3"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "PyChromecast"; 20 inherit version; 21 + hash = "sha256-s6Js6uxZqju1LjpwEgJUnlAFlKluHhQLORwntr0GtwE="; 22 }; 23 24 postPatch = ''
+2 -2
pkgs/development/python-modules/pyoverkiz/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "pyoverkiz"; 18 - version = "1.7.1"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "iMicknl"; 25 repo = "python-overkiz-api"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-PGictIBXrUIorAU9Ic41LzEQPJliCpwGoOlkteHUuEw="; 28 }; 29 30 postPatch = ''
··· 15 16 buildPythonPackage rec { 17 pname = "pyoverkiz"; 18 + version = "1.7.2"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "iMicknl"; 25 repo = "python-overkiz-api"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-9/xdFwf+r2z166w/4VIj31MahDWmaMdWLfTGot+RoYQ="; 28 }; 29 30 postPatch = ''
+11 -34
pkgs/development/python-modules/xgboost/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , pytestCheckHook 4 , cmake 5 , scipy 6 - , scikit-learn 7 , stdenv 8 , xgboost 9 - , pandas 10 - , matplotlib 11 - , graphviz 12 - , datatable 13 - , hypothesis 14 }: 15 16 buildPythonPackage { 17 pname = "xgboost"; 18 inherit (xgboost) version src meta; 19 20 nativeBuildInputs = [ cmake ]; 21 buildInputs = [ xgboost ]; 22 - propagatedBuildInputs = [ scipy ]; 23 - checkInputs = [ 24 - pytestCheckHook 25 - scikit-learn 26 - pandas 27 - matplotlib 28 - graphviz 29 - datatable 30 - hypothesis 31 - ]; 32 33 # Override existing logic for locating libxgboost.so which is not appropriate for Nix 34 prePatch = let ··· 43 cd python-package 44 ''; 45 46 - preCheck = '' 47 - ln -sf ../demo . 48 - ln -s ${xgboost}/bin/xgboost ../xgboost 49 - ''; 50 51 - # tests are extremely cpu intensive, only run basic tests to ensure package is working 52 - pytestFlagsArray = ["../tests/python/test_basic.py"]; 53 - disabledTestPaths = [ 54 - # Requires internet access: https://github.com/dmlc/xgboost/blob/03cd087da180b7dff21bd8ef34997bf747016025/tests/python/test_ranking.py#L81 55 - "../tests/python/test_ranking.py" 56 - ]; 57 - disabledTests = [ 58 - "test_cli_binary_classification" 59 - "test_model_compatibility" 60 - ] ++ lib.optionals stdenv.isDarwin [ 61 - # fails to connect to the com.apple.fonts daemon in sandboxed mode 62 - "test_plotting" 63 - "test_sklearn_plotting" 64 ]; 65 66 __darwinAllowLocalNetworking = true;
··· 1 { lib 2 , buildPythonPackage 3 + , pythonOlder 4 , cmake 5 + , numpy 6 , scipy 7 , stdenv 8 , xgboost 9 }: 10 11 buildPythonPackage { 12 pname = "xgboost"; 13 inherit (xgboost) version src meta; 14 15 + disabled = pythonOlder "3.8"; 16 + 17 nativeBuildInputs = [ cmake ]; 18 buildInputs = [ xgboost ]; 19 + propagatedBuildInputs = [ numpy scipy ]; 20 21 # Override existing logic for locating libxgboost.so which is not appropriate for Nix 22 prePatch = let ··· 31 cd python-package 32 ''; 33 34 + # test setup tries to download test data with no option to disable 35 + # (removing sklearn from checkInputs causes all previously enabled tests to be skipped) 36 + # and are extremely cpu intensive anyway 37 + doCheck = false; 38 39 + pythonImportsCheck = [ 40 + "xgboost" 41 ]; 42 43 __darwinAllowLocalNetworking = true;
+2 -2
pkgs/development/python-modules/zha-quirks/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "zha-quirks"; 13 - version = "0.0.88"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "zigpy"; 20 repo = "zha-device-handlers"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-GjKYa8wgNugGC4IZJfMLVJnlPAgBmTLd8Wwy6e4g/+U="; 23 }; 24 25 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "zha-quirks"; 13 + version = "0.0.89"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "zigpy"; 20 repo = "zha-device-handlers"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-5qSznGO3Cke+lGPLHjzh/db5O0/Ypmd6D5MTHuiox6Q="; 23 }; 24 25 propagatedBuildInputs = [
+2 -1
pkgs/development/tools/analysis/panopticon/default.nix
··· 36 ''; 37 38 meta = with lib; { 39 - broken = stdenv.isDarwin; 40 description = "A libre cross-platform disassembler"; 41 longDescription = '' 42 Panopticon is a cross platform disassembler for reverse ··· 47 ''; 48 license = with licenses; [ gpl3 ]; 49 maintainers = with maintainers; [ leenaars ]; 50 }; 51 }
··· 36 ''; 37 38 meta = with lib; { 39 description = "A libre cross-platform disassembler"; 40 longDescription = '' 41 Panopticon is a cross platform disassembler for reverse ··· 46 ''; 47 license = with licenses; [ gpl3 ]; 48 maintainers = with maintainers; [ leenaars ]; 49 + # never built on aarch64-linux since first introduction in nixpkgs 50 + broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64); 51 }; 52 }
+2
pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
··· 173 license = licenses.asl20; 174 maintainers = lib.teams.bazel.members; 175 inherit platforms; 176 }; 177 178 inherit src;
··· 173 license = licenses.asl20; 174 maintainers = lib.teams.bazel.members; 175 inherit platforms; 176 + # never built on aarch64-darwin since first introduction in nixpkgs 177 + broken = stdenv.isDarwin && stdenv.isAarch64; 178 }; 179 180 inherit src;
+2
pkgs/development/tools/explain/default.nix
··· 42 license = licenses.lgpl3Plus; 43 maintainers = with maintainers; [ McSinyx ]; 44 platforms = platforms.unix; 45 }; 46 }
··· 42 license = licenses.lgpl3Plus; 43 maintainers = with maintainers; [ McSinyx ]; 44 platforms = platforms.unix; 45 + # never built on aarch64-linux since first introduction in nixpkgs 46 + broken = stdenv.isLinux && stdenv.isAarch64; 47 }; 48 }
+2
pkgs/development/tools/glslviewer/default.nix
··· 49 license = licenses.bsd3; 50 platforms = platforms.linux ++ platforms.darwin; 51 maintainers = [ maintainers.hodapp ]; 52 }; 53 }
··· 49 license = licenses.bsd3; 50 platforms = platforms.linux ++ platforms.darwin; 51 maintainers = [ maintainers.hodapp ]; 52 + # never built on aarch64-darwin since first introduction in nixpkgs 53 + broken = stdenv.isDarwin && stdenv.isAarch64; 54 }; 55 }
+2
pkgs/development/tools/lightningcss/default.nix
··· 36 changelog = "https://github.com/parcel-bundler/lightningcss/releases/tag/v${version}"; 37 license = licenses.mpl20; 38 maintainers = with maintainers; [ toastal ]; 39 }; 40 }
··· 36 changelog = "https://github.com/parcel-bundler/lightningcss/releases/tag/v${version}"; 37 license = licenses.mpl20; 38 maintainers = with maintainers; [ toastal ]; 39 + # never built on aarch64-linux since first introduction in nixpkgs 40 + broken = stdenv.isLinux && stdenv.isAarch64; 41 }; 42 }
+2
pkgs/development/tools/misc/pwndbg/default.nix
··· 49 license = licenses.mit; 50 platforms = platforms.all; 51 maintainers = with maintainers; [ mic92 ]; 52 }; 53 }
··· 49 license = licenses.mit; 50 platforms = platforms.all; 51 maintainers = with maintainers; [ mic92 ]; 52 + # never built on aarch64-darwin since first introduction in nixpkgs 53 + broken = stdenv.isDarwin && stdenv.isAarch64; 54 }; 55 }
+2
pkgs/development/tools/rojo/default.nix
··· 38 changelog = "https://github.com/rojo-rbx/rojo/raw/v${version}/CHANGELOG.md"; 39 license = licenses.mpl20; 40 maintainers = with maintainers; [ wackbyte ]; 41 }; 42 }
··· 38 changelog = "https://github.com/rojo-rbx/rojo/raw/v${version}/CHANGELOG.md"; 39 license = licenses.mpl20; 40 maintainers = with maintainers; [ wackbyte ]; 41 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 42 + broken = stdenv.isDarwin; 43 }; 44 }
+2
pkgs/games/opendungeons/default.nix
··· 29 homepage = "https://opendungeons.github.io"; 30 license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ]; 31 platforms = platforms.linux; 32 }; 33 }
··· 29 homepage = "https://opendungeons.github.io"; 30 license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ]; 31 platforms = platforms.linux; 32 + # never built on aarch64-linux since first introduction in nixpkgs 33 + broken = stdenv.isLinux && stdenv.isAarch64; 34 }; 35 }
+2 -1
pkgs/games/openspades/default.nix
··· 58 NIX_CFLAGS_LINK = "-lopenal"; 59 60 meta = with lib; { 61 - broken = stdenv.isDarwin; 62 description = "A compatible client of Ace of Spades 0.75"; 63 homepage = "https://github.com/yvt/openspades/"; 64 license = licenses.gpl3; 65 platforms = platforms.all; 66 maintainers = with maintainers; [ abbradar azahi ]; 67 }; 68 }
··· 58 NIX_CFLAGS_LINK = "-lopenal"; 59 60 meta = with lib; { 61 description = "A compatible client of Ace of Spades 0.75"; 62 homepage = "https://github.com/yvt/openspades/"; 63 license = licenses.gpl3; 64 platforms = platforms.all; 65 maintainers = with maintainers; [ abbradar azahi ]; 66 + # never built on aarch64-linux since first introduction in nixpkgs 67 + broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64); 68 }; 69 }
+2
pkgs/games/quake3/quake3e/default.nix
··· 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ pmiddend ]; 50 badPlatforms = [ platforms.aarch64 ]; 51 }; 52 }
··· 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ pmiddend ]; 50 badPlatforms = [ platforms.aarch64 ]; 51 + # never built on aarch64-linux since first introduction in nixpkgs 52 + broken = stdenv.isLinux && stdenv.isAarch64; 53 }; 54 }
+2
pkgs/games/quantumminigolf/default.nix
··· 34 license = licenses.gpl2; 35 maintainers = with maintainers; [ raskin ]; 36 platforms = platforms.linux; 37 }; 38 }
··· 34 license = licenses.gpl2; 35 maintainers = with maintainers; [ raskin ]; 36 platforms = platforms.linux; 37 + # never built on aarch64-linux since first introduction in nixpkgs 38 + broken = stdenv.isLinux && stdenv.isAarch64; 39 }; 40 }
+2
pkgs/games/scummvm/default.nix
··· 47 license = licenses.gpl2; 48 maintainers = [ maintainers.peterhoeg ]; 49 platforms = platforms.unix; 50 }; 51 }
··· 47 license = licenses.gpl2; 48 maintainers = [ maintainers.peterhoeg ]; 49 platforms = platforms.unix; 50 + # never built on aarch64-darwin since first introduction in nixpkgs 51 + broken = stdenv.isDarwin && stdenv.isAarch64; 52 }; 53 }
+2
pkgs/games/solicurses/default.nix
··· 33 maintainers = with maintainers; [ laalsaas ]; 34 license = licenses.gpl3Only; 35 inherit (ncurses.meta) platforms; 36 }; 37 }
··· 33 maintainers = with maintainers; [ laalsaas ]; 34 license = licenses.gpl3Only; 35 inherit (ncurses.meta) platforms; 36 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 37 + broken = stdenv.isDarwin; 38 }; 39 }
+2
pkgs/games/stepmania/default.nix
··· 42 platforms = platforms.linux; 43 license = licenses.mit; # expat version 44 maintainers = [ ]; 45 }; 46 }
··· 42 platforms = platforms.linux; 43 license = licenses.mit; # expat version 44 maintainers = [ ]; 45 + # never built on aarch64-linux since first introduction in nixpkgs 46 + broken = stdenv.isLinux && stdenv.isAarch64; 47 }; 48 }
+2
pkgs/games/xskat/default.nix
··· 26 license = licenses.free; 27 longDescription = "Play the german card game Skat against the AI or over IRC."; 28 homepage = "http://www.xskat.de/"; 29 }; 30 }
··· 26 license = licenses.free; 27 longDescription = "Play the german card game Skat against the AI or over IRC."; 28 homepage = "http://www.xskat.de/"; 29 + # never built on aarch64-darwin since first introduction in nixpkgs 30 + broken = stdenv.isDarwin && stdenv.isAarch64; 31 }; 32 }
+2
pkgs/games/xsok/default.nix
··· 42 maintainers = [lib.maintainers.raskin]; 43 platforms = lib.platforms.unix; 44 homepage = "https://tracker.debian.org/pkg/xsok"; 45 }; 46 }
··· 42 maintainers = [lib.maintainers.raskin]; 43 platforms = lib.platforms.unix; 44 homepage = "https://tracker.debian.org/pkg/xsok"; 45 + # never built on aarch64-darwin since first introduction in nixpkgs 46 + broken = stdenv.isDarwin && stdenv.isAarch64; 47 }; 48 }
+2
pkgs/os-specific/darwin/noah/default.nix
··· 20 license = [ licenses.mit licenses.gpl2 ]; 21 maintainers = [ maintainers.marsam ]; 22 platforms = platforms.darwin; 23 }; 24 }
··· 20 license = [ licenses.mit licenses.gpl2 ]; 21 maintainers = [ maintainers.marsam ]; 22 platforms = platforms.darwin; 23 + # never built on aarch64-darwin since first introduction in nixpkgs 24 + broken = stdenv.isDarwin && stdenv.isAarch64; 25 }; 26 }
+2
pkgs/os-specific/linux/lsirec/default.nix
··· 32 platforms = platforms.linux; 33 license = licenses.bsd2; 34 maintainers = with maintainers; [ Luflosi ]; 35 }; 36 }
··· 32 platforms = platforms.linux; 33 license = licenses.bsd2; 34 maintainers = with maintainers; [ Luflosi ]; 35 + # never built on aarch64-linux since first introduction in nixpkgs 36 + broken = stdenv.isLinux && stdenv.isAarch64; 37 }; 38 }
+2
pkgs/os-specific/linux/nsncd/default.nix
··· 26 homepage = "https://github.com/twosigma/nsncd"; 27 license = licenses.asl20; 28 maintainers = with maintainers; [ flokli ninjatrappeur ]; 29 }; 30 }
··· 26 homepage = "https://github.com/twosigma/nsncd"; 27 license = licenses.asl20; 28 maintainers = with maintainers; [ flokli ninjatrappeur ]; 29 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 30 + broken = stdenv.isDarwin; 31 }; 32 }
+2
pkgs/servers/isso/default.nix
··· 63 homepage = "https://posativ.org/isso/"; 64 license = licenses.mit; 65 maintainers = with maintainers; [ fgaz ]; 66 }; 67 }
··· 63 homepage = "https://posativ.org/isso/"; 64 license = licenses.mit; 65 maintainers = with maintainers; [ fgaz ]; 66 + # never built on aarch64-darwin since first introduction in nixpkgs 67 + broken = stdenv.isDarwin && stdenv.isAarch64; 68 }; 69 }
+2
pkgs/servers/misc/qremotecontrol-server/default.nix
··· 54 keyboard, multimedia keys and buttons for starting applications. Even 55 powering on the computer via Wake On Lan is supported. 56 ''; 57 }; 58 }
··· 54 keyboard, multimedia keys and buttons for starting applications. Even 55 powering on the computer via Wake On Lan is supported. 56 ''; 57 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 58 + broken = stdenv.isDarwin; 59 }; 60 }
+2
pkgs/servers/monitoring/lcdproc/default.nix
··· 74 license = licenses.gpl2; 75 maintainers = with maintainers; [ peterhoeg ]; 76 platforms = platforms.unix; 77 }; 78 }
··· 74 license = licenses.gpl2; 75 maintainers = with maintainers; [ peterhoeg ]; 76 platforms = platforms.unix; 77 + # never built on aarch64-darwin since first introduction in nixpkgs 78 + broken = stdenv.isDarwin && stdenv.isAarch64; 79 }; 80 }
+2
pkgs/servers/mx-puppet-discord/default.nix
··· 46 homepage = "https://gitlab.com/mx-puppet/discord/mx-puppet-discord"; 47 maintainers = with maintainers; [ expipiplus1 ]; 48 platforms = platforms.unix; 49 }; 50 }
··· 46 homepage = "https://gitlab.com/mx-puppet/discord/mx-puppet-discord"; 47 maintainers = with maintainers; [ expipiplus1 ]; 48 platforms = platforms.unix; 49 + # never built on aarch64-darwin since first introduction in nixpkgs 50 + broken = stdenv.isDarwin && stdenv.isAarch64; 51 }; 52 }
+2
pkgs/servers/search/qdrant/default.nix
··· 37 homepage = "https://github.com/qdrant/qdrant"; 38 license = licenses.asl20; 39 maintainers = with maintainers; [ dit7ya ]; 40 }; 41 }
··· 37 homepage = "https://github.com/qdrant/qdrant"; 38 license = licenses.asl20; 39 maintainers = with maintainers; [ dit7ya ]; 40 + # never built on x86_64-darwin since first introduction in nixpkgs 41 + broken = stdenv.isDarwin && stdenv.isx86_64; 42 }; 43 }
+2
pkgs/tools/archivers/gbl/default.nix
··· 47 homepage = "https://github.com/dac-gmbh/gbl"; 48 license = licenses.mit; 49 maintainers = [ maintainers.raboof ]; 50 }; 51 }
··· 47 homepage = "https://github.com/dac-gmbh/gbl"; 48 license = licenses.mit; 49 maintainers = [ maintainers.raboof ]; 50 + # never built on aarch64-darwin since first introduction in nixpkgs 51 + broken = stdenv.isDarwin && stdenv.isAarch64; 52 }; 53 }
+2
pkgs/tools/compression/imagelol/default.nix
··· 33 license = licenses.mit; 34 maintainers = [ maintainers.ivar ]; 35 platforms = platforms.unix; 36 }; 37 }
··· 33 license = licenses.mit; 34 maintainers = [ maintainers.ivar ]; 35 platforms = platforms.unix; 36 + # never built on aarch64-darwin since first introduction in nixpkgs 37 + broken = stdenv.isDarwin && stdenv.isAarch64; 38 }; 39 }
+2
pkgs/tools/filesystems/securefs/default.nix
··· 42 ''; 43 license = with licenses; [ bsd2 mit ]; 44 platforms = platforms.unix; 45 }; 46 }
··· 42 ''; 43 license = with licenses; [ bsd2 mit ]; 44 platforms = platforms.unix; 45 + # never built on aarch64-darwin since first introduction in nixpkgs 46 + broken = stdenv.isDarwin && stdenv.isAarch64; 47 }; 48 }
+2
pkgs/tools/filesystems/xtreemfs/default.nix
··· 90 maintainers = with lib.maintainers; [ raskin matejc ]; 91 platforms = lib.platforms.linux; 92 license = lib.licenses.bsd3; 93 }; 94 }
··· 90 maintainers = with lib.maintainers; [ raskin matejc ]; 91 platforms = lib.platforms.linux; 92 license = lib.licenses.bsd3; 93 + # never built on aarch64-linux since first introduction in nixpkgs 94 + broken = stdenv.isLinux && stdenv.isAarch64; 95 }; 96 }
+25
pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "minecraft-server-hibernation"; 5 + version = "2.4.10"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "gekware"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-hflPVO+gqHr0jDrhWzd7t/E6WsswiMKMHCkTUK4E05k="; 12 + }; 13 + 14 + vendorSha256 = "sha256-W6P7wz1FGL6Os1zmmqWJ7/sO8zizfnwg+TMiFWGHIOM="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 + 18 + meta = with lib; { 19 + description = "Autostart and stop minecraft-server when players join/leave"; 20 + homepage = "https://github.com/gekware/minecraft-server-hibernation"; 21 + license = licenses.gpl3Only; 22 + platforms = platforms.linux; 23 + maintainers = with maintainers; [ squarepear ]; 24 + }; 25 + }
+2
pkgs/tools/graphics/esshader/default.nix
··· 34 license = licenses.mit; 35 maintainers = with maintainers; [ astro ]; 36 platforms = lib.platforms.unix; 37 }; 38 }
··· 34 license = licenses.mit; 35 maintainers = with maintainers; [ astro ]; 36 platforms = lib.platforms.unix; 37 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 38 + broken = stdenv.isDarwin; 39 }; 40 }
+4 -4
pkgs/tools/graphics/sic-image-cli/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "sic-image-cli"; 5 - version = "0.20.0"; 6 7 src = fetchFromGitHub { 8 owner = "foresterre"; 9 repo = "sic"; 10 rev = "v${version}"; 11 - sha256 = "sha256-KoDX/d457dTHsmz8VTPhfF2MiB5vZzLFKG46/L351SQ="; 12 }; 13 14 - cargoSha256 = "sha256-sKEZhJivLbos0KLzPCEnGgTCgbyWSIOvHMhoC1IaJRo="; 15 16 nativeBuildInputs = [ installShellFiles nasm ]; 17 ··· 26 27 meta = with lib; { 28 description = "Accessible image processing and conversion from the terminal"; 29 - homepage = "https://github.com/foresterre/sic-image-cli"; 30 changelog = "https://github.com/foresterre/sic/blob/v${version}/CHANGELOG.md"; 31 license = with licenses; [ asl20 /* or */ mit ]; 32 maintainers = with maintainers; [ figsoda ];
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "sic-image-cli"; 5 + version = "0.20.1"; 6 7 src = fetchFromGitHub { 8 owner = "foresterre"; 9 repo = "sic"; 10 rev = "v${version}"; 11 + sha256 = "sha256-VSBOmE5xdAS15z/KgQ54KfxM2/plEKtpmjOB+T9kLt4="; 12 }; 13 14 + cargoSha256 = "sha256-hkK22c7Z/Wj8ebQkjcdK7H6dms6MI9Sm9yrpqfCCxGA="; 15 16 nativeBuildInputs = [ installShellFiles nasm ]; 17 ··· 26 27 meta = with lib; { 28 description = "Accessible image processing and conversion from the terminal"; 29 + homepage = "https://github.com/foresterre/sic"; 30 changelog = "https://github.com/foresterre/sic/blob/v${version}/CHANGELOG.md"; 31 license = with licenses; [ asl20 /* or */ mit ]; 32 maintainers = with maintainers; [ figsoda ];
+2
pkgs/tools/graphics/vulkan-caps-viewer/default.nix
··· 55 platforms = platforms.unix; 56 license = licenses.gpl2Only; 57 maintainers = with maintainers; [ pedrohlc ]; 58 }; 59 }
··· 55 platforms = platforms.unix; 56 license = licenses.gpl2Only; 57 maintainers = with maintainers; [ pedrohlc ]; 58 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 59 + broken = stdenv.isDarwin; 60 }; 61 }
+2
pkgs/tools/misc/bmon/default.nix
··· 30 license = licenses.bsd2; 31 platforms = platforms.unix; 32 maintainers = with maintainers; [ bjornfor pSub ]; 33 }; 34 }
··· 30 license = licenses.bsd2; 31 platforms = platforms.unix; 32 maintainers = with maintainers; [ bjornfor pSub ]; 33 + # never built on aarch64-darwin since first introduction in nixpkgs 34 + broken = stdenv.isDarwin && stdenv.isAarch64; 35 }; 36 }
+2
pkgs/tools/misc/cpuminer/default.nix
··· 30 license = licenses.gpl2; 31 platforms = platforms.all; 32 maintainers = with maintainers; [ pSub ]; 33 }; 34 }
··· 30 license = licenses.gpl2; 31 platforms = platforms.all; 32 maintainers = with maintainers; [ pSub ]; 33 + # never built on aarch64-darwin since first introduction in nixpkgs 34 + broken = stdenv.isDarwin && stdenv.isAarch64; 35 }; 36 }
+2
pkgs/tools/misc/jsonwatch/default.nix
··· 34 homepage = "https://github.com/dbohdan/jsonwatch"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ fab ]; 37 }; 38 }
··· 34 homepage = "https://github.com/dbohdan/jsonwatch"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ fab ]; 37 + # never built on aarch64-darwin since first introduction in nixpkgs 38 + broken = stdenv.isDarwin && stdenv.isAarch64; 39 }; 40 }
+3 -3
pkgs/tools/misc/mcfly/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mcfly"; 5 - version = "0.6.1"; 6 7 src = fetchFromGitHub { 8 owner = "cantino"; 9 repo = "mcfly"; 10 rev = "v${version}"; 11 - sha256 = "sha256-rim2ndXjoqIn5P60D5+FFuq0CDAOf29xCJ7rfemMzVU="; 12 }; 13 14 postPatch = '' ··· 17 substituteInPlace mcfly.fish --replace '(command which mcfly)' '${placeholder "out"}/bin/mcfly' 18 ''; 19 20 - cargoSha256 = "sha256-W1SPunH4fgam1JDI+JnLoAKCwx1RLY2JotNSyZAQoSY="; 21 22 meta = with lib; { 23 homepage = "https://github.com/cantino/mcfly";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mcfly"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "cantino"; 9 repo = "mcfly"; 10 rev = "v${version}"; 11 + sha256 = "sha256-4vhDtKVo5DI/A9Cg/2I7vn1bJL/8VvUtsqMn8NdVqco="; 12 }; 13 14 postPatch = '' ··· 17 substituteInPlace mcfly.fish --replace '(command which mcfly)' '${placeholder "out"}/bin/mcfly' 18 ''; 19 20 + cargoSha256 = "sha256-Q8J75kI3Oob2cMweW5d1nD2mSX0WUhIacUx6XQnk95c="; 21 22 meta = with lib; { 23 homepage = "https://github.com/cantino/mcfly";
+2
pkgs/tools/misc/mynewt-newtmgr/default.nix
··· 33 ''; 34 license = licenses.asl20; 35 maintainers = with maintainers; [ bezmuth ]; 36 }; 37 }
··· 33 ''; 34 license = licenses.asl20; 35 maintainers = with maintainers; [ bezmuth ]; 36 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 37 + broken = stdenv.isDarwin; 38 }; 39 }
+3 -3
pkgs/tools/misc/starship/default.nix
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "starship"; 16 - version = "1.11.0"; 17 18 src = fetchFromGitHub { 19 owner = "starship"; 20 repo = pname; 21 rev = "v${version}"; 22 - hash = "sha256-90mh8C52uD68K5o1LE22gkbL1gy6FyMJTiiN9oV/3DE="; 23 }; 24 25 nativeBuildInputs = [ installShellFiles cmake ]; ··· 35 --zsh <($out/bin/starship completions zsh) 36 ''; 37 38 - cargoHash = "sha256-Q1VY9RyHEsQAWRN/upeG5XJxJfrmzj5FQG6GBGrN0xU="; 39 40 preCheck = '' 41 HOME=$TMPDIR
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "starship"; 16 + version = "1.12.0"; 17 18 src = fetchFromGitHub { 19 owner = "starship"; 20 repo = pname; 21 rev = "v${version}"; 22 + hash = "sha256-HS+vtF+h5M6lbk7TROAXwrHpj92SeC+j0TjmP6ycH2Q="; 23 }; 24 25 nativeBuildInputs = [ installShellFiles cmake ]; ··· 35 --zsh <($out/bin/starship completions zsh) 36 ''; 37 38 + cargoHash = "sha256-hs0ImaozKH6QcUfts+oseUqecg7bGX5cx50ixnNamW8="; 39 40 preCheck = '' 41 HOME=$TMPDIR
+2
pkgs/tools/misc/usbimager/default.nix
··· 43 # windows and darwin could work, but untested 44 # feel free add them if you have a machine to test 45 platforms = with platforms; linux; 46 }; 47 }
··· 43 # windows and darwin could work, but untested 44 # feel free add them if you have a machine to test 45 platforms = with platforms; linux; 46 + # never built on aarch64-linux since first introduction in nixpkgs 47 + broken = stdenv.isLinux && stdenv.isAarch64; 48 }; 49 }
+2
pkgs/tools/misc/vtm/default.nix
··· 25 license = lib.licenses.mit; 26 platforms = lib.platforms.all; 27 maintainers = with lib.maintainers; [ ahuzik ]; 28 }; 29 }
··· 25 license = lib.licenses.mit; 26 platforms = lib.platforms.all; 27 maintainers = with lib.maintainers; [ ahuzik ]; 28 + # never built on aarch64-linux since first introduction in nixpkgs 29 + broken = stdenv.isLinux && stdenv.isAarch64; 30 }; 31 }
+3 -3
pkgs/tools/misc/zellij/default.nix
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "zellij"; 18 - version = "0.34.3"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 rev = "v${version}"; 24 - sha256 = "sha256-Va+99+plrRFZNkK8e3BhMTZC6NREziKwjO4vODm6PyI="; 25 }; 26 27 - cargoSha256 = "sha256-4Dq/ElyxUD6wLUWxeN/F5RCP2rAWy9iPsnCvcFxk3/8="; 28 29 nativeBuildInputs = [ 30 mandown
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "zellij"; 18 + version = "0.34.4"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 rev = "v${version}"; 24 + sha256 = "sha256-ILjORslelnMTXfuVHS9UPa5qkXuYup/+wT/s1rTSpIY="; 25 }; 26 27 + cargoSha256 = "sha256-HzuCzqpq99dJnTStOc0LxZ7bLuqmvPZerX69arNU6HU="; 28 29 nativeBuildInputs = [ 30 mandown
+2
pkgs/tools/networking/dd-agent/datadog-agent.nix
··· 110 homepage = "https://www.datadoghq.com"; 111 license = licenses.bsd3; 112 maintainers = with maintainers; [ thoughtpolice domenkozar rvl viraptor ]; 113 }; 114 }
··· 110 homepage = "https://www.datadoghq.com"; 111 license = licenses.bsd3; 112 maintainers = with maintainers; [ thoughtpolice domenkozar rvl viraptor ]; 113 + # never built on aarch64-darwin since first introduction in nixpkgs 114 + broken = stdenv.isDarwin && stdenv.isAarch64; 115 }; 116 }
+2
pkgs/tools/networking/junkie/default.nix
··· 40 - a nettop tool; 41 - a tool listing TLS certificates... 42 ''; 43 }; 44 }
··· 40 - a nettop tool; 41 - a tool listing TLS certificates... 42 ''; 43 + # never built on aarch64-darwin since first introduction in nixpkgs 44 + broken = stdenv.isDarwin && stdenv.isAarch64; 45 }; 46 }
+2
pkgs/tools/networking/netcat-openbsd/default.nix
··· 44 license = licenses.bsd3; 45 platforms = platforms.unix; 46 mainProgram = "nc"; 47 }; 48 }
··· 44 license = licenses.bsd3; 45 platforms = platforms.unix; 46 mainProgram = "nc"; 47 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 48 + broken = stdenv.isDarwin; 49 }; 50 }
+2
pkgs/tools/networking/srelay/default.nix
··· 20 homepage = "http://socks-relay.sourceforge.net/"; 21 platforms = lib.platforms.unix; 22 license = lib.licenses.bsd3; 23 }; 24 }
··· 20 homepage = "http://socks-relay.sourceforge.net/"; 21 platforms = lib.platforms.unix; 22 license = lib.licenses.bsd3; 23 + # never built on aarch64-linux since first introduction in nixpkgs 24 + broken = stdenv.isLinux && stdenv.isAarch64; 25 }; 26 }
+2
pkgs/tools/networking/wrk2/default.nix
··· 38 license = lib.licenses.bsd3; 39 platforms = lib.platforms.linux; 40 maintainers = with lib.maintainers; [ thoughtpolice ]; 41 }; 42 }
··· 38 license = lib.licenses.bsd3; 39 platforms = lib.platforms.linux; 40 maintainers = with lib.maintainers; [ thoughtpolice ]; 41 + # never built on aarch64-linux since first introduction in nixpkgs 42 + broken = stdenv.isLinux && stdenv.isAarch64; 43 }; 44 }
+2
pkgs/tools/networking/x11-ssh-askpass/default.nix
··· 30 description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH"; 31 license = licenses.mit; 32 platforms = platforms.unix; 33 }; 34 }
··· 30 description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH"; 31 license = licenses.mit; 32 platforms = platforms.unix; 33 + # never built on aarch64-darwin since first introduction in nixpkgs 34 + broken = stdenv.isDarwin && stdenv.isAarch64; 35 }; 36 }
+2
pkgs/tools/security/feroxbuster/default.nix
··· 40 homepage = "https://github.com/epi052/feroxbuster"; 41 license = with licenses; [ mit ]; 42 maintainers = with maintainers; [ fab ]; 43 }; 44 } 45
··· 40 homepage = "https://github.com/epi052/feroxbuster"; 41 license = with licenses; [ mit ]; 42 maintainers = with maintainers; [ fab ]; 43 + # never built on aarch64-linux since first introduction in nixpkgs 44 + broken = stdenv.isLinux && stdenv.isAarch64; 45 }; 46 } 47
+2
pkgs/tools/security/john/default.nix
··· 83 homepage = "https://github.com/openwall/john/"; 84 maintainers = with maintainers; [ offline matthewbauer ]; 85 platforms = platforms.unix; 86 }; 87 }
··· 83 homepage = "https://github.com/openwall/john/"; 84 maintainers = with maintainers; [ offline matthewbauer ]; 85 platforms = platforms.unix; 86 + # never built on aarch64-darwin since first introduction in nixpkgs 87 + broken = stdenv.isDarwin && stdenv.isAarch64; 88 }; 89 }
+2
pkgs/tools/security/libacr38u/default.nix
··· 38 license = licenses.lgpl2Plus; 39 maintainers = with maintainers; [ berce ]; 40 platforms = with platforms; unix; 41 }; 42 }
··· 38 license = licenses.lgpl2Plus; 39 maintainers = with maintainers; [ berce ]; 40 platforms = with platforms; unix; 41 + # never built on aarch64-darwin since first introduction in nixpkgs 42 + broken = stdenv.isDarwin && stdenv.isAarch64; 43 }; 44 }
+2
pkgs/tools/security/yersinia/default.nix
··· 58 # so not sure, but it could work on openbsd, illumos, and freebsd 59 # if you have a machine to test with, feel free to add these 60 platforms = with platforms; linux; 61 }; 62 }
··· 58 # so not sure, but it could work on openbsd, illumos, and freebsd 59 # if you have a machine to test with, feel free to add these 60 platforms = with platforms; linux; 61 + # never built on aarch64-linux since first introduction in nixpkgs 62 + broken = stdenv.isLinux && stdenv.isAarch64; 63 }; 64 }
+2
pkgs/tools/text/jumanpp/default.nix
··· 27 license = licenses.asl20; 28 maintainers = with maintainers; [ mt-caret ]; 29 platforms = platforms.all; 30 }; 31 }
··· 27 license = licenses.asl20; 28 maintainers = with maintainers; [ mt-caret ]; 29 platforms = platforms.all; 30 + # never built on aarch64-darwin since first introduction in nixpkgs 31 + broken = stdenv.isDarwin && stdenv.isAarch64; 32 }; 33 }
+2
pkgs/tools/video/tsduck/default.nix
··· 79 license = licenses.bsd2; 80 maintainers = with maintainers; [ siriobalmelli ]; 81 platforms = platforms.all; 82 }; 83 }
··· 79 license = licenses.bsd2; 80 maintainers = with maintainers; [ siriobalmelli ]; 81 platforms = platforms.all; 82 + # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs 83 + broken = stdenv.isDarwin; 84 }; 85 }
+2
pkgs/tools/virtualization/xe-guest-utilities/default.nix
··· 9 maintainers = with lib.maintainers; [ benwbooth ]; 10 platforms = lib.platforms.linux; 11 license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; 12 }; 13 src = fetchurl { 14 url = "https://sources.archlinux.org/other/community/xe-guest-utilities/xe-guest-utilities_${version}-1120.tar.gz";
··· 9 maintainers = with lib.maintainers; [ benwbooth ]; 10 platforms = lib.platforms.linux; 11 license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; 12 + # never built on aarch64-linux since first introduction in nixpkgs 13 + broken = stdenv.isLinux && stdenv.isAarch64; 14 }; 15 src = fetchurl { 16 url = "https://sources.archlinux.org/other/community/xe-guest-utilities/xe-guest-utilities_${version}-1120.tar.gz";
+4
pkgs/top-level/all-packages.nix
··· 1944 1945 cen64 = callPackage ../applications/emulators/cen64 { }; 1946 1947 citra-canary = callPackage ../applications/emulators/citra { 1948 branch = "canary"; 1949 }; ··· 34512 }; 34513 34514 minecraft = callPackage ../games/minecraft { }; 34515 34516 minecraftServers = import ../games/minecraft-servers { inherit callPackage lib javaPackages; }; 34517 minecraft-server = minecraftServers.vanilla; # backwards compatibility
··· 1944 1945 cen64 = callPackage ../applications/emulators/cen64 { }; 1946 1947 + citations = callPackage ../applications/misc/citations { }; 1948 + 1949 citra-canary = callPackage ../applications/emulators/citra { 1950 branch = "canary"; 1951 }; ··· 34514 }; 34515 34516 minecraft = callPackage ../games/minecraft { }; 34517 + 34518 + minecraft-server-hibernation = callPackage ../tools/games/minecraft/minecraft-server-hibernation { }; 34519 34520 minecraftServers = import ../games/minecraft-servers { inherit callPackage lib javaPackages; }; 34521 minecraft-server = minecraftServers.vanilla; # backwards compatibility