Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub d2abfd7e 790f8b09

+29 -27
+4 -4
pkgs/by-name/au/autobrr/package.nix
··· 13 14 let 15 pname = "autobrr"; 16 - version = "1.61.0"; 17 src = fetchFromGitHub { 18 owner = "autobrr"; 19 repo = "autobrr"; 20 tag = "v${version}"; 21 - hash = "sha256-qFLHszkdpnOZj7dalwSPX/NSlAtLcVpIcEXxbtE8lLU="; 22 }; 23 24 autobrr-web = stdenvNoCC.mkDerivation { ··· 40 src 41 sourceRoot 42 ; 43 - hash = "sha256-ifzkLoXTdySr3uTy4Mc4WvDA6yd0RBVXbTtozHequsA="; 44 }; 45 46 postBuild = '' ··· 60 src 61 ; 62 63 - vendorHash = "sha256-bbIoNW32b6N6t/MvCfSN/BdoHN0rZIMqWsJHL2amKPE="; 64 65 preBuild = '' 66 cp -r ${autobrr-web}/* web/dist
··· 13 14 let 15 pname = "autobrr"; 16 + version = "1.62.0"; 17 src = fetchFromGitHub { 18 owner = "autobrr"; 19 repo = "autobrr"; 20 tag = "v${version}"; 21 + hash = "sha256-lygDs92WiIzHYgYqel2nseWcXgBFEQV+i5tC0NYpYUE="; 22 }; 23 24 autobrr-web = stdenvNoCC.mkDerivation { ··· 40 src 41 sourceRoot 42 ; 43 + hash = "sha256-XFGxutHWk1RHnrN//WVTr4RyARIkygdG2C1Af5W0dBc="; 44 }; 45 46 postBuild = '' ··· 60 src 61 ; 62 63 + vendorHash = "sha256-/MOP06po885vg1C6j+let8UC710j68oP+L3j9oEU0Lw="; 64 65 preBuild = '' 66 cp -r ${autobrr-web}/* web/dist
+3 -3
pkgs/by-name/do/double-entry-generator/package.nix
··· 6 }: 7 buildGoModule rec { 8 pname = "double-entry-generator"; 9 - version = "2.8.0"; 10 src = fetchFromGitHub { 11 owner = "deb-sig"; 12 repo = "double-entry-generator"; 13 - hash = "sha256-DsNcQacbdBzOMK9mVuuK8yz9RXqykYLhXE5YSFYmipA="; 14 rev = "v${version}"; 15 }; 16 17 - vendorHash = "sha256-/QMt8zPvHM9znUc0+iUC82bOUJoBmH+shJ9D7AHiQ1E="; 18 19 excludedPackages = [ "hack" ]; 20
··· 6 }: 7 buildGoModule rec { 8 pname = "double-entry-generator"; 9 + version = "2.9.0"; 10 src = fetchFromGitHub { 11 owner = "deb-sig"; 12 repo = "double-entry-generator"; 13 + hash = "sha256-GscpYNS30npOVZzRmbuCQvJzamgaK4riBiSngBg7szc="; 14 rev = "v${version}"; 15 }; 16 17 + vendorHash = "sha256-NoWUaawApdTSWGRul9mpOxgRZWTE7LTz3pJgwU2NWVU="; 18 19 excludedPackages = [ "hack" ]; 20
+2 -2
pkgs/by-name/en/enzyme/package.nix
··· 7 }: 8 llvmPackages.stdenv.mkDerivation rec { 9 pname = "enzyme"; 10 - version = "0.0.175"; 11 12 src = fetchFromGitHub { 13 owner = "EnzymeAD"; 14 repo = "Enzyme"; 15 rev = "v${version}"; 16 - hash = "sha256-6uqPnkJeyn4R1mc/vVSVIl6sarSo41drKe9tTqWDJU0="; 17 }; 18 19 postPatch = ''
··· 7 }: 8 llvmPackages.stdenv.mkDerivation rec { 9 pname = "enzyme"; 10 + version = "0.0.176"; 11 12 src = fetchFromGitHub { 13 owner = "EnzymeAD"; 14 repo = "Enzyme"; 15 rev = "v${version}"; 16 + hash = "sha256-/c8gxv9i4oHp3/7z6c1lU1lWPsPK27xkjjNjrPwieZE="; 17 }; 18 19 postPatch = ''
+2 -2
pkgs/by-name/op/open-policy-agent/package.nix
··· 14 15 buildGoModule (finalAttrs: { 16 pname = "open-policy-agent"; 17 - version = "1.4.0"; 18 19 src = fetchFromGitHub { 20 owner = "open-policy-agent"; 21 repo = "opa"; 22 tag = "v${finalAttrs.version}"; 23 - hash = "sha256-oFtF/Uze9X1aaDzQXpZwbRXi11VnTTkkosfSSIeIxcc="; 24 }; 25 26 vendorHash = null;
··· 14 15 buildGoModule (finalAttrs: { 16 pname = "open-policy-agent"; 17 + version = "1.4.2"; 18 19 src = fetchFromGitHub { 20 owner = "open-policy-agent"; 21 repo = "opa"; 22 tag = "v${finalAttrs.version}"; 23 + hash = "sha256-4FRNTB24JWyF3Zuhx3T6LjNs83+wDh4gmE9rh3cu/Vk="; 24 }; 25 26 vendorHash = null;
+5
pkgs/development/compilers/llvm/common/libunwind/default.nix
··· 12 python3, 13 libcxx, 14 enableShared ? !stdenv.hostPlatform.isStatic, 15 devExtraCmakeFlags ? [ ], 16 getVersionFile, 17 }: ··· 105 '' 106 + lib.optionalString (enableShared && stdenv.hostPlatform.isWindows) '' 107 ln -s $out/lib/libunwind.dll.a $out/lib/libunwind_shared.dll.a 108 ''; 109 110 meta = llvm_meta // {
··· 12 python3, 13 libcxx, 14 enableShared ? !stdenv.hostPlatform.isStatic, 15 + doFakeLibgcc ? stdenv.hostPlatform.useLLVM, 16 devExtraCmakeFlags ? [ ], 17 getVersionFile, 18 }: ··· 106 '' 107 + lib.optionalString (enableShared && stdenv.hostPlatform.isWindows) '' 108 ln -s $out/lib/libunwind.dll.a $out/lib/libunwind_shared.dll.a 109 + '' 110 + + lib.optionalString (doFakeLibgcc) '' 111 + ln -s $out/lib/libunwind.so $out/lib/libgcc_s.so 112 + ln -s $out/lib/libunwind.so $out/lib/libgcc_s.so.1 113 ''; 114 115 meta = llvm_meta // {
+5 -13
pkgs/development/python-modules/rstcheck/default.nix
··· 1 { 2 lib, 3 - stdenv, 4 buildPythonPackage, 5 - docutils, 6 fetchFromGitHub, 7 setuptools, 8 setuptools-scm, 9 - pydantic, 10 pytestCheckHook, 11 pythonOlder, 12 rstcheck-core, 13 typer, 14 - types-docutils, 15 }: 16 17 buildPythonPackage rec { ··· 34 ]; 35 36 dependencies = [ 37 - docutils 38 rstcheck-core 39 - types-docutils 40 - pydantic 41 typer 42 ]; 43 44 - nativeCheckInputs = [ pytestCheckHook ]; 45 46 - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 47 - # Disabled until https://github.com/rstcheck/rstcheck-core/issues/19 is resolved. 48 - "test_error_without_config_file_macos" 49 - "test_file_1_is_bad_without_config_macos" 50 - ]; 51 52 pythonImportsCheck = [ "rstcheck" ]; 53
··· 1 { 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6 setuptools-scm, 7 pytestCheckHook, 8 pythonOlder, 9 rstcheck-core, 10 + sphinx, 11 typer, 12 }: 13 14 buildPythonPackage rec { ··· 31 ]; 32 33 dependencies = [ 34 rstcheck-core 35 typer 36 ]; 37 38 + optional-dependencies = { 39 + sphinx = [ sphinx ]; 40 + }; 41 42 + nativeCheckInputs = [ pytestCheckHook ]; 43 44 pythonImportsCheck = [ "rstcheck" ]; 45
+1
pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix
··· 81 lib.licenses.bsd2 82 lib.licenses.bsd3 83 ]; 84 }; 85 })
··· 81 lib.licenses.bsd2 82 lib.licenses.bsd3 83 ]; 84 + platforms = lib.platforms.darwin; 85 }; 86 })
+3 -3
pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix
··· 6 7 buildNpmPackage rec { 8 pname = "universal-remote-card"; 9 - version = "4.4.3"; 10 11 src = fetchFromGitHub { 12 owner = "Nerwyn"; 13 repo = "android-tv-card"; 14 rev = version; 15 - hash = "sha256-LhA4yDodTyeKxSr3BAYea/gohrHdsQIb2+MVixOBjC8="; 16 }; 17 18 patches = [ ./dont-call-git.patch ]; 19 20 - npmDepsHash = "sha256-/0bxOC9e8+mfWAyj/yPXVGS4OAdFNU5H3x8z9aS0LBA="; 21 22 installPhase = '' 23 runHook preInstall
··· 6 7 buildNpmPackage rec { 8 pname = "universal-remote-card"; 9 + version = "4.4.4"; 10 11 src = fetchFromGitHub { 12 owner = "Nerwyn"; 13 repo = "android-tv-card"; 14 rev = version; 15 + hash = "sha256-+FBNhN1sW4tjwWxGXAnKIPDR5gZtKoekh/N8mioXo+8="; 16 }; 17 18 patches = [ ./dont-call-git.patch ]; 19 20 + npmDepsHash = "sha256-KzxcEItSMTAeARjYRCmGjEIGuMLrdFjs+3AfcLr6AHc="; 21 22 installPhase = '' 23 runHook preInstall
+4
pkgs/top-level/all-packages.nix
··· 4362 4363 rstcheck = with python3Packages; toPythonApplication rstcheck; 4364 4365 rtmpdump_gnutls = rtmpdump.override { 4366 gnutlsSupport = true; 4367 opensslSupport = false;
··· 4362 4363 rstcheck = with python3Packages; toPythonApplication rstcheck; 4364 4365 + rstcheckWithSphinx = rstcheck.overridePythonAttrs (oldAttrs: { 4366 + dependencies = oldAttrs.dependencies ++ oldAttrs.optional-dependencies.sphinx; 4367 + }); 4368 + 4369 rtmpdump_gnutls = rtmpdump.override { 4370 gnutlsSupport = true; 4371 opensslSupport = false;