Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 9e2292f4 d2e4f1ab

+134 -166
+11
pkgs/applications/audio/musescore/default.nix
··· 2 2 stdenv, 3 3 lib, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 cmake, 6 7 wrapGAppsHook3, 7 8 wrapQtAppsHook, ··· 43 44 rev = "v${finalAttrs.version}"; 44 45 sha256 = "sha256-ha3rBILekycHiPdcaPNsbvlF289NzFs9srP3unOuJRg="; 45 46 }; 47 + 48 + # Backport + additional patch to fix build on Qt 6.9 49 + # FIXME: remove when no longer required 50 + patches = [ 51 + (fetchpatch { 52 + url = "https://github.com/musescore/MuseScore/commit/05056ed19520060c3912a09a3adfa0927057f956.patch"; 53 + hash = "sha256-50Hytuu2lQRbAI2JEwlKeMUmJxTUtfqgwru6U760hAY="; 54 + }) 55 + ./qt-6.9.patch 56 + ]; 46 57 47 58 cmakeFlags = [ 48 59 "-DMUSE_APP_BUILD_MODE=release"
+13
pkgs/applications/audio/musescore/qt-6.9.patch
··· 1 + diff --git a/src/palette/view/widgets/specialcharactersdialog.cpp b/src/palette/view/widgets/specialcharactersdialog.cpp 2 + index 2fe07bdb8f..dfcae1ded7 100644 3 + --- a/src/palette/view/widgets/specialcharactersdialog.cpp 4 + +++ b/src/palette/view/widgets/specialcharactersdialog.cpp 5 + @@ -712,7 +712,7 @@ void SpecialCharactersDialog::populateUnicode() 6 + std::shared_ptr<FSymbol> fs = std::make_shared<FSymbol>(gpaletteScore->dummy()); 7 + fs->setCode(code); 8 + fs->setFont(m_font); 9 + - m_pUnicode->appendElement(fs, QString("0x%1").arg(code, 5, 16, QLatin1Char('0'))); 10 + + m_pUnicode->appendElement(fs, QString("0x%1").arg((uint32_t)code, 5, 16, QLatin1Char('0'))); 11 + } 12 + } 13 +
+2 -2
pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix
··· 7 7 mktplcRef = { 8 8 name = "claude-dev"; 9 9 publisher = "saoudrizwan"; 10 - version = "3.9.2"; 11 - hash = "sha256-InlftUHtOHEszgtjPl7H6V0PkyHUEZ6MqyZTbFtjA+k="; 10 + version = "3.12.1"; 11 + hash = "sha256-N845Ib84q1sjJgsE7deQO1q1P5vZdAsoBYfB7iEY0qU="; 12 12 }; 13 13 14 14 meta = {
-1
pkgs/applications/graphics/leocad/default.nix
··· 80 80 license = lib.licenses.gpl2Only; 81 81 maintainers = with lib.maintainers; [ 82 82 peterhoeg 83 - hetraeus 84 83 ]; 85 84 platforms = lib.platforms.linux; 86 85 };
-1
pkgs/by-name/en/ente-web/package.nix
··· 59 59 changelog = "https://github.com/ente-io/ente/releases"; 60 60 license = lib.licenses.agpl3Only; 61 61 maintainers = with lib.maintainers; [ 62 - surfaceflinger 63 62 pinpox 64 63 ]; 65 64 platforms = lib.platforms.all;
+2 -3
pkgs/by-name/es/espup/package.nix
··· 11 11 stdenv, 12 12 darwin, 13 13 testers, 14 + writableTmpDirAsHomeHook, 14 15 nix-update-script, 15 16 }: 16 17 ··· 51 52 ZSTD_SYS_USE_PKG_CONFIG = true; 52 53 }; 53 54 54 - preCheck = '' 55 - export HOME=$(mktemp -d) 56 - ''; 55 + nativeCheckInputs = [ writableTmpDirAsHomeHook ]; 57 56 58 57 checkFlags = [ 59 58 # makes network calls
+2
pkgs/by-name/fi/firewalld/package.nix
··· 15 15 kdePackages, 16 16 kmod, 17 17 libnotify, 18 + librsvg, 18 19 libxml2, 19 20 libxslt, 20 21 networkmanager, ··· 108 109 ++ lib.optionals withGui [ 109 110 gtk3 110 111 libnotify 112 + librsvg 111 113 qt6.qtbase 112 114 ]; 113 115
+2 -2
pkgs/by-name/gi/github-markdown-toc-go/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "github-markdown-toc-go"; 8 - version = "1.4.0"; 8 + version = "2.0.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "ekalinin"; 12 12 repo = "github-markdown-toc.go"; 13 13 rev = "v${version}"; 14 - hash = "sha256-tZGAvbC9lrNhtRubCJUkQShRsfCsaAeI6XHhSp4FkS0="; 14 + hash = "sha256-hCkahhnTAF17ctJTL83wZxZiKGDzIKLwWKTTnwYQ3cs="; 15 15 }; 16 16 17 17 vendorHash = "sha256-K5yb7bnW6eS5UESK9wgNEUwGjB63eJk6+B0jFFiFero=";
+5 -13
pkgs/by-name/ho/hoarder/package.nix
··· 46 46 # We need to pass the patched source code, so pnpm sees the patched version 47 47 src = stdenv.mkDerivation { 48 48 name = "${finalAttrs.pname}-patched-source"; 49 - phases = [ 50 - "unpackPhase" 51 - "patchPhase" 52 - "installPhase" 53 - ]; 54 - src = finalAttrs.src; 55 - patches = finalAttrs.patches; 56 - installPhase = "cp -pr --reflink=auto -- . $out"; 49 + inherit (finalAttrs) src patches; 50 + installPhase = '' 51 + cp -pr --reflink=auto -- . $out 52 + ''; 57 53 }; 58 54 59 55 hash = "sha256-FzQPBIwe7OQ1KHaMtWaFe+RI+pXko5Ly11/jOmYSuFA="; ··· 121 117 runHook postInstall 122 118 ''; 123 119 124 - fixupPhase = '' 125 - runHook preFixup 126 - 120 + postFixup = '' 127 121 # Remove large dependencies that are not necessary during runtime 128 122 rm -rf $out/lib/hoarder/node_modules/{@next,next,@swc,react-native,monaco-editor,faker,@typescript-eslint,@microsoft,@typescript-eslint,pdfjs-dist} 129 123 130 124 # Remove broken symlinks 131 125 find $out -type l ! -exec test -e {} \; -delete 132 - 133 - runHook postFixup 134 126 ''; 135 127 136 128 meta = {
-34
pkgs/by-name/hy/hyenae/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - libdnet, 6 - pkg-config, 7 - libpcap, 8 - }: 9 - 10 - stdenv.mkDerivation rec { 11 - pname = "hyenae"; 12 - version = "0.36-1"; 13 - 14 - enableParallelBuilding = true; 15 - 16 - src = fetchurl { 17 - url = "mirror://sourceforge/hyenae/${version}/hyenae-${version}.tar.gz"; 18 - sha256 = "1f3x4yn9a9p4f4wk4l8pv7hxfjc8q7cv20xzf7ky735sq1hj0xcg"; 19 - }; 20 - 21 - nativeBuildInputs = [ pkg-config ]; 22 - buildInputs = [ 23 - libdnet 24 - libpcap 25 - ]; 26 - 27 - meta = { 28 - description = ""; 29 - homepage = "https://sourceforge.net/projects/hyenae/"; 30 - license = lib.licenses.gpl3; 31 - maintainers = [ lib.maintainers.marcweber ]; 32 - platforms = lib.platforms.linux; 33 - }; 34 - }
-32
pkgs/by-name/ib/ibniz/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - SDL, 6 - }: 7 - 8 - stdenv.mkDerivation rec { 9 - pname = "ibniz"; 10 - version = "1.18"; 11 - 12 - src = fetchurl { 13 - url = "http://www.pelulamu.net/ibniz/${pname}-${version}.tar.gz"; 14 - sha256 = "10b4dka8zx7y84m1a58z9j2vly8mz9aw9wn8z9vx9av739j95wp2"; 15 - }; 16 - 17 - buildInputs = [ SDL ]; 18 - 19 - installPhase = '' 20 - mkdir -p $out/bin 21 - cp ibniz $out/bin 22 - ''; 23 - 24 - meta = with lib; { 25 - description = "Virtual machine designed for extremely compact low-level audiovisual programs"; 26 - homepage = "https://github.com/viznut/IBNIZ"; 27 - license = licenses.zlib; 28 - platforms = platforms.linux; 29 - maintainers = [ maintainers.dezgeg ]; 30 - mainProgram = "ibniz"; 31 - }; 32 - }
+3 -3
pkgs/by-name/ki/kine/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kine"; 9 - version = "0.13.11"; 9 + version = "0.13.13"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "k3s-io"; 13 13 repo = "kine"; 14 14 rev = "v${version}"; 15 - hash = "sha256-Fb73warUgPX/FQT/zDnn3r7SP2tw142Npg2rhK8BEqI="; 15 + hash = "sha256-Gsi7r3l1UoGaARWtaISweISKSGx/Xir8RDLXwfyTa8Y="; 16 16 }; 17 17 18 - vendorHash = "sha256-RyyDtKdEaXhrIHTA4IxtuWhOnuRWbCF2vUCkDr9lhUg="; 18 + vendorHash = "sha256-rNt+3dCILTzUruMpKAnypZAPNrcylLgIw2vtlHNUv50="; 19 19 20 20 ldflags = [ 21 21 "-s"
+3 -3
pkgs/by-name/la/lakectl/package.nix
··· 7 7 8 8 buildGoModule (finalAttrs: { 9 9 pname = "lakectl"; 10 - version = "1.53.1"; 10 + version = "1.54.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "treeverse"; 14 14 repo = "lakeFS"; 15 15 tag = "v${finalAttrs.version}"; 16 - hash = "sha256-kZ7GvrrZq9XAq//jC6sP4uudTJsGJw6/vYXAPs63Wq8="; 16 + hash = "sha256-fqjVufkmO2JOPyS1/dLx0RIY5BLvvwvKrJFkV1LN53I="; 17 17 }; 18 18 19 19 subPackages = [ "cmd/lakectl" ]; 20 20 proxyVendor = true; 21 - vendorHash = "sha256-X7rXEM+8fgbmG+K05KOJp8345muASgnrWGW0jbJ9WSM="; 21 + vendorHash = "sha256-vg2x3QRU0RGq6GtqZU/YBtHAvj5shJtmPFrxx1/HppQ="; 22 22 23 23 ldflags = [ 24 24 "-s"
+2 -2
pkgs/by-name/li/libplctag/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "libplctag"; 10 - version = "2.6.3"; 10 + version = "2.6.4"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "libplctag"; 14 14 repo = "libplctag"; 15 15 tag = "v${finalAttrs.version}"; 16 - hash = "sha256-HUog7Tlm4jiqYXk22dziumCA/68c35+OwnTNYu9mV5E="; 16 + hash = "sha256-pk+N78MITI8G+LHyc6fXhqWeLyCOdUEkPePM2RtpMCE="; 17 17 }; 18 18 19 19 env = {
-1
pkgs/by-name/mu/museum/package.nix
··· 53 53 homepage = "https://github.com/ente-io/ente/tree/main/server"; 54 54 license = lib.licenses.agpl3Only; 55 55 maintainers = with lib.maintainers; [ 56 - surfaceflinger 57 56 pinpox 58 57 ]; 59 58 mainProgram = "museum";
+24 -24
pkgs/by-name/op/opengist/package.nix
··· 7 7 moreutils, 8 8 jq, 9 9 git, 10 + writableTmpDirAsHomeHook, 10 11 }: 11 - let 12 - # finalAttrs when 🥺 (buildGoModule does not support them) 13 - # https://github.com/NixOS/nixpkgs/issues/273815 14 - version = "1.9.1"; 12 + 13 + buildGoModule (finalAttrs: { 14 + pname = "opengist"; 15 + 16 + version = "1.10.0"; 17 + 15 18 src = fetchFromGitHub { 16 19 owner = "thomiceli"; 17 20 repo = "opengist"; 18 - tag = "v${version}"; 19 - hash = "sha256-Zjn38OGnDtgD2OfIhgUxWo0Cx+ZmNv6UjJanASbjiYU="; 21 + tag = "v${finalAttrs.version}"; 22 + hash = "sha256-cSPKtcD1V+WTSCkgi8eKhGbtW+WdCoetbiSrNvEVRW4="; 20 23 }; 21 24 22 25 frontend = buildNpmPackage { 23 26 pname = "opengist-frontend"; 24 - inherit version src; 27 + inherit (finalAttrs) version src; 28 + 25 29 # npm complains of "invalid package". shrug. we can give it a version. 26 30 postPatch = '' 27 - ${lib.getExe jq} '.version = "${version}"' package.json | ${lib.getExe' moreutils "sponge"} package.json 31 + ${lib.getExe jq} '.version = "${finalAttrs.version}"' package.json | ${lib.getExe' moreutils "sponge"} package.json 28 32 ''; 29 33 30 34 # copy pasta from the Makefile upstream, seems to be a workaround of sass ··· 41 45 42 46 npmDepsHash = "sha256-Uh+oXd//G/lPAMXRxijjEOpQNmeXK/XCIU7DJN3ujaY="; 43 47 }; 44 - in 45 - buildGoModule { 46 - pname = "opengist"; 47 - inherit version src; 48 - vendorHash = "sha256-aqfr3yGyTXDtZDU8d1lbWWvFfY4fo6/PsSDwpiDtM90="; 48 + 49 + vendorHash = "sha256-m2f9+PEMjVhlXs7b1neEWO0VY1fQSfe+T1aNEdtML28="; 50 + 49 51 tags = [ "fs_embed" ]; 52 + 50 53 ldflags = [ 51 54 "-s" 52 - "-X github.com/thomiceli/opengist/internal/config.OpengistVersion=v${version}" 55 + "-X github.com/thomiceli/opengist/internal/config.OpengistVersion=v${finalAttrs.version}" 53 56 ]; 54 57 55 - # required for tests 56 58 nativeCheckInputs = [ 57 59 git 60 + writableTmpDirAsHomeHook 58 61 ]; 59 62 60 - # required for tests to not try to write into $HOME and fail 61 - preCheck = '' 62 - export OG_OPENGIST_HOME=$(mktemp -d) 63 - ''; 64 - 65 63 doCheck = !stdenv.hostPlatform.isDarwin; 66 64 67 65 checkPhase = '' 68 66 runHook preCheck 67 + 69 68 make test 69 + 70 70 runHook postCheck 71 71 ''; 72 72 73 73 postPatch = '' 74 - cp -R ${frontend}/public/{manifest.json,assets} public/ 74 + cp -R ${finalAttrs.frontend}/public/{manifest.json,assets} public/ 75 75 ''; 76 76 77 77 passthru = { 78 - inherit frontend; 78 + inherit (finalAttrs) frontend; 79 79 updateScript = ./update.sh; 80 80 }; 81 81 ··· 83 83 description = "Self-hosted pastebin powered by Git"; 84 84 homepage = "https://github.com/thomiceli/opengist"; 85 85 license = lib.licenses.agpl3Only; 86 - changelog = "https://github.com/thomiceli/opengist/blob/${src.tag}/CHANGELOG.md"; 86 + changelog = "https://github.com/thomiceli/opengist/blob/v${finalAttrs.version}/CHANGELOG.md"; 87 87 platforms = lib.platforms.unix; 88 88 maintainers = with lib.maintainers; [ phanirithvij ]; 89 89 mainProgram = "opengist"; 90 90 }; 91 - } 91 + })
-1
pkgs/by-name/pi/pixi/package.nix
··· 70 70 changelog = "https://pixi.sh/latest/CHANGELOG"; 71 71 license = lib.licenses.bsd3; 72 72 maintainers = with lib.maintainers; [ 73 - aaronjheng 74 73 edmundmiller 75 74 xiaoxiangmoe 76 75 ];
+2 -11
pkgs/by-name/pr/prismlauncher-unwrapped/package.nix
··· 31 31 ) "gamemodeSupport is only available on Linux."; 32 32 stdenv.mkDerivation (finalAttrs: { 33 33 pname = "prismlauncher-unwrapped"; 34 - version = "9.2"; 34 + version = "9.4"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "PrismLauncher"; 38 38 repo = "PrismLauncher"; 39 39 tag = finalAttrs.version; 40 - hash = "sha256-0KDhX8mfh11pyYQS/lB6qlUvRSOcYEbQKgsdQVA+Q3U="; 40 + hash = "sha256-q8ln54nepwbJhC212vGODaafsbOCtdXar7F2NacKWO4="; 41 41 }; 42 42 43 43 postUnpack = '' ··· 83 83 (lib.cmakeFeature "MACOSX_SPARKLE_UPDATE_FEED_URL" "''") 84 84 (lib.cmakeFeature "CMAKE_INSTALL_PREFIX" "${placeholder "out"}/Applications/") 85 85 ]; 86 - 87 - patches = [ 88 - # This patch allows Mangohud 0.8 to run correctly with Prism Launcher. 89 - # This should be removed on the next Prism Launcher release. 90 - (fetchpatch { 91 - url = "https://github.com/PrismLauncher/PrismLauncher/commit/3295b0717a8c4805022eccb74fee2304361d8dab.patch"; 92 - hash = "sha256-A7DrmI00dFUNZLoMFDfym7e5rSFg6V4/MjVxAnQwT6E="; 93 - }) 94 - ]; 95 86 96 87 doCheck = true; 97 88
+5 -1
pkgs/by-name/ru/rusty-psn/package.nix
··· 13 13 openssl, 14 14 xorg, 15 15 libGL, 16 + libxkbcommon, 17 + wayland, 16 18 withGui ? false, # build GUI version 17 19 }: 18 20 ··· 59 61 xorg.libXi 60 62 xorg.libxcb 61 63 libGL 64 + libxkbcommon 65 + wayland 62 66 ]; 63 67 64 68 buildNoDefaultFeatures = true; ··· 96 100 license = lib.licenses.mit; 97 101 platforms = [ "x86_64-linux" ]; 98 102 maintainers = with lib.maintainers; [ AngryAnt ]; 99 - mainProgram = "rusty-psn"; 103 + mainProgram = if withGui then "rusty-psn-gui" else "rusty-psn"; 100 104 }; 101 105 }
+2 -2
pkgs/by-name/ta/tana/package.nix
··· 62 62 stdenv.cc.cc 63 63 stdenv.cc.libc 64 64 ]; 65 - version = "1.0.25"; 65 + version = "1.0.26"; 66 66 in 67 67 stdenv.mkDerivation { 68 68 pname = "tana"; ··· 70 70 71 71 src = fetchurl { 72 72 url = "https://github.com/tanainc/tana-desktop-releases/releases/download/v${version}/tana_${version}_amd64.deb"; 73 - hash = "sha256-2At28FVZEtn2RDoHpt+CeUizlBb1JCH6jXxcYoZcvYk="; 73 + hash = "sha256-sSfiFK1CHuhM1vdZ5rBv1SZsEctvLc8xP+GYwnEdezI="; 74 74 }; 75 75 76 76 nativeBuildInputs = [
+3 -3
pkgs/by-name/va/vault/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "vault"; 15 - version = "1.18.5"; 15 + version = "1.19.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "hashicorp"; 19 19 repo = "vault"; 20 20 rev = "v${version}"; 21 - hash = "sha256-ZpfUQJdwt7byRUs8sJRdVQABLYGqZVFPfaXwCdK2rR4="; 21 + hash = "sha256-VbSGzEGMlmVaia+ZhhRWTkKBGmimLGI40JuWREgeh4I="; 22 22 }; 23 23 24 - vendorHash = "sha256-B3NsCykCBWpWSvWULyf7/3TNToYSciLI/CEVgVF2TKM="; 24 + vendorHash = "sha256-O8H/marfVSN47bmRAxuMEJXEXLE0HL9vj10yeGrm93I="; 25 25 26 26 proxyVendor = true; 27 27
+3 -3
pkgs/by-name/wo/workout-tracker/package.nix
··· 9 9 }: 10 10 let 11 11 pname = "workout-tracker"; 12 - version = "2.2.0"; 12 + version = "2.2.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "jovandeginste"; 16 16 repo = "workout-tracker"; 17 17 tag = "v${version}"; 18 - hash = "sha256-6t+p/P8gAHTOMiWJ1lDcpHRPptO+lk0jl/llKy8fNrg="; 18 + hash = "sha256-m/mQRFBIlffw+o0exBCejU3F5nSQhGEu3PGrw/M9l7M="; 19 19 }; 20 20 21 21 assets = buildNpmPackage { 22 22 pname = "${pname}-assets"; 23 23 inherit version src; 24 - npmDepsHash = "sha256-LB9YPhz+1FLqf7G4LRdm6OMyIsEQCd23frl5wb5pG/Q="; 24 + npmDepsHash = "sha256-rUW7wdJg5AhcDxIaH74YXzQS3Pav2fOraw8Rhb+IgCc="; 25 25 dontNpmBuild = true; 26 26 makeCacheWritable = true; 27 27 postPatch = ''
+1
pkgs/development/cuda-modules/cuda/overrides.nix
··· 188 188 # to avoid autopatchelf failing to find libpython3.8.so. 189 189 + lib.optionalString (cudaAtLeast "12.5") '' 190 190 find $bin -name '*python3.8*' -delete 191 + find $bin -name '*python3.9*' -delete 191 192 ''; 192 193 }; 193 194
+10 -2
pkgs/development/cuda-modules/nccl/default.nix
··· 22 22 cudaOlder 23 23 cudatoolkit 24 24 ; 25 + # versions 2.26+ with CUDA 11.x error with 26 + # fatal error: cuda/atomic: No such file or directory 27 + version = if cudaAtLeast "12.0" then "2.26.2-1" else "2.25.1-1"; 28 + hash = 29 + if cudaAtLeast "12.0" then 30 + "sha256-iLEuru3gaNLcAdH4V8VIv3gjdTGjgb2/Mr5UKOh69N4=" 31 + else 32 + "sha256-3snh0xdL9I5BYqdbqdl+noizJoI38mZRVOJChgEE1I8="; 25 33 in 26 34 backendStdenv.mkDerivation (finalAttrs: { 27 35 pname = "nccl"; 28 - version = "2.21.5-1"; 36 + version = version; 29 37 30 38 src = fetchFromGitHub { 31 39 owner = "NVIDIA"; 32 40 repo = "nccl"; 33 41 rev = "v${finalAttrs.version}"; 34 - hash = "sha256-IF2tILwW8XnzSmfn7N1CO7jXL95gUp02guIW5n1eaig="; 42 + hash = hash; 35 43 }; 36 44 37 45 __structuredAttrs = true;
+3 -3
pkgs/development/php-packages/phive/default.nix
··· 6 6 7 7 php.buildComposerProject2 (finalAttrs: { 8 8 pname = "phive"; 9 - version = "0.15.3"; 9 + version = "0.16.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "phar-io"; 13 13 repo = "phive"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-6vNhmIDE3kwZGMrDnGNGVV6/lb32Yb3ooWDYOC7SUcs="; 15 + hash = "sha256-dv9v1KCLNheFmrRQ7cID5WFvoiH0OWVPWSrN023dEqA="; 16 16 }; 17 17 18 - vendorHash = "sha256-wNqQfVRm4kEWpYfdo8HBESh0L4cXPrTlHnBI79b1Al0="; 18 + vendorHash = "sha256-H1QJ+ML0tbZzEBKknP0GHhUhw+ujiIH/QNmEgA2zSmM="; 19 19 20 20 meta = { 21 21 changelog = "https://github.com/phar-io/phive/releases/tag/${finalAttrs.version}";
+3 -3
pkgs/development/php-packages/php-codesniffer/default.nix
··· 6 6 7 7 php.buildComposerProject2 (finalAttrs: { 8 8 pname = "php-codesniffer"; 9 - version = "3.12.0"; 9 + version = "3.12.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "PHPCSStandards"; 13 13 repo = "PHP_CodeSniffer"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-wlI/ylBeSkeg96sDwvDV9EedSLILFqsl96yWIOFtDQo="; 15 + hash = "sha256-6bv5ejTsCAlSoCqtb7NOGVWJ9rYodAgl2zke+2x7ZaM="; 16 16 }; 17 17 18 - vendorHash = "sha256-RY/GOMK+Qq36du8GLXXiwjDjKD49gNN02OugwjOvrJ4="; 18 + vendorHash = "sha256-z3DWMACau49Z46OiUw88y7aTuaFywbFquhjla90FS3E="; 19 19 20 20 meta = { 21 21 changelog = "https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/${finalAttrs.version}";
+2 -2
pkgs/development/php-packages/zstd/default.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "0.14.0"; 10 + version = "0.14.0+pie"; 11 11 in 12 12 buildPecl { 13 13 inherit version; ··· 17 17 owner = "kjdev"; 18 18 repo = "php-ext-zstd"; 19 19 rev = version; 20 - hash = "sha256-XB8GatrL2gQbTiZp6eJCFu8yRAOcrQbcJCaKol3or8Q="; 20 + hash = "sha256-BfxYPc7Y9VKjm/RiyO+/thpqNJFGMdD5xK07EZMb+E8="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/development/python-modules/cvxpy/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "cvxpy"; 28 - version = "1.6.4"; 28 + version = "1.6.5"; 29 29 pyproject = true; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "cvxpy"; 33 33 repo = "cvxpy"; 34 34 tag = "v${version}"; 35 - hash = "sha256-PV6fROIt8NsCTm2MbKr+ejgE3QC3IIU607q9MYRGnxc="; 35 + hash = "sha256-utTd/13RQ3WKWreCKFMqGwPUFbPw3TaKKbS4T1BGGP4="; 36 36 }; 37 37 38 38 # we need to patch out numpy version caps from upstream
+2 -2
pkgs/development/python-modules/functiontrace/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "functiontrace"; 11 - version = "0.3.7"; 11 + version = "0.3.10"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-3bnxZFq1/D9ntwfv7O2YU6MnKEDWWIG4zX0e3cgCleg="; 16 + hash = "sha256-E2MNp3wKb9FEjEQK/vL/XBfScPuAwbWV5JeA9+ujckY="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+5 -5
pkgs/development/python-modules/pycrdt/Cargo.lock
··· 245 245 246 246 [[package]] 247 247 name = "pycrdt" 248 - version = "0.12.11" 248 + version = "0.12.12" 249 249 dependencies = [ 250 250 "pyo3", 251 251 "yrs", ··· 325 325 326 326 [[package]] 327 327 name = "redox_syscall" 328 - version = "0.5.10" 328 + version = "0.5.11" 329 329 source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" 330 + checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3" 331 331 dependencies = [ 332 332 "bitflags", 333 333 ] ··· 387 387 388 388 [[package]] 389 389 name = "smallvec" 390 - version = "1.14.0" 390 + version = "1.15.0" 391 391 source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" 392 + checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 393 393 394 394 [[package]] 395 395 name = "syn"
+2 -2
pkgs/development/python-modules/pycrdt/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "pycrdt"; 22 - version = "0.12.11"; 22 + version = "0.12.12"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "jupyter-server"; 27 27 repo = "pycrdt"; 28 28 tag = version; 29 - hash = "sha256-qeDhNr7ZQ0Sxmulye1u5Y2ETdAKYbmYWY0udUaAclpQ="; 29 + hash = "sha256-qRr6L27X0g0mvxPECijunpxJilse9fzdKAQZOM0MoDQ="; 30 30 }; 31 31 32 32 postPatch = ''
+2 -2
pkgs/games/shattered-pixel-dungeon/rat-king-adventure/default.nix
··· 5 5 6 6 callPackage ../generic.nix rec { 7 7 pname = "rat-king-adventure"; 8 - version = "2.0.2"; 8 + version = "2.1.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "TrashboxBobylev"; 12 12 repo = "Rat-King-Adventure"; 13 13 rev = version; 14 - hash = "sha256-mh54m2YwGOmE03fxndk3wNX/xi6UyIdXWEguiC3mDeA="; 14 + hash = "sha256-01WFQ2shxFbyr5bGfKn8e7hOEB2LpjNZu9dRRVk3Fzw="; 15 15 }; 16 16 17 17 desktopName = "Rat King Adventure";
+15
pkgs/kde/gear/libktorrent/default.nix
··· 5 5 boost, 6 6 gmp, 7 7 libgcrypt, 8 + fetchpatch, 8 9 }: 9 10 mkKdeDerivation { 10 11 pname = "libktorrent"; 12 + 13 + # Backport patches to fix build with Qt 6.9 14 + # FIXME: remove in 25.04 15 + patches = [ 16 + (fetchpatch { 17 + url = "https://invent.kde.org/network/libktorrent/-/commit/4bcf7eb1e0cb781286eae33751acd8e827080ec5.patch"; 18 + includes = [ "src/utp/connection.cpp" ]; 19 + hash = "sha256-gj5jLViuzttfzCrx/izmajJiH3vE9TkfsXS+1r/qGNc="; 20 + }) 21 + (fetchpatch { 22 + url = "https://invent.kde.org/network/libktorrent/-/commit/4f73038c74b5d72b2f7f1377c7bf037f111e965d.patch"; 23 + hash = "sha256-dQeZLmnagxBOUR2hnxF65jIRSAntTrEggxdUf3NNzDE="; 24 + }) 25 + ]; 11 26 12 27 extraNativeBuildInputs = [ doxygen ]; 13 28 extraBuildInputs = [ qt5compat ];
+2
pkgs/top-level/aliases.nix
··· 810 810 ht-rust = throw "'ht-rust' has been renamed to/replaced by 'xh'"; # Converted to throw 2024-10-17 811 811 hydra_unstable = hydra; # Added 2024-08-22 812 812 hydron = throw "hydron has been removed as the project has been archived upstream since 2022 and is affected by a severe remote code execution vulnerability"; 813 + hyenae = throw "hyenae has been removed because it fails to build and was unmaintained for 15 years"; # Added 2025-04-04 813 814 hyprgui = throw "hyprgui has been removed as the repository is deleted"; # Added 2024-12-27 814 815 hyprlauncher = throw "hyprlauncher has been removed as the repository is deleted"; # Added 2024-12-27 815 816 hyprwall = throw "hyprwall has been removed as the repository is deleted"; # Added 2024-12-27 ··· 818 819 819 820 i3-gaps = i3; # Added 2023-01-03 820 821 i3nator = throw "'i3nator' has been removed due to lack of upstream maintenance"; # Added 2025-01-25 822 + ibniz = throw "ibniz has been removed because it fails to compile and the source url is dead"; # Added 2025-04-07 821 823 ib-tws = throw "ib-tws has been removed from nixpkgs as it was broken"; # Added 2024-07-15 822 824 ib-controller = throw "ib-controller has been removed from nixpkgs as it was broken"; # Added 2024-07-15 823 825 icuReal = throw "icuReal has been removed from nixpkgs as a mistake"; # Added 2025-02-18
+1 -1
pkgs/top-level/all-packages.nix
··· 17644 17644 17645 17645 protonup-ng = with python3Packages; toPythonApplication protonup-ng; 17646 17646 17647 - stuntrally = callPackage ../games/stuntrally { }; 17647 + stuntrally = callPackage ../games/stuntrally { boost = boost183; }; 17648 17648 17649 17649 superTuxKart = darwin.apple_sdk_11_0.callPackage ../games/super-tux-kart { 17650 17650 inherit (darwin.apple_sdk_11_0.frameworks)