Merge master into staging-next

This commit is contained in:
github-actions[bot] 2022-12-14 00:02:18 +00:00 committed by GitHub
commit 1e7dd98694
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
146 changed files with 449 additions and 105 deletions

View File

@ -1677,6 +1677,15 @@
githubId = 214787; githubId = 214787;
name = "Herwig Hochleitner"; name = "Herwig Hochleitner";
}; };
benediktbroich = {
name = "Benedikt Broich";
email = "b.broich@posteo.de";
github = "BenediktBroich";
githubId = 32903896;
keys = [{
fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976";
}];
};
benesim = { benesim = {
name = "Benjamin Isbarn"; name = "Benjamin Isbarn";
email = "benjamin.isbarn@gmail.com"; email = "benjamin.isbarn@gmail.com";

View File

@ -70,6 +70,8 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ jtojnar ]; maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -62,5 +62,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl3; license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.magnetophon ]; maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -37,5 +37,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ ftrvxmtrx ]; maintainers = with maintainers; [ ftrvxmtrx ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -45,5 +45,7 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ fpletz ]; maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
# never built on x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isx86_64;
}; };
} }

View File

@ -59,5 +59,7 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ kim0 ]; maintainers = with maintainers; [ kim0 ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -83,6 +83,8 @@ rustPlatform.buildRustPackage rec {
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ adjacentresearch ]; maintainers = with maintainers; [ adjacentresearch ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
passthru.updateScript = ./update.sh; passthru.updateScript = ./update.sh;
} }

View File

@ -387,7 +387,7 @@ self: super: {
}); });
forms = super.forms.overrideAttrs (old: { forms = super.forms.overrideAttrs (old: {
dependencies = with self; [ self.self ]; dependencies = [ self.self ];
}); });
fruzzy = fruzzy =
@ -713,7 +713,7 @@ self: super: {
}; };
skim-vim = super.skim-vim.overrideAttrs (old: { skim-vim = super.skim-vim.overrideAttrs (old: {
dependencies = with self; [ skim ]; dependencies = [ self.skim ];
}); });
sniprun = sniprun =

View File

@ -48,5 +48,7 @@ stdenv.mkDerivation rec {
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ shamilton ]; maintainers = with maintainers; [ shamilton ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -46,13 +46,13 @@ in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "imagemagick"; pname = "imagemagick";
version = "7.1.0-53"; version = "7.1.0-54";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ImageMagick"; owner = "ImageMagick";
repo = "ImageMagick"; repo = "ImageMagick";
rev = version; rev = version;
hash = "sha256-U111mor498zAyoYKqCerb9cnxUUOlXKYPfaIzKxZiUM="; hash = "sha256-aQipCcqOS9viOLPHEx21MrJHdxYKZl++3DIKMz97Ukw=";
}; };
outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big

View File

@ -39,5 +39,7 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ raskin ]; maintainers = with maintainers; [ raskin ];
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -70,5 +70,7 @@ stdenv.mkDerivation rec {
license = licenses.unlicense; license = licenses.unlicense;
maintainers = with maintainers; [ OPNA2608 ]; maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -6,8 +6,10 @@
, ninja , ninja
, pkg-config , pkg-config
, wrapGAppsHook4 , wrapGAppsHook4
, libepoxy , feedbackd
, gtk4 , gtk4
, libepoxy
, xorg
, zbar , zbar
, tiffSupport ? true , tiffSupport ? true
, libraw , libraw
@ -27,13 +29,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "megapixels"; pname = "megapixels";
version = "1.5.2"; version = "1.6.0";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "postmarketOS"; owner = "postmarketOS";
repo = "megapixels"; repo = "megapixels";
rev = version; rev = version;
hash = "sha256-UH3NQdMlZTi4hc8HNSbCcQSm0rxI78RMCRYll1NCBO8="; hash = "sha256-xrO9Xr9DPjlDs4yaKy32yb4X8wFqLKfy8rsjtBuN+Rg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -45,8 +47,10 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
libepoxy feedbackd
gtk4 gtk4
libepoxy
xorg.libXrandr
zbar zbar
]; ];

View File

