Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
1bf69692 417531aa

+566 -376
+15
maintainers/maintainer-list.nix
··· 8927 8927 githubId = 546087; 8928 8928 name = "Kristoffer K. Føllesdal"; 8929 8929 }; 8930 + kgtkr = { 8931 + email = "contact@kgtkr.net"; 8932 + github = "kgtkr"; 8933 + githubId = 17868838; 8934 + name = "kgtkr"; 8935 + keys = [{ 8936 + fingerprint = "B30D BE93 81E0 3D5D F301 88C8 1F6E B951 9F57 3241"; 8937 + }]; 8938 + }; 8930 8939 khaneliman = { 8931 8940 email = "khaneliman12@gmail.com"; 8932 8941 github = "khaneliman"; ··· 9488 9497 github = "Lassulus"; 9489 9498 githubId = 621759; 9490 9499 name = "Lassulus"; 9500 + }; 9501 + laurailway = { 9502 + email = "laurailway.git@posteo.net"; 9503 + github = "LAURAilway"; 9504 + githubId = 118690640; 9505 + name = "Laura"; 9491 9506 }; 9492 9507 laurent-f1z1 = { 9493 9508 email = "laurent.nixpkgs@fainsin.bzh";
+2
nixos/modules/services/backup/restic.nix
··· 333 333 backup.rcloneConfig); 334 334 path = [ pkgs.openssh ]; 335 335 restartIfChanged = false; 336 + wants = [ "network-online.target" ]; 337 + after = [ "network-online.target" ]; 336 338 serviceConfig = { 337 339 Type = "oneshot"; 338 340 ExecStart = (optionals (backupPaths != "") [ "${resticCmd} backup ${concatStringsSep " " (backup.extraBackupArgs ++ excludeFlags)} ${backupPaths}" ])
+6 -6
pkgs/applications/audio/airwindows-lv2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }: 1 + { lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, lv2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "airwindows-lv2"; 5 - version = "20.0"; 6 - src = fetchFromGitHub { 7 - owner = "hannesbraun"; 5 + version = "22.0"; 6 + src = fetchFromSourcehut { 7 + owner = "~hannes"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-uflvUmUzOtF3BwiLfnd+qhz+ZYyn8AKvODFs599phhU="; 10 + sha256 = "sha256-u62wLRrJ45ap981Q8JmMnanc8AWQb1MJHK32PEr10I4="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ meson ninja pkg-config ]; ··· 15 15 16 16 meta = with lib; { 17 17 description = "Airwindows plugins (ported to LV2)"; 18 - homepage = "https://github.com/hannesbraun/airwindows-lv2"; 18 + homepage = "https://sr.ht/~hannes/airwindows-lv2"; 19 19 license = licenses.mit; 20 20 maintainers = [ maintainers.magnetophon ]; 21 21 platforms = platforms.unix;
+2 -2
pkgs/applications/audio/lsp-plugins/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "lsp-plugins"; 8 - version = "1.2.8"; 8 + version = "1.2.10"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/sadko4u/${pname}/releases/download/${version}/${pname}-src-${version}.tar.gz"; 12 - sha256 = "sha256-udVYyR6rDOCAKggpvY58jjpoLmB6wXiivvdzYylkE9c="; 12 + sha256 = "sha256-2Yf+4TYGWF/AMI1kNvVOx9g6CSIoeZKY63qC/zJNilc="; 13 13 }; 14 14 15 15 outputs = [ "out" "dev" "doc" ];
+4 -6
pkgs/applications/misc/get_iplayer/default.nix
··· 7 7 , perl 8 8 , atomicparsley 9 9 , ffmpeg 10 - , flvstreamer 11 - , rtmpdump 12 10 }: 13 11 14 12 perlPackages.buildPerlPackage rec { ··· 25 23 nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isDarwin shortenPerlShebang; 26 24 buildInputs = [ perl ]; 27 25 propagatedBuildInputs = with perlPackages; [ 28 - HTMLParser HTTPCookies LWP LWPProtocolHttps XMLLibXML XMLSimple Mojolicious 26 + LWP LWPProtocolHttps XMLLibXML Mojolicious 29 27 ]; 30 28 31 29 preConfigure = "touch Makefile.PL"; ··· 36 34 runHook preInstall 37 35 mkdir -p $out/bin $out/share/man/man1 38 36 cp get_iplayer $out/bin 39 - wrapProgram $out/bin/get_iplayer --suffix PATH : ${lib.makeBinPath [ atomicparsley ffmpeg flvstreamer rtmpdump ]} --prefix PERL5LIB : $PERL5LIB 37 + wrapProgram $out/bin/get_iplayer --suffix PATH : ${lib.makeBinPath [ atomicparsley ffmpeg ]} --prefix PERL5LIB : $PERL5LIB 40 38 cp get_iplayer.1 $out/share/man/man1 41 39 runHook postInstall 42 40 ''; ··· 46 44 ''; 47 45 48 46 meta = with lib; { 49 - description = "Downloads TV and radio from BBC iPlayer"; 47 + description = "Downloads TV and radio programmes from BBC iPlayer and BBC Sounds"; 50 48 license = licenses.gpl3Plus; 51 - homepage = "https://squarepenguin.co.uk/"; 49 + homepage = "https://github.com/get-iplayer/get_iplayer"; 52 50 platforms = platforms.all; 53 51 maintainers = with maintainers; [ rika jgarcia ]; 54 52 };
+26
pkgs/applications/misc/harsh/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "harsh"; 8 + version = "0.8.28"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "wakatara"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-6BeGyyy4RFBy4TvB3bLTyDtQGljG9xE3VFfbnq9KWcs="; 15 + }; 16 + 17 + vendorHash = "sha256-zkz7X/qj8FwtQZXGuq4Oaoe5G9a4AJE1kv3j7wwQEp4="; 18 + 19 + meta = with lib; { 20 + description = "CLI habit tracking for geeks"; 21 + homepage = "https://github.com/wakatara/harsh"; 22 + changelog = "https://github.com/wakatara/harsh/releases/tag/v${version}"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ laurailway ]; 25 + }; 26 + }
+3 -3
pkgs/applications/misc/nwg-dock-hyprland/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "nwg-dock-hyprland"; 11 - version = "0.1.4"; 11 + version = "0.1.5"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "nwg-piotr"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-aPCz9m2Qnge8XhEbvpXb2U/eT5xvJkaSoorkkoY3gp0="; 17 + sha256 = "sha256-DDHKEGb7ghZwrMKrFtplTz7Hi1CITW6oxa/EJM4JDA8="; 18 18 }; 19 19 20 - vendorHash = "sha256-GhcrIVnZRbiGTfeUAWvslOVWDZmoL0ZRnjgTtQgxe2Q="; 20 + vendorHash = "sha256-5fN/6HASfTMb80YYAIoWRqnRGMvvX4d8C2UvOc0jQU0="; 21 21 22 22 ldflags = [ "-s" "-w" ]; 23 23
+2 -2
pkgs/applications/office/morgen/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "morgen"; 6 - version = "2.7.5"; 6 + version = "3.0.0"; 7 7 8 8 src = fetchurl { 9 9 url = "https://download.todesktop.com/210203cqcj00tw1/morgen-${version}.deb"; 10 - sha256 = "sha256-gsH+KJt0d1Xe1JhgXuqot/vrMw9eBzIpCGlGeaeVJ+k="; 10 + sha256 = "sha256-6d1KYUlXv+bHPITt2zs++AtyaAT8SSCG9T8ZsgOKDiw="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+6 -3
pkgs/applications/office/planify/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "planify"; 26 - version = "4.1"; 26 + version = "4.1.1"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "alainm23"; 30 30 repo = "planify"; 31 - rev = version; 32 - sha256 = "sha256-H8TPuqKRwbcB+2NTC5ZIK7y6uiYbTT4svtx21FbTzME="; 31 + # The commit is named as "Release 4.1.1", published to Flathub, but not tags 32 + # https://github.com/flathub/io.github.alainm23.planify/commit/2a353ccfcf3379add6778d569f49da37f40accfa 33 + # https://github.com/alainm23/planify/issues/1002 34 + rev = "adf3629bcacfc9978f6dde5b87eff0278533ab3e"; 35 + hash = "sha256-xqklvSYmqBQ+IQ3lRjMbV4W4vD/rLCln7rBVCbYiBGo="; 33 36 }; 34 37 35 38 nativeBuildInputs = [
+2 -2
pkgs/applications/science/electronics/dataexplorer/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "dataexplorer"; 11 - version = "3.7.9"; 11 + version = "3.8.0"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://savannah/dataexplorer/dataexplorer-${version}-src.tar.gz"; 15 - sha256 = "sha256-CdIWAde7mytXP9U1PfI9d/rFK7Agy5biIq5tMTW9RD4="; 15 + sha256 = "sha256-ZluT/jCjcOrlh2nqe0j56shmtGqfm11BCnsp6mWDXkQ="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ ant makeWrapper ];
+2 -2
pkgs/data/fonts/lxgw-neoxihei/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "lxgw-neoxihei"; 8 - version = "1.103.1"; 8 + version = "1.104"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf"; 12 - hash = "sha256-z9SzSt+GXV+9GLtzjY6EQQa6bKrixYo03kEfzGfug90="; 12 + hash = "sha256-R2b3zc+BwX9RvabqxXbRRHV3kKh5G1bnGg0ZP4BnBMI="; 13 13 }; 14 14 15 15 dontUnpack = true;
+5 -5
pkgs/development/compilers/julia/1.9-bin.nix
··· 24 24 in 25 25 stdenv.mkDerivation rec { 26 26 pname = "julia-bin"; 27 - version = "1.9.2"; 27 + version = "1.9.3"; 28 28 29 29 src = { 30 30 x86_64-linux = fetchurl { 31 31 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 32 - sha256 = "4c2d799f442d7fe718827b19da2bacb72ea041b9ce55f24eee7b1313f57c4383"; 32 + sha256 = "d76670cc9ba3e0fd4c1545dd3d00269c0694976a1176312795ebce1692d323d1"; 33 33 }; 34 34 aarch64-linux = fetchurl { 35 35 url = "https://julialang-s3.julialang.org/bin/linux/aarch64/${lib.versions.majorMinor version}/julia-${version}-linux-aarch64.tar.gz"; 36 - sha256 = "682397f8895149f0e283f0b27bffc6694033bdfb19f9366c80f6efdf3685f27c"; 36 + sha256 = "55437879f6b98470d96c4048b922501b643dfffb8865abeb90c7333a83df7524"; 37 37 }; 38 38 x86_64-darwin = fetchurl { 39 39 url = "https://julialang-s3.julialang.org/bin/mac/x64/${lib.versions.majorMinor version}/julia-${version}-mac64.tar.gz"; 40 - sha256 = "a2e8eb31a89b26e4a99349303aeff8e8ee780144bbdb1f7eda6f41024d42cadb"; 40 + sha256 = "6eea87748424488226090d1e7d553e72ab106a873d63c732fc710a3d080abb97"; 41 41 }; 42 42 aarch64-darwin = fetchurl { 43 43 url = "https://julialang-s3.julialang.org/bin/mac/aarch64/${lib.versions.majorMinor version}/julia-${version}-macaarch64.tar.gz"; 44 - sha256 = "77c71ff8cb1fcdb84097e86a9fb579a8b34d8e7fd8e24d43107042e0fb988b76"; 44 + sha256 = "f518e38d7bd5b37766fb051916bd295993aa4b52a47018f4c98b5fde721ced87"; 45 45 }; 46 46 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 47 47
+2 -2
pkgs/development/compilers/julia/1.9.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "julia"; 16 - version = "1.9.2"; 16 + version = "1.9.3"; 17 17 18 18 src = fetchurl { 19 19 url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; 20 - hash = "sha256-hwY9TC6kHHNqoujLvHwvGgYuIjlVFX+EBFU87XZJE80="; 20 + hash = "sha256-j8DJ3FRDoo01m9ed2jlA+pS6K3lmuJhlvrINqBEjwxY="; 21 21 }; 22 22 23 23 patches = [
+2 -2
pkgs/development/compilers/kotlin/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "kotlin"; 5 - version = "1.9.0"; 5 + version = "1.9.10"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip"; 9 - sha256 = "1s5y9180r97qmfysw3rm39y5c646rj4z149ywhnyj2cqby00vi8z"; 9 + sha256 = "0hh3qa4nical29wkm3byqvmd00xhx9gp7hslx8l0z3ngxqyqcx3x"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ jre ] ;
+4 -4
pkgs/development/compilers/kotlin/native.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "kotlin-native"; 10 - version = "1.9.0"; 10 + version = "1.9.10"; 11 11 12 12 src = let 13 13 getArch = { ··· 20 20 "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-native-${arch}-${version}.tar.gz"; 21 21 22 22 getHash = arch: { 23 - "macos-aarch64" = "0728zm72ywyl6yhrfkad3whg2xly9bx7whp8alfi980qf468b1jh"; 24 - "macos-x86_64" = "09j2i06qypw7ag2wrfkci9gnvprj96n3362p5vynr65jrzm5b8ww"; 25 - "linux-x86_64" = "1v58n8ap5kifhawz30lk6rb2sp0qyiiy8gihw2ngbbhvakkigg8q"; 23 + "macos-aarch64" = "1pn371hy6hkyji4vkfiw3zw30wy0yyfhkxnkkyr8m0609945mkyj"; 24 + "macos-x86_64" = "13c28czvja93zaff0kzqf8crzh998l90gznq0cl6k2j3c0jhyrgm"; 25 + "linux-x86_64" = "0nxaiwn4akfpkibq42y8kfn5hdd7vzkm296qx4a9ai7l36cngcqx"; 26 26 }.${arch}; 27 27 in 28 28 fetchurl {
+2
pkgs/development/libraries/onnxruntime/default.nix
··· 132 132 cmakeDir = "../cmake"; 133 133 134 134 cmakeFlags = [ 135 + "-DABSL_ENABLE_INSTALL=ON" 135 136 "-DCMAKE_BUILD_TYPE=RELEASE" 136 137 "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" 137 138 "-DFETCHCONTENT_QUIET=OFF" ··· 143 144 "-DFETCHCONTENT_SOURCE_DIR_MP11=${mp11}" 144 145 "-DFETCHCONTENT_SOURCE_DIR_ONNX=${python3Packages.onnx.src}" 145 146 "-DFETCHCONTENT_SOURCE_DIR_PYTORCH_CPUINFO=${pytorch_cpuinfo}" 147 + "-DFETCHCONTENT_SOURCE_DIR_RE2=${re2.src}" 146 148 "-DFETCHCONTENT_SOURCE_DIR_SAFEINT=${safeint}" 147 149 "-DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS" 148 150 "-Donnxruntime_BUILD_SHARED_LIB=ON"
+1 -2
pkgs/development/libraries/qt-5/5.15/default.nix
··· 208 208 import ../qtModule.nix 209 209 { 210 210 inherit perl; 211 - inherit lib stdenv; 212 - inherit buildPackages; 211 + inherit lib; 213 212 # Use a variant of mkDerivation that does not include wrapQtApplications 214 213 # to avoid cyclic dependencies between Qt modules. 215 214 mkDerivation =
-2
pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh
··· 1 1 if [[ -n "${__nix_qtbase-}" ]]; then 2 - if [ -z "${dontWorryAboutQtMismatch-}" ]; then 3 2 # Throw an error if a different version of Qt was already set up. 4 3 if [[ "$__nix_qtbase" != "@dev@" ]]; then 5 4 echo >&2 "Error: detected mismatched Qt dependencies:" ··· 7 6 echo >&2 " $__nix_qtbase" 8 7 exit 1 9 8 fi 10 - fi 11 9 else # Only set up Qt once. 12 10 __nix_qtbase="@dev@" 13 11
-20
pkgs/development/libraries/qt-5/modules/qtbase.nix
··· 29 29 , developerBuild ? false 30 30 , decryptSslTraffic ? false 31 31 , testers 32 - , buildPackages 33 32 }: 34 33 35 34 let 36 35 debugSymbols = debug || developerBuild; 37 - qtPlatformCross = plat: with plat; 38 - if isLinux 39 - then "linux-generic-g++" 40 - else throw "Please add a qtPlatformCross entry for ${plat.config}"; 41 36 in 42 37 43 38 stdenv.mkDerivation (finalAttrs: { ··· 87 82 88 83 nativeBuildInputs = [ bison flex gperf lndir perl pkg-config which ] 89 84 ++ lib.optionals stdenv.isDarwin [ xcbuild ]; 90 - 91 - # `qtbase` expects to find `cc` (with no prefix) in the 92 - # `$PATH`, so the following is needed even if 93 - # `stdenv.buildPlatform.canExecute stdenv.hostPlatform` 94 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 95 85 96 86 propagatedNativeBuildInputs = [ lndir ]; 97 87 ··· 172 162 export MAKEFLAGS+=" -j$NIX_BUILD_CORES" 173 163 174 164 ./bin/syncqt.pl -version $version 175 - '' + lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) '' 176 - # QT's configure script will refuse to use pkg-config unless these two environment variables are set 177 - export PKG_CONFIG_SYSROOT_DIR=/ 178 - export PKG_CONFIG_LIBDIR=${lib.getLib pkg-config}/lib 179 - echo 'QMAKE_PKG_CONFIG=''$''${CROSS_COMPILE}pkg-config' >> mkspecs/devices/${qtPlatformCross stdenv.hostPlatform}/qmake.conf 180 165 ''; 181 166 182 167 postConfigure = '' ··· 224 209 # To prevent these failures, we need to override PostgreSQL detection. 225 210 PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq"; 226 211 227 - # do not pass --host and --build to configureFlags as QT's configure script doesn't understand them 228 - configurePlatforms = [ ]; 229 212 # TODO Remove obsolete and useless flags once the build will be totally mastered 230 213 configureFlags = [ 231 214 "-plugindir $(out)/$(qtPluginPrefix)" ··· 252 235 "-L" "${icu.out}/lib" 253 236 "-I" "${icu.dev}/include" 254 237 "-pch" 255 - ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 256 - "-device ${qtPlatformCross stdenv.hostPlatform}" 257 - "-device-option CROSS_COMPILE=${stdenv.cc.targetPrefix}" 258 238 ] 259 239 ++ lib.optional debugSymbols "-debug" 260 240 ++ lib.optionals developerBuild [
+1 -9
pkgs/development/libraries/qt-5/qtModule.nix
··· 1 - { lib 2 - , stdenv 3 - , mkDerivation, perl 4 - , buildPackages 5 - }: 1 + { lib, mkDerivation, perl }: 6 2 7 3 let inherit (lib) licenses maintainers platforms; in 8 4 ··· 22 18 23 19 nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ perl self.qmake ]; 24 20 propagatedBuildInputs = (args.qtInputs or []) ++ (args.propagatedBuildInputs or []); 25 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 26 21 27 22 outputs = args.outputs or [ "out" "dev" ]; 28 23 setOutputFlags = args.setOutputFlags or false; ··· 79 74 maintainers = with maintainers; [ qknight ttuegel periklis bkchr ]; 80 75 platforms = platforms.unix; 81 76 } // (args.meta or {}); 82 - 83 - } // lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) { 84 - dontWorryAboutQtMismatch = true; 85 77 })
+2 -12
pkgs/development/python-modules/aioaseko/default.nix
··· 2 2 , aiohttp 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , pythonOlder 7 6 , setuptools 8 7 , pyjwt ··· 10 9 11 10 buildPythonPackage rec { 12 11 pname = "aioaseko"; 13 - version = "0.1.0"; 12 + version = "0.1.1"; 14 13 format = "pyproject"; 15 14 16 15 disabled = pythonOlder "3.8"; ··· 19 18 owner = "milanmeu"; 20 19 repo = pname; 21 20 rev = "refs/tags/v${version}"; 22 - hash = "sha256-RgIwA5/W7qtgI9ZTF4oDPuzSc+r04ZV3JOaNNFjS0pU="; 21 + hash = "sha256-bjPl0yrRaTIEEuPV8NbWu2hx/es5bcu2tDBZV+95fUc="; 23 22 }; 24 - 25 - patches = [ 26 - # Remove time, https://github.com/milanmeu/aioaseko/pull/6 27 - (fetchpatch { 28 - name = "remove-time.patch"; 29 - url = "https://github.com/milanmeu/aioaseko/commit/07d7ca43a2edd060e95a64737f072d98ba938484.patch"; 30 - hash = "sha256-67QaqSy5mGY/22jWHOkymr0pFoiizVQAXlrqXRb3tG0="; 31 - }) 32 - ]; 33 23 34 24 nativeBuildInputs = [ 35 25 setuptools
+11 -14
pkgs/development/python-modules/django-widget-tweaks/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - 5 - # native 6 4 , setuptools-scm 7 - 8 - # propagated 9 5 , django 10 - 11 - # tests 12 6 , python 7 + , pythonOlder 13 8 }: 14 9 15 10 buildPythonPackage rec { 16 11 pname = "django-widget-tweaks"; 17 - version = "1.4.12"; 12 + version = "1.5.0"; 13 + format = "setuptools"; 18 14 19 - src = fetchFromGitHub { # package from Pypi missing runtests.py 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 20 18 owner = "jazzband"; 21 19 repo = pname; 22 - rev = version; 23 - sha256 = "1rhn2skx287k6nnkxlwvl9snbia6w6z4c2rqg22hwzbz5w05b24h"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-/3UIsg75X3R9YGv9cEcoPw3IN2vkhUb+HCy68813d2E="; 24 22 }; 25 23 26 24 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 38 36 ''; 39 37 40 38 meta = with lib; { 41 - description = "Tweak the form field rendering in templates, not in python-level form definitions."; 39 + description = "Tweak the form field rendering in templates, not in python-level form definitions"; 42 40 homepage = "https://github.com/jazzband/django-widget-tweaks"; 41 + changelog = "https://github.com/jazzband/django-widget-tweaks/blob/${version}/CHANGES.rst"; 43 42 license = licenses.mit; 44 - maintainers = with maintainers; [ 45 - maxxk 46 - ]; 43 + maintainers = with maintainers; [ maxxk ]; 47 44 }; 48 45 }
+2 -2
pkgs/development/python-modules/jupytext/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "jupytext"; 24 - version = "1.15.0"; 24 + version = "1.15.1"; 25 25 format = "pyproject"; 26 26 27 27 disabled = pythonOlder "3.6"; ··· 30 30 owner = "mwouts"; 31 31 repo = pname; 32 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-M4BoST18sf1C1lwhFkp4a0B3fc0VKerwuVEIfwkD7i0="; 33 + hash = "sha256-XGjAPeMtg2Epu85JiqQPyZJVez5Z8uA+E40SFcZM7WY="; 34 34 }; 35 35 36 36 # Follow https://github.com/mwouts/jupytext/pull/1119 to see if the patch
+3 -3
pkgs/development/python-modules/liquidctl/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "liquidctl"; 22 - version = "1.12.1"; 22 + version = "1.13.0"; 23 23 format = "pyproject"; 24 24 25 - disabled = pythonOlder "3.7"; 25 + disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = pname; 29 29 repo = pname; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-0QjgnTxqB50JNjSUAgBrGyhN2XC/TDYiC1tvhw1Bl1M="; 31 + hash = "sha256-LU8rQmXrEIoOBTTFotGvMeHqksYGrtNo2YSl2l2e/UI="; 32 32 }; 33 33 34 34 env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
+6 -11
pkgs/development/python-modules/paste/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "paste"; 13 - version = "3.5.2"; 13 + version = "3.5.3"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "cdent"; 20 20 repo = "paste"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-lpQMzrRpcG5TqWm/FJn4oo9TV8Skf0ypZVeQC4y8p1U="; 22 + hash = "sha256-W02UY9P3qjIFhR/DCpQZyvjEmJYl0MvMcGt9N4xgbaY="; 23 23 }; 24 24 25 25 postPatch = '' ··· 35 35 pytestCheckHook 36 36 ]; 37 37 38 - disabledTests = [ 39 - # broken test 40 - "test_file_cache" 41 - # requires network connection 42 - "test_proxy_to_website" 43 - ] ++ lib.optionals (pythonAtLeast "3.11") [ 44 - # https://github.com/cdent/paste/issues/72 45 - "test_form" 46 - ]; 38 + preCheck = '' 39 + # needs to be modified after Sat, 1 Jan 2005 12:00:00 GMT 40 + touch tests/urlparser_data/secured.txt 41 + ''; 47 42 48 43 pythonNamespaces = [ 49 44 "paste"
+3 -3
pkgs/development/python-modules/picosvg/default.nix
··· 11 11 }: 12 12 buildPythonPackage rec { 13 13 pname = "picosvg"; 14 - version = "0.22.0"; 14 + version = "0.22.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "googlefonts"; 18 18 repo = pname; 19 - rev = "v${version}"; 20 - hash = "sha256-J06ijF1c3ZKPqKiQha6yqfj8EjFZoZzA6i6UCCrexi8="; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-jG1rfamegnX8GXDwqkGFBFzUeycRLDObJvGbxNk6OpM="; 21 21 }; 22 22 23 23 patches = [
+2 -2
pkgs/development/python-modules/pybtex-docutils/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pybtex-docutils"; 12 - version = "1.0.2"; 12 + version = "1.0.3"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-Q6o1O21Jj9WsMPAHOpjjMtBh00/mGdPVDRdh+P1KoBY="; 19 + hash = "sha256-On69+StZPgDowcU4qpogvKXZLYQjESRxWsyWTVHZPGs="; 20 20 }; 21 21 22 22 buildInputs = [
+4 -8
pkgs/development/python-modules/pykeepass/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonPackage 2 2 , lxml, pycryptodomex, construct 3 - , argon2-cffi, python-dateutil, future 3 + , argon2-cffi, python-dateutil 4 4 , python 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 8 pname = "pykeepass"; 9 - version = "4.0.5"; 9 + version = "4.0.6"; 10 10 11 11 format = "setuptools"; 12 12 ··· 14 14 owner = "libkeepass"; 15 15 repo = "pykeepass"; 16 16 rev = "v${version}"; 17 - hash = "sha256-IdILcIhrxcTDddoxiK257II0V7ctVb1CTLfTPmuwjTQ="; 17 + hash = "sha256-832cTVzI/MFdwiw6xWzRG35z3iwqb5Qpf6W6XYBIFWs="; 18 18 }; 19 19 20 - postPatch = '' 21 - substituteInPlace setup.py --replace "==" ">=" 22 - ''; 23 - 24 20 propagatedBuildInputs = [ 25 21 lxml pycryptodomex construct 26 - argon2-cffi python-dateutil future 22 + argon2-cffi python-dateutil 27 23 ]; 28 24 29 25 propagatedNativeBuildInputs = [ argon2-cffi ];
+2 -2
pkgs/development/python-modules/pyslim/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyslim"; 13 - version = "1.0.3"; 13 + version = "1.0.4"; 14 14 format = "pyproject"; 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-BRfv5AcdRpnvk7zGeYYWweh+foFEOSZjz3pTjX8KOnA="; 19 + hash = "sha256-valAhPEVZNv/IYe85a88SGE+2/9O1omvBywz/HeeRco="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+4 -2
pkgs/development/python-modules/python-bsblan/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 3 , aresponses 4 + , backoff 4 5 , buildPythonPackage 5 6 , fetchFromGitHub 6 7 , packaging ··· 15 16 16 17 buildPythonPackage rec { 17 18 pname = "python-bsblan"; 18 - version = "0.5.12"; 19 + version = "0.5.14"; 19 20 format = "pyproject"; 20 21 21 22 disabled = pythonOlder "3.9"; ··· 24 25 owner = "liudger"; 25 26 repo = pname; 26 27 rev = "refs/tags/v${version}"; 27 - hash = "sha256-ftu79SnVa7wOMx/RiRBDPmmG7Mmw84r30G4yDzBea2k="; 28 + hash = "sha256-UCl5M9UbsUcroNF2iYzTLD9uIJF7PdxwrVt3PNI3iRc="; 28 29 }; 29 30 30 31 postPatch = '' ··· 41 42 42 43 propagatedBuildInputs = [ 43 44 aiohttp 45 + backoff 44 46 packaging 45 47 pydantic 46 48 yarl
+3
pkgs/development/python-modules/scikit-image/default.nix
··· 54 54 55 55 postPatch = '' 56 56 patchShebangs skimage/_build_utils/{version,cythoner}.py 57 + 58 + substituteInPlace pyproject.toml \ 59 + --replace "numpy==" "numpy>=" 57 60 ''; 58 61 59 62 nativeBuildInputs = [
+12 -2
pkgs/development/python-modules/streamlit/default.nix
··· 18 18 , pympler 19 19 , python-dateutil 20 20 , pythonOlder 21 + , pythonRelaxDepsHook 21 22 , requests 22 23 , rich 23 24 , tenacity 24 25 , toml 26 + , tornado 25 27 , typing-extensions 26 28 , tzlocal 27 29 , validators ··· 30 32 31 33 buildPythonPackage rec { 32 34 pname = "streamlit"; 33 - version = "1.24.1"; 35 + version = "1.26.0"; 34 36 format = "setuptools"; 35 37 36 38 disabled = pythonOlder "3.8"; 37 39 38 40 src = fetchPypi { 39 41 inherit pname version format; 40 - hash = "sha256-/V8LZHmOlwY2RAj7WJt3WVMUpjFdE7LXULljx66X82I="; 42 + hash = "sha256-JUdfsVo8yfsYSUXz/JNvARmYvYOG4MiS/r4UyWJb9Ho="; 41 43 }; 42 44 45 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 46 + 47 + pythonRelaxDeps = [ 48 + "pillow" 49 + "pydeck" 50 + ]; 51 + 43 52 propagatedBuildInputs = [ 44 53 altair 45 54 blinker ··· 60 69 rich 61 70 tenacity 62 71 toml 72 + tornado 63 73 typing-extensions 64 74 tzlocal 65 75 validators
+3 -2
pkgs/development/tools/buildkit/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "buildkit"; 5 - version = "0.12.1"; 5 + version = "0.12.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "moby"; 9 9 repo = "buildkit"; 10 10 rev = "v${version}"; 11 - hash = "sha256-Fee/XuxtNP9+T8kRd3yeEhFvpfaIgMkqfSaZCpaYEdM="; 11 + hash = "sha256-u85Yrg3aMG6Tx8onivSy1p7yB4lZxsBWF4bxnwO68EE="; 12 12 }; 13 13 14 14 vendorHash = null; ··· 22 22 meta = with lib; { 23 23 description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit"; 24 24 homepage = "https://github.com/moby/buildkit"; 25 + changelog = "https://github.com/moby/buildkit/releases/tag/v${version}"; 25 26 license = licenses.asl20; 26 27 maintainers = with maintainers; [ vdemeester marsam developer-guy ]; 27 28 mainProgram = "buildctl";
+4 -4
pkgs/development/tools/misc/complgen/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage { 7 7 pname = "complgen"; 8 - version = "unstable-2023-08-17"; 8 + version = "unstable-2023-08-22"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "adaszko"; 12 12 repo = "complgen"; 13 - rev = "4f01c04184b31804009e0002ff6ba1c777439798"; 14 - hash = "sha256-KQFMWVHTlkf65ghgv3oR2Jz4QtXkdz6CNIC3eeyBgBg="; 13 + rev = "8c9b9c51f3465c6d858e15f442b63e94b2f5ed1b"; 14 + hash = "sha256-oYRaH3FbAFY7QujgFpUDD8gVam4+Gm9qROxCTMYBg9I="; 15 15 }; 16 16 17 - cargoHash = "sha256-m/eFpwMZOOVGVeXjQwNZheuPeGkJd0mAF903ML/Kr90="; 17 + cargoHash = "sha256-LHnIIkQLuY+A09qhxSiyLmUpX/dES7xBE5m1uRPI0i0="; 18 18 19 19 meta = with lib; { 20 20 description = "Generate {bash,fish,zsh} completions from a single EBNF-like grammar";
+12 -7
pkgs/development/tools/protoc-gen-connect-go/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "protoc-gen-connect-go"; 8 - version = "1.9.0"; 8 + version = "1.11.0"; 9 9 10 10 src = fetchFromGitHub { 11 - owner = "bufbuild"; 11 + owner = "connectrpc"; 12 12 repo = "connect-go"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-2U5f+VUXZ8J9K27RccKvEY7FJs57XMasKMk+xgy0LuI="; 14 + hash = "sha256-sKAocI2zT2jbw42Oe7lX8J1wLVBh7RfJe1hP8aXRCuM="; 15 15 }; 16 16 17 17 vendorHash = "sha256-3opkr4kUD3NQNbNYOdSWIDqKbArv9OQUkBMzae1ccVY="; ··· 20 20 "cmd/protoc-gen-connect-go" 21 21 ]; 22 22 23 + preCheck = '' 24 + # test all paths 25 + unset subPackages 26 + ''; 27 + 23 28 meta = with lib; { 24 - description = "library for building browser and gRPC-compatible HTTP APIs"; 25 - homepage = "https://github.com/bufbuild/connect-go"; 26 - changelog = "https://github.com/bufbuild/connect-go/releases/tag/v${version}"; 29 + description = "Simple, reliable, interoperable, better gRPC"; 30 + homepage = "https://github.com/connectrpc/connect-go"; 31 + changelog = "https://github.com/connectrpc/connect-go/releases/tag/v${version}"; 27 32 license = licenses.asl20; 28 - maintainers = with maintainers; [ kilimnik ]; 33 + maintainers = with maintainers; [ kilimnik jk ]; 29 34 }; 30 35 }
+4 -4
pkgs/development/tools/rust/cargo-bundle/default.nix
··· 11 11 rustPlatform.buildRustPackage { 12 12 pname = "cargo-bundle"; 13 13 # the latest stable release fails to build on darwin 14 - version = "unstable-2023-03-17"; 14 + version = "unstable-2023-08-18"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "burtonageo"; 18 18 repo = "cargo-bundle"; 19 - rev = "eb9fe1b0880c7c0e929a93edaddcb0a61cd3f0d4"; 20 - hash = "sha256-alO+Q9IK5Hz09+TqHWsbjuokxISKQfQTM6QnLlUNydw="; 19 + rev = "c9f7a182d233f0dc4ad84e10b1ffa0d44522ea43"; 20 + hash = "sha256-n+c83pmCvFdNRAlcadmcZvYj+IRqUYeE8CJVWWYbWDQ="; 21 21 }; 22 22 23 - cargoHash = "sha256-h+QPbwYTJk6dieta/Q+VAhYe8/YH/Nik6gslzUn0YxI="; 23 + cargoHash = "sha256-Ea658jHomktmzXtU5wmd0bRX+i5n46hCvexYxYbjjUc="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+25
pkgs/development/tools/sqldef/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "sqldef"; 5 + version = "0.12.7"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "k0kubun"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-HyM2HTdQgH+2vFe+1q02zmaD/A1M5h6Z56Wff9qxaHM="; 12 + }; 13 + 14 + vendorSha256 = "sha256-T1Kdtpm90fy93mYWQz13k552wWGB96BOeN8NtTuuj0c="; 15 + 16 + # The test requires a running database 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 + description = "Idempotent SQL schema management tool"; 21 + license = with licenses; [ mit /* for everythnig except parser */ asl20 /* for parser */ ]; 22 + homepage = "https://github.com/k0kubun/sqldef"; 23 + maintainers = with maintainers; [ kgtkr ]; 24 + }; 25 + }
+258 -192
pkgs/development/tools/watchman/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.20.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 6 21 name = "ahash" 7 - version = "0.3.8" 22 + version = "0.8.3" 8 23 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" 24 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 10 25 dependencies = [ 11 - "const-random", 26 + "cfg-if", 27 + "getrandom", 28 + "once_cell", 29 + "version_check", 12 30 ] 13 31 14 32 [[package]] ··· 22 40 23 41 [[package]] 24 42 name = "anyhow" 25 - version = "1.0.68" 43 + version = "1.0.72" 26 44 source = "registry+https://github.com/rust-lang/crates.io-index" 27 - checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 45 + checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" 28 46 29 47 [[package]] 30 48 name = "atty" ··· 44 62 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 45 63 46 64 [[package]] 65 + name = "backtrace" 66 + version = "0.3.68" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 69 + dependencies = [ 70 + "addr2line", 71 + "cc", 72 + "cfg-if", 73 + "libc", 74 + "miniz_oxide", 75 + "object", 76 + "rustc-demangle", 77 + ] 78 + 79 + [[package]] 47 80 name = "bitflags" 48 81 version = "1.3.2" 49 82 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 57 90 58 91 [[package]] 59 92 name = "bytes" 60 - version = "1.3.0" 93 + version = "1.4.0" 61 94 source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 95 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 63 96 dependencies = [ 64 97 "serde", 65 98 ] 66 99 67 100 [[package]] 68 101 name = "cc" 69 - version = "1.0.78" 102 + version = "1.0.82" 70 103 source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 104 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 105 + dependencies = [ 106 + "libc", 107 + ] 72 108 73 109 [[package]] 74 110 name = "cfg-if" ··· 92 128 ] 93 129 94 130 [[package]] 95 - name = "const-random" 96 - version = "0.1.15" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 99 - dependencies = [ 100 - "const-random-macro", 101 - "proc-macro-hack", 102 - ] 103 - 104 - [[package]] 105 - name = "const-random-macro" 106 - version = "0.1.15" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 109 - dependencies = [ 110 - "getrandom", 111 - "once_cell", 112 - "proc-macro-hack", 113 - "tiny-keccak", 114 - ] 115 - 116 - [[package]] 117 131 name = "core-foundation-sys" 118 - version = "0.8.3" 132 + version = "0.8.4" 119 133 source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 134 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 121 135 122 136 [[package]] 123 137 name = "crossbeam" ··· 135 149 136 150 [[package]] 137 151 name = "crossbeam-channel" 138 - version = "0.5.6" 152 + version = "0.5.8" 139 153 source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 154 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 141 155 dependencies = [ 142 156 "cfg-if", 143 157 "crossbeam-utils", ··· 145 159 146 160 [[package]] 147 161 name = "crossbeam-deque" 148 - version = "0.8.2" 162 + version = "0.8.3" 149 163 source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 164 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 151 165 dependencies = [ 152 166 "cfg-if", 153 167 "crossbeam-epoch", ··· 156 170 157 171 [[package]] 158 172 name = "crossbeam-epoch" 159 - version = "0.9.13" 173 + version = "0.9.15" 160 174 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 175 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 162 176 dependencies = [ 163 177 "autocfg", 164 178 "cfg-if", 165 179 "crossbeam-utils", 166 - "memoffset 0.7.1", 180 + "memoffset 0.9.0", 167 181 "scopeguard", 168 182 ] 169 183 ··· 179 193 180 194 [[package]] 181 195 name = "crossbeam-utils" 182 - version = "0.8.14" 196 + version = "0.8.16" 183 197 source = "registry+https://github.com/rust-lang/crates.io-index" 184 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 198 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 185 199 dependencies = [ 186 200 "cfg-if", 187 201 ] 188 202 189 203 [[package]] 190 - name = "crunchy" 191 - version = "0.2.2" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 194 - 195 - [[package]] 196 204 name = "duct" 197 205 version = "0.13.6" 198 206 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 206 214 207 215 [[package]] 208 216 name = "either" 209 - version = "1.8.0" 217 + version = "1.9.0" 210 218 source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 219 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 212 220 213 221 [[package]] 214 222 name = "futures" ··· 218 226 219 227 [[package]] 220 228 name = "futures" 221 - version = "0.3.25" 229 + version = "0.3.28" 222 230 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 231 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 224 232 dependencies = [ 225 233 "futures-channel", 226 234 "futures-core", ··· 233 241 234 242 [[package]] 235 243 name = "futures-channel" 236 - version = "0.3.25" 244 + version = "0.3.28" 237 245 source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 246 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 239 247 dependencies = [ 240 248 "futures-core", 241 249 "futures-sink", ··· 243 251 244 252 [[package]] 245 253 name = "futures-core" 246 - version = "0.3.25" 254 + version = "0.3.28" 247 255 source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 256 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 249 257 250 258 [[package]] 251 259 name = "futures-executor" 252 - version = "0.3.25" 260 + version = "0.3.28" 253 261 source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 262 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 255 263 dependencies = [ 256 264 "futures-core", 257 265 "futures-task", ··· 260 268 261 269 [[package]] 262 270 name = "futures-io" 263 - version = "0.3.25" 271 + version = "0.3.28" 264 272 source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 273 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 266 274 267 275 [[package]] 268 276 name = "futures-macro" 269 - version = "0.3.25" 277 + version = "0.3.28" 270 278 source = "registry+https://github.com/rust-lang/crates.io-index" 271 - checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 279 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 272 280 dependencies = [ 273 281 "proc-macro2", 274 282 "quote", 275 - "syn", 283 + "syn 2.0.28", 276 284 ] 277 285 278 286 [[package]] 279 287 name = "futures-sink" 280 - version = "0.3.25" 288 + version = "0.3.28" 281 289 source = "registry+https://github.com/rust-lang/crates.io-index" 282 - checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 290 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 283 291 284 292 [[package]] 285 293 name = "futures-task" 286 - version = "0.3.25" 294 + version = "0.3.28" 287 295 source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 296 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 289 297 290 298 [[package]] 291 299 name = "futures-util" 292 - version = "0.3.25" 300 + version = "0.3.28" 293 301 source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 302 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 295 303 dependencies = [ 296 304 "futures 0.1.31", 297 305 "futures-channel", ··· 308 316 309 317 [[package]] 310 318 name = "getrandom" 311 - version = "0.2.8" 319 + version = "0.2.10" 312 320 source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 321 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 314 322 dependencies = [ 315 323 "cfg-if", 316 324 "libc", ··· 318 326 ] 319 327 320 328 [[package]] 329 + name = "gimli" 330 + version = "0.27.3" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 333 + 334 + [[package]] 321 335 name = "heck" 322 336 version = "0.3.3" 323 337 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 337 351 338 352 [[package]] 339 353 name = "hermit-abi" 340 - version = "0.2.6" 354 + version = "0.3.2" 341 355 source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 343 - dependencies = [ 344 - "libc", 345 - ] 356 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 346 357 347 358 [[package]] 348 359 name = "itoa" 349 - version = "1.0.5" 360 + version = "1.0.9" 350 361 source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 362 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 352 363 353 364 [[package]] 354 365 name = "jwalk" ··· 368 379 369 380 [[package]] 370 381 name = "libc" 371 - version = "0.2.139" 382 + version = "0.2.147" 372 383 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 384 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 374 385 375 386 [[package]] 376 387 name = "lock_api" 377 - version = "0.4.9" 388 + version = "0.4.10" 378 389 source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 390 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 380 391 dependencies = [ 381 392 "autocfg", 382 393 "scopeguard", ··· 384 395 385 396 [[package]] 386 397 name = "log" 387 - version = "0.4.17" 398 + version = "0.4.19" 388 399 source = "registry+https://github.com/rust-lang/crates.io-index" 389 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 390 - dependencies = [ 391 - "cfg-if", 392 - ] 400 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 393 401 394 402 [[package]] 395 403 name = "maplit" ··· 414 422 415 423 [[package]] 416 424 name = "memoffset" 417 - version = "0.7.1" 425 + version = "0.9.0" 418 426 source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 427 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 420 428 dependencies = [ 421 429 "autocfg", 422 430 ] 423 431 424 432 [[package]] 433 + name = "miniz_oxide" 434 + version = "0.7.1" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 437 + dependencies = [ 438 + "adler", 439 + ] 440 + 441 + [[package]] 425 442 name = "mio" 426 - version = "0.8.5" 443 + version = "0.8.8" 427 444 source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 445 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 429 446 dependencies = [ 430 447 "libc", 431 - "log", 432 448 "wasi", 433 449 "windows-sys", 434 450 ] 435 451 436 452 [[package]] 437 453 name = "nix" 438 - version = "0.23.2" 454 + version = "0.25.1" 439 455 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c" 456 + checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 441 457 dependencies = [ 458 + "autocfg", 442 459 "bitflags", 443 - "cc", 444 460 "cfg-if", 445 461 "libc", 446 462 "memoffset 0.6.5", 463 + "pin-utils", 447 464 ] 448 465 449 466 [[package]] 450 467 name = "ntapi" 451 - version = "0.4.0" 468 + version = "0.4.1" 452 469 source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc" 470 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 454 471 dependencies = [ 455 472 "winapi", 456 473 ] 457 474 458 475 [[package]] 459 476 name = "num_cpus" 460 - version = "1.15.0" 477 + version = "1.16.0" 461 478 source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 479 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 463 480 dependencies = [ 464 - "hermit-abi 0.2.6", 481 + "hermit-abi 0.3.2", 465 482 "libc", 466 483 ] 467 484 468 485 [[package]] 486 + name = "object" 487 + version = "0.31.1" 488 + source = "registry+https://github.com/rust-lang/crates.io-index" 489 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 490 + dependencies = [ 491 + "memchr", 492 + ] 493 + 494 + [[package]] 469 495 name = "once_cell" 470 - version = "1.17.0" 496 + version = "1.18.0" 471 497 source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 498 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 473 499 474 500 [[package]] 475 501 name = "os_pipe" 476 - version = "1.1.2" 502 + version = "1.1.4" 477 503 source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 504 + checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 479 505 dependencies = [ 480 506 "libc", 481 507 "windows-sys", ··· 493 519 494 520 [[package]] 495 521 name = "parking_lot_core" 496 - version = "0.9.6" 522 + version = "0.9.8" 497 523 source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 524 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 499 525 dependencies = [ 500 526 "cfg-if", 501 527 "libc", 502 528 "redox_syscall", 503 529 "smallvec", 504 - "windows-sys", 530 + "windows-targets", 505 531 ] 506 532 507 533 [[package]] 508 534 name = "pin-project-lite" 509 - version = "0.2.9" 535 + version = "0.2.12" 510 536 source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 537 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 512 538 513 539 [[package]] 514 540 name = "pin-utils" ··· 525 551 "proc-macro-error-attr", 526 552 "proc-macro2", 527 553 "quote", 528 - "syn", 554 + "syn 1.0.109", 529 555 "version_check", 530 556 ] 531 557 ··· 541 567 ] 542 568 543 569 [[package]] 544 - name = "proc-macro-hack" 545 - version = "0.5.20+deprecated" 546 - source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 548 - 549 - [[package]] 550 570 name = "proc-macro2" 551 - version = "1.0.50" 571 + version = "1.0.66" 552 572 source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 573 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 554 574 dependencies = [ 555 575 "unicode-ident", 556 576 ] 557 577 558 578 [[package]] 559 579 name = "quote" 560 - version = "1.0.23" 580 + version = "1.0.32" 561 581 source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 582 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 563 583 dependencies = [ 564 584 "proc-macro2", 565 585 ] 566 586 567 587 [[package]] 568 588 name = "rayon" 569 - version = "1.6.1" 589 + version = "1.7.0" 570 590 source = "registry+https://github.com/rust-lang/crates.io-index" 571 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 591 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 572 592 dependencies = [ 573 593 "either", 574 594 "rayon-core", ··· 576 596 577 597 [[package]] 578 598 name = "rayon-core" 579 - version = "1.10.1" 599 + version = "1.11.0" 580 600 source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 601 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 582 602 dependencies = [ 583 603 "crossbeam-channel", 584 604 "crossbeam-deque", ··· 588 608 589 609 [[package]] 590 610 name = "redox_syscall" 591 - version = "0.2.16" 611 + version = "0.3.5" 592 612 source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 613 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 594 614 dependencies = [ 595 615 "bitflags", 596 616 ] 597 617 598 618 [[package]] 619 + name = "rustc-demangle" 620 + version = "0.1.23" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 623 + 624 + [[package]] 599 625 name = "ryu" 600 - version = "1.0.12" 626 + version = "1.0.15" 601 627 source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 628 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 603 629 604 630 [[package]] 605 631 name = "scopeguard" 606 - version = "1.1.0" 632 + version = "1.2.0" 607 633 source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 634 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 609 635 610 636 [[package]] 611 637 name = "serde" 612 - version = "1.0.152" 638 + version = "1.0.183" 613 639 source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 640 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 615 641 dependencies = [ 616 642 "serde_derive", 617 643 ] ··· 624 650 "byteorder", 625 651 "bytes", 626 652 "serde", 653 + "serde_bytes", 627 654 "thiserror", 628 655 ] 629 656 630 657 [[package]] 658 + name = "serde_bytes" 659 + version = "0.11.12" 660 + source = "registry+https://github.com/rust-lang/crates.io-index" 661 + checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 662 + dependencies = [ 663 + "serde", 664 + ] 665 + 666 + [[package]] 631 667 name = "serde_derive" 632 - version = "1.0.152" 668 + version = "1.0.183" 633 669 source = "registry+https://github.com/rust-lang/crates.io-index" 634 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 670 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 635 671 dependencies = [ 636 672 "proc-macro2", 637 673 "quote", 638 - "syn", 674 + "syn 2.0.28", 639 675 ] 640 676 641 677 [[package]] 642 678 name = "serde_json" 643 - version = "1.0.91" 679 + version = "1.0.104" 644 680 source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 681 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 646 682 dependencies = [ 647 683 "itoa", 648 684 "ryu", ··· 661 697 662 698 [[package]] 663 699 name = "signal-hook-registry" 664 - version = "1.4.0" 700 + version = "1.4.1" 665 701 source = "registry+https://github.com/rust-lang/crates.io-index" 666 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 702 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 667 703 dependencies = [ 668 704 "libc", 669 705 ] 670 706 671 707 [[package]] 672 708 name = "slab" 673 - version = "0.4.7" 709 + version = "0.4.8" 674 710 source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 711 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 676 712 dependencies = [ 677 713 "autocfg", 678 714 ] 679 715 680 716 [[package]] 681 717 name = "smallvec" 682 - version = "1.10.0" 718 + version = "1.11.0" 683 719 source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 720 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 685 721 686 722 [[package]] 687 723 name = "socket2" 688 - version = "0.4.7" 724 + version = "0.5.3" 689 725 source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 726 + checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 691 727 dependencies = [ 692 728 "libc", 693 - "winapi", 729 + "windows-sys", 694 730 ] 695 731 696 732 [[package]] ··· 720 756 "proc-macro-error", 721 757 "proc-macro2", 722 758 "quote", 723 - "syn", 759 + "syn 1.0.109", 760 + ] 761 + 762 + [[package]] 763 + name = "syn" 764 + version = "1.0.109" 765 + source = "registry+https://github.com/rust-lang/crates.io-index" 766 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 767 + dependencies = [ 768 + "proc-macro2", 769 + "quote", 770 + "unicode-ident", 724 771 ] 725 772 726 773 [[package]] 727 774 name = "syn" 728 - version = "1.0.107" 775 + version = "2.0.28" 729 776 source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 777 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 731 778 dependencies = [ 732 779 "proc-macro2", 733 780 "quote", ··· 769 816 770 817 [[package]] 771 818 name = "thiserror" 772 - version = "1.0.38" 819 + version = "1.0.44" 773 820 source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 821 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 775 822 dependencies = [ 776 823 "thiserror-impl", 777 824 ] 778 825 779 826 [[package]] 780 827 name = "thiserror-impl" 781 - version = "1.0.38" 828 + version = "1.0.44" 782 829 source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 830 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 784 831 dependencies = [ 785 832 "proc-macro2", 786 833 "quote", 787 - "syn", 788 - ] 789 - 790 - [[package]] 791 - name = "tiny-keccak" 792 - version = "2.0.2" 793 - source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 795 - dependencies = [ 796 - "crunchy", 834 + "syn 2.0.28", 797 835 ] 798 836 799 837 [[package]] 800 838 name = "tokio" 801 - version = "1.24.2" 839 + version = "1.30.0" 802 840 source = "registry+https://github.com/rust-lang/crates.io-index" 803 - checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" 841 + checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" 804 842 dependencies = [ 805 - "autocfg", 843 + "backtrace", 806 844 "bytes", 807 845 "libc", 808 - "memchr", 809 846 "mio", 810 847 "num_cpus", 811 848 "parking_lot", ··· 813 850 "signal-hook-registry", 814 851 "socket2", 815 852 "tokio-macros", 853 + "tracing", 816 854 "windows-sys", 817 855 ] 818 856 819 857 [[package]] 820 858 name = "tokio-macros" 821 - version = "1.8.2" 859 + version = "2.1.0" 822 860 source = "registry+https://github.com/rust-lang/crates.io-index" 823 - checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 861 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 824 862 dependencies = [ 825 863 "proc-macro2", 826 864 "quote", 827 - "syn", 865 + "syn 2.0.28", 828 866 ] 829 867 830 868 [[package]] ··· 844 882 ] 845 883 846 884 [[package]] 885 + name = "tracing" 886 + version = "0.1.37" 887 + source = "registry+https://github.com/rust-lang/crates.io-index" 888 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 889 + dependencies = [ 890 + "cfg-if", 891 + "pin-project-lite", 892 + "tracing-core", 893 + ] 894 + 895 + [[package]] 896 + name = "tracing-core" 897 + version = "0.1.31" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 900 + dependencies = [ 901 + "once_cell", 902 + ] 903 + 904 + [[package]] 847 905 name = "unicode-ident" 848 - version = "1.0.6" 906 + version = "1.0.11" 849 907 source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 908 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 851 909 852 910 [[package]] 853 911 name = "unicode-segmentation" 854 - version = "1.10.0" 912 + version = "1.10.1" 855 913 source = "registry+https://github.com/rust-lang/crates.io-index" 856 - checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 914 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 857 915 858 916 [[package]] 859 917 name = "unicode-width" ··· 885 943 dependencies = [ 886 944 "anyhow", 887 945 "bytes", 888 - "futures 0.3.25", 946 + "futures 0.3.28", 889 947 "maplit", 890 948 "serde", 891 949 "serde_bser", ··· 901 959 dependencies = [ 902 960 "ahash", 903 961 "anyhow", 904 - "atty", 905 962 "duct", 906 963 "jwalk", 907 964 "nix", ··· 938 995 939 996 [[package]] 940 997 name = "windows-sys" 941 - version = "0.42.0" 998 + version = "0.48.0" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1001 + dependencies = [ 1002 + "windows-targets", 1003 + ] 1004 + 1005 + [[package]] 1006 + name = "windows-targets" 1007 + version = "0.48.1" 942 1008 source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1009 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 944 1010 dependencies = [ 945 1011 "windows_aarch64_gnullvm", 946 1012 "windows_aarch64_msvc", ··· 953 1019 954 1020 [[package]] 955 1021 name = "windows_aarch64_gnullvm" 956 - version = "0.42.1" 1022 + version = "0.48.0" 957 1023 source = "registry+https://github.com/rust-lang/crates.io-index" 958 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 1024 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 959 1025 960 1026 [[package]] 961 1027 name = "windows_aarch64_msvc" 962 - version = "0.42.1" 1028 + version = "0.48.0" 963 1029 source = "registry+https://github.com/rust-lang/crates.io-index" 964 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 1030 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 965 1031 966 1032 [[package]] 967 1033 name = "windows_i686_gnu" 968 - version = "0.42.1" 1034 + version = "0.48.0" 969 1035 source = "registry+https://github.com/rust-lang/crates.io-index" 970 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 1036 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 971 1037 972 1038 [[package]] 973 1039 name = "windows_i686_msvc" 974 - version = "0.42.1" 1040 + version = "0.48.0" 975 1041 source = "registry+https://github.com/rust-lang/crates.io-index" 976 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 1042 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 977 1043 978 1044 [[package]] 979 1045 name = "windows_x86_64_gnu" 980 - version = "0.42.1" 1046 + version = "0.48.0" 981 1047 source = "registry+https://github.com/rust-lang/crates.io-index" 982 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 1048 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 983 1049 984 1050 [[package]] 985 1051 name = "windows_x86_64_gnullvm" 986 - version = "0.42.1" 1052 + version = "0.48.0" 987 1053 source = "registry+https://github.com/rust-lang/crates.io-index" 988 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 1054 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 989 1055 990 1056 [[package]] 991 1057 name = "windows_x86_64_msvc" 992 - version = "0.42.1" 1058 + version = "0.48.0" 993 1059 source = "registry+https://github.com/rust-lang/crates.io-index" 994 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 1060 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
+4 -7
pkgs/development/tools/watchman/default.nix
··· 1 1 { boost 2 2 , cargo 3 3 , cmake 4 - , config 5 4 , CoreServices 6 5 , cpptoml 7 6 , double-conversion ··· 22 21 , libunwind 23 22 , lz4 24 23 , openssl 25 - , pcre 24 + , pcre2 26 25 , pkg-config 27 - , python3 28 26 , rustPlatform 29 27 , rustc 30 28 , stateDir ? "/tmp" ··· 36 34 37 35 stdenv.mkDerivation rec { 38 36 pname = "watchman"; 39 - version = "2023.01.30.00"; 37 + version = "2023.08.14.00"; 40 38 41 39 src = fetchFromGitHub { 42 40 owner = "facebook"; 43 41 repo = "watchman"; 44 42 rev = "v${version}"; 45 - sha256 = "sha256-ZtCUlxx3YgfwKa9J8o9GkdkHquJbh+EytLiGNRlABls="; 43 + hash = "sha256-41bBPFlLYFHySyX4/GUllT1pNywSRcH7x/pnb5iN/1o="; 46 44 }; 47 45 48 46 cmakeFlags = [ ··· 64 62 ]; 65 63 66 64 buildInputs = [ 67 - pcre 65 + pcre2 68 66 openssl 69 - python3 70 67 gtest 71 68 glog 72 69 boost
+2 -2
pkgs/development/web/insomnia/default.nix
··· 16 16 ]; 17 17 in stdenv.mkDerivation rec { 18 18 pname = "insomnia"; 19 - version = "2023.4.0"; 19 + version = "2023.5.5"; 20 20 21 21 src = fetchurl { 22 22 url = 23 23 "https://github.com/Kong/insomnia/releases/download/core%40${version}/Insomnia.Core-${version}.deb"; 24 - sha256 = "sha256-7tkd0HaJeDdCvX1t1XCHrrQ23xFrcMsy1nhJJEp6klk="; 24 + sha256 = "sha256-/SrSpkfF3IrLl6BC4UknsTDraqN8uFKrKQSzQpBaRLY="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 27 27 stable = if stdenv.hostPlatform.system == "i686-linux" then legacy_390 else latest; 28 28 29 29 production = generic { 30 - version = "535.98"; 31 - sha256_64bit = "sha256-E1DAmVLTe+L5DWCONq47BQtE/Rb22akZMHGhK/0FTsM="; 32 - sha256_aarch64 = "sha256-ikqj7bvSvCGlkDviaqagyoSZhpf6ZU3TiKKxNDZm3RU="; 33 - openSha256 = "sha256-dgc5Z70NSpBARelNy6XaZ4e7Tz9vWJWeNek3TSztJus="; 34 - settingsSha256 = "sha256-jCRfeB1w6/dA27gaz6t5/Qo7On0zbAPIi74LYLel34s="; 35 - persistencedSha256 = "sha256-WviDU6B50YG8dO64CGvU3xK8WFUX8nvvVYm/fuGyroM="; 30 + version = "535.104.05"; 31 + sha256_64bit = "sha256-L51gnR2ncL7udXY2Y1xG5+2CU63oh7h8elSC4z/L7ck="; 32 + sha256_aarch64 = "sha256-J4uEQQ5WK50rVTI2JysBBHLpmBEWQcQ0CihgEM6xuvk="; 33 + openSha256 = "sha256-0ng4hyiUt0rHZkNveFTo+dSaqkMFO4UPXh85/js9Zbw="; 34 + settingsSha256 = "sha256-pS9W5LMenX0Rrwmpg1cszmpAYPt0Mx+apVQmOmLWTog="; 35 + persistencedSha256 = "sha256-uqT++w0gZRNbzyqbvP3GBqgb4g18r6VM3O8AMEfM7GU="; 36 36 }; 37 37 38 38 latest = selectHighestVersion production (generic {
+2 -2
pkgs/servers/mail/mox/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "mox"; 8 - version = "0.0.5"; 8 + version = "0.0.6"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mjl-"; 12 12 repo = "mox"; 13 13 rev = "v${version}"; 14 - hash = "sha256-f5/K6cPqJJkbdiVCNGOTd9Fjx2/gvSZCxeR6nnEaeJw="; 14 + hash = "sha256-RNzjDAvyz0RfD4GV6hT9RNJOfHSUXCLfwN4+V5acX28="; 15 15 }; 16 16 17 17 # set the version during buildtime
+4 -4
pkgs/servers/readarr/default.nix
··· 8 8 x86_64-darwin = "x64"; 9 9 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 10 10 hash = { 11 - x64-linux_hash = "sha256-46BfIsJEgtZMKQdiCqSFdM2whaYRwRLycv0pmY2InDk="; 12 - arm64-linux_hash = "sha256-zTDqbQz966RYV3FSBxmtN9JMe0j0AA21GCz4f0+NnHw="; 13 - x64-osx_hash = "sha256-EKy8vOvCHCcC5PheIdKyr5tWZ18Q+XeKh3mCrqcG7oA="; 11 + x64-linux_hash = "sha256-0q+MHdNRzq7gmv5jiArU1q+1UBWNZx0JRgiIy2pnIAc="; 12 + arm64-linux_hash = "sha256-NtbzzbWfEE1thyGOuJhTYXPxhTpw9lqXcvvlfmvCMqM="; 13 + x64-osx_hash = "sha256-oz2Sbvr8fky0mpBUXRKYki3UL0ewA/a2hEtPISBV8Ko="; 14 14 }."${arch}-${os}_hash"; 15 15 in stdenv.mkDerivation rec { 16 16 pname = "readarr"; 17 - version = "0.2.4.1999"; 17 + version = "0.3.3.2171"; 18 18 19 19 src = fetchurl { 20 20 url = "https://github.com/Readarr/Readarr/releases/download/v${version}/Readarr.develop.${version}.${os}-core-${arch}.tar.gz";
+3 -3
pkgs/servers/rustypaste/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rustypaste"; 5 - version = "0.12.1"; 5 + version = "0.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "orhun"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-AdcoyBtPgTK94VDBsCGozPU5enqCquY7r5IuEm3oW/g="; 11 + sha256 = "sha256-dyj5Zg49APsRLaOOCvyZ7X8qNLgzRcBZBCS5IR0dDCs="; 12 12 }; 13 13 14 - cargoHash = "sha256-VJjXwvMDSnDedcxJTjg6tVjPUxjRGTSOnx2nXgXCdzI="; 14 + cargoHash = "sha256-yw1ldacFxTKV1/A2XxZAZ2DpC0gJFjeGz5Yduw3RZEU="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.CoreServices
+38
pkgs/tools/games/ps3iso-utils/default.nix
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , unstableGitUpdater 4 + , lib 5 + }: 6 + stdenv.mkDerivation { 7 + pname = "ps3iso-utils"; 8 + version = "277db7de"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "bucanero"; 12 + repo = "ps3iso-utils"; 13 + rev = "878090980a9042c61901920fed1b034af215e8c7"; 14 + hash = "sha256-HUx5BqHBvVMUHReuJL0RcyxXOnufSt1Zi/ieAlI2eoc="; 15 + }; 16 + 17 + buildPhase = '' 18 + mkdir -p bin/ 19 + find . -type f -name "*.c" -exec \ 20 + sh -c 'OFILE=`basename "{}" ".c"` && $CC "{}" -o bin/"$OFILE"' \; 21 + ''; 22 + 23 + installPhase = '' 24 + mkdir -p $out/bin 25 + cp bin/* $out/bin 26 + ''; 27 + 28 + passthru.updateScript = unstableGitUpdater { }; 29 + 30 + meta = with lib; { 31 + description = "Estwald's PS3ISO utilities"; 32 + homepage = "https://github.com/bucanero/ps3iso-utils"; 33 + license = licenses.gpl3Only; 34 + maintainers = with maintainers; [ soupglasses ]; 35 + platforms = platforms.all; 36 + }; 37 + } 38 +
+3 -3
pkgs/tools/misc/gh-dash/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gh-dash"; 10 - version = "3.10.0"; 10 + version = "3.11.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "dlvhdr"; 14 14 repo = "gh-dash"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ypYM/FXp+BObR2fjVCV8nDJhRuuu2Y7213haAJnzRIE="; 16 + hash = "sha256-XvNc68pVwqBLthkr3jb578Avpnr1NKT1XWUD4aazBHw="; 17 17 }; 18 18 19 - vendorHash = "sha256-lOIONv+7cUUC0mGCwYkOkDn3zHreYpFeqmTbp2Ob3yM="; 19 + vendorHash = "sha256-COPEgRqogRkGuJm56n9Cqljr7H8QT0RSKAdnXbHm+nw="; 20 20 21 21 ldflags = [ 22 22 "-s"
+2 -2
pkgs/tools/misc/h/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "h"; 5 - version = "1.0.3"; 5 + version = "1.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zimbatm"; 9 9 repo = "h"; 10 10 rev = "v${version}"; 11 - hash = "sha256-RyQZ9F+rZ0a/90hljSyNCzYK8eA3rYJlJkV7B5NPRzY="; 11 + hash = "sha256-eitUKOo2c1c+SyctkUW/SUb2RCKUoU6nJplfJVdwBSs="; 12 12 }; 13 13 14 14 buildInputs = [ ruby ];
+3 -3
pkgs/tools/system/bottom/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "bottom"; 11 - version = "0.9.5"; 11 + version = "0.9.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ClementTsang"; 15 15 repo = pname; 16 16 rev = version; 17 - hash = "sha256-4wfkNKtF+txsil25HQtS/a/p8n9LWpUHwZVWcQ2u3+c="; 17 + hash = "sha256-czOYEZevZD7GfExmqwB7vhLXl6+etag1PjZFA2G9aGA="; 18 18 }; 19 19 20 - cargoHash = "sha256-+dXbVNfE0GKVySySiISqOdRqR6BLgwUC8U4PB1wsnvs="; 20 + cargoHash = "sha256-RDOGf1jujZikcRXRtL71BUGgmZyt7vQOTk1LkKpXDuo="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+44
pkgs/tools/wayland/stacktile/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromSourcehut 4 + , wayland 5 + , wayland-scanner 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "stacktile"; 10 + version = "1.0.0"; 11 + 12 + src = fetchFromSourcehut { 13 + owner = "~leon_plickat"; 14 + repo = "stacktile"; 15 + rev = "v${finalAttrs.version}"; 16 + hash = "sha256-IOFxgYMjh92jx2CPfBRZDL/1ucgfHtUyAL5rS2EG+Gc="; 17 + }; 18 + 19 + outputs = [ "out" "man" ]; 20 + 21 + nativeBuildInputs = [ 22 + wayland-scanner 23 + ]; 24 + 25 + buildInputs = [ 26 + wayland 27 + ]; 28 + 29 + makeFlags = [ 30 + "PREFIX=${placeholder "out"}" 31 + "MANDIR=${placeholder "man"}/share/man" 32 + ]; 33 + 34 + strictDeps = true; 35 + 36 + meta = { 37 + homepage = "https://sr.ht/~leon_plickat/stacktile/"; 38 + description = "Layout generator for the river Wayland compositor"; 39 + license = with lib.licenses; [ gpl3Plus ]; 40 + mainProgram = "stacktile"; 41 + maintainers = with lib.maintainers; [ AndersonTorres ]; 42 + platforms = lib.platforms.linux; 43 + }; 44 + })
+8 -2
pkgs/top-level/all-packages.nix
··· 1304 1304 1305 1305 singularity-tools = callPackage ../build-support/singularity-tools { }; 1306 1306 1307 + stacktile = callPackage ../tools/wayland/stacktile { }; 1308 + 1307 1309 sirula = callPackage ../tools/wayland/sirula { }; 1308 1310 1309 1311 sitelen-seli-kiwen = callPackage ../data/fonts/sitelen-seli-kiwen { }; ··· 3856 3858 }; 3857 3859 3858 3860 hakrawler = callPackage ../tools/security/hakrawler { }; 3861 + 3862 + harsh = callPackage ../applications/misc/harsh { }; 3859 3863 3860 3864 harvid = callPackage ../tools/video/harvid { }; 3861 3865 ··· 5681 5685 5682 5686 jellyfin-media-player = libsForQt5.callPackage ../applications/video/jellyfin-media-player { 5683 5687 inherit (darwin.apple_sdk.frameworks) CoreFoundation Cocoa CoreAudio MediaPlayer; 5684 - # Disable pipewire to avoid segfault, see https://github.com/jellyfin/jellyfin-media-player/issues/341 5685 - mpv = wrapMpv (mpv-unwrapped.override { pipewireSupport = false; }) { }; 5686 5688 }; 5687 5689 5688 5690 jellyfin-mpv-shim = python3Packages.callPackage ../applications/video/jellyfin-mpv-shim { }; ··· 6459 6461 mcelog = callPackage ../os-specific/linux/mcelog { 6460 6462 util-linux = util-linuxMinimal; 6461 6463 }; 6464 + 6465 + sqldef = callPackage ../development/tools/sqldef { }; 6462 6466 6463 6467 sqlint = callPackage ../development/tools/sqlint { }; 6464 6468 ··· 12198 12202 progress = callPackage ../tools/misc/progress { }; 12199 12203 12200 12204 ps3-disc-dumper = callPackage ../tools/games/ps3-disc-dumper { }; 12205 + 12206 + ps3iso-utils = callPackage ../tools/games/ps3iso-utils { }; 12201 12207 12202 12208 ps3netsrv = callPackage ../servers/ps3netsrv { }; 12203 12209