@ -23,5 +23,7 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ qyliss ]; maintainers = with maintainers; [ qyliss ];
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -0,0 +1,74 @@
{ darwin
, desktop-file-utils
, fetchFromGitLab
, gettext
, glib
, gtk4
, gtksourceview5
, lib
, libadwaita
, meson
, ninja
, pkg-config
, poppler
, rustPlatform
, stdenv
, testers
, wrapGAppsHook4
}:
stdenv.mkDerivation (finalAttrs: {
pname = "citations";
version = "0.5.1";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = finalAttrs.pname;
rev = finalAttrs.version;
hash = "sha256-QPK6Nw0tDdttUDFKMgThTYMTxGXsn5OReqf1LNAai7g=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
src = finalAttrs.src;
name = "${finalAttrs.pname}-${finalAttrs.version}";
hash = "sha256-Kounxi4JxoU4+rWMWNB8rzTyG3MDKYD0OzYfAHwm6bY=";
};
nativeBuildInputs = [
desktop-file-utils
gettext
glib
meson
ninja
pkg-config
rustPlatform.cargoSetupHook
rustPlatform.rust.cargo
rustPlatform.rust.rustc
wrapGAppsHook4
];
buildInputs = [
glib
gtk4
gtksourceview5
libadwaita
poppler
] ++ lib.optional stdenv.isDarwin [
darwin.apple_sdk.frameworks.Foundation
];
doCheck = true;
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "citations --help";
};
meta = with lib; {
description = "Manage your bibliographies using the BibTeX format";
homepage = "https://apps.gnome.org/app/org.gnome.World.Citations";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ benediktbroich ];
platforms = platforms.unix;
};
})

View File

@ -60,5 +60,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ foo-dogsquared ]; maintainers = with maintainers; [ foo-dogsquared ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -35,5 +35,7 @@ stdenv.mkDerivation rec {
license = with licenses; [ publicDomain ]; license = with licenses; [ publicDomain ];
maintainers = with maintainers; [ xaverdh irenes ]; maintainers = with maintainers; [ xaverdh irenes ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -68,5 +68,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ hqurve ]; maintainers = with maintainers; [ hqurve ];
platforms = platforms.linux; platforms = platforms.linux;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -111,13 +111,13 @@ in {
application = mkSweetHome3D rec { application = mkSweetHome3D rec {
pname = lib.toLower module + "-application"; pname = lib.toLower module + "-application";
version = "6.6"; version = "7.0.2";
module = "SweetHome3D"; module = "SweetHome3D";
description = "Design and visualize your future home"; description = "Design and visualize your future home";
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/sweethome3d/${module}-${version}-src.zip"; url = "mirror://sourceforge/sweethome3d/${module}-${version}-src.zip";
sha256 = "sha256-CnVXpmodmyoZdqmt7OgRyzuLeDhkPhrAS/CldFM8SQs="; sha256 = "sha256-9Jv/U7afG6+LwPB6IhqLePjQA67bPKelP+UcuvizBqo=";
}; };
desktopName = "Sweet Home 3D"; desktopName = "Sweet Home 3D";
icons = { icons = {

View File

@ -19,9 +19,9 @@
} }
}, },
"beta": { "beta": {
"version": "109.0.5414.25", "version": "109.0.5414.36",
"sha256": "1yl8bxbxnlvypqvnb0kd4z3c793m375pwza43gab35kc1azxfnrg", "sha256": "14kicgbadb83401dpfqnz3hb3dxi55nfydj5wpmg29dyw0bdndpm",
"sha256bin64": "1rld29mq6dvd85nvsrxj155m79hylxknhphlmw82i74fa7r6lxhm", "sha256bin64": "11lpv9432xqkdj4q89sfyd0261444s9amncnzdmij93ni1wac8b4",
"deps": { "deps": {
"gn": { "gn": {
"version": "2022-11-10", "version": "2022-11-10",

View File

@ -35,5 +35,7 @@ buildGoPackage rec {
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ periklis ]; maintainers = with maintainers; [ periklis ];
platforms = platforms.darwin; platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -2,13 +2,13 @@
buildGoModule rec { buildGoModule rec {
pname = "fn"; pname = "fn";
version = "0.6.22"; version = "0.6.23";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fnproject"; owner = "fnproject";
repo = "cli"; repo = "cli";
rev = version; rev = version;
hash = "sha256-FXgDCZcHcKvgkV1YFjMKl+5oJ5H1DV/Gj9am5VJuIjw="; hash = "sha256-3g8S3cJ3RC06rvPMyQSKf8L4DkDTZ0Oe+6eh+rwyqg8=";
}; };
vendorSha256 = null; vendorSha256 = null;
@ -32,6 +32,5 @@ buildGoModule rec {
homepage = "https://fnproject.io"; homepage = "https://fnproject.io";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.c4605 ]; maintainers = [ maintainers.c4605 ];
broken = stdenv.isDarwin;
}; };
} }

View File

@ -1,22 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }: { lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec { buildGoModule rec {
pname = "kube-score"; pname = "kube-score";
version = "1.14.0"; version = "1.16.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zegl"; owner = "zegl";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-6/+S1aj2qoUPz+6+8Z4Z5dpfyOi/DnrLLUpPgBn/OxU="; hash = "sha256-dKvPLAT9e8gNJkKDF7dQPGLSkv9QUjQklUX8Dm8i33E=";
}; };
vendorSha256 = "sha256-0Zi62FmX4rFl3os2ehtussSSUPJtxLq7622CEdeKZCs="; vendorHash = "sha256-pcNdszOfsYKiASOUNKflbr89j/wb9ILQvjMJYsiGPWo=";
meta = with lib; { meta = with lib; {
description = "Kubernetes object analysis with recommendations for improved reliability and security"; description = "Kubernetes object analysis with recommendations for improved reliability and security";
homepage = "https://github.com/zegl/kube-score"; homepage = "https://github.com/zegl/kube-score";
license = licenses.mit; changelog = "https://github.com/zegl/kube-score/releases/tag/v${version}";
maintainers = [ maintainers.j4m3s ]; license = licenses.mit;
maintainers = with maintainers; [ j4m3s ];
}; };
} }

View File

@ -8,19 +8,20 @@
buildGoModule rec { buildGoModule rec {
pname = "kubeone"; pname = "kubeone";
version = "1.5.3"; version = "1.5.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kubermatic"; owner = "kubermatic";
repo = "kubeone"; repo = "kubeone";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-CjT6YKC6DJvs+LeKIzOl2Y6n0/yGv0nz8EfHqiSnIDo="; hash = "sha256-s94o2/wInWMWbJcq8cpEbJYHL6vpD3Vurl/rOigzQRk=";
}; };
vendorSha256 = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA="; vendorHash = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA=";
ldflags = [ ldflags = [
"-s -w" "-s"
"-w"
"-X k8c.io/kubeone/pkg/cmd.version=${version}" "-X k8c.io/kubeone/pkg/cmd.version=${version}"
"-X k8c.io/kubeone/pkg/cmd.date=unknown" "-X k8c.io/kubeone/pkg/cmd.date=unknown"
]; ];
@ -40,10 +41,11 @@ buildGoModule rec {
command = "kubeone version"; command = "kubeone version";
}; };
meta = { meta = with lib; {
description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments."; description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments";
homepage = "https://kubeone.io/"; homepage = "https://kubeone.io/";
license = lib.licenses.asl20; changelog = "https://github.com/kubermatic/kubeone/releases/tag/v${version}";
maintainers = with lib.maintainers; [ lblasc ]; license = licenses.asl20;
maintainers = with maintainers; [ lblasc ];
}; };
} }

View File

@ -57,6 +57,11 @@ stdenv.mkDerivation rec {
runHook postConfigure runHook postConfigure
''; '';
# Only affects unused scripts in $out/share/element/electron/scripts. Also
# breaks because there are some `node`-scripts with a `npx`-shebang and
# this shouldn't be in the closure just for unused scripts.
dontPatchShebangs = true;
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild

View File

@ -1,7 +1,7 @@
{ {
"version": "1.11.15", "version": "1.11.16",
"desktopSrcHash": "l+IjI3uvnOjaJA6IszDSuOO08SMqbUf8rI/u12g5Rxo=", "desktopSrcHash": "EeED62HRpaWN91yxcDvwwNUWmDRU38lyT5ba1S4go6Q=",
"desktopYarnHash": "024vd7xiwialfrag325558qjrqlfxzy9xq7jb15ysawand1k2xyv", "desktopYarnHash": "1f0bghcbzab2dkvxmvhhc0dzyk3js09v2sh93gsjsq9mkhld1k0w",
"webSrcHash": "YLQ4z333RMx9qyVRTBbDCWLTy5QqLlHmYpmOa8vlCbg=", "webSrcHash": "T6UcGNm4i+Nc4Yk/mVFc4L9jxWQtOpjps1ZtEhilHW0=",
"webYarnHash": "1ll2sj9q3h2b76383bqv8a8ckqlk8b131zwx223fnz8mfqsc9br0" "webYarnHash": "1jyzym34lzadniqrysbm1m5agw03hzw6ymmdxpbay38afrhrciyk"
} }

View File

@ -217,7 +217,6 @@ stdenv.mkDerivation rec {
}; };
meta = { meta = {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "Kotatogram experimental Telegram Desktop fork"; description = "Kotatogram experimental Telegram Desktop fork";
longDescription = '' longDescription = ''
Unofficial desktop client for the Telegram messenger, based on Telegram Desktop. Unofficial desktop client for the Telegram messenger, based on Telegram Desktop.
@ -229,5 +228,7 @@ stdenv.mkDerivation rec {
homepage = "https://kotatogram.github.io"; homepage = "https://kotatogram.github.io";
changelog = "https://github.com/kotatogram/kotatogram-desktop/releases/tag/k{version}"; changelog = "https://github.com/kotatogram/kotatogram-desktop/releases/tag/k{version}";
maintainers = with maintainers; [ ilya-fedin ]; maintainers = with maintainers; [ ilya-fedin ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -49,5 +49,7 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21Only; license = licenses.lgpl21Only;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -45,5 +45,7 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ eelco ]; maintainers = with maintainers; [ eelco ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl2; license = licenses.gpl2;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -44,5 +44,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ bobvanderlinden ]; maintainers = with maintainers; [ bobvanderlinden ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -24,5 +24,7 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
homepage = "https://github.com/umurmur/umurmur"; homepage = "https://github.com/umurmur/umurmur";
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -20,5 +20,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Only; license = licenses.gpl3Only;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = teams.c3d2.members; maintainers = teams.c3d2.members;
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.mafo ]; maintainers = [ maintainers.mafo ];
license = "xearth"; license = "xearth";
platforms=platforms.unix; platforms=platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -68,5 +68,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2; license = lib.licenses.gpl2;
platforms = with lib.platforms; linux ++ darwin; platforms = with lib.platforms; linux ++ darwin;
maintainers = [ lib.maintainers.cge ]; maintainers = [ lib.maintainers.cge ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -62,11 +62,12 @@ stdenv.mkDerivation rec {
]; ];
meta = with lib; { meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "An open-source machine learning framework for global analyses of parton distributions"; description = "An open-source machine learning framework for global analyses of parton distributions";
homepage = "https://docs.nnpdf.science/"; homepage = "https://docs.nnpdf.science/";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = [ maintainers.veprbl ]; maintainers = [ maintainers.veprbl ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -44,5 +44,7 @@ stdenv.mkDerivation {
homepage = "https://agile.hepforge.org/trac/wiki/Sacrifice"; homepage = "https://agile.hepforge.org/trac/wiki/Sacrifice";
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ veprbl ]; maintainers = with lib.maintainers; [ veprbl ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -34,5 +34,7 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.com/sherpa-team/sherpa"; homepage = "https://gitlab.com/sherpa-team/sherpa";
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ]; maintainers = with maintainers; [ veprbl ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -46,5 +46,7 @@ stdenv.mkDerivation rec {
license = licenses.isc; license = licenses.isc;
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ abbe afh ]; maintainers = with maintainers; [ abbe afh ];
# never built on x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isx86_64;
}; };
} }

View File

@ -22,5 +22,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ puffnfresh veprbl ]; maintainers = with maintainers; [ puffnfresh veprbl ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -43,5 +43,7 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ glittershark ]; maintainers = with maintainers; [ glittershark ];
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -34,5 +34,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.balsoft ]; maintainers = [ maintainers.balsoft ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -63,5 +63,7 @@ stdenv.mkDerivation rec {
license = with licenses; gpl3Plus; license = with licenses; gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix; platforms = with platforms; unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -33,5 +33,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.lnl7 ]; maintainers = [ maintainers.lnl7 ];
license = licenses.bsd2; license = licenses.bsd2;
platforms = platforms.darwin; platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -38,5 +38,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.darwin ++ platforms.linux; platforms = platforms.darwin ++ platforms.linux;
maintainers = [ maintainers.sbond75 ]; maintainers = [ maintainers.sbond75 ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -93,5 +93,7 @@ stdenv.mkDerivation rec {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ raskin ]; maintainers = with maintainers; [ raskin ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -22,11 +22,12 @@ in stdenv.mkDerivation {
''; '';
meta = with lib; { meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "A design system for interactive fiction"; description = "A design system for interactive fiction";
homepage = "http://inform7.com/"; homepage = "http://inform7.com/";
license = licenses.artistic2; license = licenses.artistic2;
maintainers = with maintainers; [ mbbx6spp ]; maintainers = with maintainers; [ mbbx6spp ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -94,6 +94,8 @@ stdenv.mkDerivation (rec {
larger LLVM Project, such as the Clang expression parser and LLVM larger LLVM Project, such as the Clang expression parser and LLVM
disassembler. disassembler.
''; '';
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} // lib.optionalAttrs enableManpages { } // lib.optionalAttrs enableManpages {
pname = "lldb-manpages"; pname = "lldb-manpages";

View File

@ -82,5 +82,7 @@ stdenv.mkDerivation rec {
larger LLVM Project, such as the Clang expression parser and LLVM larger LLVM Project, such as the Clang expression parser and LLVM
disassembler. disassembler.
''; '';
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -82,5 +82,7 @@ stdenv.mkDerivation rec {
larger LLVM Project, such as the Clang expression parser and LLVM larger LLVM Project, such as the Clang expression parser and LLVM
disassembler. disassembler.
''; '';
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -85,5 +85,7 @@ stdenv.mkDerivation rec {
larger LLVM Project, such as the Clang expression parser and LLVM larger LLVM Project, such as the Clang expression parser and LLVM
disassembler. disassembler.
''; '';
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -44,5 +44,7 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21; license = licenses.lgpl21;
platforms = with platforms; (linux ++ darwin); platforms = with platforms; (linux ++ darwin);
maintainers = with maintainers; [ maggesi ]; maintainers = with maintainers; [ maggesi ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -88,5 +88,7 @@ in stdenv.mkDerivation {
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
mainProgram = "sml"; mainProgram = "sml";
# never built on x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isx86_64;
}; };
} }

View File

@ -89,5 +89,7 @@ in stdenv.mkDerivation rec {
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ]; maintainers = with maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ];
license = licenses.mit; license = licenses.mit;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -38,5 +38,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/hexagonal-sun/bic"; homepage = "https://github.com/hexagonal-sun/bic";
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ hexagonal-sun ]; maintainers = with maintainers; [ hexagonal-sun ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -20,5 +20,7 @@ stdenv.mkDerivation rec {
description = "The Classified Advertisements library provides a generic means for matching resources"; description = "The Classified Advertisements library provides a generic means for matching resources";
license = lib.licenses.asl20; license = lib.licenses.asl20;
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -18,5 +18,7 @@ stdenv.mkDerivation rec {
platforms = platforms.unix; platforms = platforms.unix;
badPlatforms = [ "x86_64-darwin" ]; badPlatforms = [ "x86_64-darwin" ];
license = licenses.lgpl21; license = licenses.lgpl21;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -13,5 +13,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2; license = lib.licenses.gpl2;
maintainers = [ ]; maintainers = [ ];
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -113,5 +113,7 @@ stdenv.mkDerivation rec {
description = "GNU Compiler Collection, version ${version} -- C++ standard library"; description = "GNU Compiler Collection, version ${version} -- C++ standard library";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -71,6 +71,8 @@ let self = stdenv.mkDerivation rec {
maintainers = [ ]; maintainers = [ ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
badPlatforms = [ "x86_64-darwin" ]; badPlatforms = [ "x86_64-darwin" ];
# never built on aarch64-darwin, aarch64-linux since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
}; };
in self in self

View File

@ -80,6 +80,8 @@ let self = stdenv.mkDerivation rec {
platforms = platforms.all; platforms = platforms.all;
badPlatforms = [ "x86_64-darwin" ]; badPlatforms = [ "x86_64-darwin" ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
}; };
in self in self

View File

@ -20,5 +20,7 @@ stdenv.mkDerivation rec {
description = "A simple non-validating css1 and html parser for C++"; description = "A simple non-validating css1 and html parser for C++";
license = licenses.lgpl2; license = licenses.lgpl2;
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -58,5 +58,7 @@ stdenv.mkDerivation rec {
description = "An image loading and rendering library for X11"; description = "An image loading and rendering library for X11";
platforms = platforms.unix; platforms = platforms.unix;
license = with licenses; [ gpl2Only lgpl2Only ]; license = with licenses; [ gpl2Only lgpl2Only ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -31,5 +31,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.michelk ]; maintainers = [ lib.maintainers.michelk ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -25,5 +25,7 @@ stdenv.mkDerivation rec {
license = licenses.lgpl3; license = licenses.lgpl3;
maintainers = with maintainers; [ eliasp ]; maintainers = with maintainers; [ eliasp ];
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -24,5 +24,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.gnu.org/software/libffcall/"; homepage = "https://www.gnu.org/software/libffcall/";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -60,5 +60,7 @@ stdenv.mkDerivation rec {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ armeenm ]; maintainers = with maintainers; [ armeenm ];
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -21,5 +21,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/nfc-tools/libfreefare"; homepage = "https://github.com/nfc-tools/libfreefare";
maintainers = with maintainers; [bobvanderlinden]; maintainers = with maintainers; [bobvanderlinden];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -31,5 +31,7 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21Only; license = licenses.lgpl21Only;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.titanous ]; maintainers = [ maintainers.titanous ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -29,5 +29,7 @@ stdenv.mkDerivation rec {
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -18,10 +18,11 @@ stdenv.mkDerivation rec {
}; };
meta = with lib; { meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "C++ library for zkSNARKs"; description = "C++ library for zkSNARKs";
homepage = "https://github.com/scipr-lab/libsnark"; homepage = "https://github.com/scipr-lab/libsnark";
license = licenses.mit; license = licenses.mit;
platforms = lib.platforms.linux ++ lib.platforms.darwin; platforms = lib.platforms.linux ++ lib.platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -60,5 +60,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ siraben luc65r ]; maintainers = with maintainers; [ siraben luc65r ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -31,5 +31,7 @@ stdenv.mkDerivation rec {
description = "A library for integer-based number-theoretic applications"; description = "A library for integer-based number-theoretic applications";
license = with licenses; [ publicDomain wtfpl ]; license = with licenses; [ publicDomain wtfpl ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -30,6 +30,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ ttuegel ]; maintainers = with maintainers; [ ttuegel ];
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -45,5 +45,7 @@ stdenv.mkDerivation rec {
homepage = "http://hepmc.web.cern.ch/hepmc/"; homepage = "http://hepmc.web.cern.ch/hepmc/";
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ]; maintainers = with maintainers; [ veprbl ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -19,5 +19,7 @@ stdenv.mkDerivation rec {
description = "Implementation of calculation of the hadron jet cross sections"; description = "Implementation of calculation of the hadron jet cross sections";
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ veprbl ]; maintainers = with lib.maintainers; [ veprbl ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -25,5 +25,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ veprbl ]; maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -34,5 +34,7 @@ stdenv.mkDerivation rec {
license = with licenses; [ mit bsd3 mpl11 ftl ]; license = with licenses; [ mit bsd3 mpl11 ftl ];
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ CRTified ]; maintainers = with maintainers; [ CRTified ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -47,5 +47,7 @@ stdenv.mkDerivation rec {
license = licenses.epl10; license = licenses.epl10;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ aanderse ]; maintainers = with maintainers; [ aanderse ];
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -35,5 +35,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = teams.sage.members; maintainers = teams.sage.members;
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -26,5 +26,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; []; maintainers = with maintainers; [];
platforms = with platforms; unix; platforms = with platforms; unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -101,11 +101,12 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "fortify" "strictoverflow"]; hardeningDisable = [ "fortify" "strictoverflow"];
meta = with lib; { meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
homepage = "http://www.nsnam.org"; homepage = "http://www.nsnam.org";
license = licenses.gpl3; license = licenses.gpl3;
description = "A discrete time event network simulator"; description = "A discrete time event network simulator";
platforms = with platforms; unix; platforms = with platforms; unix;
maintainers = with maintainers; [ teto rgrunbla ]; maintainers = with maintainers; [ teto rgrunbla ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, zlib, readline, ncurses { lib, stdenv, fetchurl, zlib, readline, ncurses
# for tests # for tests
, python3Packages, sqldiff, sqlite-analyzer , python3Packages, sqldiff, sqlite-analyzer, tracker
# uses readline & ncurses for a better interactive experience if set to true # uses readline & ncurses for a better interactive experience if set to true
, interactive ? false , interactive ? false
@ -91,7 +91,7 @@ stdenv.mkDerivation rec {
passthru.tests = { passthru.tests = {
inherit (python3Packages) sqlalchemy; inherit (python3Packages) sqlalchemy;
inherit sqldiff sqlite-analyzer; inherit sqldiff sqlite-analyzer tracker;
}; };
meta = { meta = {

View File

@ -23,5 +23,7 @@ stdenv.mkDerivation rec {
homepage = "https://launchpad.net/subunit"; homepage = "https://launchpad.net/subunit";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.all; platforms = platforms.all;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -22,11 +22,12 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "Library for multiprecision complex arithmetic with exact rounding"; description = "Library for multiprecision complex arithmetic with exact rounding";
homepage = "https://github.com/VcDevel/Vc"; homepage = "https://github.com/VcDevel/Vc";
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -15,14 +15,14 @@ assert ncclSupport -> cudaSupport;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "xgboost"; pname = "xgboost";
version = "1.5.2"; version = "1.7.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dmlc"; owner = "dmlc";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
fetchSubmodules = true; fetchSubmodules = true;
sha256 = "sha256-h7zcHCOxe1h7HRB6idtjf4HUBEoHC4V2pqbN9hpe00g="; hash = "sha256-nXF6IYaK13n8fuNt1wOXoJCVNve/lwUROV7UE5W3RKA=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -12,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "bluetooth-auto-recovery"; pname = "bluetooth-auto-recovery";
version = "0.5.5"; version = "1.0.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices"; owner = "Bluetooth-Devices";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-f6HJlFqpmFhM9M1Cuvjz/63DXoikO33y/tmv57snI7g="; hash = "sha256-TkTWF8Ljt2cLIuz2FnktrZFAlpvTVkFh6evE8TSzJhk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -5,18 +5,22 @@
, bash , bash
, openssh , openssh
, pytestCheckHook , pytestCheckHook
, pythonOlder
, stdenv , stdenv
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "deploykit"; pname = "deploykit";
version = "1.0.1"; version = "1.0.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "numtide"; owner = "numtide";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-eKyqsGgnJmF2wUYa7HjC1Jwsh03qVTJEP1MtL7JL4Ts="; hash = "sha256-I1vAefWQBBRNykDw38LTNwdiPFxpPkLzCcevYAXO+Zo=";
}; };
buildInputs = [ buildInputs = [
@ -34,9 +38,14 @@ buildPythonPackage rec {
# don't swallow stdout/stderr # don't swallow stdout/stderr
pytestFlagsArray = [ "-s" ]; pytestFlagsArray = [ "-s" ];
pythonImportsCheck = [
"deploykit"
];
meta = with lib; { meta = with lib; {
description = "Execute commands remote via ssh and locally in parallel with python"; description = "Execute commands remote via ssh and locally in parallel with python";
homepage = "https://github.com/numtide/deploykit"; homepage = "https://github.com/numtide/deploykit";
changelog = "https://github.com/numtide/deploykit/releases/tag/${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ mic92 zowoq ]; maintainers = with maintainers; [ mic92 zowoq ];
platforms = platforms.unix; platforms = platforms.unix;

View File

@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pychromecast"; pname = "pychromecast";
version = "13.0.2"; version = "13.0.3";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
pname = "PyChromecast"; pname = "PyChromecast";
inherit version; inherit version;
hash = "sha256-G1IOR3SSzY/gIuTQQeZ2BW1f/7tsBbL0UJgBoGvGe+w="; hash = "sha256-s6Js6uxZqju1LjpwEgJUnlAFlKluHhQLORwntr0GtwE=";
}; };
postPatch = '' postPatch = ''

View File

@ -15,7 +15,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyoverkiz"; pname = "pyoverkiz";
version = "1.7.1"; version = "1.7.2";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "iMicknl"; owner = "iMicknl";
repo = "python-overkiz-api"; repo = "python-overkiz-api";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-PGictIBXrUIorAU9Ic41LzEQPJliCpwGoOlkteHUuEw="; hash = "sha256-9/xdFwf+r2z166w/4VIj31MahDWmaMdWLfTGot+RoYQ=";
}; };
postPatch = '' postPatch = ''

View File

@ -1,34 +1,22 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, pytestCheckHook , pythonOlder
, cmake , cmake
, numpy
, scipy , scipy
, scikit-learn
, stdenv , stdenv
, xgboost , xgboost
, pandas
, matplotlib
, graphviz
, datatable
, hypothesis
}: }:
buildPythonPackage { buildPythonPackage {
pname = "xgboost"; pname = "xgboost";
inherit (xgboost) version src meta; inherit (xgboost) version src meta;
disabled = pythonOlder "3.8";
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ xgboost ]; buildInputs = [ xgboost ];
propagatedBuildInputs = [ scipy ]; propagatedBuildInputs = [ numpy scipy ];
checkInputs = [
pytestCheckHook
scikit-learn
pandas
matplotlib
graphviz
datatable
hypothesis
];
# Override existing logic for locating libxgboost.so which is not appropriate for Nix # Override existing logic for locating libxgboost.so which is not appropriate for Nix
prePatch = let prePatch = let
@ -43,24 +31,13 @@ buildPythonPackage {
cd python-package cd python-package
''; '';
preCheck = '' # test setup tries to download test data with no option to disable
ln -sf ../demo . # (removing sklearn from checkInputs causes all previously enabled tests to be skipped)
ln -s ${xgboost}/bin/xgboost ../xgboost # and are extremely cpu intensive anyway
''; doCheck = false;
# tests are extremely cpu intensive, only run basic tests to ensure package is working pythonImportsCheck = [
pytestFlagsArray = ["../tests/python/test_basic.py"]; "xgboost"
disabledTestPaths = [
# Requires internet access: https://github.com/dmlc/xgboost/blob/03cd087da180b7dff21bd8ef34997bf747016025/tests/python/test_ranking.py#L81
"../tests/python/test_ranking.py"
];
disabledTests = [
"test_cli_binary_classification"
"test_model_compatibility"
] ++ lib.optionals stdenv.isDarwin [
# fails to connect to the com.apple.fonts daemon in sandboxed mode
"test_plotting"
"test_sklearn_plotting"
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;

View File

@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "zha-quirks"; pname = "zha-quirks";
version = "0.0.88"; version = "0.0.89";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "zigpy"; owner = "zigpy";
repo = "zha-device-handlers"; repo = "zha-device-handlers";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-GjKYa8wgNugGC4IZJfMLVJnlPAgBmTLd8Wwy6e4g/+U="; hash = "sha256-5qSznGO3Cke+lGPLHjzh/db5O0/Ypmd6D5MTHuiox6Q=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -36,7 +36,6 @@ rustPlatform.buildRustPackage rec {
''; '';
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin;
description = "A libre cross-platform disassembler"; description = "A libre cross-platform disassembler";
longDescription = '' longDescription = ''
Panopticon is a cross platform disassembler for reverse Panopticon is a cross platform disassembler for reverse
@ -47,5 +46,7 @@ rustPlatform.buildRustPackage rec {
''; '';
license = with licenses; [ gpl3 ]; license = with licenses; [ gpl3 ];
maintainers = with maintainers; [ leenaars ]; maintainers = with maintainers; [ leenaars ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

View File

@ -173,6 +173,8 @@ stdenv.mkDerivation rec {
license = licenses.asl20; license = licenses.asl20;
maintainers = lib.teams.bazel.members; maintainers = lib.teams.bazel.members;
inherit platforms; inherit platforms;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
inherit src; inherit src;

View File

@ -42,5 +42,7 @@ stdenv.mkDerivation rec {
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ McSinyx ]; maintainers = with maintainers; [ McSinyx ];
platforms = platforms.unix; platforms = platforms.unix;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -49,5 +49,7 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.hodapp ]; maintainers = [ maintainers.hodapp ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -36,5 +36,7 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/parcel-bundler/lightningcss/releases/tag/v${version}"; changelog = "https://github.com/parcel-bundler/lightningcss/releases/tag/v${version}";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ toastal ]; maintainers = with maintainers; [ toastal ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -49,5 +49,7 @@ in stdenv.mkDerivation rec {
license = licenses.mit; license = licenses.mit;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ mic92 ]; maintainers = with maintainers; [ mic92 ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
}; };
} }

View File

@ -38,5 +38,7 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/rojo-rbx/rojo/raw/v${version}/CHANGELOG.md"; changelog = "https://github.com/rojo-rbx/rojo/raw/v${version}/CHANGELOG.md";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ wackbyte ]; maintainers = with maintainers; [ wackbyte ];
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin;
}; };
} }

View File

@ -29,5 +29,7 @@ stdenv.mkDerivation rec {
homepage = "https://opendungeons.github.io"; homepage = "https://opendungeons.github.io";
license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ]; license = with licenses; [ gpl3Plus zlib mit cc-by-sa-30 cc0 ofl cc-by-30 ];
platforms = platforms.linux; platforms = platforms.linux;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View File

@ -58,11 +58,12 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_LINK = "-lopenal"; NIX_CFLAGS_LINK = "-lopenal";
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin;
description = "A compatible client of Ace of Spades 0.75"; description = "A compatible client of Ace of Spades 0.75";
homepage = "https://github.com/yvt/openspades/"; homepage = "https://github.com/yvt/openspades/";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ abbradar azahi ]; maintainers = with maintainers; [ abbradar azahi ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64);
}; };
} }

Some files were not shown because too many files have changed in this diff Show More