lol

Merge remote-tracking branch 'origin/staging-next' into staging

+3051 -2956
+2
doc/release-notes/rl-2511.section.md
··· 55 - The default Android NDK version has been raised to 27, and the default SDK version to 35. 56 NDK 21–26 have been removed, as they are end‐of‐life. 57 58 - `conftest` since `0.60.0` has moved to use rego `v1` as default. To continue using `v0` use `--rego-version v0`. For more information about upgrading to Rego v1 syntax, see the [upstream docs](https://www.openpolicyagent.org/docs/latest/v0-upgrade/). 59 60 - Zig 0.12 has been removed.
··· 55 - The default Android NDK version has been raised to 27, and the default SDK version to 35. 56 NDK 21–26 have been removed, as they are end‐of‐life. 57 58 + - `nuget-to-nix` has been removed as it was deprecated in favor of `nuget-to-json`. Out-of-tree packages that were using `nuget-to-nix` should migrate to use `nuget-to-json` instead for generating .NET dependency lock files. 59 + 60 - `conftest` since `0.60.0` has moved to use rego `v1` as default. To continue using `v0` use `--rego-version v0`. For more information about upgrading to Rego v1 syntax, see the [upstream docs](https://www.openpolicyagent.org/docs/latest/v0-upgrade/). 61 62 - Zig 0.12 has been removed.
+14 -20
doc/stdenv/stdenv.chapter.md
··· 1017 To make GDB find debug information for the `socat` package and its dependencies, you can use the following `shell.nix`: 1018 1019 ```nix 1020 - let 1021 - pkgs = import ./. { 1022 config = { }; 1023 overlays = [ 1024 (final: prev: { ··· 1026 readline = prev.readline.overrideAttrs { separateDebugInfo = true; }; 1027 }) 1028 ]; 1029 - }; 1030 - 1031 - myDebugInfoDirs = pkgs.symlinkJoin { 1032 - name = "myDebugInfoDirs"; 1033 - paths = with pkgs; [ 1034 - glibc.debug 1035 - ncurses.debug 1036 - openssl.debug 1037 - readline.debug 1038 - ]; 1039 - }; 1040 - in 1041 pkgs.mkShell { 1042 - 1043 - NIX_DEBUG_INFO_DIRS = "${pkgs.lib.getLib myDebugInfoDirs}/lib/debug"; 1044 1045 packages = [ 1046 pkgs.gdb ··· 1048 ]; 1049 1050 shellHook = '' 1051 - ${pkgs.lib.getBin pkgs.gdb}/bin/gdb ${pkgs.lib.getBin pkgs.socat}/bin/socat 1052 ''; 1053 } 1054 ``` 1055 1056 This setup works as follows: 1057 - Add [`overlays`](#chap-overlays) to the package set, since debug symbols are disabled for `ncurses` and `readline` by default. 1058 - - Create a derivation to combine all required debug symbols under one path with [`symlinkJoin`](#trivial-builder-symlinkJoin). 1059 - - Set the environment variable `NIX_DEBUG_INFO_DIRS` in the shell. Nixpkgs patches `gdb` to use it for looking up debug symbols. 1060 - - Run `gdb` on the `socat` binary on shell startup in the [`shellHook`](#sec-pkgs-mkShell). Here we use [`lib.getBin`](#function-library-lib.attrsets.getBin) to ensure that the correct derivation output is selected rather than the default one. 1061 1062 ::: 1063
··· 1017 To make GDB find debug information for the `socat` package and its dependencies, you can use the following `shell.nix`: 1018 1019 ```nix 1020 + { 1021 + pkgs ? import <nixpkgs> { 1022 config = { }; 1023 overlays = [ 1024 (final: prev: { ··· 1026 readline = prev.readline.overrideAttrs { separateDebugInfo = true; }; 1027 }) 1028 ]; 1029 + }, 1030 + }: 1031 pkgs.mkShell { 1032 + NIX_DEBUG_INFO_DIRS = pkgs.lib.makeSearchPathOutput "debug" "lib/debug" [ 1033 + pkgs.glibc 1034 + pkgs.ncurses 1035 + pkgs.openssl 1036 + pkgs.readline 1037 + ]; 1038 1039 packages = [ 1040 pkgs.gdb ··· 1042 ]; 1043 1044 shellHook = '' 1045 + gdb socat 1046 ''; 1047 } 1048 ``` 1049 1050 This setup works as follows: 1051 - Add [`overlays`](#chap-overlays) to the package set, since debug symbols are disabled for `ncurses` and `readline` by default. 1052 + - Set the environment variable `NIX_DEBUG_INFO_DIRS` in the shell. Nixpkgs patches `gdb` to use this variable for looking up debug symbols. 1053 + [`lib.makeSearchPathOutput`](#function-library-lib.strings.makeSearchPathOutput) constructs a colon-separated search path, pointing to the directories containing the debug symbols of the listed packages. 1054 + - Run `gdb` on the `socat` binary on shell startup in the [`shellHook`](#sec-pkgs-mkShell). 1055 1056 ::: 1057
+15
maintainers/maintainer-list.nix
··· 3039 github = "beardhatcode"; 3040 githubId = 662538; 3041 }; 3042 beeb = { 3043 name = "Valentin Bersier"; 3044 email = "hi@beeb.li"; ··· 28564 github = "zarelit"; 28565 githubId = 3449926; 28566 name = "David Costa"; 28567 }; 28568 zauberpony = { 28569 email = "elmar@athmer.org";
··· 3039 github = "beardhatcode"; 3040 githubId = 662538; 3041 }; 3042 + bearfm = { 3043 + name = "Bear"; 3044 + github = "fmbearmf"; 3045 + githubId = 77757734; 3046 + email = "close.line3633@fastmail.com"; 3047 + keys = [ { fingerprint = "FAD9F10819FA179515CD1B9FAFD359B057CEEE04"; } ]; 3048 + }; 3049 beeb = { 3050 name = "Valentin Bersier"; 3051 email = "hi@beeb.li"; ··· 28571 github = "zarelit"; 28572 githubId = 3449926; 28573 name = "David Costa"; 28574 + }; 28575 + zatm8 = { 28576 + email = "maxis1191@gmail.com"; 28577 + github = "mourogurt"; 28578 + githubId = 4152680; 28579 + keys = [ { fingerprint = "51BB 531F 219E 43C6 66E6 DD65 C4AD 9641 7F72 5D42"; } ]; 28580 + matrix = "@zatm8:zinzaguras.ru"; 28581 + name = "ZatM8"; 28582 }; 28583 zauberpony = { 28584 email = "elmar@athmer.org";
+1 -1
maintainers/scripts/update-dotnet-lockfiles.nix
··· 5 6 This script finds all the derivations in nixpkgs that have a 'fetch-deps' 7 attribute, and runs all of them sequentially. This is useful to test changes 8 - to 'fetch-deps', 'nuget-to-nix', 'nuget-to-json', or other changes to the 9 dotnet build infrastructure. Regular updates should be done through the 10 individual packages update scripts. 11 */
··· 5 6 This script finds all the derivations in nixpkgs that have a 'fetch-deps' 7 attribute, and runs all of them sequentially. This is useful to test changes 8 + to 'fetch-deps', 'nuget-to-json', or other changes to the 9 dotnet build infrastructure. Regular updates should be done through the 10 individual packages update scripts. 11 */
+3 -3
pkgs/applications/emulators/libretro/cores/stella.nix
··· 5 }: 6 mkLibretroCore { 7 core = "stella"; 8 - version = "0-unstable-2025-08-18"; 9 10 src = fetchFromGitHub { 11 owner = "stella-emu"; 12 repo = "stella"; 13 - rev = "ad52b906d91e20adc5e2c287ae567de2317adcb5"; 14 - hash = "sha256-9qgK3N3h+1iZSsqVwfDvZPHc4VJ3GY7ekAqnLozNayw="; 15 }; 16 17 makefile = "Makefile";
··· 5 }: 6 mkLibretroCore { 7 core = "stella"; 8 + version = "0-unstable-2025-08-28"; 9 10 src = fetchFromGitHub { 11 owner = "stella-emu"; 12 repo = "stella"; 13 + rev = "749a21f653cf85fcedf4fe514ac8df1ad308be8e"; 14 + hash = "sha256-N5E+Ci6cTvG9/Yqg5NdPZB00ThNKc6SS7qCWlmCYd6I="; 15 }; 16 17 makefile = "Makefile";
+213
pkgs/applications/science/chemistry/cp2k/default.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + mpiCheckPhaseHook, 6 + cmake, 7 + python3, 8 + gfortran, 9 + blas, 10 + lapack, 11 + dbcsr, 12 + fftw, 13 + libint, 14 + libvori, 15 + libxc, 16 + dftd4, 17 + simple-dftd3, 18 + tblite, 19 + mpi, 20 + gsl, 21 + scalapack, 22 + makeWrapper, 23 + libxsmm, 24 + spglib, 25 + which, 26 + pkg-config, 27 + plumed, 28 + zlib, 29 + hdf5-fortran, 30 + sirius, 31 + libvdwxc, 32 + spla, 33 + spfft, 34 + trexio, 35 + toml-f, 36 + greenx, 37 + gmp, 38 + enableElpa ? false, 39 + elpa, 40 + cudaPackages, 41 + rocmPackages, 42 + config, 43 + gpuBackend ? ( 44 + if config.cudaSupport then 45 + "cuda" 46 + else if config.rocmSupport then 47 + "rocm" 48 + else 49 + "none" 50 + ), 51 + # Change to a value suitable for your target GPU. 52 + # see https://github.com/cp2k/cp2k/blob/master/CMakeLists.txt#L433 53 + hipTarget ? "gfx908", 54 + cudaTarget ? "80", 55 + }: 56 + 57 + assert builtins.elem gpuBackend [ 58 + "none" 59 + "cuda" 60 + "rocm" 61 + ]; 62 + 63 + stdenv.mkDerivation rec { 64 + pname = "cp2k"; 65 + version = "2025.2"; 66 + 67 + src = fetchFromGitHub { 68 + owner = "cp2k"; 69 + repo = "cp2k"; 70 + rev = "v${version}"; 71 + hash = "sha256-vfl5rCoFeGtYuZ7LcsVsESjKxFbN5IYDvBSzOqsd64w="; 72 + fetchSubmodules = true; 73 + }; 74 + 75 + patches = [ 76 + # Remove the build command line from the source. 77 + # This avoids dependencies to .dev inputs 78 + ./remove-compiler-options.patch 79 + 80 + # Fix pkg-config path generation 81 + ./pkgconfig.patch 82 + ]; 83 + 84 + nativeBuildInputs = [ 85 + python3 86 + cmake 87 + which 88 + makeWrapper 89 + pkg-config 90 + ] 91 + ++ lib.optional (gpuBackend == "cuda") cudaPackages.cuda_nvcc; 92 + 93 + buildInputs = [ 94 + gfortran 95 + fftw 96 + gsl 97 + libint 98 + libvori 99 + libxc 100 + dftd4 101 + simple-dftd3 102 + tblite 103 + libxsmm 104 + mpi 105 + spglib 106 + scalapack 107 + blas 108 + lapack 109 + dbcsr 110 + plumed 111 + zlib 112 + hdf5-fortran 113 + sirius 114 + spla 115 + spfft 116 + libvdwxc 117 + trexio 118 + toml-f 119 + greenx 120 + gmp 121 + ] 122 + ++ lib.optional enableElpa elpa 123 + ++ lib.optionals (gpuBackend == "cuda") [ 124 + cudaPackages.cuda_cudart 125 + cudaPackages.libcublas 126 + cudaPackages.cuda_nvrtc 127 + ] 128 + ++ lib.optionals (gpuBackend == "rocm") [ 129 + rocmPackages.clr 130 + rocmPackages.rocm-core 131 + rocmPackages.hipblas 132 + rocmPackages.hipfft 133 + rocmPackages.rocblas 134 + ]; 135 + 136 + propagatedBuildInputs = [ (lib.getBin mpi) ]; 137 + propagatedUserEnvPkgs = [ mpi ]; 138 + 139 + postPatch = '' 140 + patchShebangs tools exts/dbcsr/tools/build_utils exts/dbcsr/.cp2k 141 + substituteInPlace exts/build_dbcsr/Makefile \ 142 + --replace '/usr/bin/env python3' '${python3}/bin/python' \ 143 + --replace 'SHELL = /bin/sh' 'SHELL = bash' 144 + ''; 145 + 146 + cmakeFlags = [ 147 + (lib.strings.cmakeBool "CP2K_USE_DFTD4" true) 148 + (lib.strings.cmakeBool "CP2K_USE_TBLITE" true) 149 + (lib.strings.cmakeBool "CP2K_USE_FFTW3" true) 150 + (lib.strings.cmakeBool "CP2K_USE_HDF5" true) 151 + (lib.strings.cmakeBool "CP2K_USE_LIBINT2" true) 152 + (lib.strings.cmakeBool "CP2K_USE_LIBXC" true) 153 + (lib.strings.cmakeBool "CP2K_USE_MPI" true) 154 + (lib.strings.cmakeBool "CP2K_USE_VORI" true) 155 + (lib.strings.cmakeBool "CP2K_USE_TREXIO" true) 156 + (lib.strings.cmakeBool "CP2K_USE_SPGLIB" true) 157 + (lib.strings.cmakeBool "CP2K_USE_SPLA" true) 158 + (lib.strings.cmakeBool "CP2K_USE_LIBXSMM" true) 159 + (lib.strings.cmakeBool "CP2K_USE_SIRIUS" true) 160 + (lib.strings.cmakeBool "CP2K_USE_LIBVDWXC" true) 161 + (lib.strings.cmakeBool "CP2K_USE_PLUMED" true) 162 + (lib.strings.cmakeBool "CP2K_USE_GREENX" true) 163 + (lib.strings.cmakeBool "CP2K_USE_ELPA" enableElpa) 164 + (lib.strings.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 165 + ] 166 + ++ lib.optionals (gpuBackend == "rocm") [ 167 + (lib.strings.cmakeFeature "CP2K_USE_ACCEL" "HIP") 168 + (lib.strings.cmakeFeature "CMAKE_HIP_ARCHITECTURES" hipTarget) 169 + ] 170 + ++ lib.optionals (gpuBackend == "cuda") [ 171 + (lib.strings.cmakeFeature "CP2K_USE_ACCEL" "CUDA") 172 + (lib.strings.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" cudaTarget) 173 + ]; 174 + 175 + nativeCheckInputs = [ 176 + mpiCheckPhaseHook 177 + ]; 178 + 179 + passthru = { 180 + inherit mpi; 181 + }; 182 + 183 + postInstall = '' 184 + mkdir -p $out/share/cp2k 185 + cp -r ../data/* $out/share/cp2k 186 + 187 + for i in $out/bin/*; do 188 + wrapProgram $i \ 189 + --set-default CP2K_DATA_DIR $out/share/cp2k \ 190 + --set-default OMP_NUM_THREADS 1 191 + done 192 + ''; 193 + 194 + doInstallCheck = gpuBackend == "none"; 195 + 196 + installCheckPhase = '' 197 + runHook preInstallCheck 198 + 199 + for TEST in $out/bin/{dbt_tas,dbt,libcp2k,parallel_rng_types,gx_ac}_unittest.psmp; do 200 + mpirun -n 2 $TEST 201 + done 202 + 203 + runHook postInstallCheck 204 + ''; 205 + 206 + meta = { 207 + description = "Quantum chemistry and solid state physics program"; 208 + homepage = "https://www.cp2k.org"; 209 + license = lib.licenses.gpl2Plus; 210 + maintainers = [ lib.maintainers.sheepforce ]; 211 + platforms = [ "x86_64-linux" ]; 212 + }; 213 + }
+14
pkgs/applications/science/chemistry/cp2k/pkgconfig.patch
···
··· 1 + diff --git a/cmake/libcp2k.pc.in b/cmake/libcp2k.pc.in 2 + index 618af55e28..8d08a51a0c 100644 3 + --- a/cmake/libcp2k.pc.in 4 + +++ b/cmake/libcp2k.pc.in 5 + @@ -1,7 +1,7 @@ 6 + prefix="@CMAKE_INSTALL_PREFIX@" 7 + exec_prefix="${prefix}" 8 + -libdir="${prefix}/@CMAKE_INSTALL_LIBDIR@" 9 + -includedir="${prefix}/@CMAKE_INSTALL_INCLUDEDIR@" 10 + +libdir=CMAKE_INSTALL_FULL_LIBDIR@" 11 + +includedir="@CMAKE_INSTALL_FULL_INCLUDEDIR@" 12 + 13 + Name: @PROJECT_NAME@ 14 + Description: @CMAKE_PROJECT_DESCRIPTION@
+44 -121
pkgs/build-support/dlang/builddubpackage/default.nix
··· 1 { 2 lib, 3 stdenv, 4 - fetchurl, 5 - fetchgit, 6 - linkFarm, 7 dub, 8 ldc, 9 removeReferencesTo, 10 }: 11 12 - # See https://nixos.org/manual/nixpkgs/unstable#dlang for more detailed usage information 13 14 - { 15 - # A lockfile generated by `dub-to-nix` from the source of the package. 16 - # Can be either a path to the file, or an attrset already parsed with `lib.importJSON`. 17 - dubLock, 18 - # The build type to pass to `dub build` as a value for the `--build=` flag. 19 - dubBuildType ? "release", 20 - # The flags to pass to `dub build` and `dub test`. 21 - dubFlags ? [ ], 22 - # The flags to pass to `dub build`. 23 - dubBuildFlags ? [ ], 24 - # The flags to pass to `dub test`. 25 - dubTestFlags ? [ ], 26 - # The D compiler to be used by `dub`. 27 - compiler ? ldc, 28 - ... 29 - }@args: 30 31 - let 32 - makeDubDep = 33 { 34 - pname, 35 - version, 36 - sha256, 37 - }: 38 - { 39 - inherit pname version; 40 - src = fetchurl { 41 - name = "dub-${pname}-${version}.zip"; 42 - url = "mirror://dub/${pname}/${version}.zip"; 43 - inherit sha256; 44 - }; 45 - }; 46 47 - makeGitDep = 48 { 49 - pname, 50 - version, 51 - repository, 52 - sha256, 53 - }: 54 - { 55 - inherit pname version; 56 - src = fetchgit { 57 - url = repository; 58 - rev = version; 59 - inherit sha256; 60 }; 61 - }; 62 63 - lockJson = if lib.isPath dubLock then lib.importJSON dubLock else dubLock; 64 - depsRaw = lib.mapAttrsToList (pname: args: { inherit pname; } // args) lockJson.dependencies; 65 66 - dubDeps = map makeDubDep (lib.filter (args: !(args ? repository)) depsRaw); 67 - gitDeps = map makeGitDep (lib.filter (args: args ? repository) depsRaw); 68 69 - # a directory with multiple single element registries 70 - # one big directory with all .zip files leads to version parsing errors 71 - # when the name of a package is a prefix of the name of another package 72 - dubRegistryBase = linkFarm "dub-registry-base" ( 73 - map (dep: { 74 - name = "${dep.pname}/${dep.pname}-${dep.version}.zip"; 75 - path = dep.src; 76 - }) dubDeps 77 - ); 78 - 79 - combinedFlags = "--skip-registry=all --compiler=${lib.getExe compiler} ${toString dubFlags}"; 80 - combinedBuildFlags = "${combinedFlags} --build=${dubBuildType} ${toString dubBuildFlags}"; 81 - combinedTestFlags = "${combinedFlags} ${toString dubTestFlags}"; 82 - in 83 - stdenv.mkDerivation ( 84 - builtins.removeAttrs args [ "dubLock" ] 85 - // { 86 - strictDeps = args.strictDeps or true; 87 - 88 - nativeBuildInputs = args.nativeBuildInputs or [ ] ++ [ 89 - dub 90 - compiler 91 - removeReferencesTo 92 - ]; 93 - 94 - configurePhase = 95 - args.configurePhase or '' 96 runHook preConfigure 97 - 98 - export DUB_HOME="$NIX_BUILD_TOP/.dub" 99 - mkdir -p "$DUB_HOME" 100 - 101 - # register dub dependencies 102 - ${lib.concatMapStringsSep "\n" (dep: '' 103 - dub fetch ${dep.pname}@${dep.version} --cache=user --skip-registry=standard --registry=file://${dubRegistryBase}/${dep.pname} 104 - '') dubDeps} 105 - 106 - # register git dependencies 107 - ${lib.concatMapStringsSep "\n" (dep: '' 108 - mkdir -p "$DUB_HOME/packages/${dep.pname}/${dep.version}" 109 - cp -r --no-preserve=all ${dep.src} "$DUB_HOME/packages/${dep.pname}/${dep.version}/${dep.pname}" 110 - '') gitDeps} 111 - 112 runHook postConfigure 113 ''; 114 115 - buildPhase = 116 - args.buildPhase or '' 117 - runHook preBuild 118 119 - dub build ${combinedBuildFlags} 120 121 - runHook postBuild 122 - ''; 123 124 - doCheck = args.doCheck or false; 125 - 126 - checkPhase = 127 - args.checkPhase or '' 128 - runHook preCheck 129 - 130 - dub test ${combinedTestFlags} 131 - 132 - runHook postCheck 133 ''; 134 135 - preFixup = '' 136 - ${args.preFixup or ""} 137 - 138 - find "$out" -type f -exec remove-references-to -t ${compiler} '{}' + 139 - ''; 140 - 141 - disallowedReferences = [ compiler ]; 142 143 - meta = { 144 - platforms = dub.meta.platforms; 145 - } 146 - // args.meta or { }; 147 - } 148 - )
··· 1 { 2 lib, 3 stdenv, 4 dub, 5 + importDubLock, 6 + dubSetupHook, 7 + dubBuildHook, 8 + dubCheckHook, 9 ldc, 10 removeReferencesTo, 11 }: 12 13 + lib.extendMkDerivation { 14 + constructDrv = stdenv.mkDerivation; 15 16 + excludeDrvArgNames = [ 17 + "dubLock" 18 + "compiler" 19 + ]; 20 21 + extendDrvArgs = 22 + finalAttrs: 23 { 24 + # A lockfile generated by `dub-to-nix` from the source of the package. 25 + # Can be either a path to the file, or an attrset already parsed with `lib.importJSON`. 26 + dubLock, 27 + compiler ? ldc, 28 + ... 29 + }@args: 30 31 { 32 + dubDeps = importDubLock { 33 + inherit (finalAttrs) pname version; 34 + lock = dubLock; 35 }; 36 37 + strictDeps = args.strictDeps or true; 38 39 + nativeBuildInputs = args.nativeBuildInputs or [ ] ++ [ 40 + dubSetupHook 41 + (dubBuildHook.override { inherit dub; }) 42 + compiler 43 + removeReferencesTo 44 + ]; 45 46 + configurePhase = '' 47 runHook preConfigure 48 + dubFlags+=("--compiler=${lib.getExe compiler}") 49 runHook postConfigure 50 ''; 51 52 + doCheck = args.doCheck or false; 53 54 + nativeCheckInputs = [ 55 + (dubCheckHook.override { inherit dub; }) 56 + ]; 57 58 + preFixup = '' 59 + ${args.preFixup or ""} 60 61 + find "$out" -type f -exec remove-references-to -t ${compiler} '{}' + 62 ''; 63 64 + disallowedReferences = args.disallowedReferences or [ compiler ]; 65 66 + meta = { 67 + platforms = dub.meta.platforms; 68 + } 69 + // args.meta or { }; 70 + }; 71 + }
+26
pkgs/build-support/dlang/builddubpackage/hooks/default.nix
···
··· 1 + { callPackage }: 2 + 3 + { 4 + dubSetupHook = callPackage ( 5 + { makeSetupHook }: 6 + makeSetupHook { 7 + name = "dub-setup-hook"; 8 + } ./dub-setup-hook.sh 9 + ) { }; 10 + 11 + dubBuildHook = callPackage ( 12 + { makeSetupHook, dub }: 13 + makeSetupHook { 14 + name = "dub-build-hook"; 15 + propagatedBuildInputs = [ dub ]; 16 + } ./dub-build-hook.sh 17 + ) { }; 18 + 19 + dubCheckHook = callPackage ( 20 + { makeSetupHook, dub }: 21 + makeSetupHook { 22 + name = "dub-check-hook"; 23 + propagatedBuildInputs = [ dub ]; 24 + } ./dub-check-hook.sh 25 + ) { }; 26 + }
+13
pkgs/build-support/dlang/builddubpackage/hooks/dub-build-hook.sh
···
··· 1 + dubBuildHook() { 2 + runHook preBuild 3 + echo "Executing dubBuildHook" 4 + 5 + dub build --skip-registry=all --build="${dubBuildType-"release"}" "${dubBuildFlags[@]}" "${dubFlags[@]}" 6 + 7 + echo "Finished dubBuildHook" 8 + runHook postBuild 9 + } 10 + 11 + if [[ -z "${dontDubBuild-}" && -z "${buildPhase-}" ]]; then 12 + buildPhase=dubBuildHook 13 + fi
+13
pkgs/build-support/dlang/builddubpackage/hooks/dub-check-hook.sh
···
··· 1 + dubCheckHook() { 2 + runHook preCheck 3 + echo "Executing dubCheckHook" 4 + 5 + dub test --skip-registry=all "${dubTestFlags[@]}" "${dubFlags[@]}" 6 + 7 + echo "Finished dubCheckHook" 8 + runHook postCheck 9 + } 10 + 11 + if [[ -z "${dontDubCheck-}" && -z "${checkPhase-}" ]]; then 12 + checkPhase=dubCheckHook 13 + fi
+19
pkgs/build-support/dlang/builddubpackage/hooks/dub-setup-hook.sh
···
··· 1 + dubSetupHook() { 2 + echo "Executing dubSetupHook" 3 + 4 + if [ -z "${dubDeps-}" ]; then 5 + echo "Error: 'dubDeps' must be set when using dubSetupHook." 6 + exit 1 7 + fi 8 + 9 + export DUB_HOME="$NIX_BUILD_TOP"/.dub 10 + echo "Configuring \$DUB_HOME ($DUB_HOME)" 11 + cp -Tr "$dubDeps"/.dub "$NIX_BUILD_TOP"/.dub 12 + chmod -R +w "$DUB_HOME" 13 + 14 + echo "Finished dubSetupHook" 15 + } 16 + 17 + if [ -z "${dontDubSetup-}" ]; then 18 + postPatchHooks+=(dubSetupHook) 19 + fi
+81
pkgs/build-support/dlang/builddubpackage/import-dub-lock.nix
···
··· 1 + { 2 + lib, 3 + runCommand, 4 + linkFarm, 5 + fetchurl, 6 + fetchgit, 7 + dub, 8 + }: 9 + 10 + { 11 + pname, 12 + version, 13 + lock, 14 + }: 15 + 16 + let 17 + makeDubDep = 18 + { 19 + pname, 20 + version, 21 + sha256, 22 + }: 23 + { 24 + inherit pname version; 25 + src = fetchurl { 26 + name = "dub-${pname}-${version}.zip"; 27 + url = "mirror://dub/${pname}/${version}.zip"; 28 + inherit sha256; 29 + }; 30 + }; 31 + 32 + makeGitDep = 33 + { 34 + pname, 35 + version, 36 + repository, 37 + sha256, 38 + }: 39 + { 40 + inherit pname version; 41 + src = fetchgit { 42 + url = repository; 43 + rev = version; 44 + inherit sha256; 45 + }; 46 + }; 47 + 48 + lockJson = if lib.isPath lock then lib.importJSON lock else lock; 49 + depsRaw = lib.mapAttrsToList (pname: args: { inherit pname; } // args) lockJson.dependencies; 50 + 51 + dubDeps = map makeDubDep (lib.filter (args: !(args ? repository)) depsRaw); 52 + gitDeps = map makeGitDep (lib.filter (args: args ? repository) depsRaw); 53 + 54 + # a directory with multiple single element registries 55 + # one big directory with all .zip files leads to version parsing errors 56 + # when the name of a package is a prefix of the name of another package 57 + dubRegistryBase = linkFarm "dub-registry-base" ( 58 + map (dep: { 59 + name = "${dep.pname}/${dep.pname}-${dep.version}.zip"; 60 + path = dep.src; 61 + }) dubDeps 62 + ); 63 + 64 + in 65 + runCommand "${pname}-${version}-dub-deps" 66 + { 67 + nativeBuildInputs = [ dub ]; 68 + } 69 + '' 70 + export DUB_HOME="$out/.dub" 71 + mkdir -p "$DUB_HOME" 72 + # register dub dependencies 73 + ${lib.concatMapStringsSep "\n" (dep: '' 74 + dub fetch ${dep.pname}@${dep.version} --cache=user --skip-registry=standard --registry=file://${dubRegistryBase}/${dep.pname} 75 + '') dubDeps} 76 + # register git dependencies 77 + ${lib.concatMapStringsSep "\n" (dep: '' 78 + mkdir -p "$DUB_HOME/packages/${dep.pname}/${dep.version}" 79 + cp -r --no-preserve=all ${dep.src} "$DUB_HOME/packages/${dep.pname}/${dep.version}/${dep.pname}" 80 + '') gitDeps} 81 + ''
+4 -1
pkgs/build-support/dlang/dub-support.nix
··· 1 { callPackage }: 2 { 3 buildDubPackage = callPackage ./builddubpackage { }; 4 - dub-to-nix = callPackage ./dub-to-nix { }; 5 }
··· 1 { callPackage }: 2 + 3 { 4 + dub-to-nix = callPackage ./dub-to-nix { }; 5 + importDubLock = callPackage ./builddubpackage/import-dub-lock.nix { }; 6 buildDubPackage = callPackage ./builddubpackage { }; 7 } 8 + // import ./builddubpackage/hooks { inherit callPackage; }
pkgs/build-support/dlang/dub-to-nix/dub-to-nix.py
-2
pkgs/build-support/dotnet/add-nuget-deps/default.nix
··· 4 nix, 5 lib, 6 replaceVarsWith, 7 - nuget-to-nix, 8 nixfmt, 9 nuget-to-json, 10 cacert, ··· 89 isExecutable = true; 90 replacements = { 91 binPath = lib.makeBinPath [ 92 - nuget-to-nix 93 nixfmt 94 nuget-to-json 95 ];
··· 4 nix, 5 lib, 6 replaceVarsWith, 7 nixfmt, 8 nuget-to-json, 9 cacert, ··· 88 isExecutable = true; 89 replacements = { 90 binPath = lib.makeBinPath [ 91 nixfmt 92 nuget-to-json 93 ];
+2 -18
pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh
··· 7 8 genericBuild 9 10 - nuget-to-json "${NUGET_PACKAGES%/}" >deps.json 11 - 12 - if [[ "$LOCKFILE_OUTPUT" == *.nix ]]; then 13 - trap 'rm deps.json' exit 14 - 15 - ( 16 - echo "# This file was automatically generated by passthru.fetch-deps." 17 - echo "# Please dont edit it manually, your changes might get overwritten!" 18 - echo -e "# TODO: This format file is obsolete, consider migrating to JSON.\n" 19 - nuget-to-nix --convert deps.json 20 - ) >deps.nix 21 - nixfmt deps.nix 22 - 23 - mv deps.nix "$LOCKFILE_OUTPUT" 24 - else 25 - mv deps.json "$LOCKFILE_OUTPUT" 26 - fi 27 28 - echo "Succesfully wrote lockfile to $LOCKFILE_OUTPUT"
··· 7 8 genericBuild 9 10 + nuget-to-json "${NUGET_PACKAGES%/}" >"$LOCKFILE_OUTPUT" 11 12 + echo "Successfully wrote lockfile to $LOCKFILE_OUTPUT"
+5 -5
pkgs/by-name/_1/_1password-cli/package.nix
··· 24 if extension == "zip" then fetchzip args else fetchurl args; 25 26 pname = "1password-cli"; 27 - version = "2.31.1"; 28 sources = rec { 29 - aarch64-linux = fetch "linux_arm64" "sha256-cFGIzB1452XVSkajHbD45Pxp8Hfu10q68nMnbE9dtzg=" "zip"; 30 - i686-linux = fetch "linux_386" "sha256-EckUFVr5MQ75XW4eHCxWt9vtcqzAFHLUDlmr//pcmf8=" "zip"; 31 - x86_64-linux = fetch "linux_amd64" "sha256-jPZxqaLrtBC42bGVOByKuORyl2YFicILlQDHkNuuJuc=" "zip"; 32 aarch64-darwin = 33 - fetch "apple_universal" "sha256-B71apQ2JPyyVHhavMziKNtLNs+WfCDdUEtvfwGFkE+Y=" 34 "pkg"; 35 x86_64-darwin = aarch64-darwin; 36 };
··· 24 if extension == "zip" then fetchzip args else fetchurl args; 25 26 pname = "1password-cli"; 27 + version = "2.32.0"; 28 sources = rec { 29 + aarch64-linux = fetch "linux_arm64" "sha256-7t8Ar6vF8lU3fPy5Gw9jtUkcx9gYKg6AFDB8/3QBvbk=" "zip"; 30 + i686-linux = fetch "linux_386" "sha256-+KSi87muDH/A8LNH7iDPQC/CnZhTpvFNSw1cuewqaXI=" "zip"; 31 + x86_64-linux = fetch "linux_amd64" "sha256-4I7lSey6I4mQ7dDtuOASnZzAItFYkIDZ8UMsqb0q5tE=" "zip"; 32 aarch64-darwin = 33 + fetch "apple_universal" "sha256-PVSI/iYsjphNqs0DGQlzRhmvnwj4RHcNODE2nbQ8CO0=" 34 "pkg"; 35 x86_64-darwin = aarch64-darwin; 36 };
+2 -2
pkgs/by-name/ar/argocd/package.nix
··· 13 14 buildGoModule rec { 15 pname = "argocd"; 16 - version = "3.1.0"; 17 18 src = fetchFromGitHub { 19 owner = "argoproj"; 20 repo = "argo-cd"; 21 rev = "v${version}"; 22 - hash = "sha256-zg6zd10hpGUOukrwMK0qJXBL8nVgPSZJ6+jh+/mbOL0="; 23 }; 24 25 ui = stdenv.mkDerivation {
··· 13 14 buildGoModule rec { 15 pname = "argocd"; 16 + version = "3.1.1"; 17 18 src = fetchFromGitHub { 19 owner = "argoproj"; 20 repo = "argo-cd"; 21 rev = "v${version}"; 22 + hash = "sha256-+StoJfRlWOnXBAt+D9cxaAc9gn9V4h9QWogtMPf3V+A="; 23 }; 24 25 ui = stdenv.mkDerivation {
+2 -1
pkgs/by-name/az/azure-artifacts-credprovider/package.nix
··· 3 buildDotnetModule, 4 dotnetCorePackages, 5 fetchFromGitHub, 6 }: 7 buildDotnetModule rec { 8 dotnet-sdk = dotnetCorePackages.sdk_8_0; ··· 18 projectFile = "CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj"; 19 testProjectFile = "CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj"; 20 nugetDeps = ./deps.json; 21 - passthru.updateScript = ./update.sh; 22 patchPhase = '' 23 sed -i 's|<TargetFrameworks>.*</TargetFrameworks>|<TargetFramework>net8.0</TargetFramework>|' Build.props 24 '';
··· 3 buildDotnetModule, 4 dotnetCorePackages, 5 fetchFromGitHub, 6 + nix-update-script, 7 }: 8 buildDotnetModule rec { 9 dotnet-sdk = dotnetCorePackages.sdk_8_0; ··· 19 projectFile = "CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj"; 20 testProjectFile = "CredentialProvider.Microsoft.Tests/CredentialProvider.Microsoft.Tests.csproj"; 21 nugetDeps = ./deps.json; 22 + passthru.updateScript = nix-update-script { }; 23 patchPhase = '' 24 sed -i 's|<TargetFrameworks>.*</TargetFrameworks>|<TargetFramework>net8.0</TargetFramework>|' Build.props 25 '';
-35
pkgs/by-name/az/azure-artifacts-credprovider/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p curl gnused gawk nix-prefetch jq dotnet-sdk_8 nuget-to-nix 3 - 4 - set -euo pipefail 5 - URL="https://github.com/microsoft/artifacts-credprovider" 6 - 7 - ROOT="$(dirname "$(readlink -f "$0")")" 8 - NIX_DRV="$ROOT/package.nix" 9 - if [ ! -f "$NIX_DRV" ]; then 10 - echo "ERROR: cannot find package.nix in $ROOT" 11 - exit 1 12 - fi 13 - 14 - TMP="$(mktemp -d)" 15 - clean_up() { 16 - rm -rf "$TMP" 17 - } 18 - trap clean_up EXIT SIGINT SIGTERM 19 - PACKAGES="$TMP/packages" 20 - SRC_RW="$TMP/src" 21 - 22 - mkdir -p $SRC_RW 23 - mkdir -p $PACKAGES 24 - 25 - 26 - VER=$(curl -s "https://api.github.com/repos/microsoft/artifacts-credprovider/releases/latest" | jq -r .tag_name | grep -oP '\d+\.\d+\.\d+' ) 27 - HASH=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-git --url $URL --rev "v$VER" --quiet | jq -r .sha256)") 28 - 29 - sed -i "s/version = \".*\"/version = \"$VER\"/" "$NIX_DRV" 30 - sed -i "s#sha256 = \"sha256-.\{44\}\"#sha256 = \"$HASH\"#" "$NIX_DRV" 31 - 32 - nix-prefetch-git --url $URL --rev "v$VER" --out $SRC_RW --builder --quiet 33 - rm $SRC_RW/nuget.config 34 - dotnet restore "$SRC_RW/MicrosoftCredentialProvider.sln" --packages $PACKAGES -r:linux-x64 35 - nuget-to-nix $PACKAGES > deps.nix
···
-275
pkgs/by-name/ba/bambu-studio/0001-Replace-deprecated-boost-filesystem-string_file.hpp-.patch
··· 1 - From 0fada0c6fe84bed0b311c493aa3f91bf35428bc8 Mon Sep 17 00:00:00 2001 2 - From: "Queen Vinyl Da.i'gyu-Kazotetsu" <vinyldarkscratch@gmail.com> 3 - Date: Fri, 26 Apr 2024 09:56:49 -0700 4 - Subject: [PATCH 1/4] Replace deprecated boost/filesystem/string_file.hpp 5 - header 6 - 7 - --- 8 - src/libslic3r/Format/bbs_3mf.cpp | 48 ++++++++++++++++++------- 9 - src/libslic3r/Model.cpp | 6 ++-- 10 - src/slic3r/GUI/MediaPlayCtrl.cpp | 9 +++-- 11 - src/slic3r/Utils/PresetUpdater.cpp | 56 +++++++++++++++++++++++++----- 12 - 4 files changed, 91 insertions(+), 28 deletions(-) 13 - 14 - diff --git a/src/libslic3r/Format/bbs_3mf.cpp b/src/libslic3r/Format/bbs_3mf.cpp 15 - index f13c62148..0e3b4e433 100644 16 - --- a/src/libslic3r/Format/bbs_3mf.cpp 17 - +++ b/src/libslic3r/Format/bbs_3mf.cpp 18 - @@ -25,7 +25,6 @@ 19 - #include <boost/algorithm/string/predicate.hpp> 20 - #include <boost/algorithm/string/replace.hpp> 21 - #include <boost/filesystem/operations.hpp> 22 - -#include <boost/filesystem/string_file.hpp> 23 - #include <boost/lexical_cast.hpp> 24 - #include <boost/nowide/fstream.hpp> 25 - #include <boost/nowide/cstdio.hpp> 26 - @@ -1296,12 +1295,19 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result) 27 - m_backup_path = filename.substr(0, filename.size() - 5); 28 - model.set_backup_path(m_backup_path); 29 - try { 30 - - if (boost::filesystem::exists(model.get_backup_path() + "/origin.txt")) 31 - - boost::filesystem::load_string_file(model.get_backup_path() + "/origin.txt", m_origin_file); 32 - + std::string filepath = model.get_backup_path() + "/origin.txt"; 33 - + if (boost::filesystem::exists(filepath)) { 34 - + boost::filesystem::ifstream originfile(filepath); 35 - + m_origin_file.assign( 36 - + (std::istreambuf_iterator<char>(originfile)), 37 - + (std::istreambuf_iterator<char>()) 38 - + ); 39 - + originfile.close(); 40 - + } 41 - } catch (...) {} 42 - - boost::filesystem::save_string_file( 43 - - model.get_backup_path() + "/lock.txt", 44 - - boost::lexical_cast<std::string>(get_current_pid())); 45 - + boost::filesystem::ofstream lockfile(model.get_backup_path() + "/lock.txt"); 46 - + lockfile << boost::lexical_cast<std::string>(get_current_pid()); 47 - + lockfile.close(); 48 - } 49 - else { 50 - m_backup_path = model.get_backup_path(); 51 - @@ -1312,7 +1318,9 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result) 52 - file_version = *m_bambuslicer_generator_version; 53 - // save for restore 54 - if (result && m_load_aux && !m_load_restore) { 55 - - boost::filesystem::save_string_file(model.get_backup_path() + "/origin.txt", filename); 56 - + boost::filesystem::ofstream originfile(model.get_backup_path() + "/origin.txt"); 57 - + originfile << filename; 58 - + originfile.close(); 59 - } 60 - if (m_load_restore && !result) // not clear failed backup data for later analyze 61 - model.set_backup_path("detach"); 62 - @@ -5571,6 +5579,7 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result) 63 - boost::system::error_code ec; 64 - std::string filename = std::string(store_params.path); 65 - boost::filesystem::remove(filename + ".tmp", ec); 66 - + boost::filesystem::ofstream outputfile; 67 - 68 - bool result = _save_model_to_file(filename + ".tmp", *store_params.model, store_params.plate_data_list, store_params.project_presets, store_params.config, 69 - store_params.thumbnail_data, store_params.no_light_thumbnail_data, store_params.top_thumbnail_data, store_params.pick_thumbnail_data, 70 - @@ -5584,7 +5593,9 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result) 71 - return false; 72 - } 73 - if (!(store_params.strategy & SaveStrategy::Silence)) 74 - - boost::filesystem::save_string_file(store_params.model->get_backup_path() + "/origin.txt", filename); 75 - + outputfile.open(store_params.model->get_backup_path() + "/origin.txt"); 76 - + outputfile << filename; 77 - + outputfile.close(); 78 - } 79 - return result; 80 - } 81 - @@ -8488,9 +8499,14 @@ bool has_restore_data(std::string & path, std::string& origin) 82 - origin = "<lock>"; 83 - return false; 84 - } 85 - - if (boost::filesystem::exists(path + "/lock.txt")) { 86 - - std::string pid; 87 - - boost::filesystem::load_string_file(path + "/lock.txt", pid); 88 - + const std::string lockfile_path = path + "/lock.txt"; 89 - + if (boost::filesystem::exists(lockfile_path)) { 90 - + boost::filesystem::ifstream lockfile(lockfile_path); 91 - + std::string pid( 92 - + (std::istreambuf_iterator<char>(lockfile)), 93 - + (std::istreambuf_iterator<char>()) 94 - + ); 95 - + lockfile.close(); 96 - try { 97 - if (get_process_name(boost::lexical_cast<int>(pid)) == 98 - get_process_name(0)) { 99 - @@ -8506,8 +8522,14 @@ bool has_restore_data(std::string & path, std::string& origin) 100 - if (!boost::filesystem::exists(file3mf)) 101 - return false; 102 - try { 103 - - if (boost::filesystem::exists(path + "/origin.txt")) 104 - - boost::filesystem::load_string_file(path + "/origin.txt", origin); 105 - + if (boost::filesystem::exists(path + "/origin.txt")) { 106 - + boost::filesystem::ifstream originfile(path + "/origin.txt"); 107 - + origin.assign( 108 - + (std::istreambuf_iterator<char>(originfile)), 109 - + (std::istreambuf_iterator<char>()) 110 - + ); 111 - + originfile.close(); 112 - + } 113 - } 114 - catch (...) { 115 - } 116 - diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp 117 - index 82328083c..51da0fb8b 100644 118 - --- a/src/libslic3r/Model.cpp 119 - +++ b/src/libslic3r/Model.cpp 120 - @@ -23,7 +23,6 @@ 121 - #include <boost/algorithm/string/predicate.hpp> 122 - #include <boost/algorithm/string/replace.hpp> 123 - #include <boost/filesystem.hpp> 124 - -#include <boost/filesystem/string_file.hpp> 125 - #include <boost/lexical_cast.hpp> 126 - #include <boost/log/trivial.hpp> 127 - #include <boost/nowide/iostream.hpp> 128 - @@ -980,8 +979,9 @@ std::string Model::get_backup_path() 129 - BOOST_LOG_TRIVIAL(info) << "create /Metadata in " << temp_path; 130 - boost::filesystem::create_directories(backup_path + "/Metadata"); 131 - BOOST_LOG_TRIVIAL(info) << "create /lock.txt in " << temp_path; 132 - - boost::filesystem::save_string_file(backup_path + "/lock.txt", 133 - - boost::lexical_cast<std::string>(get_current_pid())); 134 - + boost::filesystem::ofstream lockfile(backup_path + "/lock.txt"); 135 - + lockfile << boost::lexical_cast<std::string>(get_current_pid()); 136 - + lockfile.close(); 137 - } 138 - } catch (std::exception &ex) { 139 - BOOST_LOG_TRIVIAL(error) << "Failed to create backup path" << temp_path << ": " << ex.what(); 140 - diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp 141 - index 9af0cc116..45de6fe1a 100644 142 - --- a/src/slic3r/GUI/MediaPlayCtrl.cpp 143 - +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp 144 - @@ -8,7 +8,6 @@ 145 - #include "MsgDialog.hpp" 146 - #include "DownloadProgressDialog.hpp" 147 - 148 - -#include <boost/filesystem/string_file.hpp> 149 - #include <boost/lexical_cast.hpp> 150 - #include <boost/log/trivial.hpp> 151 - #include <boost/nowide/cstdio.hpp> 152 - @@ -824,8 +823,12 @@ bool MediaPlayCtrl::start_stream_service(bool *need_install) 153 - file_url2.Replace("\\", "/"); 154 - file_url2 = wxURI(file_url2).BuildURI(); 155 - try { 156 - - std::string configs; 157 - - boost::filesystem::load_string_file(file_ff_cfg, configs); 158 - + boost::filesystem::ifstream configfile(file_ff_cfg); 159 - + std::string configs( 160 - + (std::istreambuf_iterator<char>(configfile)), 161 - + (std::istreambuf_iterator<char>()) 162 - + ); 163 - + configfile.close(); 164 - std::vector<std::string> configss; 165 - boost::algorithm::split(configss, configs, boost::algorithm::is_any_of("\r\n")); 166 - configss.erase(std::remove(configss.begin(), configss.end(), std::string()), configss.end()); 167 - diff --git a/src/slic3r/Utils/PresetUpdater.cpp b/src/slic3r/Utils/PresetUpdater.cpp 168 - index 268c2685a..eb92e052b 100644 169 - --- a/src/slic3r/Utils/PresetUpdater.cpp 170 - +++ b/src/slic3r/Utils/PresetUpdater.cpp 171 - @@ -9,7 +9,6 @@ 172 - #include <boost/format.hpp> 173 - #include <boost/algorithm/string.hpp> 174 - #include <boost/filesystem.hpp> 175 - -#include <boost/filesystem/string_file.hpp> 176 - #include <boost/filesystem/fstream.hpp> 177 - #include <boost/lexical_cast.hpp> 178 - #include <boost/log/trivial.hpp> 179 - @@ -1042,10 +1041,24 @@ void PresetUpdater::priv::sync_tooltip(std::string http_url, std::string languag 180 - std::string language_version = "00.00.00.00"; 181 - fs::path cache_root = fs::path(data_dir()) / "resources/tooltip"; 182 - try { 183 - - auto vf = cache_root / "common" / "version"; 184 - - if (fs::exists(vf)) fs::load_string_file(vf, common_version); 185 - + fs::path vf = cache_root / "common" / "version"; 186 - + if (fs::exists(vf)) { 187 - + boost::filesystem::ifstream versionfile(vf); 188 - + common_version.assign( 189 - + (std::istreambuf_iterator<char>(versionfile)), 190 - + (std::istreambuf_iterator<char>()) 191 - + ); 192 - + versionfile.close(); 193 - + } 194 - vf = cache_root / language / "version"; 195 - - if (fs::exists(vf)) fs::load_string_file(vf, language_version); 196 - + if (fs::exists(vf)) { 197 - + boost::filesystem::ifstream versionfile(vf); 198 - + language_version.assign( 199 - + (std::istreambuf_iterator<char>(versionfile)), 200 - + (std::istreambuf_iterator<char>()) 201 - + ); 202 - + versionfile.close(); 203 - + } 204 - } catch (...) {} 205 - std::map<std::string, Resource> resources 206 - { 207 - @@ -1183,13 +1196,23 @@ void PresetUpdater::priv::sync_printer_config(std::string http_url) 208 - 209 - try { 210 - if (fs::exists(config_folder / "version.txt")) { 211 - - fs::load_string_file(config_folder / "version.txt", curr_version); 212 - + boost::filesystem::ifstream filedata(config_folder / "version.txt"); 213 - + curr_version.assign( 214 - + (std::istreambuf_iterator<char>(filedata)), 215 - + (std::istreambuf_iterator<char>()) 216 - + ); 217 - + filedata.close(); 218 - boost::algorithm::trim(curr_version); 219 - } 220 - } catch (...) {} 221 - try { 222 - if (fs::exists(cache_folder / "version.txt")) { 223 - - fs::load_string_file(cache_folder / "version.txt", cached_version); 224 - + boost::filesystem::ifstream filedata(cache_folder / "version.txt"); 225 - + cached_version.assign( 226 - + (std::istreambuf_iterator<char>(filedata)), 227 - + (std::istreambuf_iterator<char>()) 228 - + ); 229 - + filedata.close(); 230 - boost::algorithm::trim(cached_version); 231 - } 232 - } catch (...) {} 233 - @@ -1229,7 +1252,12 @@ void PresetUpdater::priv::sync_printer_config(std::string http_url) 234 - bool result = false; 235 - try { 236 - if (fs::exists(cache_folder / "version.txt")) { 237 - - fs::load_string_file(cache_folder / "version.txt", cached_version); 238 - + boost::filesystem::ifstream filedata(cache_folder / "version.txt"); 239 - + cached_version.assign( 240 - + (std::istreambuf_iterator<char>(filedata)), 241 - + (std::istreambuf_iterator<char>()) 242 - + ); 243 - + filedata.close(); 244 - boost::algorithm::trim(cached_version); 245 - result = true; 246 - } 247 - @@ -1334,13 +1362,23 @@ Updates PresetUpdater::priv::get_printer_config_updates(bool update) const 248 - std::string resc_version; 249 - try { 250 - if (fs::exists(resc_folder / "version.txt")) { 251 - - fs::load_string_file(resc_folder / "version.txt", resc_version); 252 - + boost::filesystem::ifstream filedata(resc_folder / "version.txt"); 253 - + resc_version.assign( 254 - + (std::istreambuf_iterator<char>(filedata)), 255 - + (std::istreambuf_iterator<char>()) 256 - + ); 257 - + filedata.close(); 258 - boost::algorithm::trim(resc_version); 259 - } 260 - } catch (...) {} 261 - try { 262 - if (fs::exists(config_folder / "version.txt")) { 263 - - fs::load_string_file(config_folder / "version.txt", curr_version); 264 - + boost::filesystem::ifstream filedata(config_folder / "version.txt"); 265 - + curr_version.assign( 266 - + (std::istreambuf_iterator<char>(filedata)), 267 - + (std::istreambuf_iterator<char>()) 268 - + ); 269 - + filedata.close(); 270 - boost::algorithm::trim(curr_version); 271 - } 272 - } catch (...) {} 273 - -- 274 - 2.47.0 275 -
···
-84
pkgs/by-name/ba/bambu-studio/0002-Replace-deprecated-Boost-methods-options.patch
··· 1 - From f2135e69ac314f7aded3c3c1fc6650370c71ffc4 Mon Sep 17 00:00:00 2001 2 - From: "Queen Vinyl Da.i'gyu-Kazotetsu" <vinyldarkscratch@gmail.com> 3 - Date: Fri, 26 Apr 2024 10:03:43 -0700 4 - Subject: [PATCH 2/4] Replace deprecated Boost methods/options 5 - 6 - --- 7 - src/libslic3r/PrintBase.cpp | 2 +- 8 - src/libslic3r/utils.cpp | 2 +- 9 - src/slic3r/GUI/Auxiliary.cpp | 12 ++++++------ 10 - 3 files changed, 8 insertions(+), 8 deletions(-) 11 - 12 - diff --git a/src/libslic3r/PrintBase.cpp b/src/libslic3r/PrintBase.cpp 13 - index 00c1b01bd..6921edc58 100644 14 - --- a/src/libslic3r/PrintBase.cpp 15 - +++ b/src/libslic3r/PrintBase.cpp 16 - @@ -80,7 +80,7 @@ std::string PrintBase::output_filename(const std::string &format, const std::str 17 - cfg.opt_string("input_filename_base") + default_ext : 18 - this->placeholder_parser().process(format, 0, &cfg); 19 - if (filename.extension().empty()) 20 - - filename = boost::filesystem::change_extension(filename, default_ext); 21 - + filename.replace_extension(default_ext); 22 - return filename.string(); 23 - } catch (std::runtime_error &err) { 24 - throw Slic3r::PlaceholderParserError(L("Failed processing of the filename_format template.") + "\n" + err.what()); 25 - diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp 26 - index 226b01e7b..72157f4da 100644 27 - --- a/src/libslic3r/utils.cpp 28 - +++ b/src/libslic3r/utils.cpp 29 - @@ -830,7 +830,7 @@ CopyFileResult copy_file_inner(const std::string& from, const std::string& to, s 30 - // That may happen when copying on some exotic file system, for example Linux on Chrome. 31 - copy_file_linux(source, target, ec); 32 - #else // __linux__ 33 - - boost::filesystem::copy_file(source, target, boost::filesystem::copy_option::overwrite_if_exists, ec); 34 - + boost::filesystem::copy_file(source, target, boost::filesystem::copy_options::overwrite_existing, ec); 35 - #endif // __linux__ 36 - if (ec) { 37 - error_message = ec.message(); 38 - diff --git a/src/slic3r/GUI/Auxiliary.cpp b/src/slic3r/GUI/Auxiliary.cpp 39 - index 7ee2a4428..91cc01fb5 100644 40 - --- a/src/slic3r/GUI/Auxiliary.cpp 41 - +++ b/src/slic3r/GUI/Auxiliary.cpp 42 - @@ -346,7 +346,7 @@ void AuFile::on_input_enter(wxCommandEvent &evt) 43 - } 44 - 45 - auto existing = false; 46 - - auto dir = m_file_path.branch_path(); 47 - + auto dir = m_file_path.parent_path(); 48 - auto new_fullname = new_file_name + m_file_path.extension().string(); 49 - 50 - 51 - @@ -462,8 +462,8 @@ void AuFile::on_set_cover() 52 - wxGetApp().plater()->model().model_info->cover_file = path.string(); 53 - //wxGetApp().plater()->model().model_info->cover_file = m_file_name.ToStdString(); 54 - 55 - - auto full_path = m_file_path.branch_path(); 56 - - auto full_root_path = full_path.branch_path(); 57 - + auto full_path = m_file_path.parent_path(); 58 - + auto full_root_path = full_path.parent_path(); 59 - auto full_root_path_str = encode_path(full_root_path.string().c_str()); 60 - auto dir = wxString::Format("%s/.thumbnails", full_root_path_str); 61 - 62 - @@ -507,8 +507,8 @@ void AuFile::on_set_delete() 63 - auto is_fine = fs::remove(bfs_path); 64 - 65 - if (m_cover) { 66 - - auto full_path = m_file_path.branch_path(); 67 - - auto full_root_path = full_path.branch_path(); 68 - + auto full_path = m_file_path.parent_path(); 69 - + auto full_root_path = full_path.parent_path(); 70 - auto full_root_path_str = encode_path(full_root_path.string().c_str()); 71 - auto dir = wxString::Format("%s/.thumbnails", full_root_path_str); 72 - fs::path dir_path(dir.c_str()); 73 - @@ -949,7 +949,7 @@ void AuxiliaryPanel::on_import_file(wxCommandEvent &event) 74 - 75 - 76 - boost::system::error_code ec; 77 - - if (!fs::copy_file(src_bfs_path, fs::path(dir_path.ToStdWstring()), fs::copy_option::overwrite_if_exists, ec)) continue; 78 - + if (!fs::copy_file(src_bfs_path, fs::path(dir_path.ToStdWstring()), fs::copy_options::overwrite_existing, ec)) continue; 79 - Slic3r::put_other_changes(); 80 - 81 - // add in file list 82 - -- 83 - 2.47.0 84 -
···
-39
pkgs/by-name/ba/bambu-studio/0003-Fix-additional-Boost-upgrade-issues.patch
··· 1 - From 2e8c6d293d15345e7bfd37529557833fc010e064 Mon Sep 17 00:00:00 2001 2 - From: "Queen Vinyl Da.i'gyu-Kazotetsu" <vinyldarkscratch@gmail.com> 3 - Date: Mon, 29 Apr 2024 02:13:59 -0700 4 - Subject: [PATCH 3/4] Fix additional Boost upgrade issues 5 - 6 - --- 7 - src/slic3r/GUI/AuxiliaryDataViewModel.cpp | 2 +- 8 - src/slic3r/GUI/MediaPlayCtrl.cpp | 2 +- 9 - 2 files changed, 2 insertions(+), 2 deletions(-) 10 - 11 - diff --git a/src/slic3r/GUI/AuxiliaryDataViewModel.cpp b/src/slic3r/GUI/AuxiliaryDataViewModel.cpp 12 - index f68f73306..9bb8835bf 100644 13 - --- a/src/slic3r/GUI/AuxiliaryDataViewModel.cpp 14 - +++ b/src/slic3r/GUI/AuxiliaryDataViewModel.cpp 15 - @@ -336,7 +336,7 @@ wxDataViewItemArray AuxiliaryModel::ImportFile(AuxiliaryModelNode* sel, wxArrayS 16 - dir_path += "\\" + src_bfs_path.filename().generic_wstring(); 17 - 18 - boost::system::error_code ec; 19 - - if (!fs::copy_file(src_bfs_path, fs::path(dir_path.ToStdWstring()), fs::copy_option::overwrite_if_exists, ec)) 20 - + if (!fs::copy_file(src_bfs_path, fs::path(dir_path.ToStdWstring()), fs::copy_options::overwrite_existing, ec)) 21 - continue; 22 - 23 - // Update model data 24 - diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp 25 - index 45de6fe1a..762088431 100644 26 - --- a/src/slic3r/GUI/MediaPlayCtrl.cpp 27 - +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp 28 - @@ -840,7 +840,7 @@ bool MediaPlayCtrl::start_stream_service(bool *need_install) 29 - auto file_dll = tools_dir + dll; 30 - auto file_dll2 = plugins_dir + dll; 31 - if (!boost::filesystem::exists(file_dll) || boost::filesystem::last_write_time(file_dll) != boost::filesystem::last_write_time(file_dll2)) 32 - - boost::filesystem::copy_file(file_dll2, file_dll, boost::filesystem::copy_option::overwrite_if_exists); 33 - + boost::filesystem::copy_file(file_dll2, file_dll, boost::filesystem::copy_options::overwrite_existing); 34 - } 35 - boost::process::child process_source(file_source, file_url2.ToStdWstring(), boost::process::start_dir(tools_dir), 36 - boost::process::windows::create_no_window, 37 - -- 38 - 2.47.0 39 -
···
-33
pkgs/by-name/ba/bambu-studio/0004-Remove-deprecated-Boost-filesystem-header.patch
··· 1 - From 1ff7f81740f9df7889f21ee3f779d90246890e4f Mon Sep 17 00:00:00 2001 2 - From: Emily <hello@emily.moe> 3 - Date: Mon, 25 Nov 2024 17:44:31 +0000 4 - Subject: [PATCH 4/4] Remove deprecated Boost filesystem header 5 - 6 - --- 7 - src/slic3r/GUI/RemovableDriveManager.cpp | 3 +-- 8 - 1 file changed, 1 insertion(+), 2 deletions(-) 9 - 10 - diff --git a/src/slic3r/GUI/RemovableDriveManager.cpp b/src/slic3r/GUI/RemovableDriveManager.cpp 11 - index fcddcbd61..b4e895c78 100644 12 - --- a/src/slic3r/GUI/RemovableDriveManager.cpp 13 - +++ b/src/slic3r/GUI/RemovableDriveManager.cpp 14 - @@ -22,7 +22,6 @@ 15 - #include <pwd.h> 16 - #include <boost/filesystem.hpp> 17 - #include <boost/system/error_code.hpp> 18 - -#include <boost/filesystem/convenience.hpp> 19 - #include <boost/process.hpp> 20 - #endif 21 - 22 - @@ -202,7 +201,7 @@ namespace search_for_drives_internal 23 - stat(path.c_str(), &buf); 24 - uid_t uid = buf.st_uid; 25 - if (getuid() == uid) 26 - - out.emplace_back(DriveData{ boost::filesystem::basename(boost::filesystem::path(path)), path }); 27 - + out.emplace_back(DriveData{ boost::filesystem::path(path).stem().string(), path }); 28 - } 29 - } 30 - } 31 - -- 32 - 2.47.0 33 -
···
+12 -18
pkgs/by-name/ba/bambu-studio/package.nix
··· 7 ninja, 8 pkg-config, 9 wrapGAppsHook3, 10 - boost186, 11 cereal, 12 - cgal, 13 curl, 14 dbus, 15 eigen, ··· 35 pcre, 36 systemd, 37 tbb_2021, 38 - webkitgtk_4_0, 39 wxGTK31, 40 xorg, 41 withSystemd ? stdenv.hostPlatform.isLinux, ··· 56 in 57 stdenv.mkDerivation rec { 58 pname = "bambu-studio"; 59 - version = "01.10.02.76"; 60 61 src = fetchFromGitHub { 62 owner = "bambulab"; 63 repo = "BambuStudio"; 64 - rev = "v${version}"; 65 - hash = "sha256-LvAi3I5lnnumhOUagyej28uVy0Lgd3e19HNQXOUWSvQ="; 66 }; 67 68 nativeBuildInputs = [ ··· 74 75 buildInputs = [ 76 binutils 77 - boost186 78 cereal 79 - cgal 80 curl 81 dbus 82 eigen ··· 102 openvdb 103 pcre 104 tbb_2021 105 - webkitgtk_4_0 106 wxGTK' 107 xorg.libX11 108 - opencv.cxxdev 109 ] 110 ++ lib.optionals withSystemd [ systemd ] 111 ++ checkInputs; ··· 117 ./patches/dont-link-opencv-world-bambu.patch 118 # Don't link osmesa 119 ./patches/no-osmesa.patch 120 - # Fix the build with newer Boost versions. All but one commit is 121 - # from <https://github.com/bambulab/BambuStudio/pull/3968>. 122 - ./0001-Replace-deprecated-boost-filesystem-string_file.hpp-.patch 123 - ./0002-Replace-deprecated-Boost-methods-options.patch 124 - ./0003-Fix-additional-Boost-upgrade-issues.patch 125 - ./0004-Remove-deprecated-Boost-filesystem-header.patch 126 ]; 127 128 doCheck = true; ··· 142 # It seems to be a known issue for Eigen: 143 # http://eigen.tuxfamily.org/bz/show_bug.cgi?id=1221 144 "-Wno-ignored-attributes" 145 - "-I${opencv.out}/include/opencv4" 146 ]; 147 148 # prusa-slicer uses dlopen on `libudev.so` at runtime 149 - NIX_LDFLAGS = lib.optionalString withSystemd "-ludev"; 150 151 # TODO: macOS 152 prePatch = ''
··· 7 ninja, 8 pkg-config, 9 wrapGAppsHook3, 10 + boost183, 11 cereal, 12 + cgal_5, 13 curl, 14 dbus, 15 eigen, ··· 35 pcre, 36 systemd, 37 tbb_2021, 38 + webkitgtk_4_1, 39 wxGTK31, 40 xorg, 41 withSystemd ? stdenv.hostPlatform.isLinux, ··· 56 in 57 stdenv.mkDerivation rec { 58 pname = "bambu-studio"; 59 + version = "02.02.00.85"; 60 61 src = fetchFromGitHub { 62 owner = "bambulab"; 63 repo = "BambuStudio"; 64 + tag = "v${version}"; 65 + hash = "sha256-JzZELCiP3Mmp3TWELG7lw3YioHgnsKCVxYaj9FAZobc="; 66 }; 67 68 nativeBuildInputs = [ ··· 74 75 buildInputs = [ 76 binutils 77 + boost183 78 cereal 79 + cgal_5 80 curl 81 dbus 82 eigen ··· 102 openvdb 103 pcre 104 tbb_2021 105 + webkitgtk_4_1 106 wxGTK' 107 xorg.libX11 108 + opencv 109 ] 110 ++ lib.optionals withSystemd [ systemd ] 111 ++ checkInputs; ··· 117 ./patches/dont-link-opencv-world-bambu.patch 118 # Don't link osmesa 119 ./patches/no-osmesa.patch 120 ]; 121 122 doCheck = true; ··· 136 # It seems to be a known issue for Eigen: 137 # http://eigen.tuxfamily.org/bz/show_bug.cgi?id=1221 138 "-Wno-ignored-attributes" 139 + "-I${opencv}/include/opencv4" 140 ]; 141 142 # prusa-slicer uses dlopen on `libudev.so` at runtime 143 + NIX_LDFLAGS = lib.optionalString withSystemd "-ludev" + " -L${opencv}/lib -lopencv_imgcodecs"; 144 145 # TODO: macOS 146 prePatch = ''
+4 -4
pkgs/by-name/bl/bleep/package.nix
··· 18 ."${stdenvNoCC.system}" or (throw "unsupported system ${stdenvNoCC.hostPlatform.system}"); 19 hash = 20 { 21 - x86_64-linux = "sha256-hWALcrduSO92nmPyPcL1T/6u4y4g5n6Wc/IabfB1V9o="; 22 - x86_64-darwin = "sha256-PZQNhbTn0Oz1zqrgHfzX7BqUluQIHj7ocXDacgt+CLc="; 23 - aarch64-darwin = "sha256-n+dqtC8rOpYNOoq5nk4259p7m741tKy1LWdUzCqfKL4="; 24 } 25 ."${stdenvNoCC.system}" or (throw "unsupported system ${stdenvNoCC.hostPlatform.system}"); 26 in 27 stdenvNoCC.mkDerivation (finalAttrs: { 28 pname = "bleep"; 29 - version = "0.0.12"; 30 31 src = fetchzip { 32 url = "https://github.com/oyvindberg/bleep/releases/download/v${finalAttrs.version}/bleep-${platform}.tar.gz";
··· 18 ."${stdenvNoCC.system}" or (throw "unsupported system ${stdenvNoCC.hostPlatform.system}"); 19 hash = 20 { 21 + x86_64-linux = "sha256-SGV0fEuwmGwpqmD42a+x0fIK50RWSHEYDesH4obgRhg="; 22 + x86_64-darwin = "sha256-fOeYUchUE1Jj4xSrYjljEUpGrW8cvev7d/qywc81vFo="; 23 + aarch64-darwin = "sha256-qL0hjEdfkN62NDvhlzVgW4TYWv0IReo2Fo5eVhUaOrI="; 24 } 25 ."${stdenvNoCC.system}" or (throw "unsupported system ${stdenvNoCC.hostPlatform.system}"); 26 in 27 stdenvNoCC.mkDerivation (finalAttrs: { 28 pname = "bleep"; 29 + version = "0.0.13"; 30 31 src = fetchzip { 32 url = "https://github.com/oyvindberg/bleep/releases/download/v${finalAttrs.version}/bleep-${platform}.tar.gz";
+4 -3
pkgs/by-name/br/bruno/package.nix
··· 19 20 buildNpmPackage rec { 21 pname = "bruno"; 22 - version = "2.9.1"; 23 24 src = fetchFromGitHub { 25 owner = "usebruno"; 26 repo = "bruno"; 27 tag = "v${version}"; 28 - hash = "sha256-xJJHgpckyli7cXM761THtdNVHfmeVBCVCqywoISiI60="; 29 30 postFetch = '' 31 ${lib.getExe npm-lockfile-fix} $out/package-lock.json 32 ''; 33 }; 34 35 - npmDepsHash = "sha256-R8bqm2/TU425h7pRQQYrOmteu/UotMfHMz/pe2xkTfU="; 36 npmFlags = [ "--legacy-peer-deps" ]; 37 38 nativeBuildInputs = [ ··· 189 mattpolzin 190 redyf 191 water-sucks 192 ]; 193 platforms = lib.platforms.linux ++ lib.platforms.darwin; 194 };
··· 19 20 buildNpmPackage rec { 21 pname = "bruno"; 22 + version = "2.10.0"; 23 24 src = fetchFromGitHub { 25 owner = "usebruno"; 26 repo = "bruno"; 27 tag = "v${version}"; 28 + hash = "sha256-NHl9+Z8r1dALs/epNO+bYLuETPH8MiFBI5x2kdg2gKQ="; 29 30 postFetch = '' 31 ${lib.getExe npm-lockfile-fix} $out/package-lock.json 32 ''; 33 }; 34 35 + npmDepsHash = "sha256-VMcSsaUmUJ4WcuBPoYxfmVpfvQQXY57LFpPiYdfFp2M="; 36 npmFlags = [ "--legacy-peer-deps" ]; 37 38 nativeBuildInputs = [ ··· 189 mattpolzin 190 redyf 191 water-sucks 192 + starsep 193 ]; 194 platforms = lib.platforms.linux ++ lib.platforms.darwin; 195 };
-270
pkgs/by-name/cp/cp2k/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - mpiCheckPhaseHook, 6 - python3, 7 - gfortran, 8 - blas, 9 - lapack, 10 - fftw, 11 - libint, 12 - libvori, 13 - libxc, 14 - dftd4, 15 - mctc-lib, 16 - mstore, 17 - multicharge, 18 - mpi, 19 - gsl, 20 - scalapack, 21 - makeWrapper, 22 - libxsmm, 23 - spglib, 24 - which, 25 - pkg-config, 26 - plumed, 27 - zlib, 28 - hdf5-fortran, 29 - sirius, 30 - libvdwxc, 31 - spla, 32 - spfft, 33 - enableElpa ? false, 34 - elpa, 35 - cudaPackages, 36 - rocmPackages, 37 - config, 38 - gpuBackend ? ( 39 - if config.cudaSupport then 40 - "cuda" 41 - else if config.rocmSupport then 42 - "rocm" 43 - else 44 - "none" 45 - ), 46 - # Change to a value suitable for your target GPU. 47 - # For AMD values see https://github.com/cp2k/cp2k/blob/master/INSTALL.md#2v-rocmhip-support-for-amd-gpu 48 - # and for Nvidia see https://github.com/cp2k/cp2k/blob/master/INSTALL.md#2i-cuda-optional-improved-performance-on-gpu-systems 49 - gpuVersion ? (if gpuBackend == "cuda" then "A100" else "Mi100"), 50 - gpuArch ? (if gpuBackend == "cuda" then "sm_80" else "gfx908"), 51 - }: 52 - 53 - assert builtins.elem gpuBackend [ 54 - "none" 55 - "cuda" 56 - "rocm" 57 - ]; 58 - 59 - let 60 - cp2kVersion = "psmp"; 61 - arch = "Linux-x86-64-gfortran"; 62 - 63 - in 64 - stdenv.mkDerivation rec { 65 - pname = "cp2k"; 66 - version = "2025.1"; 67 - 68 - src = fetchFromGitHub { 69 - owner = "cp2k"; 70 - repo = "cp2k"; 71 - tag = "v${version}"; 72 - hash = "sha256-04AFiEuv+EYubZVoYErQDdr9zipKlF7Gqy8DrUaYUMk="; 73 - fetchSubmodules = true; 74 - }; 75 - 76 - patches = [ 77 - # Remove the build command line from the source. 78 - # This avoids dependencies to .dev inputs 79 - ./remove-compiler-options.patch 80 - ]; 81 - 82 - nativeBuildInputs = [ 83 - python3 84 - which 85 - makeWrapper 86 - pkg-config 87 - ] 88 - ++ lib.optional (gpuBackend == "cuda") cudaPackages.cuda_nvcc; 89 - 90 - buildInputs = [ 91 - gfortran 92 - fftw 93 - gsl 94 - libint 95 - libvori 96 - libxc 97 - dftd4 98 - mctc-lib 99 - mstore 100 - multicharge 101 - libxsmm 102 - mpi 103 - spglib 104 - scalapack 105 - blas 106 - lapack 107 - plumed 108 - zlib 109 - hdf5-fortran 110 - sirius 111 - spla 112 - spfft 113 - libvdwxc 114 - ] 115 - ++ lib.optional enableElpa elpa 116 - ++ lib.optionals (gpuBackend == "cuda") [ 117 - cudaPackages.cuda_cudart 118 - cudaPackages.libcublas 119 - cudaPackages.cuda_nvrtc 120 - ] 121 - ++ lib.optionals (gpuBackend == "rocm") [ 122 - rocmPackages.clr 123 - rocmPackages.rocm-core 124 - rocmPackages.hipblas 125 - rocmPackages.hipfft 126 - rocmPackages.rocblas 127 - ]; 128 - 129 - propagatedBuildInputs = [ (lib.getBin mpi) ]; 130 - propagatedUserEnvPkgs = [ mpi ]; 131 - 132 - makeFlags = [ 133 - "ARCH=${arch}" 134 - "VERSION=${cp2kVersion}" 135 - ]; 136 - 137 - doCheck = gpuBackend == "none"; 138 - 139 - enableParallelBuilding = true; 140 - 141 - postPatch = '' 142 - patchShebangs tools exts/dbcsr/tools/build_utils exts/dbcsr/.cp2k 143 - substituteInPlace exts/build_dbcsr/Makefile \ 144 - --replace '/usr/bin/env python3' '${python3}/bin/python' \ 145 - --replace 'SHELL = /bin/sh' 'SHELL = bash' 146 - ''; 147 - 148 - configurePhase = '' 149 - runHook preConfigure 150 - 151 - cat > arch/${arch}.${cp2kVersion} << EOF 152 - CC = mpicc 153 - CPP = 154 - FC = mpif90 155 - LD = mpif90 156 - AR = ar -r 157 - ${lib.strings.optionalString (gpuBackend == "cuda") '' 158 - OFFLOAD_CC = nvcc 159 - OFFLOAD_FLAGS = -O3 -g -w --std=c++11 -arch ${gpuArch} 160 - OFFLOAD_TARGET = cuda 161 - GPUVER = ${gpuVersion} 162 - CXX = mpicxx 163 - CXXFLAGS = -std=c++11 -fopenmp 164 - ''} 165 - ${lib.strings.optionalString (gpuBackend == "rocm") '' 166 - GPUVER = ${gpuVersion} 167 - OFFLOAD_CC = hipcc 168 - OFFLOAD_FLAGS = -fopenmp -m64 -pthread -fPIC -D__GRID_HIP -O2 --offload-arch=${gpuArch} --rocm-path=${rocmPackages.rocm-core} 169 - OFFLOAD_TARGET = hip 170 - CXX = mpicxx 171 - CXXFLAGS = -std=c++11 -fopenmp -D__HIP_PLATFORM_AMD__ 172 - ''} 173 - DFLAGS = -D__FFTW3 -D__LIBXC -D__LIBINT -D__parallel -D__SCALAPACK \ 174 - -D__MPI_VERSION=3 -D__F2008 -D__LIBXSMM -D__SPGLIB \ 175 - -D__MAX_CONTR=4 -D__LIBVORI ${lib.optionalString enableElpa "-D__ELPA"} \ 176 - -D__PLUMED2 -D__HDF5 -D__GSL -D__SIRIUS -D__LIBVDWXC -D__SPFFT -D__SPLA \ 177 - -D__DFTD4 \ 178 - ${ 179 - lib.strings.optionalString ( 180 - gpuBackend == "cuda" 181 - ) "-D__OFFLOAD_CUDA -D__ACC -D__DBCSR_ACC -D__NO_OFFLOAD_PW" 182 - } \ 183 - ${lib.strings.optionalString ( 184 - gpuBackend == "rocm" 185 - ) "-D__OFFLOAD_HIP -D__DBCSR_ACC -D__NO_OFFLOAD_PW"} 186 - CFLAGS = -fopenmp 187 - FCFLAGS = \$(DFLAGS) -O2 -ffree-form -ffree-line-length-none \ 188 - -ftree-vectorize -funroll-loops -msse2 \ 189 - -std=f2008 \ 190 - -fopenmp -ftree-vectorize -funroll-loops \ 191 - ${lib.optionalString enableElpa "$(pkg-config --variable=fcflags elpa)"} \ 192 - -I${lib.getDev libint}/include \ 193 - -I${lib.getDev sirius}/include/sirius \ 194 - -I${lib.getDev libxc}/include \ 195 - -I${lib.getDev dftd4}/include/dftd4 \ 196 - -I${lib.getDev libxsmm}/include \ 197 - -I${lib.getDev hdf5-fortran}/include \ 198 - -fallow-argument-mismatch 199 - LIBS = -lfftw3 -lfftw3_threads \ 200 - -lscalapack -lblas -llapack \ 201 - -lxcf03 -lxc -lxsmmf -lxsmm -lsymspg \ 202 - -lint2 -lstdc++ -lvori \ 203 - -lgomp -lpthread -lm \ 204 - -fopenmp ${lib.optionalString enableElpa "$(pkg-config --libs elpa)"} \ 205 - -lz -ldl ${lib.optionalString (mpi.pname == "openmpi") "$(mpicxx --showme:link)"} \ 206 - -lplumed -lhdf5_fortran -lhdf5_hl -lhdf5 -lgsl -lsirius -lspla -lspfft -lvdwxc \ 207 - -ldftd4 -lmstore -lmulticharge -lmctc-lib \ 208 - ${ 209 - lib.strings.optionalString (gpuBackend == "cuda") '' 210 - -L${cudaPackages.cuda_cudart}/lib/stubs/ \ 211 - -lcudart -lnvrtc -lcuda -lcublas 212 - '' 213 - } \ 214 - ${lib.strings.optionalString ( 215 - gpuBackend == "rocm" 216 - ) "-lamdhip64 -lhipfft -lhipblas -lrocblas"} 217 - LDFLAGS = \$(FCFLAGS) \$(LIBS) 218 - include ${plumed}/lib/plumed/src/lib/Plumed.inc 219 - EOF 220 - 221 - runHook postConfigure 222 - ''; 223 - 224 - nativeCheckInputs = [ 225 - mpiCheckPhaseHook 226 - ]; 227 - 228 - checkPhase = '' 229 - runHook preCheck 230 - 231 - export CP2K_DATA_DIR=data 232 - mpirun -np 2 exe/${arch}/libcp2k_unittest.${cp2kVersion} 233 - 234 - runHook postCheck 235 - ''; 236 - 237 - installPhase = '' 238 - runHook preInstall 239 - 240 - mkdir -p $out/bin $out/share/cp2k 241 - 242 - cp exe/${arch}/* $out/bin 243 - rm $out/bin/*_unittest.* 244 - 245 - for i in cp2k cp2k_shell graph; do 246 - wrapProgram $out/bin/$i.${cp2kVersion} \ 247 - --set-default CP2K_DATA_DIR $out/share/cp2k 248 - done 249 - 250 - wrapProgram $out/bin/cp2k.popt \ 251 - --set-default CP2K_DATA_DIR $out/share/cp2k \ 252 - --set OMP_NUM_THREADS 1 253 - 254 - cp -r data/* $out/share/cp2k 255 - 256 - runHook postInstall 257 - ''; 258 - 259 - passthru = { 260 - inherit mpi; 261 - }; 262 - 263 - meta = { 264 - description = "Quantum chemistry and solid state physics program"; 265 - homepage = "https://www.cp2k.org"; 266 - license = lib.licenses.gpl2Plus; 267 - maintainers = [ lib.maintainers.sheepforce ]; 268 - platforms = [ "x86_64-linux" ]; 269 - }; 270 - }
···
pkgs/by-name/cp/cp2k/remove-compiler-options.patch pkgs/applications/science/chemistry/cp2k/remove-compiler-options.patch
+13
pkgs/by-name/df/dftd4/cmake.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+25 -3
pkgs/by-name/df/dftd4/package.nix
··· 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, ··· 15 }: 16 17 assert !blas.isILP64 && !lapack.isILP64; 18 19 stdenv.mkDerivation rec { 20 pname = "dftd4"; ··· 30 patches = [ 31 # Make sure fortran headers are installed directly in /include 32 ./fortran-module-dir.patch 33 ]; 34 35 nativeBuildInputs = [ 36 gfortran 37 - meson 38 - ninja 39 pkg-config 40 python3 41 - ]; 42 43 buildInputs = [ 44 blas 45 lapack 46 mctc-lib 47 mstore 48 multicharge 49 ]; 50 51 outputs = [
··· 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 + fetchpatch, 6 gfortran, 7 + buildType ? "meson", 8 + cmake, 9 meson, 10 ninja, 11 pkg-config, ··· 18 }: 19 20 assert !blas.isILP64 && !lapack.isILP64; 21 + assert ( 22 + builtins.elem buildType [ 23 + "meson" 24 + "cmake" 25 + ] 26 + ); 27 28 stdenv.mkDerivation rec { 29 pname = "dftd4"; ··· 39 patches = [ 40 # Make sure fortran headers are installed directly in /include 41 ./fortran-module-dir.patch 42 + 43 + # Fix wrong generation of package config include paths 44 + ./cmake.patch 45 ]; 46 47 nativeBuildInputs = [ 48 gfortran 49 pkg-config 50 python3 51 + ] 52 + ++ lib.optionals (buildType == "meson") [ 53 + meson 54 + ninja 55 + ] 56 + ++ lib.optional (buildType == "cmake") cmake; 57 58 buildInputs = [ 59 blas 60 lapack 61 + ]; 62 + 63 + propagatedBuildInputs = [ 64 mctc-lib 65 mstore 66 multicharge 67 + ]; 68 + 69 + cmakeFlags = [ 70 + (lib.strings.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 71 ]; 72 73 outputs = [
+252
pkgs/by-name/di/discordchatexporter-desktop/deps.json
···
··· 1 + [ 2 + { 3 + "pname": "AdvancedStringBuilder", 4 + "version": "0.1.1", 5 + "hash": "sha256-pLixGUct2lQnSeckSHVnIEoGfsvz3gkA914QSHdaheE=" 6 + }, 7 + { 8 + "pname": "AngleSharp", 9 + "version": "1.2.0", 10 + "hash": "sha256-l8+Var9o773VL6Ybih3boaFf9sYjS7eqtLGd8DCIPsk=" 11 + }, 12 + { 13 + "pname": "AsyncImageLoader.Avalonia", 14 + "version": "3.3.0", 15 + "hash": "sha256-blhfKI+vX+ojT2cOvSHu3Kp2CuxvhW/l+as88Dia4bA=" 16 + }, 17 + { 18 + "pname": "AsyncKeyedLock", 19 + "version": "7.1.4", 20 + "hash": "sha256-Q1iyq3j/zLDcGdAwMzTrf/L/DN3SJAT+lpX3yBwJ2+o=" 21 + }, 22 + { 23 + "pname": "Avalonia", 24 + "version": "11.2.5", 25 + "hash": "sha256-DGTMzInnfvJUJWu2SXiRBercxxe1/paQkSlBHMahp4g=" 26 + }, 27 + { 28 + "pname": "Avalonia.Angle.Windows.Natives", 29 + "version": "2.1.22045.20230930", 30 + "hash": "sha256-RxPcWUT3b/+R3Tu5E5ftpr5ppCLZrhm+OTsi0SwW3pc=" 31 + }, 32 + { 33 + "pname": "Avalonia.BuildServices", 34 + "version": "0.0.31", 35 + "hash": "sha256-wgtodGf644CsUZEBIpFKcUjYHTbnu7mZmlr8uHIxeKA=" 36 + }, 37 + { 38 + "pname": "Avalonia.Controls.ColorPicker", 39 + "version": "11.2.5", 40 + "hash": "sha256-gWGIqXrac0fOnmGbovcFWv5Uj14hOyC+n0l45N7owMg=" 41 + }, 42 + { 43 + "pname": "Avalonia.Controls.DataGrid", 44 + "version": "11.2.5", 45 + "hash": "sha256-eGKc+UnsO5nNiUd7+n3CQW6vIWq2qpazYvYXrVTQY7s=" 46 + }, 47 + { 48 + "pname": "Avalonia.Desktop", 49 + "version": "11.2.5", 50 + "hash": "sha256-rDJ1NJM3tEqB7sRszj0AfplwkkvtE3Hvn7acrIsq+yw=" 51 + }, 52 + { 53 + "pname": "Avalonia.Diagnostics", 54 + "version": "11.2.5", 55 + "hash": "sha256-WsAMBmNfUKMB2II3AfM8A0klfJR/vgEtRUTGpgC6F3A=" 56 + }, 57 + { 58 + "pname": "Avalonia.FreeDesktop", 59 + "version": "11.2.5", 60 + "hash": "sha256-rLzsxUQS1LLLcLWkDR8SLLwLY53vUMqgiKoDWM6PjtM=" 61 + }, 62 + { 63 + "pname": "Avalonia.Native", 64 + "version": "11.2.5", 65 + "hash": "sha256-XQQgcfbRRHPzH432M1KzkSEtLQof40yCt+KIrQREBY0=" 66 + }, 67 + { 68 + "pname": "Avalonia.Remote.Protocol", 69 + "version": "11.2.5", 70 + "hash": "sha256-Mpml6U6Fl8FUvENGQxpxuw0+pOPvoWbZXV4V1bLUS9w=" 71 + }, 72 + { 73 + "pname": "Avalonia.Skia", 74 + "version": "11.2.5", 75 + "hash": "sha256-su1K1RmQ+syE6ufjrzpQR1yiUa6GEtY5QPlW0GOVKnU=" 76 + }, 77 + { 78 + "pname": "Avalonia.Themes.Simple", 79 + "version": "11.2.5", 80 + "hash": "sha256-EjQ2XA81SS91h8oGUwVxLYewm3Lp5Sa2Lmbj0c8y8BU=" 81 + }, 82 + { 83 + "pname": "Avalonia.Win32", 84 + "version": "11.2.5", 85 + "hash": "sha256-ljgJgXDxmHOUQ+p8z62mtaK4FTmYAI+c+6gL2lczD/8=" 86 + }, 87 + { 88 + "pname": "Avalonia.X11", 89 + "version": "11.2.5", 90 + "hash": "sha256-wHEHcEvOUyIBgBtQZOIs330KajSv8DSEsJP7w4M9i4E=" 91 + }, 92 + { 93 + "pname": "Cogwheel", 94 + "version": "2.1.0", 95 + "hash": "sha256-Gby3JWUOSgQQmTLZfiItGdjE95GoZ/Cfqfp1CsWyS5g=" 96 + }, 97 + { 98 + "pname": "CommunityToolkit.Mvvm", 99 + "version": "8.4.0", 100 + "hash": "sha256-a0D550q+ffreU9Z+kQPdzJYPNaj1UjgyPofLzUg02ZI=" 101 + }, 102 + { 103 + "pname": "CSharpier.MsBuild", 104 + "version": "0.30.6", 105 + "hash": "sha256-FhXf9ggWmWzGp6vz6vJP+ly4SOeyluP6Ic3MfCz1uUA=" 106 + }, 107 + { 108 + "pname": "Deorcify", 109 + "version": "1.1.0", 110 + "hash": "sha256-R3V/9z/dP0LyhMNh+SiHD5j+XGr/DxPo4qwaKB+Fbak=" 111 + }, 112 + { 113 + "pname": "DialogHost.Avalonia", 114 + "version": "0.9.2", 115 + "hash": "sha256-mDF1CM06p16xtxYg7wo8oJMF0QgMsPPAeQL2d22dhyc=" 116 + }, 117 + { 118 + "pname": "Gress", 119 + "version": "2.1.1", 120 + "hash": "sha256-k5EbB4xOWoTCurtIuIx7t3obpWQKQCb7gEZQD6kLf+s=" 121 + }, 122 + { 123 + "pname": "HarfBuzzSharp", 124 + "version": "7.3.0.3", 125 + "hash": "sha256-1vDIcG1aVwVABOfzV09eAAbZLFJqibip9LaIx5k+JxM=" 126 + }, 127 + { 128 + "pname": "HarfBuzzSharp.NativeAssets.Linux", 129 + "version": "7.3.0.3", 130 + "hash": "sha256-HW5r16wdlgDMbE/IfE5AQGDVFJ6TS6oipldfMztx+LM=" 131 + }, 132 + { 133 + "pname": "HarfBuzzSharp.NativeAssets.macOS", 134 + "version": "7.3.0.3", 135 + "hash": "sha256-UpAVfRIYY8Wh8xD4wFjrXHiJcvlBLuc2Xdm15RwQ76w=" 136 + }, 137 + { 138 + "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 139 + "version": "7.3.0.3", 140 + "hash": "sha256-jHrU70rOADAcsVfVfozU33t/5B5Tk0CurRTf4fVQe3I=" 141 + }, 142 + { 143 + "pname": "HarfBuzzSharp.NativeAssets.Win32", 144 + "version": "7.3.0.3", 145 + "hash": "sha256-v/PeEfleJcx9tsEQAo5+7Q0XPNgBqiSLNnB2nnAGp+I=" 146 + }, 147 + { 148 + "pname": "JsonExtensions", 149 + "version": "1.2.0", 150 + "hash": "sha256-vhuDDUSzDS5u9dfup0qk6j7Vc9i8Wyo7dBivpVaEpDw=" 151 + }, 152 + { 153 + "pname": "Material.Avalonia", 154 + "version": "3.9.2", 155 + "hash": "sha256-CZRVo/i3qUE5Qj7H2yCrtV8ThDOfjMWTyGHLm0/Bajw=" 156 + }, 157 + { 158 + "pname": "Material.Icons", 159 + "version": "2.2.0", 160 + "hash": "sha256-Gw2a7oXicf3yQKEgRdwBJ0DubMvf8iEkn6GtcLF9zJM=" 161 + }, 162 + { 163 + "pname": "Material.Icons.Avalonia", 164 + "version": "2.2.0", 165 + "hash": "sha256-RkYaULaVMjm2HJV23gGRHomv6jI0dE/lIk1AWwkWJKA=" 166 + }, 167 + { 168 + "pname": "MicroCom.Runtime", 169 + "version": "0.11.0", 170 + "hash": "sha256-VdwpP5fsclvNqJuppaOvwEwv2ofnAI5ZSz2V+UEdLF0=" 171 + }, 172 + { 173 + "pname": "Microsoft.Extensions.DependencyInjection", 174 + "version": "9.0.2", 175 + "hash": "sha256-jNQVj2Xo7wzVdNDu27bLbYCVUOF8yDVrFtC3cZ9OsXo=" 176 + }, 177 + { 178 + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 179 + "version": "9.0.2", 180 + "hash": "sha256-WoTLgw/OlXhgN54Szip0Zpne7i/YTXwZ1ZLCPcHV6QM=" 181 + }, 182 + { 183 + "pname": "Onova", 184 + "version": "2.6.12", 185 + "hash": "sha256-kYChxhtYxRhQ5gldSKg+jr6SoMqq6w2ezXZkBd4AtZk=" 186 + }, 187 + { 188 + "pname": "Polly", 189 + "version": "8.5.2", 190 + "hash": "sha256-IrN06ddOIJ0VYuVefe3LvfW0kX20ATRQkEBg9CBomRA=" 191 + }, 192 + { 193 + "pname": "Polly.Core", 194 + "version": "8.5.2", 195 + "hash": "sha256-PAwsWqrCieCf/7Y87fV7XMKoaY2abCQNtI+4oyyMifk=" 196 + }, 197 + { 198 + "pname": "RazorBlade", 199 + "version": "0.8.0", 200 + "hash": "sha256-ARj2CczrO3oxPgNcx2OAzfCppi1TE9ZDhPBnrCkKM6M=" 201 + }, 202 + { 203 + "pname": "SkiaSharp", 204 + "version": "2.88.9", 205 + "hash": "sha256-jZ/4nVXYJtrz9SBf6sYc/s0FxS7ReIYM4kMkrhZS+24=" 206 + }, 207 + { 208 + "pname": "SkiaSharp.NativeAssets.Linux", 209 + "version": "2.88.9", 210 + "hash": "sha256-mQ/oBaqRR71WfS66mJCvcc3uKW7CNEHoPN2JilDbw/A=" 211 + }, 212 + { 213 + "pname": "SkiaSharp.NativeAssets.macOS", 214 + "version": "2.88.9", 215 + "hash": "sha256-qvGuAmjXGjGKMzOPBvP9VWRVOICSGb7aNVejU0lLe/g=" 216 + }, 217 + { 218 + "pname": "SkiaSharp.NativeAssets.WebAssembly", 219 + "version": "2.88.9", 220 + "hash": "sha256-vgFL4Pdy3O1RKBp+T9N3W4nkH9yurZ0suo8u3gPmmhY=" 221 + }, 222 + { 223 + "pname": "SkiaSharp.NativeAssets.Win32", 224 + "version": "2.88.9", 225 + "hash": "sha256-kP5XM5GgwHGfNJfe4T2yO5NIZtiF71Ddp0pd1vG5V/4=" 226 + }, 227 + { 228 + "pname": "Superpower", 229 + "version": "3.0.0", 230 + "hash": "sha256-5MNmhBDYyOs+sTH364Qdn+Ck328BAQaVC1KMQ7yK2Vw=" 231 + }, 232 + { 233 + "pname": "System.IO.Pipelines", 234 + "version": "8.0.0", 235 + "hash": "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE=" 236 + }, 237 + { 238 + "pname": "Tmds.DBus.Protocol", 239 + "version": "0.20.0", 240 + "hash": "sha256-CRW/tkgsuBiBJfRwou12ozRQsWhHDooeP88E5wWpWJw=" 241 + }, 242 + { 243 + "pname": "WebMarkupMin.Core", 244 + "version": "2.17.0", 245 + "hash": "sha256-LuTotFyrjbUf9hrVqNPVs443lizPgNINbKoHT4cfjYs=" 246 + }, 247 + { 248 + "pname": "YoutubeExplode", 249 + "version": "6.5.3", 250 + "hash": "sha256-fxmplhCjy9AMBs8uwH08OBBfo450l6qiTNdmvVqLDB8=" 251 + } 252 + ]
-257
pkgs/by-name/di/discordchatexporter-desktop/deps.nix
··· 1 - # This file was automatically generated by passthru.fetch-deps. 2 - # Please dont edit it manually, your changes might get overwritten! 3 - # TODO: This format file is obsolete, consider migrating to JSON. 4 - 5 - { fetchNuGet }: 6 - [ 7 - (fetchNuGet { 8 - pname = "AdvancedStringBuilder"; 9 - version = "0.1.1"; 10 - hash = "sha256-pLixGUct2lQnSeckSHVnIEoGfsvz3gkA914QSHdaheE="; 11 - }) 12 - (fetchNuGet { 13 - pname = "AngleSharp"; 14 - version = "1.2.0"; 15 - hash = "sha256-l8+Var9o773VL6Ybih3boaFf9sYjS7eqtLGd8DCIPsk="; 16 - }) 17 - (fetchNuGet { 18 - pname = "AsyncImageLoader.Avalonia"; 19 - version = "3.3.0"; 20 - hash = "sha256-blhfKI+vX+ojT2cOvSHu3Kp2CuxvhW/l+as88Dia4bA="; 21 - }) 22 - (fetchNuGet { 23 - pname = "AsyncKeyedLock"; 24 - version = "7.1.4"; 25 - hash = "sha256-Q1iyq3j/zLDcGdAwMzTrf/L/DN3SJAT+lpX3yBwJ2+o="; 26 - }) 27 - (fetchNuGet { 28 - pname = "Avalonia"; 29 - version = "11.2.5"; 30 - hash = "sha256-DGTMzInnfvJUJWu2SXiRBercxxe1/paQkSlBHMahp4g="; 31 - }) 32 - (fetchNuGet { 33 - pname = "Avalonia.Angle.Windows.Natives"; 34 - version = "2.1.22045.20230930"; 35 - hash = "sha256-RxPcWUT3b/+R3Tu5E5ftpr5ppCLZrhm+OTsi0SwW3pc="; 36 - }) 37 - (fetchNuGet { 38 - pname = "Avalonia.BuildServices"; 39 - version = "0.0.31"; 40 - hash = "sha256-wgtodGf644CsUZEBIpFKcUjYHTbnu7mZmlr8uHIxeKA="; 41 - }) 42 - (fetchNuGet { 43 - pname = "Avalonia.Controls.ColorPicker"; 44 - version = "11.2.5"; 45 - hash = "sha256-gWGIqXrac0fOnmGbovcFWv5Uj14hOyC+n0l45N7owMg="; 46 - }) 47 - (fetchNuGet { 48 - pname = "Avalonia.Controls.DataGrid"; 49 - version = "11.2.5"; 50 - hash = "sha256-eGKc+UnsO5nNiUd7+n3CQW6vIWq2qpazYvYXrVTQY7s="; 51 - }) 52 - (fetchNuGet { 53 - pname = "Avalonia.Desktop"; 54 - version = "11.2.5"; 55 - hash = "sha256-rDJ1NJM3tEqB7sRszj0AfplwkkvtE3Hvn7acrIsq+yw="; 56 - }) 57 - (fetchNuGet { 58 - pname = "Avalonia.Diagnostics"; 59 - version = "11.2.5"; 60 - hash = "sha256-WsAMBmNfUKMB2II3AfM8A0klfJR/vgEtRUTGpgC6F3A="; 61 - }) 62 - (fetchNuGet { 63 - pname = "Avalonia.FreeDesktop"; 64 - version = "11.2.5"; 65 - hash = "sha256-rLzsxUQS1LLLcLWkDR8SLLwLY53vUMqgiKoDWM6PjtM="; 66 - }) 67 - (fetchNuGet { 68 - pname = "Avalonia.Native"; 69 - version = "11.2.5"; 70 - hash = "sha256-XQQgcfbRRHPzH432M1KzkSEtLQof40yCt+KIrQREBY0="; 71 - }) 72 - (fetchNuGet { 73 - pname = "Avalonia.Remote.Protocol"; 74 - version = "11.2.5"; 75 - hash = "sha256-Mpml6U6Fl8FUvENGQxpxuw0+pOPvoWbZXV4V1bLUS9w="; 76 - }) 77 - (fetchNuGet { 78 - pname = "Avalonia.Skia"; 79 - version = "11.2.5"; 80 - hash = "sha256-su1K1RmQ+syE6ufjrzpQR1yiUa6GEtY5QPlW0GOVKnU="; 81 - }) 82 - (fetchNuGet { 83 - pname = "Avalonia.Themes.Simple"; 84 - version = "11.2.5"; 85 - hash = "sha256-EjQ2XA81SS91h8oGUwVxLYewm3Lp5Sa2Lmbj0c8y8BU="; 86 - }) 87 - (fetchNuGet { 88 - pname = "Avalonia.Win32"; 89 - version = "11.2.5"; 90 - hash = "sha256-ljgJgXDxmHOUQ+p8z62mtaK4FTmYAI+c+6gL2lczD/8="; 91 - }) 92 - (fetchNuGet { 93 - pname = "Avalonia.X11"; 94 - version = "11.2.5"; 95 - hash = "sha256-wHEHcEvOUyIBgBtQZOIs330KajSv8DSEsJP7w4M9i4E="; 96 - }) 97 - (fetchNuGet { 98 - pname = "Cogwheel"; 99 - version = "2.1.0"; 100 - hash = "sha256-Gby3JWUOSgQQmTLZfiItGdjE95GoZ/Cfqfp1CsWyS5g="; 101 - }) 102 - (fetchNuGet { 103 - pname = "CommunityToolkit.Mvvm"; 104 - version = "8.4.0"; 105 - hash = "sha256-a0D550q+ffreU9Z+kQPdzJYPNaj1UjgyPofLzUg02ZI="; 106 - }) 107 - (fetchNuGet { 108 - pname = "CSharpier.MsBuild"; 109 - version = "0.30.6"; 110 - hash = "sha256-FhXf9ggWmWzGp6vz6vJP+ly4SOeyluP6Ic3MfCz1uUA="; 111 - }) 112 - (fetchNuGet { 113 - pname = "Deorcify"; 114 - version = "1.1.0"; 115 - hash = "sha256-R3V/9z/dP0LyhMNh+SiHD5j+XGr/DxPo4qwaKB+Fbak="; 116 - }) 117 - (fetchNuGet { 118 - pname = "DialogHost.Avalonia"; 119 - version = "0.9.2"; 120 - hash = "sha256-mDF1CM06p16xtxYg7wo8oJMF0QgMsPPAeQL2d22dhyc="; 121 - }) 122 - (fetchNuGet { 123 - pname = "Gress"; 124 - version = "2.1.1"; 125 - hash = "sha256-k5EbB4xOWoTCurtIuIx7t3obpWQKQCb7gEZQD6kLf+s="; 126 - }) 127 - (fetchNuGet { 128 - pname = "HarfBuzzSharp"; 129 - version = "7.3.0.3"; 130 - hash = "sha256-1vDIcG1aVwVABOfzV09eAAbZLFJqibip9LaIx5k+JxM="; 131 - }) 132 - (fetchNuGet { 133 - pname = "HarfBuzzSharp.NativeAssets.Linux"; 134 - version = "7.3.0.3"; 135 - hash = "sha256-HW5r16wdlgDMbE/IfE5AQGDVFJ6TS6oipldfMztx+LM="; 136 - }) 137 - (fetchNuGet { 138 - pname = "HarfBuzzSharp.NativeAssets.macOS"; 139 - version = "7.3.0.3"; 140 - hash = "sha256-UpAVfRIYY8Wh8xD4wFjrXHiJcvlBLuc2Xdm15RwQ76w="; 141 - }) 142 - (fetchNuGet { 143 - pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; 144 - version = "7.3.0.3"; 145 - hash = "sha256-jHrU70rOADAcsVfVfozU33t/5B5Tk0CurRTf4fVQe3I="; 146 - }) 147 - (fetchNuGet { 148 - pname = "HarfBuzzSharp.NativeAssets.Win32"; 149 - version = "7.3.0.3"; 150 - hash = "sha256-v/PeEfleJcx9tsEQAo5+7Q0XPNgBqiSLNnB2nnAGp+I="; 151 - }) 152 - (fetchNuGet { 153 - pname = "JsonExtensions"; 154 - version = "1.2.0"; 155 - hash = "sha256-vhuDDUSzDS5u9dfup0qk6j7Vc9i8Wyo7dBivpVaEpDw="; 156 - }) 157 - (fetchNuGet { 158 - pname = "Material.Avalonia"; 159 - version = "3.9.2"; 160 - hash = "sha256-CZRVo/i3qUE5Qj7H2yCrtV8ThDOfjMWTyGHLm0/Bajw="; 161 - }) 162 - (fetchNuGet { 163 - pname = "Material.Icons"; 164 - version = "2.2.0"; 165 - hash = "sha256-Gw2a7oXicf3yQKEgRdwBJ0DubMvf8iEkn6GtcLF9zJM="; 166 - }) 167 - (fetchNuGet { 168 - pname = "Material.Icons.Avalonia"; 169 - version = "2.2.0"; 170 - hash = "sha256-RkYaULaVMjm2HJV23gGRHomv6jI0dE/lIk1AWwkWJKA="; 171 - }) 172 - (fetchNuGet { 173 - pname = "MicroCom.Runtime"; 174 - version = "0.11.0"; 175 - hash = "sha256-VdwpP5fsclvNqJuppaOvwEwv2ofnAI5ZSz2V+UEdLF0="; 176 - }) 177 - (fetchNuGet { 178 - pname = "Microsoft.Extensions.DependencyInjection"; 179 - version = "9.0.2"; 180 - hash = "sha256-jNQVj2Xo7wzVdNDu27bLbYCVUOF8yDVrFtC3cZ9OsXo="; 181 - }) 182 - (fetchNuGet { 183 - pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; 184 - version = "9.0.2"; 185 - hash = "sha256-WoTLgw/OlXhgN54Szip0Zpne7i/YTXwZ1ZLCPcHV6QM="; 186 - }) 187 - (fetchNuGet { 188 - pname = "Onova"; 189 - version = "2.6.12"; 190 - hash = "sha256-kYChxhtYxRhQ5gldSKg+jr6SoMqq6w2ezXZkBd4AtZk="; 191 - }) 192 - (fetchNuGet { 193 - pname = "Polly"; 194 - version = "8.5.2"; 195 - hash = "sha256-IrN06ddOIJ0VYuVefe3LvfW0kX20ATRQkEBg9CBomRA="; 196 - }) 197 - (fetchNuGet { 198 - pname = "Polly.Core"; 199 - version = "8.5.2"; 200 - hash = "sha256-PAwsWqrCieCf/7Y87fV7XMKoaY2abCQNtI+4oyyMifk="; 201 - }) 202 - (fetchNuGet { 203 - pname = "RazorBlade"; 204 - version = "0.8.0"; 205 - hash = "sha256-ARj2CczrO3oxPgNcx2OAzfCppi1TE9ZDhPBnrCkKM6M="; 206 - }) 207 - (fetchNuGet { 208 - pname = "SkiaSharp"; 209 - version = "2.88.9"; 210 - hash = "sha256-jZ/4nVXYJtrz9SBf6sYc/s0FxS7ReIYM4kMkrhZS+24="; 211 - }) 212 - (fetchNuGet { 213 - pname = "SkiaSharp.NativeAssets.Linux"; 214 - version = "2.88.9"; 215 - hash = "sha256-mQ/oBaqRR71WfS66mJCvcc3uKW7CNEHoPN2JilDbw/A="; 216 - }) 217 - (fetchNuGet { 218 - pname = "SkiaSharp.NativeAssets.macOS"; 219 - version = "2.88.9"; 220 - hash = "sha256-qvGuAmjXGjGKMzOPBvP9VWRVOICSGb7aNVejU0lLe/g="; 221 - }) 222 - (fetchNuGet { 223 - pname = "SkiaSharp.NativeAssets.WebAssembly"; 224 - version = "2.88.9"; 225 - hash = "sha256-vgFL4Pdy3O1RKBp+T9N3W4nkH9yurZ0suo8u3gPmmhY="; 226 - }) 227 - (fetchNuGet { 228 - pname = "SkiaSharp.NativeAssets.Win32"; 229 - version = "2.88.9"; 230 - hash = "sha256-kP5XM5GgwHGfNJfe4T2yO5NIZtiF71Ddp0pd1vG5V/4="; 231 - }) 232 - (fetchNuGet { 233 - pname = "Superpower"; 234 - version = "3.0.0"; 235 - hash = "sha256-5MNmhBDYyOs+sTH364Qdn+Ck328BAQaVC1KMQ7yK2Vw="; 236 - }) 237 - (fetchNuGet { 238 - pname = "System.IO.Pipelines"; 239 - version = "8.0.0"; 240 - hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="; 241 - }) 242 - (fetchNuGet { 243 - pname = "Tmds.DBus.Protocol"; 244 - version = "0.20.0"; 245 - hash = "sha256-CRW/tkgsuBiBJfRwou12ozRQsWhHDooeP88E5wWpWJw="; 246 - }) 247 - (fetchNuGet { 248 - pname = "WebMarkupMin.Core"; 249 - version = "2.17.0"; 250 - hash = "sha256-LuTotFyrjbUf9hrVqNPVs443lizPgNINbKoHT4cfjYs="; 251 - }) 252 - (fetchNuGet { 253 - pname = "YoutubeExplode"; 254 - version = "6.5.3"; 255 - hash = "sha256-fxmplhCjy9AMBs8uwH08OBBfo450l6qiTNdmvVqLDB8="; 256 - }) 257 - ]
···
+1 -1
pkgs/by-name/di/discordchatexporter-desktop/package.nix
··· 21 env.XDG_CONFIG_HOME = "$HOME/.config"; 22 23 projectFile = "DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj"; 24 - nugetDeps = ./deps.nix; 25 dotnet-sdk = dotnetCorePackages.sdk_9_0; 26 dotnet-runtime = dotnetCorePackages.runtime_9_0; 27
··· 21 env.XDG_CONFIG_HOME = "$HOME/.config"; 22 23 projectFile = "DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj"; 24 + nugetDeps = ./deps.json; 25 dotnet-sdk = dotnetCorePackages.sdk_9_0; 26 dotnet-runtime = dotnetCorePackages.runtime_9_0; 27
+2 -2
pkgs/by-name/dr/drm_info/package.nix
··· 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "drm_info"; 17 - version = "2.7.0"; 18 19 src = fetchFromGitLab { 20 domain = "gitlab.freedesktop.org"; 21 owner = "emersion"; 22 repo = "drm_info"; 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-pgYhZtmyhuhxBiiTRdrEp/YsuwrD6KK/ahfO2L3mfM8="; 25 }; 26 27 strictDeps = true;
··· 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "drm_info"; 17 + version = "2.8.0"; 18 19 src = fetchFromGitLab { 20 domain = "gitlab.freedesktop.org"; 21 owner = "emersion"; 22 repo = "drm_info"; 23 rev = "v${finalAttrs.version}"; 24 + hash = "sha256-LtZ7JJmVNWMjJL2F6k+tcBpJ2v2fd+HNWyHAOvIi7Ko="; 25 }; 26 27 strictDeps = true;
+3 -3
pkgs/by-name/ep/epson-escpr2/package.nix
··· 8 9 stdenv.mkDerivation { 10 pname = "epson-inkjet-printer-escpr2"; 11 - version = "1.2.34"; 12 13 src = fetchurl { 14 # To find the most recent version go to 15 # https://support.epson.net/linux/Printer/LSB_distribution_pages/en/escpr2.php 16 # and retrieve the download link for source package for arm CPU for the tar.gz (the x86 link targets to rpm source files) 17 - url = "https://download3.ebz.epson.net/dsc/f/03/00/17/17/88/53f956e8d0a0dfc9cb7d0c35907183deb028a8b7/epson-inkjet-printer-escpr2-1.2.34-1.tar.gz"; 18 - hash = "sha256-7EpK/EI9MHTX2z+JtMB2Urt/e893cwNX5DAGSbjDyj4="; 19 }; 20 21 buildInputs = [ cups ];
··· 8 9 stdenv.mkDerivation { 10 pname = "epson-inkjet-printer-escpr2"; 11 + version = "1.2.35"; 12 13 src = fetchurl { 14 # To find the most recent version go to 15 # https://support.epson.net/linux/Printer/LSB_distribution_pages/en/escpr2.php 16 # and retrieve the download link for source package for arm CPU for the tar.gz (the x86 link targets to rpm source files) 17 + url = "https://download3.ebz.epson.net/dsc/f/03/00/17/28/09/4e8dc40219d4b52e414b608de92552af4fd46eca/epson-inkjet-printer-escpr2-1.2.35-1.tar.gz"; 18 + hash = "sha256-aYEuEION/C32/SnngreX/nqK/6Yzkuxf0k0HpferTYM="; 19 }; 20 21 buildInputs = [ cups ];
+2 -2
pkgs/by-name/gh/gh-dash/package.nix
··· 8 9 buildGoModule rec { 10 pname = "gh-dash"; 11 - version = "4.16.1"; 12 13 src = fetchFromGitHub { 14 owner = "dlvhdr"; 15 repo = "gh-dash"; 16 rev = "v${version}"; 17 - hash = "sha256-yPD4/qCXfDDf5tBEc2HvNFQTwa8NNLBV23KIU6XfLco="; 18 }; 19 20 vendorHash = "sha256-AeDGtEh+8sAczm0hBebvMdK/vTDzQsSXcB0xIYcQd8o=";
··· 8 9 buildGoModule rec { 10 pname = "gh-dash"; 11 + version = "4.16.2"; 12 13 src = fetchFromGitHub { 14 owner = "dlvhdr"; 15 repo = "gh-dash"; 16 rev = "v${version}"; 17 + hash = "sha256-LMKY7UpJtCrlMaui+fllc6mwVYQyVkuIM8bb6fop1Bc="; 18 }; 19 20 vendorHash = "sha256-AeDGtEh+8sAczm0hBebvMdK/vTDzQsSXcB0xIYcQd8o=";
+48
pkgs/by-name/gr/greenx/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + gfortran, 6 + cmake, 7 + pkg-config, 8 + blas, 9 + lapack, 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "greenx"; 14 + version = "2.2"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "nomad-coe"; 18 + repo = "greenx"; 19 + rev = "v${version}"; 20 + hash = "sha256-otIs2Y79KoEL4ut8YQe7Y27LpmpId8h/X8B6GIg8l+E="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + gfortran 25 + pkg-config 26 + cmake 27 + ]; 28 + 29 + buildInputs = [ 30 + blas 31 + lapack 32 + ]; 33 + 34 + # Uses a hacky python setup run by cmake, which is hard to get running 35 + doCheck = false; 36 + 37 + preCheck = '' 38 + export OMP_NUM_THREADS=2 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "Library for Green’s function based electronic structure theory calculations"; 43 + license = [ licenses.asl20 ]; 44 + homepage = "https://github.com/nomad-coe/greenX"; 45 + platforms = platforms.linux; 46 + maintainers = [ maintainers.sheepforce ]; 47 + }; 48 + }
+3 -3
pkgs/by-name/ha/harper/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "harper"; 10 - version = "0.59.0"; 11 12 src = fetchFromGitHub { 13 owner = "Automattic"; 14 repo = "harper"; 15 rev = "v${version}"; 16 - hash = "sha256-SUrTdVbxMQ/oPTinYyQD60el6a6Pt3ZDVlFdA+plnnM="; 17 }; 18 19 buildAndTestSubdir = "harper-ls"; 20 21 - cargoHash = "sha256-tlJ5D1M15QEFmyZ/+FJAVHxKUg9ajfiQxAi+YRz3yk4="; 22 23 passthru.updateScript = nix-update-script { }; 24
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "harper"; 10 + version = "0.60.0"; 11 12 src = fetchFromGitHub { 13 owner = "Automattic"; 14 repo = "harper"; 15 rev = "v${version}"; 16 + hash = "sha256-79cJq2/0s08e12vN29AST2hQ2IrCmIWWCDVxzg0cFs0="; 17 }; 18 19 buildAndTestSubdir = "harper-ls"; 20 21 + cargoHash = "sha256-f5i7+Rfsx64UKp91DZEEjcoTDdU6fJEJdUKBph/3zEE="; 22 23 passthru.updateScript = nix-update-script { }; 24
+13
pkgs/by-name/jo/jonquil/cmake.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index b2d3c73..00eb732 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=/@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+71
pkgs/by-name/jo/jonquil/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + gfortran, 6 + buildType ? "meson", 7 + meson, 8 + ninja, 9 + cmake, 10 + pkg-config, 11 + test-drive, 12 + toml-f, 13 + }: 14 + 15 + assert ( 16 + builtins.elem buildType [ 17 + "meson" 18 + "cmake" 19 + ] 20 + ); 21 + 22 + stdenv.mkDerivation rec { 23 + pname = "jonquil"; 24 + version = "0.3.0"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "toml-f"; 28 + repo = pname; 29 + rev = "v${version}"; 30 + hash = "sha256-2JCTHA0nyA7xE0IA+LNrEAulHU2eIbNRvFGQ7YSQMRE="; 31 + }; 32 + 33 + patches = [ 34 + # Fix wrong generation of package config include paths 35 + ./cmake.patch 36 + ]; 37 + 38 + nativeBuildInputs = [ 39 + gfortran 40 + pkg-config 41 + ] 42 + ++ lib.optionals (buildType == "meson") [ 43 + meson 44 + ninja 45 + ] 46 + ++ lib.optional (buildType == "cmake") cmake; 47 + 48 + buildInputs = [ 49 + test-drive 50 + ]; 51 + 52 + propagatedBuildInputs = [ 53 + toml-f 54 + ]; 55 + 56 + outputs = [ 57 + "out" 58 + "dev" 59 + ]; 60 + 61 + meta = with lib; { 62 + description = "JSON parser on top of TOML implementation"; 63 + license = with licenses; [ 64 + asl20 65 + mit 66 + ]; 67 + homepage = "https://github.com/toml-f/jonquil"; 68 + platforms = platforms.linux; 69 + maintainers = [ maintainers.sheepforce ]; 70 + }; 71 + }
+2 -2
pkgs/by-name/la/labelle/package.nix
··· 8 }: 9 python3Packages.buildPythonApplication rec { 10 pname = "labelle"; 11 - version = "1.4.0"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "labelle-org"; 16 repo = "labelle"; 17 tag = "v${version}"; 18 - hash = "sha256-y26eJKR2QZv/qKORZzag/44b1RryXMwpyMuRgac2puE="; 19 }; 20 21 postPatch = ''
··· 8 }: 9 python3Packages.buildPythonApplication rec { 10 pname = "labelle"; 11 + version = "1.4.1"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "labelle-org"; 16 repo = "labelle"; 17 tag = "v${version}"; 18 + hash = "sha256-WrY8kDOZ4I1GPCpXvN4bapbJsIIsYzq0LT7jNaQyzXw="; 19 }; 20 21 postPatch = ''
+10 -2
pkgs/by-name/li/libxc/package.nix
··· 5 cmake, 6 gfortran, 7 perl, 8 }: 9 10 stdenv.mkDerivation rec { 11 pname = "libxc"; 12 - version = "6.2.2"; 13 14 src = fetchFromGitLab { 15 owner = "libxc"; 16 repo = "libxc"; 17 rev = version; 18 - hash = "sha256-JYhuyW95I7Q0edLIe7H//+ej5vh6MdAGxXjmNxDMuhQ="; 19 }; 20 21 # Timeout increase has already been included upstream in master.
··· 5 cmake, 6 gfortran, 7 perl, 8 + version ? "6.2.2", 9 }: 10 11 + let 12 + versionHashes = { 13 + "6.2.2" = "sha256-JYhuyW95I7Q0edLIe7H//+ej5vh6MdAGxXjmNxDMuhQ="; 14 + "7.0.0" = "sha256-mGyGtKDurOrSS0AYrtwhF62pJGPBLbPPNBgFV7fyyug="; 15 + }; 16 + 17 + in 18 stdenv.mkDerivation rec { 19 pname = "libxc"; 20 + inherit version; 21 22 src = fetchFromGitLab { 23 owner = "libxc"; 24 repo = "libxc"; 25 rev = version; 26 + hash = versionHashes."${version}"; 27 }; 28 29 # Timeout increase has already been included upstream in master.
+4 -3
pkgs/by-name/lt/ltris/package.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "ltris"; 14 - version = "2.0.3"; 15 16 src = fetchurl { 17 url = "mirror://sourceforge/lgames/ltris2-${finalAttrs.version}.tar.gz"; 18 - hash = "sha256-+w8WTASYj/AWcBg9W3dmZ0cyCmlZNhDZ0l/WwhRfJRk="; 19 }; 20 21 buildInputs = [ ··· 28 hardeningDisable = [ "format" ]; 29 30 passthru.updateScript = directoryListingUpdater { 31 - inherit (finalAttrs) pname version; 32 url = "https://lgames.sourceforge.io/LTris/"; 33 extraRegex = "(?!.*-win(32|64)).*"; 34 };
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "ltris"; 14 + version = "2.0.4"; 15 16 src = fetchurl { 17 url = "mirror://sourceforge/lgames/ltris2-${finalAttrs.version}.tar.gz"; 18 + hash = "sha256-SCFQSV+dh7sTnVrxq+xwMDg8N/2z51pF6brWfq15jto="; 19 }; 20 21 buildInputs = [ ··· 28 hardeningDisable = [ "format" ]; 29 30 passthru.updateScript = directoryListingUpdater { 31 + pname = "ltris2"; 32 + inherit (finalAttrs) version; 33 url = "https://lgames.sourceforge.io/LTris/"; 34 extraRegex = "(?!.*-win(32|64)).*"; 35 };
+29
pkgs/by-name/mc/mctc-lib/cmake.patch
···
··· 1 + diff --git a/config/template.cmake b/config/template.cmake 2 + index 2b3abcbb..59fcd728 100644 3 + --- a/config/template.cmake 4 + +++ b/config/template.cmake 5 + @@ -8,9 +8,7 @@ if(NOT TARGET "@PROJECT_NAME@::@PROJECT_NAME@") 6 + 7 + include(CMakeFindDependencyMacro) 8 + 9 + - if(NOT TARGET "OpenMP::OpenMP_Fortran" AND "@PROJECT_NAME@_WITH_OpenMP") 10 + - find_dependency("OpenMP") 11 + - endif() 12 + + find_dependency("OpenMP") 13 + 14 + if(NOT TARGET "toml-f::toml-f" AND "@PROJECT_NAME@_WITH_JSON") 15 + find_dependency("toml-f") 16 + diff --git a/config/template.pc b/config/template.pc 17 + index 84c3498c..2da50191 100644 18 + --- a/config/template.pc 19 + +++ b/config/template.pc 20 + @@ -1,6 +1,6 @@ 21 + -prefix=@CMAKE_INSTALL_PREFIX@ 22 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 23 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 24 + +prefix=@CMAKE_INSTALL_PREFIX@ 25 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 26 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 27 + 28 + Name: @PROJECT_NAME@ 29 + Description: @PROJECT_DESCRIPTION@
+37
pkgs/by-name/mc/mctc-lib/meson.patch
···
··· 1 + diff --git a/config/meson.build b/config/meson.build 2 + index f54857ee..aaafdb03 100644 3 + --- a/config/meson.build 4 + +++ b/config/meson.build 5 + @@ -56,9 +56,12 @@ jonquil_dep = dependency( 6 + 'jonquil', 7 + required: get_option('json'), 8 + fallback: ['jonquil','jonquil_dep'], 9 + - default_options: [ 10 + - 'default_library=static', 11 + - ], 12 + - static: get_option('default_library') != 'dynamic', 13 + ) 14 + lib_deps += jonquil_dep 15 + + 16 + +tomlf_dep = dependency( 17 + + 'toml-f', 18 + + required: get_option('json'), 19 + + fallback: ['toml-f','toml-f_dep'], 20 + +) 21 + +lib_deps += tomlf_dep 22 + diff --git a/meson.build b/meson.build 23 + index 16797c47..6e5290d9 100644 24 + --- a/meson.build 25 + +++ b/meson.build 26 + @@ -25,11 +25,6 @@ project( 27 + ) 28 + install = not (meson.is_subproject() and get_option('default_library') == 'static') 29 + 30 + -# Check for specific unsupported meson versions 31 + -if meson.version().version_compare('==1.8.0') 32 + - error('Meson version 1.8.0 has a known issue — please use any other version ≥ 0.55.0') 33 + -endif 34 + - 35 + # General configuration information 36 + lib_deps = [] 37 + subdir('config')
+31 -7
pkgs/by-name/mc/mctc-lib/package.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 python3, 10 - json-fortran, 11 }: 12 13 stdenv.mkDerivation rec { 14 pname = "mctc-lib"; 15 - version = "0.4.1"; 16 17 src = fetchFromGitHub { 18 owner = "grimme-lab"; 19 repo = "mctc-lib"; 20 rev = "v${version}"; 21 - hash = "sha256-AMRHvzL6CUPItCs07LLOB6Al3yfs8WgrPKRhuNbXiGw="; 22 }; 23 24 nativeBuildInputs = [ 25 gfortran 26 meson 27 ninja 28 - pkg-config 29 - python3 30 ]; 31 - 32 - buildInputs = [ json-fortran ]; 33 34 outputs = [ 35 "out"
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 pkg-config, 11 python3, 12 + toml-f, 13 + jonquil, 14 }: 15 16 + assert ( 17 + builtins.elem buildType [ 18 + "meson" 19 + "cmake" 20 + ] 21 + ); 22 + 23 stdenv.mkDerivation rec { 24 pname = "mctc-lib"; 25 + version = "0.4.2"; 26 27 src = fetchFromGitHub { 28 owner = "grimme-lab"; 29 repo = "mctc-lib"; 30 rev = "v${version}"; 31 + hash = "sha256-Qd7mpNE23Z+LuiUwhUzfVzVZEQ+sdnkxMm+W7Hlrss4="; 32 }; 33 34 + patches = [ 35 + # Allow dynamically linked jonquil as dependency. That then additionally 36 + # requires linking in toml-f 37 + ./meson.patch 38 + 39 + # Fix wrong generation of package config include paths 40 + ./cmake.patch 41 + ]; 42 + 43 nativeBuildInputs = [ 44 gfortran 45 + pkg-config 46 + python3 47 + ] 48 + ++ lib.optionals (buildType == "meson") [ 49 meson 50 ninja 51 + ] 52 + ++ lib.optional (buildType == "cmake") cmake; 53 + 54 + buildInputs = [ 55 + jonquil 56 ]; 57 58 outputs = [ 59 "out"
-29
pkgs/by-name/mm/mmutils/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - libxcb, 6 - }: 7 - 8 - stdenv.mkDerivation rec { 9 - pname = "wmutils"; 10 - version = "1.4.1"; 11 - 12 - src = fetchFromGitHub { 13 - owner = "pockata"; 14 - repo = "mmutils"; 15 - rev = "v${version}"; 16 - sha256 = "08wlb278m5lr218c87yqashk7farzny51ybl5h6j60i7pbpm01ml"; 17 - }; 18 - 19 - buildInputs = [ libxcb ]; 20 - 21 - installFlags = [ "PREFIX=$(out)" ]; 22 - 23 - meta = with lib; { 24 - description = "Set of utilities for querying xrandr monitor information"; 25 - homepage = "https://github.com/pockata/mmutils"; 26 - license = licenses.isc; 27 - platforms = platforms.unix; 28 - }; 29 - }
···
+3 -3
pkgs/by-name/mp/mprisence/package.nix
··· 9 10 rustPlatform.buildRustPackage (finalAttrs: { 11 pname = "mprisence"; 12 - version = "1.2.5"; 13 14 src = fetchFromGitHub { 15 owner = "lazykern"; 16 repo = "mprisence"; 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-XZgc5eaBo/FwRCTJnm6lKzp824/XckIMK5P4aTohiuE="; 19 }; 20 21 - cargoHash = "sha256-zbycof7QBI2Ua3rO24aCDZcxX8yoPKpAAFeQI4b2YjM="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
··· 9 10 rustPlatform.buildRustPackage (finalAttrs: { 11 pname = "mprisence"; 12 + version = "1.2.6"; 13 14 src = fetchFromGitHub { 15 owner = "lazykern"; 16 repo = "mprisence"; 17 tag = "v${finalAttrs.version}"; 18 + hash = "sha256-I/rY8EU7EHlxtKO/++itjkDehGSIOHmU0C1PJGsgvHA="; 19 }; 20 21 + cargoHash = "sha256-ZAr+cdC/A5YsPTdZhKF1qPM37oavXyIDhZYPAQ3zq8A="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
+20 -3
pkgs/by-name/ms/mstore/package.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 python3, 10 mctc-lib, 11 }: 12 13 stdenv.mkDerivation rec { 14 pname = "mstore"; 15 version = "0.3.0"; ··· 21 hash = "sha256-zfrxdrZ1Um52qTRNGJoqZNQuHhK3xM/mKfk0aBLrcjw="; 22 }; 23 24 nativeBuildInputs = [ 25 gfortran 26 meson 27 ninja 28 - pkg-config 29 - python3 30 - ]; 31 32 buildInputs = [ mctc-lib ]; 33
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 pkg-config, 11 python3, 12 mctc-lib, 13 }: 14 15 + assert ( 16 + builtins.elem buildType [ 17 + "meson" 18 + "cmake" 19 + ] 20 + ); 21 + 22 stdenv.mkDerivation rec { 23 pname = "mstore"; 24 version = "0.3.0"; ··· 30 hash = "sha256-zfrxdrZ1Um52qTRNGJoqZNQuHhK3xM/mKfk0aBLrcjw="; 31 }; 32 33 + patches = [ 34 + # Fix wrong generation of package config include paths 35 + ./pkgconfig.patch 36 + ]; 37 + 38 nativeBuildInputs = [ 39 gfortran 40 + pkg-config 41 + python3 42 + ] 43 + ++ lib.optionals (buildType == "meson") [ 44 meson 45 ninja 46 + ] 47 + ++ lib.optional (buildType == "cmake") cmake; 48 49 buildInputs = [ mctc-lib ]; 50
+13
pkgs/by-name/ms/mstore/pkgconfig.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 800947d..d388699 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+22 -3
pkgs/by-name/mu/multicharge/package.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 python3, 10 blas, ··· 14 }: 15 16 assert !blas.isILP64 && !lapack.isILP64; 17 18 stdenv.mkDerivation rec { 19 pname = "multicharge"; ··· 25 rev = "v${version}"; 26 hash = "sha256-8qwM3dpvFoL2WrMWNf14zYtRap0ijdfZ95XaTlkHhqQ="; 27 }; 28 29 nativeBuildInputs = [ 30 gfortran 31 - meson 32 - ninja 33 pkg-config 34 python3 35 - ]; 36 37 buildInputs = [ 38 blas 39 lapack 40 mctc-lib 41 mstore 42 ];
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 pkg-config, 11 python3, 12 blas, ··· 16 }: 17 18 assert !blas.isILP64 && !lapack.isILP64; 19 + assert ( 20 + builtins.elem buildType [ 21 + "meson" 22 + "cmake" 23 + ] 24 + ); 25 26 stdenv.mkDerivation rec { 27 pname = "multicharge"; ··· 33 rev = "v${version}"; 34 hash = "sha256-8qwM3dpvFoL2WrMWNf14zYtRap0ijdfZ95XaTlkHhqQ="; 35 }; 36 + 37 + patches = [ 38 + # Fix wrong generation of package config include paths 39 + ./pkgconfig.patch 40 + ]; 41 42 nativeBuildInputs = [ 43 gfortran 44 pkg-config 45 python3 46 + ] 47 + ++ lib.optionals (buildType == "meson") [ 48 + meson 49 + ninja 50 + ] 51 + ++ lib.optional (buildType == "cmake") cmake; 52 53 buildInputs = [ 54 blas 55 lapack 56 + ]; 57 + 58 + propagatedBuildInputs = [ 59 mctc-lib 60 mstore 61 ];
+13
pkgs/by-name/mu/multicharge/pkgconfig.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+2 -2
pkgs/by-name/ni/nixpkgs-review/package.nix
··· 22 23 python3Packages.buildPythonApplication rec { 24 pname = "nixpkgs-review"; 25 - version = "3.4.0"; 26 pyproject = true; 27 28 src = fetchFromGitHub { 29 owner = "Mic92"; 30 repo = "nixpkgs-review"; 31 tag = version; 32 - hash = "sha256-qVGaIq05vJA5HmCauASvMiUUg+58v4GOp6NMY9fIGLo="; 33 }; 34 35 build-system = [
··· 22 23 python3Packages.buildPythonApplication rec { 24 pname = "nixpkgs-review"; 25 + version = "3.5.0"; 26 pyproject = true; 27 28 src = fetchFromGitHub { 29 owner = "Mic92"; 30 repo = "nixpkgs-review"; 31 tag = version; 32 + hash = "sha256-OKNKcfjnZ5ZFR7WbHs3rSWnbn4vLDH0RH/OgsDNXCwA="; 33 }; 34 35 build-system = [
-65
pkgs/by-name/nu/nuget-to-nix/nuget-to-nix.sh
··· 1 - #!@runtimeShell@ 2 - # shellcheck shell=bash 3 - 4 - set -euo pipefail 5 - shopt -s nullglob 6 - 7 - export SSL_CERT_FILE=@cacert@/etc/ssl/certs/ca-bundle.crt 8 - export PATH="@binPath@:$PATH" 9 - # used for glob ordering of package names 10 - export LC_ALL=C 11 - 12 - >&2 echo "WARNING: nuget-to-nix has deprecated in favor of nuget-to-json." 13 - 14 - if [ $# -eq 0 ]; then 15 - >&2 echo "Usage:" 16 - >&2 echo " $0 <packages directory> [path to a file with a list of excluded packages] > deps.nix" 17 - >&2 echo " $0 --convert deps.json > deps.nix" 18 - exit 1 19 - fi 20 - 21 - jsonDeps= 22 - if [ "$1" == "--convert" ]; then 23 - if [ ! -e "$2" ]; then 24 - echo "File not found." 25 - exit 1 26 - fi 27 - 28 - if IFS='' read -r -d '' jsonDeps <"$2"; then 29 - echo "Null bytes found in file." >&2 30 - exit 1 31 - fi 32 - else 33 - if ! jsonDeps=$(nuget-to-json "$@"); then 34 - echo "nuget-to-json failed." 35 - exit 1 36 - fi 37 - fi 38 - 39 - # pkgs/by-name/az/azure-functions-core-tools/deps.json 40 - IFS='' readarray -d '' depsParts < <(jq 'map([.pname, .version, .sha256, .hash, .url]) | flatten[]' --raw-output0 <<<"$jsonDeps") 41 - index=0 42 - 43 - echo '{ fetchNuGet }: [' 44 - 45 - while [ "$index" -lt "${#depsParts[@]}" ]; do 46 - pname="${depsParts[index]}" 47 - version="${depsParts[++index]}" 48 - sha256="${depsParts[++index]}" 49 - hash="${depsParts[++index]}" 50 - url="${depsParts[++index]}" 51 - ((++index)) # Go to next pname 52 - 53 - echo -n " (fetchNuGet { pname = \"$pname\"; version = \"$version\"; " 54 - if [ "$sha256" != null ]; then 55 - echo -n "sha256 = \"$sha256\"; " 56 - else 57 - echo -n "hash = \"$hash\"; " 58 - fi 59 - if [ "$url" != "null" ]; then 60 - echo -n "url = \"$url\"; " 61 - fi 62 - echo '})' 63 - done 64 - 65 - echo ']'
···
-41
pkgs/by-name/nu/nuget-to-nix/package.nix
··· 1 - { 2 - lib, 3 - runtimeShell, 4 - replaceVarsWith, 5 - nix, 6 - coreutils, 7 - jq, 8 - xmlstarlet, 9 - curl, 10 - gnugrep, 11 - gawk, 12 - nuget-to-json, 13 - cacert, 14 - }: 15 - 16 - replaceVarsWith { 17 - name = "nuget-to-nix"; 18 - dir = "bin"; 19 - 20 - src = ./nuget-to-nix.sh; 21 - isExecutable = true; 22 - 23 - replacements = { 24 - inherit runtimeShell cacert; 25 - binPath = lib.makeBinPath [ 26 - nix 27 - coreutils 28 - jq 29 - xmlstarlet 30 - curl 31 - gnugrep 32 - gawk 33 - nuget-to-json 34 - ]; 35 - }; 36 - 37 - meta = { 38 - description = "Convert a nuget packages directory to a lockfile for buildDotnetModule"; 39 - mainProgram = "nuget-to-nix"; 40 - }; 41 - }
···
+51
pkgs/by-name/op/openorbitaloptimizer/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + gfortran, 6 + cmake, 7 + pkg-config, 8 + armadillo, 9 + blas, 10 + lapack, 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "OpenOrbitalOptimizer"; 15 + version = "0.1.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "susilethola"; 19 + repo = "openorbitaloptimizer"; 20 + rev = "v${version}"; 21 + hash = "sha256-otIs2Y79KoEL4ut8YQe7Y27LpmpId8h/X8B6GIg8l+E="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + pkg-config 26 + cmake 27 + gfortran 28 + ]; 29 + 30 + buildInputs = [ 31 + armadillo 32 + blas 33 + lapack 34 + ]; 35 + 36 + outputs = [ 37 + "out" 38 + "dev" 39 + ]; 40 + 41 + # Uses a hacky python setup run by cmake, which is hard to get running 42 + doCheck = false; 43 + 44 + meta = with lib; { 45 + description = "Common orbital optimisation algorithms for quantum chemistry"; 46 + license = [ licenses.mpl20 ]; 47 + homepage = "https://github.com/susilehtola/OpenOrbitalOptimizer"; 48 + platforms = platforms.linux; 49 + maintainers = [ maintainers.sheepforce ]; 50 + }; 51 + }
+2 -2
pkgs/by-name/os/osmo-msc/package.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "osmo-msc"; 19 - version = "1.13.0"; 20 21 src = fetchFromGitHub { 22 owner = "osmocom"; 23 repo = "osmo-msc"; 24 rev = version; 25 - hash = "sha256-iS/N0+KhgMUFoJus/R/iFOLuvqCiceNtcuq3nbOvBts="; 26 }; 27 28 postPatch = ''
··· 16 17 stdenv.mkDerivation rec { 18 pname = "osmo-msc"; 19 + version = "1.14.0"; 20 21 src = fetchFromGitHub { 22 owner = "osmocom"; 23 repo = "osmo-msc"; 24 rev = version; 25 + hash = "sha256-+Z49TqXLEeCy7Yj0qVg1hPFOD/x+4HnwDZxZoxoUjqI="; 26 }; 27 28 postPatch = ''
+2 -2
pkgs/by-name/os/osmo-pcu/package.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "osmo-pcu"; 12 - version = "1.5.1"; 13 14 src = fetchFromGitHub { 15 owner = "osmocom"; 16 repo = "osmo-pcu"; 17 rev = version; 18 - hash = "sha256-UCgnBE+Sm9MTLteo/B5Ha9I64mfKxbO61B8QA4qJdLE="; 19 }; 20 21 postPatch = ''
··· 9 10 stdenv.mkDerivation rec { 11 pname = "osmo-pcu"; 12 + version = "1.5.2"; 13 14 src = fetchFromGitHub { 15 owner = "osmocom"; 16 repo = "osmo-pcu"; 17 rev = version; 18 + hash = "sha256-ibcmR046Go6IAlMClUZFoTc/gpy/q5Mp0hJIx/4tKqo="; 19 }; 20 21 postPatch = ''
+2 -2
pkgs/by-name/pl/pluto/package.nix
··· 6 7 buildGoModule rec { 8 pname = "pluto"; 9 - version = "5.22.3"; 10 11 src = fetchFromGitHub { 12 owner = "FairwindsOps"; 13 repo = "pluto"; 14 rev = "v${version}"; 15 - hash = "sha256-7INiYL8ymry2HKPIYVWSEiJccUyntVZQM7mM1WTt6Ww="; 16 }; 17 18 vendorHash = "sha256-59mRVfQ2rduTvIJE1l/j3K+PY3OEMfNpjjYg3hqNUhs=";
··· 6 7 buildGoModule rec { 8 pname = "pluto"; 9 + version = "5.22.5"; 10 11 src = fetchFromGitHub { 12 owner = "FairwindsOps"; 13 repo = "pluto"; 14 rev = "v${version}"; 15 + hash = "sha256-MserKZcOkif56XeTLRzHDDk6HYeVhgKsnOjsfv0vPeQ="; 16 }; 17 18 vendorHash = "sha256-59mRVfQ2rduTvIJE1l/j3K+PY3OEMfNpjjYg3hqNUhs=";
+2 -2
pkgs/by-name/qt/qtractor/package.nix
··· 30 31 stdenv.mkDerivation rec { 32 pname = "qtractor"; 33 - version = "1.5.7"; 34 35 src = fetchurl { 36 url = "mirror://sourceforge/qtractor/qtractor-${version}.tar.gz"; 37 - hash = "sha256-dQcyba5QZRmi1GgFyTOmqzFiliBKyNu187xXM1+OnpI="; 38 }; 39 40 nativeBuildInputs = [
··· 30 31 stdenv.mkDerivation rec { 32 pname = "qtractor"; 33 + version = "1.5.8"; 34 35 src = fetchurl { 36 url = "mirror://sourceforge/qtractor/qtractor-${version}.tar.gz"; 37 + hash = "sha256-nHN+bEfshFHBpmQLuQxffI7BcKigYpj3HzsFjGWlLtQ="; 38 }; 39 40 nativeBuildInputs = [
+3 -3
pkgs/by-name/rb/rbw/package.nix
··· 24 25 rustPlatform.buildRustPackage rec { 26 pname = "rbw"; 27 - version = "1.14.0"; 28 29 src = fetchzip { 30 url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"; 31 - hash = "sha256-5KEOjnhn12QnR2CBBuUMHLOOyfkCMY/R3LzoP/EfBbA="; 32 }; 33 34 - cargoHash = "sha256-GbPh999yM28qNRBpG2zs03EzwAKCG6CwqDP8JYedfl0="; 35 36 nativeBuildInputs = [ 37 installShellFiles
··· 24 25 rustPlatform.buildRustPackage rec { 26 pname = "rbw"; 27 + version = "1.13.2"; 28 29 src = fetchzip { 30 url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"; 31 + hash = "sha256-ebLbdIF+BybK7ssNtZacGWmAEwdNZh8b94QYgvcwzmM="; 32 }; 33 34 + cargoHash = "sha256-xDb4shDHCbd0yuTSAt80i1aqyuhpkfd/fYF98CfXdcM="; 35 36 nativeBuildInputs = [ 37 installShellFiles
+2
pkgs/by-name/ru/rustdesk-flutter/package.nix
··· 29 cargo-expand, 30 yq, 31 callPackage, 32 }: 33 let 34 flutterRustBridge = rustPlatform.buildRustPackage rec { ··· 204 ''; 205 206 extraWrapProgramArgs = '' 207 --prefix PATH : ${lib.makeBinPath [ xdg-user-dirs ]} 208 ''; 209
··· 29 cargo-expand, 30 yq, 31 callPackage, 32 + addDriverRunpath, 33 }: 34 let 35 flutterRustBridge = rustPlatform.buildRustPackage rec { ··· 205 ''; 206 207 extraWrapProgramArgs = '' 208 + --prefix LD_LIBRARY_PATH : ${addDriverRunpath.driverLink}/lib \ 209 --prefix PATH : ${lib.makeBinPath [ xdg-user-dirs ]} 210 ''; 211
+2 -2
pkgs/by-name/sh/shader-slang/package.nix
··· 27 28 stdenv.mkDerivation (finalAttrs: { 29 pname = "shader-slang"; 30 - version = "2025.15"; 31 32 src = fetchFromGitHub { 33 owner = "shader-slang"; 34 repo = "slang"; 35 tag = "v${finalAttrs.version}"; 36 - hash = "sha256-m1Xn8OybEDJYrR5c5eJZNvDhXtnydQ5lx1v2PqyJu5c="; 37 fetchSubmodules = true; 38 }; 39
··· 27 28 stdenv.mkDerivation (finalAttrs: { 29 pname = "shader-slang"; 30 + version = "2025.15.1"; 31 32 src = fetchFromGitHub { 33 owner = "shader-slang"; 34 repo = "slang"; 35 tag = "v${finalAttrs.version}"; 36 + hash = "sha256-PBsBLzQ1+7+4Uw18OOhxkMZC5+YiUJlfHfIp7wUM5Rk="; 37 fetchSubmodules = true; 38 }; 39
+17 -3
pkgs/by-name/si/sirius/package.nix
··· 22 boost, 23 eigen, 24 libvdwxc, 25 enablePython ? false, 26 pythonPackages ? null, 27 llvmPackages, ··· 47 48 stdenv.mkDerivation rec { 49 pname = "SIRIUS"; 50 - version = "7.6.2"; 51 52 src = fetchFromGitHub { 53 owner = "electronic-structure"; 54 repo = "SIRIUS"; 55 - rev = "v${version}"; 56 - hash = "sha256-A3WiEzo2ianxdF9HMZN9cT0lFosToGEHh0o6uBSAYqU="; 57 }; 58 59 outputs = [ ··· 84 boost 85 eigen 86 libvdwxc 87 ] 88 ++ lib.optionals (gpuBackend == "cuda") [ 89 cudaPackages.cuda_cudart ··· 131 "-DSIRIUS_USE_VDWXC=ON" 132 "-DSIRIUS_CREATE_FORTRAN_BINDINGS=ON" 133 "-DSIRIUS_USE_OPENMP=ON" 134 "-DBUILD_TESTING=ON" 135 ] 136 ++ lib.optionals (gpuBackend == "cuda") [
··· 22 boost, 23 eigen, 24 libvdwxc, 25 + dftd4, 26 + simple-dftd3, 27 + mctc-lib, 28 + jonquil, 29 + toml-f, 30 + multicharge, 31 enablePython ? false, 32 pythonPackages ? null, 33 llvmPackages, ··· 53 54 stdenv.mkDerivation rec { 55 pname = "SIRIUS"; 56 + version = "7.8.0-unstable-2025-07-23"; 57 58 src = fetchFromGitHub { 59 owner = "electronic-structure"; 60 repo = "SIRIUS"; 61 + rev = "258c8c6543af0350ac002a52fbe18221ea275590"; 62 + hash = "sha256-HHt3iw3muIGz86NmI9p6yuv7jrXoiz/83qTTueU7Lpk="; 63 }; 64 65 outputs = [ ··· 90 boost 91 eigen 92 libvdwxc 93 + jonquil 94 + simple-dftd3 95 + dftd4 96 + mctc-lib 97 + toml-f 98 + multicharge 99 ] 100 ++ lib.optionals (gpuBackend == "cuda") [ 101 cudaPackages.cuda_cudart ··· 143 "-DSIRIUS_USE_VDWXC=ON" 144 "-DSIRIUS_CREATE_FORTRAN_BINDINGS=ON" 145 "-DSIRIUS_USE_OPENMP=ON" 146 + "-DSIRIUS_USE_DFTD3=ON" 147 + "-DSIRIUS_USE_DFTD4=ON" 148 "-DBUILD_TESTING=ON" 149 ] 150 ++ lib.optionals (gpuBackend == "cuda") [
+3 -3
pkgs/by-name/st/stackit-cli/package.nix
··· 12 13 buildGoModule rec { 14 pname = "stackit-cli"; 15 - version = "0.39.1"; 16 17 src = fetchFromGitHub { 18 owner = "stackitcloud"; 19 repo = "stackit-cli"; 20 rev = "v${version}"; 21 - hash = "sha256-6Y71KglFPfecbrXwczsrEdoVECOP8C/Mt021H6nQrvE="; 22 }; 23 24 - vendorHash = "sha256-Vz8jcbp3HzzgfzHFeEYPeGg0lmElPbm2hpHWNVhTQa0="; 25 26 subPackages = [ "." ]; 27
··· 12 13 buildGoModule rec { 14 pname = "stackit-cli"; 15 + version = "0.40.1"; 16 17 src = fetchFromGitHub { 18 owner = "stackitcloud"; 19 repo = "stackit-cli"; 20 rev = "v${version}"; 21 + hash = "sha256-a2EVUCLmIAgXmQeDLPIgEKqFFebwpu/p94OkwOuiBuc="; 22 }; 23 24 + vendorHash = "sha256-C5BsCfekQGhPtVKTgZVSHbkyeH4i5QrfXxN6KRutNpo="; 25 26 subPackages = [ "." ]; 27
+9 -4
pkgs/by-name/st/stig/package.nix
··· 10 pname = "stig"; 11 # This project has a different concept for pre release / alpha, 12 # Read the project's README for details: https://github.com/rndusr/stig#stig 13 - version = "0.12.10a0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "rndusr"; 18 repo = "stig"; 19 rev = "v${version}"; 20 - sha256 = "sha256-lSFI4/DxWl17KFgLXZ7c5nW/e5IUGN7s8Gm6wTM5ZWg="; 21 }; 22 23 build-system = with python3Packages; [ ··· 35 setproctitle 36 ]; 37 38 # According to the upstream author, 39 # stig no longer has working tests 40 # since asynctest (former test dependency) got abandoned. ··· 47 version = "stig version ${version}"; 48 }; 49 50 - meta = with lib; { 51 description = "TUI and CLI for the BitTorrent client Transmission"; 52 homepage = "https://github.com/rndusr/stig"; 53 - license = licenses.gpl3Plus; 54 maintainers = [ ]; 55 }; 56 }
··· 10 pname = "stig"; 11 # This project has a different concept for pre release / alpha, 12 # Read the project's README for details: https://github.com/rndusr/stig#stig 13 + version = "0.13.0a0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "rndusr"; 18 repo = "stig"; 19 rev = "v${version}"; 20 + hash = "sha256-X7V6NpHJBRj8A1Z37XNPEvFfwIFPtqWaBm8hzkA8g6o="; 21 }; 22 23 build-system = with python3Packages; [ ··· 35 setproctitle 36 ]; 37 38 + pythonRelaxDeps = [ 39 + # relax urwidtrees==1.0.3 40 + "urwidtrees" 41 + ]; 42 + 43 # According to the upstream author, 44 # stig no longer has working tests 45 # since asynctest (former test dependency) got abandoned. ··· 52 version = "stig version ${version}"; 53 }; 54 55 + meta = { 56 description = "TUI and CLI for the BitTorrent client Transmission"; 57 homepage = "https://github.com/rndusr/stig"; 58 + license = lib.licenses.gpl3Plus; 59 maintainers = [ ]; 60 }; 61 }
+3 -3
pkgs/by-name/su/supabase-cli/package.nix
··· 10 11 buildGoModule rec { 12 pname = "supabase-cli"; 13 - version = "2.36.2"; 14 15 src = fetchFromGitHub { 16 owner = "supabase"; 17 repo = "cli"; 18 rev = "v${version}"; 19 - hash = "sha256-8e6Fc0khFq2K/ZDLpNMMEi8127Ke5Fmc+PJ8Vgp0euE="; 20 }; 21 22 - vendorHash = "sha256-NnGtUK+iMj7KUCTAmNtHxB8OssdvsPJK896b+aFaSl4="; 23 24 ldflags = [ 25 "-s"
··· 10 11 buildGoModule rec { 12 pname = "supabase-cli"; 13 + version = "2.40.0"; 14 15 src = fetchFromGitHub { 16 owner = "supabase"; 17 repo = "cli"; 18 rev = "v${version}"; 19 + hash = "sha256-j/MtVPFs1nQAOggXWPUabyNqaKmuFF3HmBUJ3AF9Wys="; 20 }; 21 22 + vendorHash = "sha256-yeZdUfXyWI/F5Y7lv5RB2cNN3fmVlWRyfm+v5xBGmRo="; 23 24 ldflags = [ 25 "-s"
+13
pkgs/by-name/te/test-drive/cmake.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+18 -3
pkgs/by-name/te/test-drive/package.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 mesonEmulatorHook, 9 }: 10 11 stdenv.mkDerivation rec { 12 pname = "test-drive"; 13 version = "0.5.0"; ··· 19 hash = "sha256-xRx8ErIN9xjxZt/nEsdIQkIGFRltuELdlI8lXA+M030="; 20 }; 21 22 nativeBuildInputs = [ 23 gfortran 24 meson 25 ninja 26 ] 27 - ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ 28 - mesonEmulatorHook 29 - ]; 30 31 mesonAutoFeatures = "auto"; 32
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 mesonEmulatorHook, 11 }: 12 13 + assert ( 14 + builtins.elem buildType [ 15 + "meson" 16 + "cmake" 17 + ] 18 + ); 19 + 20 stdenv.mkDerivation rec { 21 pname = "test-drive"; 22 version = "0.5.0"; ··· 28 hash = "sha256-xRx8ErIN9xjxZt/nEsdIQkIGFRltuELdlI8lXA+M030="; 29 }; 30 31 + patches = [ 32 + # Fix wrong generation of package config include paths 33 + ./cmake.patch 34 + ]; 35 + 36 nativeBuildInputs = [ 37 gfortran 38 + ] 39 + ++ lib.optionals (buildType == "meson") [ 40 meson 41 ninja 42 ] 43 + ++ lib.optional (buildType == "cmake") cmake 44 + ++ lib.optional (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) mesonEmulatorHook; 45 46 mesonAutoFeatures = "auto"; 47
+13
pkgs/by-name/to/toml-f/cmake.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+23 -2
pkgs/by-name/to/toml-f/package.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 test-drive, 10 }: 11 12 stdenv.mkDerivation rec { 13 pname = "toml-f"; 14 version = "0.4.2"; ··· 20 hash = "sha256-+cac4rUNpd2w3yBdH1XoCKdJ9IgOHZioZg8AhzGY0FE="; 21 }; 22 23 nativeBuildInputs = [ 24 gfortran 25 meson 26 ninja 27 - pkg-config 28 - ]; 29 30 buildInputs = [ test-drive ]; 31 32 outputs = [ 33 "out" 34 "dev" 35 ]; 36 37 # tftest-build fails on aarch64-linux
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 pkg-config, 11 test-drive, 12 }: 13 14 + assert ( 15 + builtins.elem buildType [ 16 + "meson" 17 + "cmake" 18 + ] 19 + ); 20 + 21 stdenv.mkDerivation rec { 22 pname = "toml-f"; 23 version = "0.4.2"; ··· 29 hash = "sha256-+cac4rUNpd2w3yBdH1XoCKdJ9IgOHZioZg8AhzGY0FE="; 30 }; 31 32 + patches = [ 33 + # Fix wrong generation of package config include paths 34 + ./cmake.patch 35 + ]; 36 + 37 nativeBuildInputs = [ 38 gfortran 39 + pkg-config 40 + ] 41 + ++ lib.optionals (buildType == "meson") [ 42 meson 43 ninja 44 + ] 45 + ++ lib.optional (buildType == "cmake") cmake; 46 47 buildInputs = [ test-drive ]; 48 49 outputs = [ 50 "out" 51 "dev" 52 + ]; 53 + 54 + cmakeFlags = [ 55 + "-Dtest-drive_DIR=${test-drive}" 56 ]; 57 58 # tftest-build fails on aarch64-linux
+647
pkgs/by-name/ts/tshock/deps.json
···
··· 1 + [ 2 + { 3 + "pname": "BCrypt.Net-Next", 4 + "version": "4.0.3", 5 + "hash": "sha256-BxXHAjIV2xBuRPUezzC+5jhaHiQhgnqTk1k1ko3D6Ds=" 6 + }, 7 + { 8 + "pname": "BouncyCastle.Cryptography", 9 + "version": "2.2.1", 10 + "hash": "sha256-KDNexXG10Ub5G0M5BOvaFDByGPiSo0HG8GJWWB473Y0=" 11 + }, 12 + { 13 + "pname": "GetText.NET", 14 + "version": "1.7.14", 15 + "hash": "sha256-IR27r7SZJFomN/bu4hO5SeQNGr67DQREIKdjsV7RICc=" 16 + }, 17 + { 18 + "pname": "Google.Protobuf", 19 + "version": "3.25.1", 20 + "hash": "sha256-UfP/iIcARptUcTVptj/5JQ9Jz9AG3aj+iKotsetOnH0=" 21 + }, 22 + { 23 + "pname": "K4os.Compression.LZ4", 24 + "version": "1.3.5", 25 + "hash": "sha256-M0FaJTS3XRBp5tV02BhrrOLVyzP39cQnpEVY8KGNads=" 26 + }, 27 + { 28 + "pname": "K4os.Compression.LZ4.Streams", 29 + "version": "1.3.5", 30 + "hash": "sha256-BhR48hN/7z2NVgMw1MRnilpjAUNMZ0LDDhmVYnCXoCY=" 31 + }, 32 + { 33 + "pname": "K4os.Hash.xxHash", 34 + "version": "1.0.8", 35 + "hash": "sha256-ILTWT8NFB7itGpDloJh65B5ZuWHrN2dOUQdm8gNy4W8=" 36 + }, 37 + { 38 + "pname": "Microsoft.Data.Sqlite", 39 + "version": "6.0.11", 40 + "hash": "sha256-K+2ZSdaQ9XrAglqxjlIkwBj4NlHhV7FvHTfNCM11u7k=" 41 + }, 42 + { 43 + "pname": "Microsoft.Data.Sqlite.Core", 44 + "version": "6.0.11", 45 + "hash": "sha256-ndL66WlBdAOU6V8k23d/T11r0s8gnBqbGWRZF9Bc7AU=" 46 + }, 47 + { 48 + "pname": "Microsoft.NETCore.Platforms", 49 + "version": "1.1.0", 50 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 51 + }, 52 + { 53 + "pname": "Microsoft.NETCore.Platforms", 54 + "version": "2.0.0", 55 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 56 + }, 57 + { 58 + "pname": "Microsoft.NETCore.Platforms", 59 + "version": "3.1.0", 60 + "hash": "sha256-cnygditsEaU86bnYtIthNMymAHqaT/sf9Gjykhzqgb0=" 61 + }, 62 + { 63 + "pname": "Microsoft.NETCore.Targets", 64 + "version": "1.1.0", 65 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 66 + }, 67 + { 68 + "pname": "Microsoft.Win32.SystemEvents", 69 + "version": "4.7.0", 70 + "hash": "sha256-GHxnD1Plb32GJWVWSv0Y51Kgtlb+cdKgOYVBYZSgVF4=" 71 + }, 72 + { 73 + "pname": "Microsoft.Win32.SystemEvents", 74 + "version": "6.0.0", 75 + "hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA=" 76 + }, 77 + { 78 + "pname": "ModFramework", 79 + "version": "1.1.7", 80 + "hash": "sha256-fKP5njd+98RYQ/1tqaT0vyIalZbcSUQdo50ucQ7F1hk=" 81 + }, 82 + { 83 + "pname": "Mono.Cecil", 84 + "version": "0.11.4", 85 + "hash": "sha256-HrnRgFsOzfqAWw0fUxi/vkzZd8dMn5zueUeLQWA9qvs=" 86 + }, 87 + { 88 + "pname": "MonoMod", 89 + "version": "22.5.1.1", 90 + "hash": "sha256-VB1xZV+MLAzB/e6uTKW2/IEy9Qzo6vzsxg5ot1bWiPs=" 91 + }, 92 + { 93 + "pname": "MonoMod.RuntimeDetour", 94 + "version": "22.5.1.1", 95 + "hash": "sha256-ivxQJ6VWxzapaxkDvkRZvDQVgpfmFP1afRlx6yolBXM=" 96 + }, 97 + { 98 + "pname": "MonoMod.RuntimeDetour.HookGen", 99 + "version": "22.5.1.1", 100 + "hash": "sha256-jKPij21zrysQO8MnzECpJKVAqil5ZdODyGZOx7j0dRg=" 101 + }, 102 + { 103 + "pname": "MonoMod.Utils", 104 + "version": "22.5.1.1", 105 + "hash": "sha256-5m6C8anC0Z4Ihaxg6PTmXU7UOGiyzV+byZDO8+w/kl8=" 106 + }, 107 + { 108 + "pname": "MySql.Data", 109 + "version": "8.4.0", 110 + "hash": "sha256-fbNsIdRJVbD7NfAKhDJWDq5m5vXcRGzl9DBzQytM4cA=" 111 + }, 112 + { 113 + "pname": "Newtonsoft.Json", 114 + "version": "13.0.1", 115 + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" 116 + }, 117 + { 118 + "pname": "NuGet.Common", 119 + "version": "6.3.1", 120 + "hash": "sha256-N6NMNL4d2IQsa/AEjyBesbStXTtR8kaL2e7aW7BdBvs=" 121 + }, 122 + { 123 + "pname": "NuGet.Common", 124 + "version": "6.3.4", 125 + "hash": "sha256-GDzEyx9/wdVOUAri94uoDjChmfDnBhI90nBfzoHarts=" 126 + }, 127 + { 128 + "pname": "NuGet.Configuration", 129 + "version": "6.3.1", 130 + "hash": "sha256-Ha04pwa124ptbBH/PBn45dBGpDIPKcMDd+Fil91g728=" 131 + }, 132 + { 133 + "pname": "NuGet.Configuration", 134 + "version": "6.3.4", 135 + "hash": "sha256-qXIONIKcCIXJUmNJQs7MINQ18qIEUByTtW5xsORoZoc=" 136 + }, 137 + { 138 + "pname": "NuGet.Frameworks", 139 + "version": "6.3.1", 140 + "hash": "sha256-FAzvIULDH4/MnutbHL3NUZwpzcBAu0qgSKitFSTlbJY=" 141 + }, 142 + { 143 + "pname": "NuGet.Frameworks", 144 + "version": "6.3.4", 145 + "hash": "sha256-zqogus3HXQYSiqfnhVH2jd2VZXa+uTsmaw/uwD8dlgY=" 146 + }, 147 + { 148 + "pname": "NuGet.Packaging", 149 + "version": "6.3.1", 150 + "hash": "sha256-YiHpqIbOmfYMtJKACeL2nJ5oRngHTPcLN8e4+6IBggs=" 151 + }, 152 + { 153 + "pname": "NuGet.Packaging", 154 + "version": "6.3.4", 155 + "hash": "sha256-1LKM5vgfNKn8v2LcqialwmcynACISR57q13n7I2lQbU=" 156 + }, 157 + { 158 + "pname": "NuGet.Protocol", 159 + "version": "6.3.1", 160 + "hash": "sha256-9dYUTW/oor665WSDG6mu7HILPVzdO2/2pgiEPb5NMF0=" 161 + }, 162 + { 163 + "pname": "NuGet.Protocol", 164 + "version": "6.3.3", 165 + "hash": "sha256-xRW7RMwHqSvTUhSaSI5s2OTSUtcLvvi4dy3ncXIb9I4=" 166 + }, 167 + { 168 + "pname": "NuGet.Resolver", 169 + "version": "6.3.1", 170 + "hash": "sha256-NAvCKWepFnswh5Q8ecGXhfki7i2lDahDCit9v706mrE=" 171 + }, 172 + { 173 + "pname": "NuGet.Versioning", 174 + "version": "6.3.1", 175 + "hash": "sha256-wNM/C2Y+K+gjceaXD2nHuBkZZgshBMo9NQ9h9gz/RnQ=" 176 + }, 177 + { 178 + "pname": "NuGet.Versioning", 179 + "version": "6.3.4", 180 + "hash": "sha256-6CMYVQeGfXu+xner3T3mgl/iQfXiYixoHizmrNA6bvQ=" 181 + }, 182 + { 183 + "pname": "OTAPI.Upcoming", 184 + "version": "3.1.20", 185 + "hash": "sha256-ONMBrJG5hDmdkRQhyF0tHxd5M/NebsOkhQmnyfKVK0Y=" 186 + }, 187 + { 188 + "pname": "runtime.any.System.Collections", 189 + "version": "4.3.0", 190 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 191 + }, 192 + { 193 + "pname": "runtime.any.System.Globalization", 194 + "version": "4.3.0", 195 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 196 + }, 197 + { 198 + "pname": "runtime.any.System.IO", 199 + "version": "4.3.0", 200 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 201 + }, 202 + { 203 + "pname": "runtime.any.System.Reflection", 204 + "version": "4.3.0", 205 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 206 + }, 207 + { 208 + "pname": "runtime.any.System.Reflection.Extensions", 209 + "version": "4.3.0", 210 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 211 + }, 212 + { 213 + "pname": "runtime.any.System.Reflection.Primitives", 214 + "version": "4.3.0", 215 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 216 + }, 217 + { 218 + "pname": "runtime.any.System.Resources.ResourceManager", 219 + "version": "4.3.0", 220 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 221 + }, 222 + { 223 + "pname": "runtime.any.System.Runtime", 224 + "version": "4.3.0", 225 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 226 + }, 227 + { 228 + "pname": "runtime.any.System.Runtime.Handles", 229 + "version": "4.3.0", 230 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 231 + }, 232 + { 233 + "pname": "runtime.any.System.Runtime.InteropServices", 234 + "version": "4.3.0", 235 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 236 + }, 237 + { 238 + "pname": "runtime.any.System.Text.Encoding", 239 + "version": "4.3.0", 240 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 241 + }, 242 + { 243 + "pname": "runtime.any.System.Threading.Tasks", 244 + "version": "4.3.0", 245 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 246 + }, 247 + { 248 + "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 249 + "version": "4.3.0", 250 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 251 + }, 252 + { 253 + "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 254 + "version": "4.3.0", 255 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 256 + }, 257 + { 258 + "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 259 + "version": "4.3.0", 260 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 261 + }, 262 + { 263 + "pname": "runtime.native.System", 264 + "version": "4.3.0", 265 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 266 + }, 267 + { 268 + "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 269 + "version": "4.3.0", 270 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 271 + }, 272 + { 273 + "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 274 + "version": "4.3.0", 275 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 276 + }, 277 + { 278 + "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 279 + "version": "4.3.0", 280 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 281 + }, 282 + { 283 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 284 + "version": "4.3.0", 285 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 286 + }, 287 + { 288 + "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 289 + "version": "4.3.0", 290 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 291 + }, 292 + { 293 + "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 294 + "version": "4.3.0", 295 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 296 + }, 297 + { 298 + "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 299 + "version": "4.3.0", 300 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 301 + }, 302 + { 303 + "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 304 + "version": "4.3.0", 305 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 306 + }, 307 + { 308 + "pname": "runtime.unix.System.Diagnostics.Debug", 309 + "version": "4.3.0", 310 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 311 + }, 312 + { 313 + "pname": "runtime.unix.System.Private.Uri", 314 + "version": "4.3.0", 315 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 316 + }, 317 + { 318 + "pname": "runtime.unix.System.Runtime.Extensions", 319 + "version": "4.3.0", 320 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 321 + }, 322 + { 323 + "pname": "SharpZipLib", 324 + "version": "1.4.2", 325 + "hash": "sha256-/giVqikworG2XKqfN9uLyjUSXr35zBuZ2FX2r8X/WUY=" 326 + }, 327 + { 328 + "pname": "SQLitePCLRaw.bundle_e_sqlite3", 329 + "version": "2.0.6", 330 + "hash": "sha256-o6uXTtcxjb7H33I8UL4XLgx9y/f/iNeXx6z0NopR4MY=" 331 + }, 332 + { 333 + "pname": "SQLitePCLRaw.core", 334 + "version": "2.0.6", 335 + "hash": "sha256-MXi9UEga37dJyFuMg0AVt8enKdr54KlOFT/ssMHzkfA=" 336 + }, 337 + { 338 + "pname": "SQLitePCLRaw.lib.e_sqlite3", 339 + "version": "2.0.6", 340 + "hash": "sha256-o68At523MDwLEuRxjM+4EiydK4ITSFyc9R0zGmBGZ5g=" 341 + }, 342 + { 343 + "pname": "SQLitePCLRaw.provider.e_sqlite3", 344 + "version": "2.0.6", 345 + "hash": "sha256-308v2h3rvcPSsR9F+yFdJC1QEHgOQtuVxTMs5j3ODzI=" 346 + }, 347 + { 348 + "pname": "Steamworks.NET", 349 + "version": "20.1.0", 350 + "hash": "sha256-vt1UVbH4mHGPm7hTW2wKRrSzaFaHz9ZSuiaYeOhs6Ws=" 351 + }, 352 + { 353 + "pname": "System.Buffers", 354 + "version": "4.5.1", 355 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 356 + }, 357 + { 358 + "pname": "System.Collections", 359 + "version": "4.3.0", 360 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 361 + }, 362 + { 363 + "pname": "System.Collections.Immutable", 364 + "version": "6.0.0", 365 + "hash": "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs=" 366 + }, 367 + { 368 + "pname": "System.Collections.NonGeneric", 369 + "version": "4.3.0", 370 + "hash": "sha256-8/yZmD4jjvq7m68SPkJZLBQ79jOTOyT5lyzX4SCYAx8=" 371 + }, 372 + { 373 + "pname": "System.Collections.Specialized", 374 + "version": "4.3.0", 375 + "hash": "sha256-QNg0JJNx+zXMQ26MJRPzH7THdtqjrNtGLUgaR1SdvOk=" 376 + }, 377 + { 378 + "pname": "System.CommandLine", 379 + "version": "2.0.0-beta4.22272.1", 380 + "hash": "sha256-zSO+CYnMH8deBHDI9DHhCPj79Ce3GOzHCyH1/TiHxcc=" 381 + }, 382 + { 383 + "pname": "System.ComponentModel", 384 + "version": "4.3.0", 385 + "hash": "sha256-i00uujMO4JEDIEPKLmdLY3QJ6vdSpw6Gh9oOzkFYBiU=" 386 + }, 387 + { 388 + "pname": "System.ComponentModel.Primitives", 389 + "version": "4.3.0", 390 + "hash": "sha256-IOMJleuIBppmP4ECB3uftbdcgL7CCd56+oAD/Sqrbus=" 391 + }, 392 + { 393 + "pname": "System.ComponentModel.TypeConverter", 394 + "version": "4.3.0", 395 + "hash": "sha256-PSDiPYt8PgTdTUBz+GH6lHCaM1YgfObneHnZsc8Fz54=" 396 + }, 397 + { 398 + "pname": "System.Configuration.ConfigurationManager", 399 + "version": "4.4.1", 400 + "hash": "sha256-4i8PUO1XTLfdUzeFxfHtR6xOP7mM3DD+ST9FviQl7zc=" 401 + }, 402 + { 403 + "pname": "System.Configuration.ConfigurationManager", 404 + "version": "6.0.0", 405 + "hash": "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms=" 406 + }, 407 + { 408 + "pname": "System.Diagnostics.Debug", 409 + "version": "4.3.0", 410 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 411 + }, 412 + { 413 + "pname": "System.Diagnostics.DiagnosticSource", 414 + "version": "7.0.2", 415 + "hash": "sha256-8Uawe7mWOQsDzMSAAP16nuGD1FRSajyS8q+cA++MJ8E=" 416 + }, 417 + { 418 + "pname": "System.Diagnostics.PerformanceCounter", 419 + "version": "6.0.1", 420 + "hash": "sha256-53t07yyRBb6sC4e3IjTp5fj44+p6JpX2zpr5/Bbf5Z4=" 421 + }, 422 + { 423 + "pname": "System.Drawing.Common", 424 + "version": "4.7.0", 425 + "hash": "sha256-D3qG+xAe78lZHvlco9gHK2TEAM370k09c6+SQi873Hk=" 426 + }, 427 + { 428 + "pname": "System.Drawing.Common", 429 + "version": "6.0.0", 430 + "hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo=" 431 + }, 432 + { 433 + "pname": "System.Formats.Asn1", 434 + "version": "5.0.0", 435 + "hash": "sha256-9nL3dN4w/dZ49W1pCkTjRqZm6Dh0mMVExNungcBHrKs=" 436 + }, 437 + { 438 + "pname": "System.Globalization", 439 + "version": "4.3.0", 440 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 441 + }, 442 + { 443 + "pname": "System.Globalization.Extensions", 444 + "version": "4.3.0", 445 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 446 + }, 447 + { 448 + "pname": "System.IO", 449 + "version": "4.3.0", 450 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 451 + }, 452 + { 453 + "pname": "System.IO.FileSystem.Primitives", 454 + "version": "4.3.0", 455 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 456 + }, 457 + { 458 + "pname": "System.IO.Pipelines", 459 + "version": "6.0.3", 460 + "hash": "sha256-v+FOmjRRKlDtDW6+TfmyMiiki010YGVTa0EwXu9X7ck=" 461 + }, 462 + { 463 + "pname": "System.Linq", 464 + "version": "4.3.0", 465 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 466 + }, 467 + { 468 + "pname": "System.Memory", 469 + "version": "4.5.3", 470 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 471 + }, 472 + { 473 + "pname": "System.Private.Uri", 474 + "version": "4.3.0", 475 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 476 + }, 477 + { 478 + "pname": "System.Reflection", 479 + "version": "4.3.0", 480 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 481 + }, 482 + { 483 + "pname": "System.Reflection.Emit.ILGeneration", 484 + "version": "4.7.0", 485 + "hash": "sha256-GUnQeGo/DtvZVQpFnESGq7lJcjB30/KnDY7Kd2G/ElE=" 486 + }, 487 + { 488 + "pname": "System.Reflection.Emit.Lightweight", 489 + "version": "4.7.0", 490 + "hash": "sha256-V0Wz/UUoNIHdTGS9e1TR89u58zJjo/wPUWw6VaVyclU=" 491 + }, 492 + { 493 + "pname": "System.Reflection.Extensions", 494 + "version": "4.3.0", 495 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 496 + }, 497 + { 498 + "pname": "System.Reflection.Metadata", 499 + "version": "6.0.0", 500 + "hash": "sha256-VJHXPjP05w6RE/Swu8wa2hilEWuji3g9bl/6lBMSC/Q=" 501 + }, 502 + { 503 + "pname": "System.Reflection.MetadataLoadContext", 504 + "version": "6.0.0", 505 + "hash": "sha256-82aeU8c4rnYPLL3ba1ho1fxfpYQt5qrSK5e6ES+OTsY=" 506 + }, 507 + { 508 + "pname": "System.Reflection.Primitives", 509 + "version": "4.3.0", 510 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 511 + }, 512 + { 513 + "pname": "System.Reflection.TypeExtensions", 514 + "version": "4.7.0", 515 + "hash": "sha256-GEtCGXwtOnkYejSV+Tfl+DqyGq5jTUaVyL9eMupMHBM=" 516 + }, 517 + { 518 + "pname": "System.Resources.ResourceManager", 519 + "version": "4.3.0", 520 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 521 + }, 522 + { 523 + "pname": "System.Runtime", 524 + "version": "4.3.0", 525 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 526 + }, 527 + { 528 + "pname": "System.Runtime.CompilerServices.Unsafe", 529 + "version": "6.0.0", 530 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 531 + }, 532 + { 533 + "pname": "System.Runtime.Extensions", 534 + "version": "4.3.0", 535 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 536 + }, 537 + { 538 + "pname": "System.Runtime.Handles", 539 + "version": "4.3.0", 540 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 541 + }, 542 + { 543 + "pname": "System.Runtime.InteropServices", 544 + "version": "4.3.0", 545 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 546 + }, 547 + { 548 + "pname": "System.Runtime.Loader", 549 + "version": "4.3.0", 550 + "hash": "sha256-syG1GTFjYbwX146BD/L7t55j+DZqpHDc6z28kdSNzx0=" 551 + }, 552 + { 553 + "pname": "System.Security.AccessControl", 554 + "version": "4.7.0", 555 + "hash": "sha256-/9ZCPIHLdhzq7OW4UKqTsR0O93jjHd6BRG1SRwgHE1g=" 556 + }, 557 + { 558 + "pname": "System.Security.AccessControl", 559 + "version": "6.0.0", 560 + "hash": "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg=" 561 + }, 562 + { 563 + "pname": "System.Security.Cryptography.Cng", 564 + "version": "5.0.0", 565 + "hash": "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo=" 566 + }, 567 + { 568 + "pname": "System.Security.Cryptography.Pkcs", 569 + "version": "5.0.0", 570 + "hash": "sha256-kq/tvYQSa24mKSvikFK2fKUAnexSL4PO4LkPppqtYkE=" 571 + }, 572 + { 573 + "pname": "System.Security.Cryptography.ProtectedData", 574 + "version": "4.4.0", 575 + "hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=" 576 + }, 577 + { 578 + "pname": "System.Security.Cryptography.ProtectedData", 579 + "version": "6.0.0", 580 + "hash": "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY=" 581 + }, 582 + { 583 + "pname": "System.Security.Permissions", 584 + "version": "4.7.0", 585 + "hash": "sha256-BGgXMLUi5rxVmmChjIhcXUxisJjvlNToXlyaIbUxw40=" 586 + }, 587 + { 588 + "pname": "System.Security.Permissions", 589 + "version": "6.0.0", 590 + "hash": "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs=" 591 + }, 592 + { 593 + "pname": "System.Security.Principal.Windows", 594 + "version": "4.7.0", 595 + "hash": "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg=" 596 + }, 597 + { 598 + "pname": "System.Text.Encoding", 599 + "version": "4.3.0", 600 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 601 + }, 602 + { 603 + "pname": "System.Text.Encoding.CodePages", 604 + "version": "4.4.0", 605 + "hash": "sha256-zD24blG8xhAcL9gC4UTGKetd8c3LO0nv22nKTp2Vfx0=" 606 + }, 607 + { 608 + "pname": "System.Text.Encodings.Web", 609 + "version": "7.0.0", 610 + "hash": "sha256-tF8qt9GZh/nPy0mEnj6nKLG4Lldpoi/D8xM5lv2CoYQ=" 611 + }, 612 + { 613 + "pname": "System.Text.Json", 614 + "version": "7.0.1", 615 + "hash": "sha256-wtk7fK3c/zAsaPB5oCmD86OfpPEJlGK3npr0mbM1ENM=" 616 + }, 617 + { 618 + "pname": "System.Threading", 619 + "version": "4.3.0", 620 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 621 + }, 622 + { 623 + "pname": "System.Threading.Tasks", 624 + "version": "4.3.0", 625 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 626 + }, 627 + { 628 + "pname": "System.Threading.Tasks.Extensions", 629 + "version": "4.5.4", 630 + "hash": "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng=" 631 + }, 632 + { 633 + "pname": "System.Windows.Extensions", 634 + "version": "4.7.0", 635 + "hash": "sha256-yW+GvQranReaqPw5ZFv+mSjByQ5y1pRLl05JIEf3tYU=" 636 + }, 637 + { 638 + "pname": "System.Windows.Extensions", 639 + "version": "6.0.0", 640 + "hash": "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM=" 641 + }, 642 + { 643 + "pname": "ZstdSharp.Port", 644 + "version": "0.7.1", 645 + "hash": "sha256-VzvKkpVjR7yKQyXhf6Ljf9ikMAQkbPWUiGFOeluanS4=" 646 + } 647 + ]
-652
pkgs/by-name/ts/tshock/deps.nix
··· 1 - # This file was automatically generated by passthru.fetch-deps. 2 - # Please dont edit it manually, your changes might get overwritten! 3 - # TODO: This format file is obsolete, consider migrating to JSON. 4 - 5 - { fetchNuGet }: 6 - [ 7 - (fetchNuGet { 8 - pname = "BCrypt.Net-Next"; 9 - version = "4.0.3"; 10 - hash = "sha256-BxXHAjIV2xBuRPUezzC+5jhaHiQhgnqTk1k1ko3D6Ds="; 11 - }) 12 - (fetchNuGet { 13 - pname = "BouncyCastle.Cryptography"; 14 - version = "2.2.1"; 15 - hash = "sha256-KDNexXG10Ub5G0M5BOvaFDByGPiSo0HG8GJWWB473Y0="; 16 - }) 17 - (fetchNuGet { 18 - pname = "GetText.NET"; 19 - version = "1.7.14"; 20 - hash = "sha256-IR27r7SZJFomN/bu4hO5SeQNGr67DQREIKdjsV7RICc="; 21 - }) 22 - (fetchNuGet { 23 - pname = "Google.Protobuf"; 24 - version = "3.25.1"; 25 - hash = "sha256-UfP/iIcARptUcTVptj/5JQ9Jz9AG3aj+iKotsetOnH0="; 26 - }) 27 - (fetchNuGet { 28 - pname = "K4os.Compression.LZ4"; 29 - version = "1.3.5"; 30 - hash = "sha256-M0FaJTS3XRBp5tV02BhrrOLVyzP39cQnpEVY8KGNads="; 31 - }) 32 - (fetchNuGet { 33 - pname = "K4os.Compression.LZ4.Streams"; 34 - version = "1.3.5"; 35 - hash = "sha256-BhR48hN/7z2NVgMw1MRnilpjAUNMZ0LDDhmVYnCXoCY="; 36 - }) 37 - (fetchNuGet { 38 - pname = "K4os.Hash.xxHash"; 39 - version = "1.0.8"; 40 - hash = "sha256-ILTWT8NFB7itGpDloJh65B5ZuWHrN2dOUQdm8gNy4W8="; 41 - }) 42 - (fetchNuGet { 43 - pname = "Microsoft.Data.Sqlite"; 44 - version = "6.0.11"; 45 - hash = "sha256-K+2ZSdaQ9XrAglqxjlIkwBj4NlHhV7FvHTfNCM11u7k="; 46 - }) 47 - (fetchNuGet { 48 - pname = "Microsoft.Data.Sqlite.Core"; 49 - version = "6.0.11"; 50 - hash = "sha256-ndL66WlBdAOU6V8k23d/T11r0s8gnBqbGWRZF9Bc7AU="; 51 - }) 52 - (fetchNuGet { 53 - pname = "Microsoft.NETCore.Platforms"; 54 - version = "1.1.0"; 55 - hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; 56 - }) 57 - (fetchNuGet { 58 - pname = "Microsoft.NETCore.Platforms"; 59 - version = "2.0.0"; 60 - hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro="; 61 - }) 62 - (fetchNuGet { 63 - pname = "Microsoft.NETCore.Platforms"; 64 - version = "3.1.0"; 65 - hash = "sha256-cnygditsEaU86bnYtIthNMymAHqaT/sf9Gjykhzqgb0="; 66 - }) 67 - (fetchNuGet { 68 - pname = "Microsoft.NETCore.Targets"; 69 - version = "1.1.0"; 70 - hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; 71 - }) 72 - (fetchNuGet { 73 - pname = "Microsoft.Win32.SystemEvents"; 74 - version = "4.7.0"; 75 - hash = "sha256-GHxnD1Plb32GJWVWSv0Y51Kgtlb+cdKgOYVBYZSgVF4="; 76 - }) 77 - (fetchNuGet { 78 - pname = "Microsoft.Win32.SystemEvents"; 79 - version = "6.0.0"; 80 - hash = "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA="; 81 - }) 82 - (fetchNuGet { 83 - pname = "ModFramework"; 84 - version = "1.1.7"; 85 - hash = "sha256-fKP5njd+98RYQ/1tqaT0vyIalZbcSUQdo50ucQ7F1hk="; 86 - }) 87 - (fetchNuGet { 88 - pname = "Mono.Cecil"; 89 - version = "0.11.4"; 90 - hash = "sha256-HrnRgFsOzfqAWw0fUxi/vkzZd8dMn5zueUeLQWA9qvs="; 91 - }) 92 - (fetchNuGet { 93 - pname = "MonoMod"; 94 - version = "22.5.1.1"; 95 - hash = "sha256-VB1xZV+MLAzB/e6uTKW2/IEy9Qzo6vzsxg5ot1bWiPs="; 96 - }) 97 - (fetchNuGet { 98 - pname = "MonoMod.RuntimeDetour"; 99 - version = "22.5.1.1"; 100 - hash = "sha256-ivxQJ6VWxzapaxkDvkRZvDQVgpfmFP1afRlx6yolBXM="; 101 - }) 102 - (fetchNuGet { 103 - pname = "MonoMod.RuntimeDetour.HookGen"; 104 - version = "22.5.1.1"; 105 - hash = "sha256-jKPij21zrysQO8MnzECpJKVAqil5ZdODyGZOx7j0dRg="; 106 - }) 107 - (fetchNuGet { 108 - pname = "MonoMod.Utils"; 109 - version = "22.5.1.1"; 110 - hash = "sha256-5m6C8anC0Z4Ihaxg6PTmXU7UOGiyzV+byZDO8+w/kl8="; 111 - }) 112 - (fetchNuGet { 113 - pname = "MySql.Data"; 114 - version = "8.4.0"; 115 - hash = "sha256-fbNsIdRJVbD7NfAKhDJWDq5m5vXcRGzl9DBzQytM4cA="; 116 - }) 117 - (fetchNuGet { 118 - pname = "Newtonsoft.Json"; 119 - version = "13.0.1"; 120 - hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; 121 - }) 122 - (fetchNuGet { 123 - pname = "NuGet.Common"; 124 - version = "6.3.1"; 125 - hash = "sha256-N6NMNL4d2IQsa/AEjyBesbStXTtR8kaL2e7aW7BdBvs="; 126 - }) 127 - (fetchNuGet { 128 - pname = "NuGet.Common"; 129 - version = "6.3.4"; 130 - hash = "sha256-GDzEyx9/wdVOUAri94uoDjChmfDnBhI90nBfzoHarts="; 131 - }) 132 - (fetchNuGet { 133 - pname = "NuGet.Configuration"; 134 - version = "6.3.1"; 135 - hash = "sha256-Ha04pwa124ptbBH/PBn45dBGpDIPKcMDd+Fil91g728="; 136 - }) 137 - (fetchNuGet { 138 - pname = "NuGet.Configuration"; 139 - version = "6.3.4"; 140 - hash = "sha256-qXIONIKcCIXJUmNJQs7MINQ18qIEUByTtW5xsORoZoc="; 141 - }) 142 - (fetchNuGet { 143 - pname = "NuGet.Frameworks"; 144 - version = "6.3.1"; 145 - hash = "sha256-FAzvIULDH4/MnutbHL3NUZwpzcBAu0qgSKitFSTlbJY="; 146 - }) 147 - (fetchNuGet { 148 - pname = "NuGet.Frameworks"; 149 - version = "6.3.4"; 150 - hash = "sha256-zqogus3HXQYSiqfnhVH2jd2VZXa+uTsmaw/uwD8dlgY="; 151 - }) 152 - (fetchNuGet { 153 - pname = "NuGet.Packaging"; 154 - version = "6.3.1"; 155 - hash = "sha256-YiHpqIbOmfYMtJKACeL2nJ5oRngHTPcLN8e4+6IBggs="; 156 - }) 157 - (fetchNuGet { 158 - pname = "NuGet.Packaging"; 159 - version = "6.3.4"; 160 - hash = "sha256-1LKM5vgfNKn8v2LcqialwmcynACISR57q13n7I2lQbU="; 161 - }) 162 - (fetchNuGet { 163 - pname = "NuGet.Protocol"; 164 - version = "6.3.1"; 165 - hash = "sha256-9dYUTW/oor665WSDG6mu7HILPVzdO2/2pgiEPb5NMF0="; 166 - }) 167 - (fetchNuGet { 168 - pname = "NuGet.Protocol"; 169 - version = "6.3.3"; 170 - hash = "sha256-xRW7RMwHqSvTUhSaSI5s2OTSUtcLvvi4dy3ncXIb9I4="; 171 - }) 172 - (fetchNuGet { 173 - pname = "NuGet.Resolver"; 174 - version = "6.3.1"; 175 - hash = "sha256-NAvCKWepFnswh5Q8ecGXhfki7i2lDahDCit9v706mrE="; 176 - }) 177 - (fetchNuGet { 178 - pname = "NuGet.Versioning"; 179 - version = "6.3.1"; 180 - hash = "sha256-wNM/C2Y+K+gjceaXD2nHuBkZZgshBMo9NQ9h9gz/RnQ="; 181 - }) 182 - (fetchNuGet { 183 - pname = "NuGet.Versioning"; 184 - version = "6.3.4"; 185 - hash = "sha256-6CMYVQeGfXu+xner3T3mgl/iQfXiYixoHizmrNA6bvQ="; 186 - }) 187 - (fetchNuGet { 188 - pname = "OTAPI.Upcoming"; 189 - version = "3.1.20"; 190 - hash = "sha256-ONMBrJG5hDmdkRQhyF0tHxd5M/NebsOkhQmnyfKVK0Y="; 191 - }) 192 - (fetchNuGet { 193 - pname = "runtime.any.System.Collections"; 194 - version = "4.3.0"; 195 - hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; 196 - }) 197 - (fetchNuGet { 198 - pname = "runtime.any.System.Globalization"; 199 - version = "4.3.0"; 200 - hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; 201 - }) 202 - (fetchNuGet { 203 - pname = "runtime.any.System.IO"; 204 - version = "4.3.0"; 205 - hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; 206 - }) 207 - (fetchNuGet { 208 - pname = "runtime.any.System.Reflection"; 209 - version = "4.3.0"; 210 - hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; 211 - }) 212 - (fetchNuGet { 213 - pname = "runtime.any.System.Reflection.Extensions"; 214 - version = "4.3.0"; 215 - hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; 216 - }) 217 - (fetchNuGet { 218 - pname = "runtime.any.System.Reflection.Primitives"; 219 - version = "4.3.0"; 220 - hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; 221 - }) 222 - (fetchNuGet { 223 - pname = "runtime.any.System.Resources.ResourceManager"; 224 - version = "4.3.0"; 225 - hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; 226 - }) 227 - (fetchNuGet { 228 - pname = "runtime.any.System.Runtime"; 229 - version = "4.3.0"; 230 - hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; 231 - }) 232 - (fetchNuGet { 233 - pname = "runtime.any.System.Runtime.Handles"; 234 - version = "4.3.0"; 235 - hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; 236 - }) 237 - (fetchNuGet { 238 - pname = "runtime.any.System.Runtime.InteropServices"; 239 - version = "4.3.0"; 240 - hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; 241 - }) 242 - (fetchNuGet { 243 - pname = "runtime.any.System.Text.Encoding"; 244 - version = "4.3.0"; 245 - hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; 246 - }) 247 - (fetchNuGet { 248 - pname = "runtime.any.System.Threading.Tasks"; 249 - version = "4.3.0"; 250 - hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; 251 - }) 252 - (fetchNuGet { 253 - pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 254 - version = "4.3.0"; 255 - hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; 256 - }) 257 - (fetchNuGet { 258 - pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 259 - version = "4.3.0"; 260 - hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; 261 - }) 262 - (fetchNuGet { 263 - pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 264 - version = "4.3.0"; 265 - hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; 266 - }) 267 - (fetchNuGet { 268 - pname = "runtime.native.System"; 269 - version = "4.3.0"; 270 - hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; 271 - }) 272 - (fetchNuGet { 273 - pname = "runtime.native.System.Security.Cryptography.OpenSsl"; 274 - version = "4.3.0"; 275 - hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; 276 - }) 277 - (fetchNuGet { 278 - pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 279 - version = "4.3.0"; 280 - hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; 281 - }) 282 - (fetchNuGet { 283 - pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 284 - version = "4.3.0"; 285 - hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; 286 - }) 287 - (fetchNuGet { 288 - pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 289 - version = "4.3.0"; 290 - hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; 291 - }) 292 - (fetchNuGet { 293 - pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 294 - version = "4.3.0"; 295 - hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; 296 - }) 297 - (fetchNuGet { 298 - pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 299 - version = "4.3.0"; 300 - hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; 301 - }) 302 - (fetchNuGet { 303 - pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 304 - version = "4.3.0"; 305 - hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; 306 - }) 307 - (fetchNuGet { 308 - pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 309 - version = "4.3.0"; 310 - hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; 311 - }) 312 - (fetchNuGet { 313 - pname = "runtime.unix.System.Diagnostics.Debug"; 314 - version = "4.3.0"; 315 - hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; 316 - }) 317 - (fetchNuGet { 318 - pname = "runtime.unix.System.Private.Uri"; 319 - version = "4.3.0"; 320 - hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; 321 - }) 322 - (fetchNuGet { 323 - pname = "runtime.unix.System.Runtime.Extensions"; 324 - version = "4.3.0"; 325 - hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; 326 - }) 327 - (fetchNuGet { 328 - pname = "SharpZipLib"; 329 - version = "1.4.2"; 330 - hash = "sha256-/giVqikworG2XKqfN9uLyjUSXr35zBuZ2FX2r8X/WUY="; 331 - }) 332 - (fetchNuGet { 333 - pname = "SQLitePCLRaw.bundle_e_sqlite3"; 334 - version = "2.0.6"; 335 - hash = "sha256-o6uXTtcxjb7H33I8UL4XLgx9y/f/iNeXx6z0NopR4MY="; 336 - }) 337 - (fetchNuGet { 338 - pname = "SQLitePCLRaw.core"; 339 - version = "2.0.6"; 340 - hash = "sha256-MXi9UEga37dJyFuMg0AVt8enKdr54KlOFT/ssMHzkfA="; 341 - }) 342 - (fetchNuGet { 343 - pname = "SQLitePCLRaw.lib.e_sqlite3"; 344 - version = "2.0.6"; 345 - hash = "sha256-o68At523MDwLEuRxjM+4EiydK4ITSFyc9R0zGmBGZ5g="; 346 - }) 347 - (fetchNuGet { 348 - pname = "SQLitePCLRaw.provider.e_sqlite3"; 349 - version = "2.0.6"; 350 - hash = "sha256-308v2h3rvcPSsR9F+yFdJC1QEHgOQtuVxTMs5j3ODzI="; 351 - }) 352 - (fetchNuGet { 353 - pname = "Steamworks.NET"; 354 - version = "20.1.0"; 355 - hash = "sha256-vt1UVbH4mHGPm7hTW2wKRrSzaFaHz9ZSuiaYeOhs6Ws="; 356 - }) 357 - (fetchNuGet { 358 - pname = "System.Buffers"; 359 - version = "4.5.1"; 360 - hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; 361 - }) 362 - (fetchNuGet { 363 - pname = "System.Collections"; 364 - version = "4.3.0"; 365 - hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; 366 - }) 367 - (fetchNuGet { 368 - pname = "System.Collections.Immutable"; 369 - version = "6.0.0"; 370 - hash = "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs="; 371 - }) 372 - (fetchNuGet { 373 - pname = "System.Collections.NonGeneric"; 374 - version = "4.3.0"; 375 - hash = "sha256-8/yZmD4jjvq7m68SPkJZLBQ79jOTOyT5lyzX4SCYAx8="; 376 - }) 377 - (fetchNuGet { 378 - pname = "System.Collections.Specialized"; 379 - version = "4.3.0"; 380 - hash = "sha256-QNg0JJNx+zXMQ26MJRPzH7THdtqjrNtGLUgaR1SdvOk="; 381 - }) 382 - (fetchNuGet { 383 - pname = "System.CommandLine"; 384 - version = "2.0.0-beta4.22272.1"; 385 - hash = "sha256-zSO+CYnMH8deBHDI9DHhCPj79Ce3GOzHCyH1/TiHxcc="; 386 - }) 387 - (fetchNuGet { 388 - pname = "System.ComponentModel"; 389 - version = "4.3.0"; 390 - hash = "sha256-i00uujMO4JEDIEPKLmdLY3QJ6vdSpw6Gh9oOzkFYBiU="; 391 - }) 392 - (fetchNuGet { 393 - pname = "System.ComponentModel.Primitives"; 394 - version = "4.3.0"; 395 - hash = "sha256-IOMJleuIBppmP4ECB3uftbdcgL7CCd56+oAD/Sqrbus="; 396 - }) 397 - (fetchNuGet { 398 - pname = "System.ComponentModel.TypeConverter"; 399 - version = "4.3.0"; 400 - hash = "sha256-PSDiPYt8PgTdTUBz+GH6lHCaM1YgfObneHnZsc8Fz54="; 401 - }) 402 - (fetchNuGet { 403 - pname = "System.Configuration.ConfigurationManager"; 404 - version = "4.4.1"; 405 - hash = "sha256-4i8PUO1XTLfdUzeFxfHtR6xOP7mM3DD+ST9FviQl7zc="; 406 - }) 407 - (fetchNuGet { 408 - pname = "System.Configuration.ConfigurationManager"; 409 - version = "6.0.0"; 410 - hash = "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms="; 411 - }) 412 - (fetchNuGet { 413 - pname = "System.Diagnostics.Debug"; 414 - version = "4.3.0"; 415 - hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; 416 - }) 417 - (fetchNuGet { 418 - pname = "System.Diagnostics.DiagnosticSource"; 419 - version = "7.0.2"; 420 - hash = "sha256-8Uawe7mWOQsDzMSAAP16nuGD1FRSajyS8q+cA++MJ8E="; 421 - }) 422 - (fetchNuGet { 423 - pname = "System.Diagnostics.PerformanceCounter"; 424 - version = "6.0.1"; 425 - hash = "sha256-53t07yyRBb6sC4e3IjTp5fj44+p6JpX2zpr5/Bbf5Z4="; 426 - }) 427 - (fetchNuGet { 428 - pname = "System.Drawing.Common"; 429 - version = "4.7.0"; 430 - hash = "sha256-D3qG+xAe78lZHvlco9gHK2TEAM370k09c6+SQi873Hk="; 431 - }) 432 - (fetchNuGet { 433 - pname = "System.Drawing.Common"; 434 - version = "6.0.0"; 435 - hash = "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo="; 436 - }) 437 - (fetchNuGet { 438 - pname = "System.Formats.Asn1"; 439 - version = "5.0.0"; 440 - hash = "sha256-9nL3dN4w/dZ49W1pCkTjRqZm6Dh0mMVExNungcBHrKs="; 441 - }) 442 - (fetchNuGet { 443 - pname = "System.Globalization"; 444 - version = "4.3.0"; 445 - hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; 446 - }) 447 - (fetchNuGet { 448 - pname = "System.Globalization.Extensions"; 449 - version = "4.3.0"; 450 - hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; 451 - }) 452 - (fetchNuGet { 453 - pname = "System.IO"; 454 - version = "4.3.0"; 455 - hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; 456 - }) 457 - (fetchNuGet { 458 - pname = "System.IO.FileSystem.Primitives"; 459 - version = "4.3.0"; 460 - hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; 461 - }) 462 - (fetchNuGet { 463 - pname = "System.IO.Pipelines"; 464 - version = "6.0.3"; 465 - hash = "sha256-v+FOmjRRKlDtDW6+TfmyMiiki010YGVTa0EwXu9X7ck="; 466 - }) 467 - (fetchNuGet { 468 - pname = "System.Linq"; 469 - version = "4.3.0"; 470 - hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; 471 - }) 472 - (fetchNuGet { 473 - pname = "System.Memory"; 474 - version = "4.5.3"; 475 - hash = "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk="; 476 - }) 477 - (fetchNuGet { 478 - pname = "System.Private.Uri"; 479 - version = "4.3.0"; 480 - hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; 481 - }) 482 - (fetchNuGet { 483 - pname = "System.Reflection"; 484 - version = "4.3.0"; 485 - hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; 486 - }) 487 - (fetchNuGet { 488 - pname = "System.Reflection.Emit.ILGeneration"; 489 - version = "4.7.0"; 490 - hash = "sha256-GUnQeGo/DtvZVQpFnESGq7lJcjB30/KnDY7Kd2G/ElE="; 491 - }) 492 - (fetchNuGet { 493 - pname = "System.Reflection.Emit.Lightweight"; 494 - version = "4.7.0"; 495 - hash = "sha256-V0Wz/UUoNIHdTGS9e1TR89u58zJjo/wPUWw6VaVyclU="; 496 - }) 497 - (fetchNuGet { 498 - pname = "System.Reflection.Extensions"; 499 - version = "4.3.0"; 500 - hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; 501 - }) 502 - (fetchNuGet { 503 - pname = "System.Reflection.Metadata"; 504 - version = "6.0.0"; 505 - hash = "sha256-VJHXPjP05w6RE/Swu8wa2hilEWuji3g9bl/6lBMSC/Q="; 506 - }) 507 - (fetchNuGet { 508 - pname = "System.Reflection.MetadataLoadContext"; 509 - version = "6.0.0"; 510 - hash = "sha256-82aeU8c4rnYPLL3ba1ho1fxfpYQt5qrSK5e6ES+OTsY="; 511 - }) 512 - (fetchNuGet { 513 - pname = "System.Reflection.Primitives"; 514 - version = "4.3.0"; 515 - hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; 516 - }) 517 - (fetchNuGet { 518 - pname = "System.Reflection.TypeExtensions"; 519 - version = "4.7.0"; 520 - hash = "sha256-GEtCGXwtOnkYejSV+Tfl+DqyGq5jTUaVyL9eMupMHBM="; 521 - }) 522 - (fetchNuGet { 523 - pname = "System.Resources.ResourceManager"; 524 - version = "4.3.0"; 525 - hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; 526 - }) 527 - (fetchNuGet { 528 - pname = "System.Runtime"; 529 - version = "4.3.0"; 530 - hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; 531 - }) 532 - (fetchNuGet { 533 - pname = "System.Runtime.CompilerServices.Unsafe"; 534 - version = "6.0.0"; 535 - hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; 536 - }) 537 - (fetchNuGet { 538 - pname = "System.Runtime.Extensions"; 539 - version = "4.3.0"; 540 - hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; 541 - }) 542 - (fetchNuGet { 543 - pname = "System.Runtime.Handles"; 544 - version = "4.3.0"; 545 - hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; 546 - }) 547 - (fetchNuGet { 548 - pname = "System.Runtime.InteropServices"; 549 - version = "4.3.0"; 550 - hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; 551 - }) 552 - (fetchNuGet { 553 - pname = "System.Runtime.Loader"; 554 - version = "4.3.0"; 555 - hash = "sha256-syG1GTFjYbwX146BD/L7t55j+DZqpHDc6z28kdSNzx0="; 556 - }) 557 - (fetchNuGet { 558 - pname = "System.Security.AccessControl"; 559 - version = "4.7.0"; 560 - hash = "sha256-/9ZCPIHLdhzq7OW4UKqTsR0O93jjHd6BRG1SRwgHE1g="; 561 - }) 562 - (fetchNuGet { 563 - pname = "System.Security.AccessControl"; 564 - version = "6.0.0"; 565 - hash = "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg="; 566 - }) 567 - (fetchNuGet { 568 - pname = "System.Security.Cryptography.Cng"; 569 - version = "5.0.0"; 570 - hash = "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo="; 571 - }) 572 - (fetchNuGet { 573 - pname = "System.Security.Cryptography.Pkcs"; 574 - version = "5.0.0"; 575 - hash = "sha256-kq/tvYQSa24mKSvikFK2fKUAnexSL4PO4LkPppqtYkE="; 576 - }) 577 - (fetchNuGet { 578 - pname = "System.Security.Cryptography.ProtectedData"; 579 - version = "4.4.0"; 580 - hash = "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE="; 581 - }) 582 - (fetchNuGet { 583 - pname = "System.Security.Cryptography.ProtectedData"; 584 - version = "6.0.0"; 585 - hash = "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY="; 586 - }) 587 - (fetchNuGet { 588 - pname = "System.Security.Permissions"; 589 - version = "4.7.0"; 590 - hash = "sha256-BGgXMLUi5rxVmmChjIhcXUxisJjvlNToXlyaIbUxw40="; 591 - }) 592 - (fetchNuGet { 593 - pname = "System.Security.Permissions"; 594 - version = "6.0.0"; 595 - hash = "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs="; 596 - }) 597 - (fetchNuGet { 598 - pname = "System.Security.Principal.Windows"; 599 - version = "4.7.0"; 600 - hash = "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg="; 601 - }) 602 - (fetchNuGet { 603 - pname = "System.Text.Encoding"; 604 - version = "4.3.0"; 605 - hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; 606 - }) 607 - (fetchNuGet { 608 - pname = "System.Text.Encoding.CodePages"; 609 - version = "4.4.0"; 610 - hash = "sha256-zD24blG8xhAcL9gC4UTGKetd8c3LO0nv22nKTp2Vfx0="; 611 - }) 612 - (fetchNuGet { 613 - pname = "System.Text.Encodings.Web"; 614 - version = "7.0.0"; 615 - hash = "sha256-tF8qt9GZh/nPy0mEnj6nKLG4Lldpoi/D8xM5lv2CoYQ="; 616 - }) 617 - (fetchNuGet { 618 - pname = "System.Text.Json"; 619 - version = "7.0.1"; 620 - hash = "sha256-wtk7fK3c/zAsaPB5oCmD86OfpPEJlGK3npr0mbM1ENM="; 621 - }) 622 - (fetchNuGet { 623 - pname = "System.Threading"; 624 - version = "4.3.0"; 625 - hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; 626 - }) 627 - (fetchNuGet { 628 - pname = "System.Threading.Tasks"; 629 - version = "4.3.0"; 630 - hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; 631 - }) 632 - (fetchNuGet { 633 - pname = "System.Threading.Tasks.Extensions"; 634 - version = "4.5.4"; 635 - hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; 636 - }) 637 - (fetchNuGet { 638 - pname = "System.Windows.Extensions"; 639 - version = "4.7.0"; 640 - hash = "sha256-yW+GvQranReaqPw5ZFv+mSjByQ5y1pRLl05JIEf3tYU="; 641 - }) 642 - (fetchNuGet { 643 - pname = "System.Windows.Extensions"; 644 - version = "6.0.0"; 645 - hash = "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM="; 646 - }) 647 - (fetchNuGet { 648 - pname = "ZstdSharp.Port"; 649 - version = "0.7.1"; 650 - hash = "sha256-VzvKkpVjR7yKQyXhf6Ljf9ikMAQkbPWUiGFOeluanS4="; 651 - }) 652 - ]
···
+1 -1
pkgs/by-name/ts/tshock/package.nix
··· 32 doCheck = false; # The same. 33 34 nugetSource = "https://api.nuget.org/v3/index.json"; 35 - nugetDeps = ./deps.nix; 36 37 meta = with lib; { 38 homepage = "https://github.com/Pryaxis/TShock";
··· 32 doCheck = false; # The same. 33 34 nugetSource = "https://api.nuget.org/v3/index.json"; 35 + nugetDeps = ./deps.json; 36 37 meta = with lib; { 38 homepage = "https://github.com/Pryaxis/TShock";
+2 -2
pkgs/by-name/tu/turso-cli/package.nix
··· 8 }: 9 buildGoModule rec { 10 pname = "turso-cli"; 11 - version = "1.0.11"; 12 13 src = fetchFromGitHub { 14 owner = "tursodatabase"; 15 repo = "turso-cli"; 16 rev = "v${version}"; 17 - hash = "sha256-Is1WlwMLkXaKxHUzAGSJN/xVFC7ZQ3C/TS6McAn7ACQ="; 18 }; 19 20 vendorHash = "sha256-tBO21IgUczwMgrEyV7scV3YTY898lYHASaLeXqvBopU=";
··· 8 }: 9 buildGoModule rec { 10 pname = "turso-cli"; 11 + version = "1.0.12"; 12 13 src = fetchFromGitHub { 14 owner = "tursodatabase"; 15 repo = "turso-cli"; 16 rev = "v${version}"; 17 + hash = "sha256-H7ZxU9WtZdM30mepIEy/9PJP0015kFYXAgrqBGSd5u0="; 18 }; 19 20 vendorHash = "sha256-tBO21IgUczwMgrEyV7scV3YTY898lYHASaLeXqvBopU=";
+16
pkgs/by-name/wc/wcc/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "rust_demangle_lib" 7 + version = "0.1.0" 8 + dependencies = [ 9 + "rustc-demangle", 10 + ] 11 + 12 + [[package]] 13 + name = "rustc-demangle" 14 + version = "0.1.26" 15 + source = "registry+https://github.com/rust-lang/crates.io-index" 16 + checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
+19 -9
pkgs/by-name/wc/wcc/package.nix
··· 1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 capstone, 6 libbfd, 7 libelf, ··· 9 readline, 10 }: 11 12 - stdenv.mkDerivation { 13 pname = "wcc"; 14 - version = "0.0.7-unstable-2025-04-30"; 15 16 src = fetchFromGitHub { 17 owner = "endrazine"; 18 repo = "wcc"; 19 - rev = "8cbb49345d9596dfd37bd1b681753aacaab96475"; 20 - hash = "sha256-TYYtnMlrp/wbrTmwd3n90Uni7WE54gK6zKSBg4X9ZfA="; 21 deepClone = true; 22 fetchSubmodules = true; 23 }; 24 25 buildInputs = [ 26 capstone 27 libbfd ··· 31 ]; 32 33 postPatch = '' 34 sed -i src/wsh/include/libwitch/wsh.h src/wsh/scripts/INDEX \ 35 -e "s#/usr/share/wcc#$out/share/wcc#" 36 37 sed -i -e '/stropts.h>/d' src/wsh/include/libwitch/wsh.h 38 39 - sed -i '/wsh-`uname -m`.*-static/d' src/wsh/Makefile 40 ''; 41 42 env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; ··· 61 62 enableParallelBuilding = true; 63 64 - meta = with lib; { 65 homepage = "https://github.com/endrazine/wcc"; 66 description = "Witchcraft compiler collection: tools to convert and script ELF files"; 67 - license = licenses.mit; 68 platforms = [ 69 "x86_64-linux" 70 "aarch64-linux" 71 ]; 72 - maintainers = with maintainers; [ 73 orivej 74 DieracDelta 75 ]; 76 }; 77 - }
··· 1 { 2 lib, 3 stdenv, 4 + rustPlatform, 5 fetchFromGitHub, 6 + cargo, 7 capstone, 8 libbfd, 9 libelf, ··· 11 readline, 12 }: 13 14 + stdenv.mkDerivation (finalAttrs: { 15 pname = "wcc"; 16 + version = "0.0.11"; 17 18 src = fetchFromGitHub { 19 owner = "endrazine"; 20 repo = "wcc"; 21 + tag = "v${finalAttrs.version}"; 22 + hash = "sha256-hyelDAsE3IFvUxBqttYW7QmM6NPEa6pOREmawFjW2Q8="; 23 deepClone = true; 24 fetchSubmodules = true; 25 }; 26 27 + cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; }; 28 + 29 + nativeBuildInputs = [ 30 + cargo 31 + rustPlatform.cargoSetupHook 32 + ]; 33 + 34 buildInputs = [ 35 capstone 36 libbfd ··· 40 ]; 41 42 postPatch = '' 43 + cp ${./Cargo.lock} Cargo.lock 44 sed -i src/wsh/include/libwitch/wsh.h src/wsh/scripts/INDEX \ 45 -e "s#/usr/share/wcc#$out/share/wcc#" 46 47 sed -i -e '/stropts.h>/d' src/wsh/include/libwitch/wsh.h 48 49 + sed -i '/wsh-static/d' src/wsh/Makefile 50 ''; 51 52 env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; ··· 71 72 enableParallelBuilding = true; 73 74 + meta = { 75 homepage = "https://github.com/endrazine/wcc"; 76 description = "Witchcraft compiler collection: tools to convert and script ELF files"; 77 + license = lib.licenses.mit; 78 platforms = [ 79 "x86_64-linux" 80 "aarch64-linux" 81 ]; 82 + maintainers = with lib.maintainers; [ 83 orivej 84 DieracDelta 85 ]; 86 }; 87 + })
+9 -9
pkgs/by-name/we/wev/package.nix
··· 10 libxkbcommon, 11 }: 12 13 - stdenv.mkDerivation { 14 pname = "wev"; 15 - version = "1.0.0-unstable-2022-09-14"; 16 17 src = fetchFromSourcehut { 18 owner = "~sircmpwn"; 19 repo = "wev"; 20 - rev = "83de8e931ab04ce3322a58b359d8effa7901b21c"; 21 - sha256 = "sha256-lNFgjRXO/ZbcXJF06DykPoJJ6/a8ZfVA6g95i+rNdWs="; 22 }; 23 24 strictDeps = true; ··· 39 40 installFlags = [ "PREFIX=$(out)" ]; 41 42 - meta = with lib; { 43 homepage = "https://git.sr.ht/~sircmpwn/wev"; 44 description = "Wayland event viewer"; 45 longDescription = '' 46 This is a tool for debugging events on a Wayland window, analogous to the 47 X11 tool xev. 48 ''; 49 - license = licenses.mit; 50 - maintainers = with maintainers; [ rewine ]; 51 - platforms = platforms.linux; 52 mainProgram = "wev"; 53 }; 54 - }
··· 10 libxkbcommon, 11 }: 12 13 + stdenv.mkDerivation (finalAttrs: { 14 pname = "wev"; 15 + version = "1.1.0"; 16 17 src = fetchFromSourcehut { 18 owner = "~sircmpwn"; 19 repo = "wev"; 20 + rev = finalAttrs.version; 21 + hash = "sha256-0ZA44dMDuVYfplfutOfI2EdPNakE9KnOuRfk+CEDCRk="; 22 }; 23 24 strictDeps = true; ··· 39 40 installFlags = [ "PREFIX=$(out)" ]; 41 42 + meta = { 43 homepage = "https://git.sr.ht/~sircmpwn/wev"; 44 description = "Wayland event viewer"; 45 longDescription = '' 46 This is a tool for debugging events on a Wayland window, analogous to the 47 X11 tool xev. 48 ''; 49 + license = lib.licenses.mit; 50 + maintainers = with lib.maintainers; [ rewine ]; 51 + platforms = lib.platforms.linux; 52 mainProgram = "wev"; 53 }; 54 + })
+3 -3
pkgs/by-name/wg/wgpu-native/package.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "wgpu-native"; 14 - version = "25.0.2.1"; 15 16 src = fetchFromGitHub { 17 owner = "gfx-rs"; 18 repo = "wgpu-native"; 19 tag = "v${version}"; 20 - hash = "sha256-w0qzJxdJioiQAmsh56vLaR34TjaUK/qqHhWcvO93IQ8="; 21 fetchSubmodules = true; 22 }; 23 ··· 26 "dev" 27 ]; 28 29 - cargoHash = "sha256-iOnz//eHQ6WRPWOGcKOXyuwZS9WcbJWslRAz8yDamn8="; 30 31 nativeBuildInputs = [ 32 rustPlatform.bindgenHook
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "wgpu-native"; 14 + version = "25.0.2.2"; 15 16 src = fetchFromGitHub { 17 owner = "gfx-rs"; 18 repo = "wgpu-native"; 19 tag = "v${version}"; 20 + hash = "sha256-ihA1pfTW6EHpihL4IUv7YTsU1SLkxEM6wUDr7NiHmLc="; 21 fetchSubmodules = true; 22 }; 23 ··· 26 "dev" 27 ]; 28 29 + cargoHash = "sha256-8Axm9gIX6yW0ScV5SjB6AWlmlIeGuQYonWsGwcIH2os="; 30 31 nativeBuildInputs = [ 32 rustPlatform.bindgenHook
+4 -1
pkgs/by-name/wi/widevine-cdm/meta.nix
··· 3 homepage = "https://www.widevine.com"; 4 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 5 license = lib.licenses.unfree; 6 - maintainers = with lib.maintainers; [ jlamur ]; 7 platforms = lib.map (lib.removeSuffix ".nix") ( 8 lib.filter (name: name != "meta.nix" && name != "package.nix") ( 9 builtins.attrNames (builtins.readDir ./.)
··· 3 homepage = "https://www.widevine.com"; 4 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 5 license = lib.licenses.unfree; 6 + maintainers = with lib.maintainers; [ 7 + jlamur 8 + bearfm 9 + ]; 10 platforms = lib.map (lib.removeSuffix ".nix") ( 11 lib.filter (name: name != "meta.nix" && name != "package.nix") ( 12 builtins.attrNames (builtins.readDir ./.)
+11 -11
pkgs/by-name/ya/yazi/package.nix
··· 58 null 59 else 60 runCommand "YAZI_CONFIG_HOME" { } '' 61 - mkdir -p $out 62 ${lib.concatMapStringsSep "\n" ( 63 name: 64 lib.optionalString (settings ? ${name} && settings.${name} != { }) '' 65 - ln -s ${settingsFormat.generate "${name}.toml" settings.${name}} $out/${name}.toml 66 '' 67 ) files} 68 69 - mkdir $out/plugins 70 ${lib.optionalString (plugins != { }) '' 71 ${lib.concatStringsSep "\n" ( 72 lib.mapAttrsToList ( 73 name: value: 74 - "ln -s ${value} $out/plugins/${if lib.hasSuffix ".yazi" name then name else "${name}.yazi"}" 75 ) plugins 76 )} 77 ''} 78 79 - mkdir $out/flavors 80 ${lib.optionalString (flavors != { }) '' 81 ${lib.concatStringsSep "\n" ( 82 lib.mapAttrsToList ( 83 name: value: 84 - "ln -s ${value} $out/flavors/${if lib.hasSuffix ".yazi" name then name else "${name}.yazi"}" 85 ) flavors 86 )} 87 ''} 88 89 90 - ${lib.optionalString (initLua != null) "ln -s ${initLua} $out/init.lua"} 91 ''; 92 in 93 runCommand yazi-unwrapped.name ··· 97 nativeBuildInputs = [ makeWrapper ]; 98 } 99 '' 100 - mkdir -p $out/bin 101 - ln -s ${yazi-unwrapped}/share $out/share 102 - ln -s ${yazi-unwrapped}/bin/ya $out/bin/ya 103 - makeWrapper ${yazi-unwrapped}/bin/yazi $out/bin/yazi \ 104 --prefix PATH : ${lib.makeBinPath runtimePaths} \ 105 ${lib.optionalString (configHome != null) "--set YAZI_CONFIG_HOME ${configHome}"} 106 ''
··· 58 null 59 else 60 runCommand "YAZI_CONFIG_HOME" { } '' 61 + mkdir -p "$out" 62 ${lib.concatMapStringsSep "\n" ( 63 name: 64 lib.optionalString (settings ? ${name} && settings.${name} != { }) '' 65 + ln -s ${settingsFormat.generate "${name}.toml" settings.${name}} "$out/${name}.toml" 66 '' 67 ) files} 68 69 + mkdir "$out/plugins" 70 ${lib.optionalString (plugins != { }) '' 71 ${lib.concatStringsSep "\n" ( 72 lib.mapAttrsToList ( 73 name: value: 74 + ''ln -s ${value} "$out/plugins/${if lib.hasSuffix ".yazi" name then name else "${name}.yazi"}"'' 75 ) plugins 76 )} 77 ''} 78 79 + mkdir "$out/flavors" 80 ${lib.optionalString (flavors != { }) '' 81 ${lib.concatStringsSep "\n" ( 82 lib.mapAttrsToList ( 83 name: value: 84 + ''ln -s ${value} "$out/flavors/${if lib.hasSuffix ".yazi" name then name else "${name}.yazi"}"'' 85 ) flavors 86 )} 87 ''} 88 89 90 + ${lib.optionalString (initLua != null) ''ln -s "${initLua}" "$out/init.lua"''} 91 ''; 92 in 93 runCommand yazi-unwrapped.name ··· 97 nativeBuildInputs = [ makeWrapper ]; 98 } 99 '' 100 + mkdir -p "$out/bin" 101 + ln -s "${yazi-unwrapped}/share" "$out/share" 102 + ln -s ${lib.getExe' yazi-unwrapped "ya"} "$out/bin/ya" 103 + makeWrapper ${lib.getExe' yazi-unwrapped "yazi"} "$out/bin/yazi" \ 104 --prefix PATH : ${lib.makeBinPath runtimePaths} \ 105 ${lib.optionalString (configHome != null) "--set YAZI_CONFIG_HOME ${configHome}"} 106 ''
-101
pkgs/by-name/ye/yelp/cve-2025-3155.patch
··· 1 - diff --git a/data/xslt/mal2html.xsl.in b/data/xslt/mal2html.xsl.in 2 - index 9e44b734..0a74da55 100644 3 - --- a/data/xslt/mal2html.xsl.in 4 - +++ b/data/xslt/mal2html.xsl.in 5 - @@ -19,6 +19,11 @@ 6 - <xsl:param name="mal.link.prefix" select="'xref:'"/> 7 - <xsl:param name="mal.link.extension" select="''"/> 8 - 9 - +<xsl:template name="html.head.top.custom"> 10 - + <xsl:param name="node" select="."/> 11 - + <meta http-equiv="Content-Security-Policy" content="default-src bogus-ghelp: bogus-gnome-help: bogus-help: bogus-help-list: bogus-info: bogus-man: ; script-src 'nonce-{$html.csp.nonce}'; style-src 'nonce-{$html.csp.nonce}'; "/> 12 - +</xsl:template> 13 - + 14 - <xsl:template name="mal.link.target.custom"> 15 - <xsl:param name="node" select="."/> 16 - <xsl:param name="action" select="$node/@action"/> 17 - diff --git a/data/xslt/man2html.xsl.in b/data/xslt/man2html.xsl.in 18 - index 676ce3eb..56bc1f5c 100644 19 - --- a/data/xslt/man2html.xsl.in 20 - +++ b/data/xslt/man2html.xsl.in 21 - @@ -131,7 +131,7 @@ 22 - the correct styling and a single character which we measure the 23 - width of and update each sheet as required. 24 - --> 25 - -<script type="text/javascript" language="javascript"> 26 - +<script type="text/javascript" language="javascript" nonce="{$html.csp.nonce}"> 27 - <xsl:text> 28 - $(document).ready (function () { 29 - var div = document.getElementById("invisible-char"); 30 - diff --git a/data/xslt/yelp-common.xsl.in b/data/xslt/yelp-common.xsl.in 31 - index 0c1ec9bb..421fc02d 100644 32 - --- a/data/xslt/yelp-common.xsl.in 33 - +++ b/data/xslt/yelp-common.xsl.in 34 - @@ -15,6 +15,13 @@ 35 - <xsl:param name="html.syntax.highlight" select="true()"/> 36 - <xsl:param name="html.js.root" select="'file://@XSL_JSDIR@/'"/> 37 - 38 - +<xsl:param name="html.csp.nonce" select="yelp:generate_nonce()"/> 39 - + 40 - +<xsl:template name="html.head.top.custom"> 41 - + <xsl:param name="node" select="."/> 42 - + <meta http-equiv="Content-Security-Policy" content="default-src bogus-ghelp: bogus-gnome-help: bogus-help: bogus-help-list: bogus-info: bogus-man: ; script-src 'nonce-{$html.csp.nonce}'; style-src 'unsafe-inline'; "/> 43 - +</xsl:template> 44 - + 45 - <xsl:template name="html.js.mathjax"> 46 - <xsl:param name="node" select="."/> 47 - <xsl:if test="$node//mml:*[1]"> 48 - diff --git a/libyelp/yelp-transform.c b/libyelp/yelp-transform.c 49 - index e74eb463..2ce1d05b 100644 50 - --- a/libyelp/yelp-transform.c 51 - +++ b/libyelp/yelp-transform.c 52 - @@ -71,6 +71,8 @@ static void xslt_yelp_cache (xsltTransformContextPtr ctxt, 53 - xsltStylePreCompPtr comp); 54 - static void xslt_yelp_aux (xmlXPathParserContextPtr ctxt, 55 - int nargs); 56 - +static void xslt_yelp_generate_nonce (xmlXPathParserContextPtr ctxt, 57 - + int nargs); 58 - 59 - enum { 60 - PROP_0, 61 - @@ -412,6 +414,10 @@ transform_run (YelpTransform *transform) 62 - BAD_CAST "input", 63 - BAD_CAST YELP_NAMESPACE, 64 - (xmlXPathFunction) xslt_yelp_aux); 65 - + xsltRegisterExtFunction (priv->context, 66 - + BAD_CAST "generate_nonce", 67 - + BAD_CAST YELP_NAMESPACE, 68 - + (xmlXPathFunction) xslt_yelp_generate_nonce); 69 - 70 - priv->output = xsltApplyStylesheetUser (priv->stylesheet, 71 - priv->input, 72 - @@ -607,3 +613,16 @@ xslt_yelp_aux (xmlXPathParserContextPtr ctxt, int nargs) 73 - xsltExtensionInstructionResultRegister (tctxt, ret); 74 - valuePush (ctxt, ret); 75 - } 76 - + 77 - +static void 78 - +xslt_yelp_generate_nonce (xmlXPathParserContextPtr ctxt, int nargs) 79 - +{ 80 - + GRand* rand; 81 - + gchar* nonce_str; 82 - + 83 - + rand = g_rand_new (); 84 - + nonce_str = g_strdup_printf("%08x%08x", g_rand_int (rand), g_rand_int (rand)); 85 - + xmlXPathReturnString (ctxt, xmlStrdup ((xmlChar *) nonce_str)); 86 - + g_free(nonce_str); 87 - + g_rand_free(rand); 88 - +} 89 - diff --git a/libyelp/yelp-view.c b/libyelp/yelp-view.c 90 - index 32ae131e..d544c5df 100644 91 - --- a/libyelp/yelp-view.c 92 - +++ b/libyelp/yelp-view.c 93 - @@ -971,7 +971,7 @@ view_external_uri (YelpView *view, 94 - 95 - if (app_info) 96 - { 97 - - if (!strstr (g_app_info_get_executable (app_info), "yelp")) 98 - + if (!strstr (g_app_info_get_executable (app_info), "yelp") && !strstr (struri, "%3C") && !strstr (struri, "%3E")) 99 - { 100 - GList l; 101 -
···
+35 -30
pkgs/by-name/ye/yelp/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 gettext, 5 - fetchurl, 6 - webkitgtk_4_1, 7 pkg-config, 8 gtk3, 9 libhandy, 10 - glib, 11 - gnome, 12 - adwaita-icon-theme, 13 - sqlite, 14 - itstool, 15 libxml2, 16 libxslt, 17 - gst_all_1, 18 - wrapGAppsHook3, 19 yelp-xsl, 20 }: 21 22 - stdenv.mkDerivation rec { 23 pname = "yelp"; 24 - version = "42.2"; 25 26 src = fetchurl { 27 - url = "mirror://gnome/sources/yelp/${lib.versions.major version}/yelp-${version}.tar.xz"; 28 - hash = "sha256-osX9B4epCJxyLMZr0Phc33CI2HDntsyFeZ+OW/+erEs="; 29 }; 30 31 nativeBuildInputs = [ 32 - pkg-config 33 gettext 34 itstool 35 wrapGAppsHook3 36 ]; 37 38 buildInputs = [ 39 gtk3 40 libhandy 41 - glib 42 - webkitgtk_4_1 43 - sqlite 44 libxml2 45 libxslt 46 yelp-xsl 47 - adwaita-icon-theme 48 - gst_all_1.gst-plugins-base 49 - gst_all_1.gst-plugins-good 50 ]; 51 52 - patches = [ 53 - ./cve-2025-3155.patch 54 - ]; 55 56 passthru = { 57 updateScript = gnome.updateScript { ··· 59 }; 60 }; 61 62 - meta = with lib; { 63 homepage = "https://apps.gnome.org/Yelp/"; 64 - description = "Help viewer in Gnome"; 65 - teams = [ teams.gnome ]; 66 - license = licenses.gpl2; 67 - platforms = platforms.linux; 68 }; 69 - }
··· 1 { 2 + stdenv, 3 lib, 4 + fetchurl, 5 gettext, 6 + itstool, 7 + meson, 8 + ninja, 9 pkg-config, 10 + wrapGAppsHook3, 11 + bzip2, 12 + glib, 13 gtk3, 14 libhandy, 15 libxml2, 16 libxslt, 17 + sqlite, 18 + webkitgtk_4_1, 19 + xz, 20 yelp-xsl, 21 + gnome, 22 }: 23 24 + stdenv.mkDerivation (finalAttrs: { 25 pname = "yelp"; 26 + version = "42.3"; 27 28 src = fetchurl { 29 + url = "mirror://gnome/sources/yelp/${lib.versions.major finalAttrs.version}/yelp-${finalAttrs.version}.tar.xz"; 30 + hash = "sha256-JszEImeanmp6OqCD2Q/Ns0f18jAL4+AUMaMNDN0qiaM="; 31 }; 32 33 nativeBuildInputs = [ 34 gettext 35 itstool 36 + meson 37 + ninja 38 + pkg-config 39 wrapGAppsHook3 40 ]; 41 42 buildInputs = [ 43 + bzip2 44 + glib 45 gtk3 46 libhandy 47 libxml2 48 libxslt 49 + sqlite 50 + webkitgtk_4_1 51 + xz 52 yelp-xsl 53 ]; 54 55 + postPatch = '' 56 + chmod +x src/link-gnome-help.sh data/domains/gen_yelp_xml.sh 57 + patchShebangs src/link-gnome-help.sh 58 + patchShebangs data/domains/gen_yelp_xml.sh 59 + ''; 60 61 passthru = { 62 updateScript = gnome.updateScript { ··· 64 }; 65 }; 66 67 + meta = { 68 homepage = "https://apps.gnome.org/Yelp/"; 69 + description = "Help viewer for GNOME"; 70 + teams = [ lib.teams.gnome ]; 71 + license = lib.licenses.gpl2Plus; 72 + platforms = lib.platforms.linux; 73 }; 74 + })
+2 -2
pkgs/desktops/pantheon/apps/elementary-calculator/default.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "elementary-calculator"; 20 - version = "8.0.0"; 21 22 src = fetchFromGitHub { 23 owner = "elementary"; 24 repo = "calculator"; 25 rev = version; 26 - sha256 = "sha256-QEs83hSv9Kupj2p/OTnuPZsC8tdm+IqgpeObBVrPRas="; 27 }; 28 29 nativeBuildInputs = [
··· 17 18 stdenv.mkDerivation rec { 19 pname = "elementary-calculator"; 20 + version = "8.0.1"; 21 22 src = fetchFromGitHub { 23 owner = "elementary"; 24 repo = "calculator"; 25 rev = version; 26 + sha256 = "sha256-XBOe3v6lKoICgEh78JoVH0Ojs8tr5PxKHQGk63MX6pQ="; 27 }; 28 29 nativeBuildInputs = [
+2 -2
pkgs/development/interpreters/spidermonkey/115.nix
··· 1 import ./common.nix { 2 - version = "115.9.1"; 3 - hash = "sha512-nMrt4vzaE6B/mKIRC7j5nHMkYB1mv/MR8wcKZpV2oVmP4dfeLQBdcl0fRNvjk0qcD9C3lQ9gaGBH1M6NnYEjEA=="; 4 }
··· 1 import ./common.nix { 2 + version = "115.27.0"; 3 + hash = "sha512-owhm6oQaRPSQ/F7xoEDCbvT6zBGACf98zbJitUxbf3XXS0FqHlwB7rkAQ+GVeAnoClfts6yOY8F/H8NFBBEF8w=="; 4 }
+67
pkgs/development/libraries/qodeassist-plugin/default.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + cmake, 6 + pkg-config, 7 + qttools, 8 + ninja, 9 + cups, 10 + curl, 11 + libGL, 12 + qtbase, 13 + qt5compat, 14 + qtcreator, 15 + vulkan-headers, 16 + }: 17 + stdenv.mkDerivation (finalAttrs: { 18 + pname = "qodeassist-plugin"; 19 + version = "0.6.1"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "Palm1r"; 23 + repo = "QodeAssist"; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-+Yc8Vm8uFlMOFIGwuAgmJl6NtCQ7ETbxabFdXJqoVXw="; 26 + }; 27 + 28 + dontWrapQtApps = true; 29 + 30 + nativeBuildInputs = [ 31 + cmake 32 + pkg-config 33 + ninja 34 + (qttools.override { withClang = true; }) 35 + ]; 36 + 37 + buildInputs = [ 38 + cups 39 + curl 40 + libGL 41 + qtbase 42 + qt5compat 43 + qtcreator 44 + vulkan-headers 45 + ]; 46 + 47 + outputs = [ "out" ]; 48 + 49 + cmakeFlags = [ ]; 50 + 51 + installPhase = "mkdir -p $out; cp -R lib $out/"; 52 + 53 + meta = { 54 + description = "AI-powered coding assistant plugin for Qt Creator"; 55 + longDescription = '' 56 + QodeAssist is an AI-powered coding assistant plugin for Qt Creator. 57 + It provides intelligent code completion and suggestions for C++ and QML, 58 + leveraging large language models through local providers like Ollama. 59 + Enhance your coding productivity with context-aware AI assistance directly 60 + in your Qt development environment. 61 + ''; 62 + homepage = "https://github.com/Palm1r/QodeAssist"; 63 + license = lib.licenses.gpl3Only; 64 + maintainers = [ lib.maintainers.zatm8 ]; 65 + platforms = lib.platforms.linux; 66 + }; 67 + })
+13
pkgs/development/libraries/science/chemistry/simple-dftd3/cmake.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+21 -2
pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix
··· 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 mctc-lib, 10 mstore, 11 toml-f, 12 blas, 13 }: 14 15 assert !blas.isILP64; 16 17 stdenv.mkDerivation rec { 18 pname = "simple-dftd3"; ··· 24 tag = "v${version}"; 25 hash = "sha256-c4xctcMcPQ70ippqbwtinygmnZ5en6ZGF5/v0ZWtzys="; 26 }; 27 28 nativeBuildInputs = [ 29 gfortran 30 meson 31 ninja 32 - pkg-config 33 - ]; 34 35 buildInputs = [ 36 mctc-lib ··· 42 outputs = [ 43 "out" 44 "dev" 45 ]; 46 47 doCheck = true;
··· 5 gfortran, 6 meson, 7 ninja, 8 + cmake, 9 pkg-config, 10 mctc-lib, 11 mstore, 12 toml-f, 13 blas, 14 + buildType ? "meson", 15 }: 16 17 assert !blas.isILP64; 18 + assert ( 19 + builtins.elem buildType [ 20 + "meson" 21 + "cmake" 22 + ] 23 + ); 24 25 stdenv.mkDerivation rec { 26 pname = "simple-dftd3"; ··· 32 tag = "v${version}"; 33 hash = "sha256-c4xctcMcPQ70ippqbwtinygmnZ5en6ZGF5/v0ZWtzys="; 34 }; 35 + 36 + patches = [ 37 + ./cmake.patch 38 + ]; 39 40 nativeBuildInputs = [ 41 gfortran 42 + pkg-config 43 + ] 44 + ++ lib.optionals (buildType == "meson") [ 45 meson 46 ninja 47 + ] 48 + ++ lib.optional (buildType == "cmake") cmake; 49 50 buildInputs = [ 51 mctc-lib ··· 57 outputs = [ 58 "out" 59 "dev" 60 + ]; 61 + 62 + cmakeFlags = [ 63 + (lib.strings.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 64 ]; 65 66 doCheck = true;
+39 -4
pkgs/development/libraries/science/chemistry/tblite/default.nix
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 meson, 7 ninja, 8 pkg-config, 9 blas, 10 lapack, ··· 14 multicharge, 15 dftd4, 16 simple-dftd3, 17 }: 18 19 assert !blas.isILP64 && !lapack.isILP64; 20 21 stdenv.mkDerivation rec { 22 pname = "tblite"; 23 - version = "0.4.0"; 24 25 src = fetchFromGitHub { 26 owner = "tblite"; 27 repo = pname; 28 rev = "v${version}"; 29 - hash = "sha256-KV2fxB+SF4LilN/87YCvxUt4wsY4YyIV4tqnn+3/0oI="; 30 }; 31 32 nativeBuildInputs = [ 33 gfortran 34 meson 35 ninja 36 - pkg-config 37 ]; 38 39 buildInputs = [ ··· 52 "dev" 53 ]; 54 55 - doCheck = true; 56 preCheck = '' 57 export OMP_NUM_THREADS=2 58 '';
··· 3 lib, 4 fetchFromGitHub, 5 gfortran, 6 + buildType ? "meson", 7 meson, 8 ninja, 9 + cmake, 10 pkg-config, 11 blas, 12 lapack, ··· 16 multicharge, 17 dftd4, 18 simple-dftd3, 19 + python3, 20 }: 21 22 assert !blas.isILP64 && !lapack.isILP64; 23 + assert ( 24 + builtins.elem buildType [ 25 + "meson" 26 + "cmake" 27 + ] 28 + ); 29 30 stdenv.mkDerivation rec { 31 pname = "tblite"; 32 + version = "0.5.0"; 33 34 src = fetchFromGitHub { 35 owner = "tblite"; 36 repo = pname; 37 rev = "v${version}"; 38 + hash = "sha256-hePy/slEeM2o1gtrAbq/nkEUILa6oQjkD2ddDstQ2Zc="; 39 }; 40 41 + patches = [ 42 + ./0001-fix-multicharge-dep-needed-for-static-compilation.patch 43 + 44 + # Fix wrong paths in pkg-config file 45 + ./pkgconfig.patch 46 + ]; 47 + 48 + # Python scripts in test subdirectories to run the tests 49 + postPatch = '' 50 + patchShebangs ./ 51 + ''; 52 + 53 nativeBuildInputs = [ 54 gfortran 55 + pkg-config 56 + ] 57 + ++ lib.optionals (buildType == "meson") [ 58 meson 59 ninja 60 + ] 61 + ++ lib.optionals (buildType == "cmake") [ 62 + cmake 63 ]; 64 65 buildInputs = [ ··· 78 "dev" 79 ]; 80 81 + checkInputs = [ 82 + python3 83 + ]; 84 + 85 + checkFlags = [ 86 + "-j1" # Tests hang when multiple are run in parallel 87 + ]; 88 + 89 + doCheck = buildType == "meson"; 90 + 91 preCheck = '' 92 export OMP_NUM_THREADS=2 93 '';
+13
pkgs/development/libraries/science/chemistry/tblite/pkgconfig.patch
···
··· 1 + diff --git a/config/template.pc b/config/template.pc 2 + index 3d6efbb..e338a42 100644 3 + --- a/config/template.pc 4 + +++ b/config/template.pc 5 + @@ -1,6 +1,6 @@ 6 + prefix=@CMAKE_INSTALL_PREFIX@ 7 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 8 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 9 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 10 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 11 + 12 + Name: @PROJECT_NAME@ 13 + Description: @PROJECT_DESCRIPTION@
+3 -3
pkgs/development/python-modules/ansible/core.nix
··· 32 33 buildPythonPackage rec { 34 pname = "ansible-core"; 35 - version = "2.18.7"; 36 pyproject = true; 37 38 - disabled = pythonOlder "3.11"; 39 40 src = fetchPypi { 41 pname = "ansible_core"; 42 inherit version; 43 - hash = "sha256-GhKb+fzV3KKxfoPOdxR+4vvDxRpJWJcBUol8xbbQquc="; 44 }; 45 46 # ansible_connection is already wrapped, so don't pass it through
··· 32 33 buildPythonPackage rec { 34 pname = "ansible-core"; 35 + version = "2.19.1"; 36 pyproject = true; 37 38 + disabled = pythonOlder "3.12"; 39 40 src = fetchPypi { 41 pname = "ansible_core"; 42 inherit version; 43 + hash = "sha256-r/0zs40ytXz8LNba86r8s4QpcDnkxWABlqLumqAnt10="; 44 }; 45 46 # ansible_connection is already wrapped, so don't pass it through
+13 -7
pkgs/development/python-modules/dicomweb-client/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pythonOlder, 6 - setuptools, 7 pytestCheckHook, 8 pytest-localserver, 9 numpy, ··· 18 version = "0.60.1"; 19 pyproject = true; 20 21 - disabled = pythonOlder "3.6"; 22 - 23 src = fetchFromGitHub { 24 owner = "ImagingDataCommons"; 25 repo = "dicomweb-client"; ··· 27 hash = "sha256-ZxeZiCw8I5+Bf266PQ6WQA8mBRC7K3/kZrmuW4l6kQU="; 28 }; 29 30 - build-system = [ setuptools ]; 31 32 dependencies = [ 33 numpy ··· 44 45 pythonImportsCheck = [ "dicomweb_client" ]; 46 47 - meta = with lib; { 48 description = "Python client for DICOMweb RESTful services"; 49 homepage = "https://dicomweb-client.readthedocs.io"; 50 changelog = "https://github.com/ImagingDataCommons/dicomweb-client/releases/tag/${src.tag}"; 51 - license = licenses.mit; 52 - maintainers = with maintainers; [ bcdarwin ]; 53 mainProgram = "dicomweb_client"; 54 }; 55 }
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pythonOlder, 6 + hatchling, 7 pytestCheckHook, 8 pytest-localserver, 9 numpy, ··· 18 version = "0.60.1"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "ImagingDataCommons"; 23 repo = "dicomweb-client"; ··· 25 hash = "sha256-ZxeZiCw8I5+Bf266PQ6WQA8mBRC7K3/kZrmuW4l6kQU="; 26 }; 27 28 + postPatch = '' 29 + substituteInPlace pyproject.toml \ 30 + --replace-fail ', "uv-dynamic-versioning"' "" \ 31 + --replace-fail 'dynamic = ["version"]' 'version = "${version}"' 32 + ''; 33 + 34 + build-system = [ 35 + hatchling 36 + ]; 37 38 dependencies = [ 39 numpy ··· 50 51 pythonImportsCheck = [ "dicomweb_client" ]; 52 53 + meta = { 54 description = "Python client for DICOMweb RESTful services"; 55 homepage = "https://dicomweb-client.readthedocs.io"; 56 changelog = "https://github.com/ImagingDataCommons/dicomweb-client/releases/tag/${src.tag}"; 57 + license = lib.licenses.mit; 58 + maintainers = with lib.maintainers; [ bcdarwin ]; 59 mainProgram = "dicomweb_client"; 60 }; 61 }
+2 -2
pkgs/development/python-modules/fire/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "fire"; 17 - version = "0.7.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "google"; 24 repo = "python-fire"; 25 tag = "v${version}"; 26 - hash = "sha256-cYlkMnZOa0J6dOiWsWZplk/MajVRiCYe8tK3641fD0w="; 27 }; 28 29 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "fire"; 17 + version = "0.7.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "google"; 24 repo = "python-fire"; 25 tag = "v${version}"; 26 + hash = "sha256-TZLL7pzX8xPtB/9k3l5395eHrNojmqTH7PfB1kf99Io="; 27 }; 28 29 build-system = [ setuptools ];
+18 -4
pkgs/development/python-modules/gitingest/default.nix
··· 5 6 # Dependencies 7 setuptools, 8 click, 9 fastapi, 10 pathspec, 11 pydantic, 12 python-dotenv, 13 slowapi, 14 starlette, 15 tiktoken, ··· 32 pyproject = true; 33 34 src = fetchFromGitHub { 35 - owner = "cyclotruc"; 36 repo = "gitingest"; 37 tag = "v${version}"; 38 hash = "sha256-drsncGneZyOCC2GJbrDM+bf4QGI2luacxMhrmdk03l4="; ··· 43 ]; 44 45 dependencies = [ 46 click 47 fastapi 48 pathspec 49 pydantic 50 python-dotenv 51 slowapi 52 starlette 53 tiktoken ··· 60 ]; 61 62 nativeCheckInputs = [ 63 - httpx 64 jinja2 65 gitMinimal 66 pytest-asyncio ··· 77 "test_cli_writes_file" 78 "test_clone_specific_branch" 79 "test_include_ignore_patterns" 80 "test_ingest_with_gitignore" 81 "test_parse_query_with_branch" 82 "test_parse_query_without_host" 83 "test_run_ingest_query" 84 ]; 85 86 meta = { 87 - changelog = "https://github.com/cyclotruc/gitingest/releases/tag/${src.tag}"; 88 description = "Replace 'hub' with 'ingest' in any github url to get a prompt-friendly extract of a codebase"; 89 - homepage = "https://github.com/cyclotruc/gitingest"; 90 license = lib.licenses.mit; 91 maintainers = with lib.maintainers; [ ]; 92 mainProgram = "gitingest";
··· 5 6 # Dependencies 7 setuptools, 8 + boto3, 9 click, 10 fastapi, 11 + loguru, 12 pathspec, 13 + prometheus-client, 14 pydantic, 15 python-dotenv, 16 + sentry-sdk, 17 slowapi, 18 starlette, 19 tiktoken, ··· 36 pyproject = true; 37 38 src = fetchFromGitHub { 39 + owner = "coderamp-labs"; 40 repo = "gitingest"; 41 tag = "v${version}"; 42 hash = "sha256-drsncGneZyOCC2GJbrDM+bf4QGI2luacxMhrmdk03l4="; ··· 47 ]; 48 49 dependencies = [ 50 + boto3 51 click 52 fastapi 53 + httpx 54 + loguru 55 pathspec 56 + prometheus-client 57 pydantic 58 python-dotenv 59 + sentry-sdk 60 slowapi 61 starlette 62 tiktoken ··· 69 ]; 70 71 nativeCheckInputs = [ 72 jinja2 73 gitMinimal 74 pytest-asyncio ··· 85 "test_cli_writes_file" 86 "test_clone_specific_branch" 87 "test_include_ignore_patterns" 88 + "test_ingest_summary" 89 "test_ingest_with_gitignore" 90 "test_parse_query_with_branch" 91 "test_parse_query_without_host" 92 + "test_remote_repository_analysis" 93 + "test_large_repository" 94 + "test_concurrent_requests" 95 + "test_large_file_handling" 96 + "test_repository_with_patterns" 97 "test_run_ingest_query" 98 ]; 99 100 meta = { 101 + changelog = "https://github.com/coderamp-labs/gitingest/releases/tag/${src.tag}"; 102 description = "Replace 'hub' with 'ingest' in any github url to get a prompt-friendly extract of a codebase"; 103 + homepage = "https://github.com/coderamp-labs/gitingest"; 104 license = lib.licenses.mit; 105 maintainers = with lib.maintainers; [ ]; 106 mainProgram = "gitingest";
+2 -2
pkgs/development/python-modules/glyphslib/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "glyphslib"; 20 - version = "6.11.4"; 21 22 pyproject = true; 23 ··· 25 owner = "googlefonts"; 26 repo = "glyphsLib"; 27 tag = "v${version}"; 28 - hash = "sha256-gOzETXI2ZgW69qxbrXxsXfBEJaVhYrcqwjRjCsryqmk="; 29 }; 30 31 build-system = [ setuptools-scm ];
··· 17 18 buildPythonPackage rec { 19 pname = "glyphslib"; 20 + version = "6.11.6"; 21 22 pyproject = true; 23 ··· 25 owner = "googlefonts"; 26 repo = "glyphsLib"; 27 tag = "v${version}"; 28 + hash = "sha256-ZHF+q6L2XcYk5HRuRz1pgvfRAwY2GxLqyjIDY1ocsEQ="; 29 }; 30 31 build-system = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/json-repair/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "json-repair"; 11 - version = "0.49.0"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "mangiucugna"; 16 repo = "json_repair"; 17 tag = "v${version}"; 18 - hash = "sha256-we43E+2pGVDORWfC6t51Bxy4YLoEnVrysdBgpTdcYwE="; 19 }; 20 21 build-system = [ setuptools ];
··· 8 9 buildPythonPackage rec { 10 pname = "json-repair"; 11 + version = "0.50.0"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "mangiucugna"; 16 repo = "json_repair"; 17 tag = "v${version}"; 18 + hash = "sha256-QiM5EVIJtnS4jE8aIm3dDi2LrF+eb2PoP02Qc/1tzzk="; 19 }; 20 21 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/jsonschema-rs/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "jsonschema-rs"; 14 - version = "0.32.1"; 15 16 pyproject = true; 17 ··· 21 src = fetchPypi { 22 inherit version; 23 pname = "jsonschema_rs"; 24 - hash = "sha256-0++0gxQG+HT/KTLKx+ieonG9tppTPn+pVGFErkilC88="; 25 }; 26 27 cargoDeps = rustPlatform.fetchCargoVendor { 28 inherit pname version src; 29 - hash = "sha256-zs8R7ambxifXcmYsl1IB9zNN4+4dJrO/TQWK6c5UplA="; 30 }; 31 32 nativeBuildInputs = with rustPlatform; [
··· 11 12 buildPythonPackage rec { 13 pname = "jsonschema-rs"; 14 + version = "0.33.0"; 15 16 pyproject = true; 17 ··· 21 src = fetchPypi { 22 inherit version; 23 pname = "jsonschema_rs"; 24 + hash = "sha256-PRi2xwfGra6cgSynLldOHp+HKeVPwAFGFYintXfUPc8="; 25 }; 26 27 cargoDeps = rustPlatform.fetchCargoVendor { 28 inherit pname version src; 29 + hash = "sha256-P305DiFzU4UfD1PLLU4ayCfLS714VzkWlB3AM4U5ovk="; 30 }; 31 32 nativeBuildInputs = with rustPlatform; [
+2 -2
pkgs/development/python-modules/spsdk/default.nix
··· 50 51 buildPythonPackage rec { 52 pname = "spsdk"; 53 - version = "3.1.0"; 54 pyproject = true; 55 56 src = fetchFromGitHub { 57 owner = "nxp-mcuxpresso"; 58 repo = "spsdk"; 59 tag = "v${version}"; 60 - hash = "sha256-G8UNT9lsUt6Xe++xx+Pqv4hmrkGv68w7FrZSgWJHb1k="; 61 }; 62 63 postPatch = ''
··· 50 51 buildPythonPackage rec { 52 pname = "spsdk"; 53 + version = "3.2.0"; 54 pyproject = true; 55 56 src = fetchFromGitHub { 57 owner = "nxp-mcuxpresso"; 58 repo = "spsdk"; 59 tag = "v${version}"; 60 + hash = "sha256-unJpJjoS0C9TKsvk9/fQO8jiIOGbgfJopeXR5FcIq/g="; 61 }; 62 63 postPatch = ''
+8
pkgs/development/python-modules/webargs/default.nix
··· 16 pyramid, 17 falcon, 18 aiohttp, 19 }: 20 21 buildPythonPackage rec { ··· 27 inherit pname version; 28 hash = "sha256-DGF97BntTx/2skfNc4VelJ2HBS1xkAk4tx8Mr9kvGRs="; 29 }; 30 31 build-system = [ flit-core ]; 32
··· 16 pyramid, 17 falcon, 18 aiohttp, 19 + fetchpatch, 20 }: 21 22 buildPythonPackage rec { ··· 28 inherit pname version; 29 hash = "sha256-DGF97BntTx/2skfNc4VelJ2HBS1xkAk4tx8Mr9kvGRs="; 30 }; 31 + 32 + patches = [ 33 + (fetchpatch { 34 + url = "https://github.com/marshmallow-code/webargs/commit/a6a5043ee34b0a22885b3625de6d4fdffc3b715b.patch"; 35 + hash = "sha256-EFe76SAklgmBjfM6K8PkB0vHMCSlZ9EKAW9AbnxKmPA="; 36 + }) 37 + ]; 38 39 build-system = [ flit-core ]; 40
+35 -14
pkgs/development/tools/qtcreator/default.nix
··· 29 perf, 30 }: 31 32 - stdenv.mkDerivation rec { 33 pname = "qtcreator"; 34 version = "17.0.1"; 35 36 src = fetchurl { 37 - url = "mirror://qt/official_releases/${pname}/${lib.versions.majorMinor version}/${version}/qt-creator-opensource-src-${version}.tar.xz"; 38 hash = "sha256-9WcYCEdnBzkami7bmWPqSmtrkMeMvnTs4aygxrQuUYQ="; 39 }; 40 ··· 69 elfutils 70 ]; 71 72 cmakeFlags = [ 73 # workaround for missing CMAKE_INSTALL_DATAROOTDIR 74 # in pkgs/development/tools/build-managers/cmake/setup-hook.sh 75 - "-DCMAKE_INSTALL_DATAROOTDIR=${placeholder "out"}/share" 76 # qtdeclarative in nixpkgs does not provide qmlsc 77 # fix can't find Qt6QmlCompilerPlusPrivate 78 - "-DQT_NO_FIND_QMLSC=TRUE" 79 - "-DWITH_DOCS=ON" 80 - "-DBUILD_DEVELOPER_DOCS=ON" 81 - "-DBUILD_QBS=OFF" 82 - "-DQTC_CLANG_BUILDMODE_MATCH=ON" 83 - "-DCLANGTOOLING_LINK_CLANG_DYLIB=ON" 84 ]; 85 86 qtWrapperArgs = [ 87 "--set-default PERFPROFILER_PARSER_FILEPATH ${lib.getBin perf}/bin" 88 ]; 89 90 - meta = with lib; { 91 description = "Cross-platform IDE tailored to the needs of Qt developers"; 92 longDescription = '' 93 Qt Creator is a cross-platform IDE (integrated development environment) ··· 95 advanced code editor, a visual debugger and a GUI designer. 96 ''; 97 homepage = "https://wiki.qt.io/Qt_Creator"; 98 - license = licenses.gpl3Only; # annotated with The Qt Company GPL Exception 1.0 99 - maintainers = [ maintainers.rewine ]; 100 - platforms = platforms.linux; 101 }; 102 - }
··· 29 perf, 30 }: 31 32 + stdenv.mkDerivation (finalAttrs: { 33 pname = "qtcreator"; 34 version = "17.0.1"; 35 36 src = fetchurl { 37 + url = "mirror://qt/official_releases/${finalAttrs.pname}/${lib.versions.majorMinor finalAttrs.version}/${finalAttrs.version}/qt-creator-opensource-src-${finalAttrs.version}.tar.xz"; 38 hash = "sha256-9WcYCEdnBzkami7bmWPqSmtrkMeMvnTs4aygxrQuUYQ="; 39 }; 40 ··· 69 elfutils 70 ]; 71 72 + outputs = [ 73 + "out" 74 + "dev" 75 + ]; 76 + 77 cmakeFlags = [ 78 # workaround for missing CMAKE_INSTALL_DATAROOTDIR 79 # in pkgs/development/tools/build-managers/cmake/setup-hook.sh 80 + (lib.cmakeFeature "CMAKE_INSTALL_DATAROOTDIR" "${placeholder "out"}/share") 81 # qtdeclarative in nixpkgs does not provide qmlsc 82 # fix can't find Qt6QmlCompilerPlusPrivate 83 + (lib.cmakeBool "QT_NO_FIND_QMLSC" true) 84 + (lib.cmakeBool "WITH_DOCS" true) 85 + (lib.cmakeBool "BUILD_DEVELOPER_DOCS" true) 86 + (lib.cmakeBool "BUILD_QBS" false) 87 + (lib.cmakeBool "QTC_CLANG_BUILDMODE_MATCH" true) 88 + (lib.cmakeBool "CLANGTOOLING_LINK_CLANG_DYLIB" true) 89 ]; 90 91 qtWrapperArgs = [ 92 "--set-default PERFPROFILER_PARSER_FILEPATH ${lib.getBin perf}/bin" 93 ]; 94 95 + postInstall = '' 96 + # Small hack to set-up right prefix in cmake modules for header files 97 + cmake . $cmakeFlags -DCMAKE_INSTALL_PREFIX="''${!outputDev}" 98 + 99 + cmake --install . --prefix "''${!outputDev}" --component Devel 100 + ''; 101 + 102 + # Remove prefix from the QtC config to make sane output path for 3rd-party plug-ins. 103 + postFixup = '' 104 + substituteInPlace ''${!outputDev}/lib/cmake/QtCreator/QtCreatorConfig.cmake --replace "$out/" "" 105 + ''; 106 + 107 + meta = { 108 description = "Cross-platform IDE tailored to the needs of Qt developers"; 109 longDescription = '' 110 Qt Creator is a cross-platform IDE (integrated development environment) ··· 112 advanced code editor, a visual debugger and a GUI designer. 113 ''; 114 homepage = "https://wiki.qt.io/Qt_Creator"; 115 + license = lib.licenses.gpl3Only; # annotated with The Qt Company GPL Exception 1.0 116 + maintainers = with lib.maintainers; [ 117 + rewine 118 + zatm8 119 + ]; 120 + platforms = lib.platforms.linux; 121 + mainProgram = "qtcreator"; 122 }; 123 + })
+8 -6
pkgs/development/web/nodejs/v24.nix
··· 17 in 18 buildNodejs { 19 inherit enableNpm; 20 - version = "24.6.0"; 21 - sha256 = "8ad5c387b5d55d8f3b783b0f1b21bae03a3b3b10ac89a25d266cffa7b795e842"; 22 patches = 23 ( 24 if (stdenv.hostPlatform.emulatorAvailable buildPackages) then ··· 47 ++ [ 48 ./configure-armv6-vfpv2.patch 49 ./disable-darwin-v8-system-instrumentation-node19.patch 50 - ./bypass-darwin-xcrun-node16.patch 51 ./node-npm-build-npm-package-logic.patch 52 ./use-correct-env-in-tests.patch 53 ./bin-sh-node-run-v22.patch 54 55 - # TODO: remove when included in a release 56 (fetchpatch2 { 57 - url = "https://github.com/nodejs/node/commit/499a5c345165f0d4a94b98d08f1ace7268781564.patch?full_index=1"; 58 - hash = "sha256-wF4+CytC1OB5egJGOfLm1USsYY12f9kADymVrxotezE="; 59 }) 60 ] 61 ++ lib.optionals (!stdenv.buildPlatform.isDarwin) [ 62 # test-icu-env is failing without the reverts
··· 17 in 18 buildNodejs { 19 inherit enableNpm; 20 + version = "24.7.0"; 21 + sha256 = "cf74a77753b629ffebd2e38fb153a21001b2b7a3c365c0ec7332b120b98c7251"; 22 patches = 23 ( 24 if (stdenv.hostPlatform.emulatorAvailable buildPackages) then ··· 47 ++ [ 48 ./configure-armv6-vfpv2.patch 49 ./disable-darwin-v8-system-instrumentation-node19.patch 50 ./node-npm-build-npm-package-logic.patch 51 ./use-correct-env-in-tests.patch 52 ./bin-sh-node-run-v22.patch 53 54 + # TODO: newer GYP versions have been patched to be more compatible with Nix sandbox. We need 55 + # to adapt our patch to this newer version, see https://github.com/NixOS/nixpkgs/pull/434742. 56 (fetchpatch2 { 57 + url = "https://github.com/nodejs/node/commit/886e4b3b534a9f3ad2facbc99097419e06615900.patch?full_index=1"; 58 + hash = "sha256-HFTabl92NPkBwXD0mUGDN+Gzabyi+Ph0kL0FEHHknbk="; 59 + revert = true; 60 }) 61 + ./bypass-darwin-xcrun-node16.patch 62 ] 63 ++ lib.optionals (!stdenv.buildPlatform.isDarwin) [ 64 # test-icu-env is failing without the reverts
+2 -2
pkgs/servers/home-assistant/custom-components/alarmo/package.nix
··· 7 buildHomeAssistantComponent rec { 8 owner = "nielsfaber"; 9 domain = "alarmo"; 10 - version = "1.10.9"; 11 12 src = fetchFromGitHub { 13 owner = "nielsfaber"; 14 repo = "alarmo"; 15 tag = "v${version}"; 16 - hash = "sha256-eNAtHAa6Ye20Em/2i6+k6OMODTulKprywz1dVZHF4Vc="; 17 }; 18 19 postPatch = ''
··· 7 buildHomeAssistantComponent rec { 8 owner = "nielsfaber"; 9 domain = "alarmo"; 10 + version = "1.10.10"; 11 12 src = fetchFromGitHub { 13 owner = "nielsfaber"; 14 repo = "alarmo"; 15 tag = "v${version}"; 16 + hash = "sha256-vN+zyZFaW00Md5aow5n2b/lTYuC/FXh59OFA3TwrPi4="; 17 }; 18 19 postPatch = ''
+2 -2
pkgs/servers/monitoring/prometheus/redis-exporter.nix
··· 10 11 buildGoModule rec { 12 pname = "redis_exporter"; 13 - version = "1.75.0"; 14 15 src = fetchFromGitHub { 16 owner = "oliver006"; 17 repo = "redis_exporter"; 18 rev = "v${version}"; 19 - sha256 = "sha256-Z74AB3loT6KJgJBXGh3q1v49ro0gXPvIwd3URRikUa0="; 20 }; 21 22 vendorHash = "sha256-y1j7s8R8pd3sp9yOlG2aopQ+GNO2Z7OCO1a9i9L6KM4=";
··· 10 11 buildGoModule rec { 12 pname = "redis_exporter"; 13 + version = "1.76.0"; 14 15 src = fetchFromGitHub { 16 owner = "oliver006"; 17 repo = "redis_exporter"; 18 rev = "v${version}"; 19 + sha256 = "sha256-LT0YnyvXz1zQBP8NICws6vhW7qqVSFRzlxfdpB8wOr8="; 20 }; 21 22 vendorHash = "sha256-y1j7s8R8pd3sp9yOlG2aopQ+GNO2Z7OCO1a9i9L6KM4=";
+4 -4
pkgs/tools/admin/meshcentral/default.nix
··· 8 }: 9 10 yarn2nix-moretea.mkYarnPackage { 11 - version = "1.1.48"; 12 13 src = fetchzip { 14 - url = "https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.48.tgz"; 15 - sha256 = "0ns4pp0gswvfpyjzklsh76ych9sv9qjcn50dhain7b6cy6dkrmga"; 16 }; 17 18 patches = [ ··· 24 25 offlineCache = fetchYarnDeps { 26 yarnLock = ./yarn.lock; 27 - hash = "sha256-oHY21OMLVyrdJOiV9MarXWnjcKNaKtvUz26xIvVNRsw="; 28 }; 29 30 # Tarball has CRLF line endings. This makes patching difficult, so let's convert them.
··· 8 }: 9 10 yarn2nix-moretea.mkYarnPackage { 11 + version = "1.1.49"; 12 13 src = fetchzip { 14 + url = "https://registry.npmjs.org/meshcentral/-/meshcentral-1.1.49.tgz"; 15 + sha256 = "1xklg7snn3qlmakkqy89q58n7b09idxz0zz5ha3hrn8s0wcmjakr"; 16 }; 17 18 patches = [ ··· 24 25 offlineCache = fetchYarnDeps { 26 yarnLock = ./yarn.lock; 27 + hash = "sha256-xiZ1RL4GsihQc1yazjkTfge/DS2N9oimSl0EZr6WmrM="; 28 }; 29 30 # Tarball has CRLF line endings. This makes patching difficult, so let's convert them.
+2 -2
pkgs/tools/admin/meshcentral/package.json
··· 1 { 2 "name": "meshcentral", 3 - "version": "1.1.48", 4 "keywords": [ 5 "Remote Device Management", 6 "Remote Device Monitoring", ··· 110 "node-vault": "0.10.2", 111 "https-proxy-agent": "7.0.2", 112 "mongojs": "3.1.0", 113 - "nodemailer": "6.9.16", 114 "@sendgrid/mail": "*", 115 "jsdom": "22.1.0", 116 "esprima": "4.0.1",
··· 1 { 2 "name": "meshcentral", 3 + "version": "1.1.49", 4 "keywords": [ 5 "Remote Device Management", 6 "Remote Device Monitoring", ··· 110 "node-vault": "0.10.2", 111 "https-proxy-agent": "7.0.2", 112 "mongojs": "3.1.0", 113 + "nodemailer": "6.10.1", 114 "@sendgrid/mail": "*", 115 "jsdom": "22.1.0", 116 "esprima": "4.0.1",
+681 -671
pkgs/tools/admin/meshcentral/yarn.lock
··· 48 "@smithy/util-utf8" "^2.0.0" 49 tslib "^2.6.2" 50 51 - "@aws-sdk/client-cognito-identity@3.848.0": 52 - version "3.848.0" 53 - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.848.0.tgz#d7461128c39214a3d37c69eae6dceddfb7931f2a" 54 - integrity sha512-Sin8aLnA81MgvUJrfQsBIQ1UJg4klWT3NuYYjExLiVQf3A0/F7Bfx1HTIyWXtSchY4QgGr7MMone0/0KZ4Dy9g== 55 dependencies: 56 "@aws-crypto/sha256-browser" "5.2.0" 57 "@aws-crypto/sha256-js" "5.2.0" 58 - "@aws-sdk/core" "3.846.0" 59 - "@aws-sdk/credential-provider-node" "3.848.0" 60 - "@aws-sdk/middleware-host-header" "3.840.0" 61 - "@aws-sdk/middleware-logger" "3.840.0" 62 - "@aws-sdk/middleware-recursion-detection" "3.840.0" 63 - "@aws-sdk/middleware-user-agent" "3.848.0" 64 - "@aws-sdk/region-config-resolver" "3.840.0" 65 - "@aws-sdk/types" "3.840.0" 66 - "@aws-sdk/util-endpoints" "3.848.0" 67 - "@aws-sdk/util-user-agent-browser" "3.840.0" 68 - "@aws-sdk/util-user-agent-node" "3.848.0" 69 - "@smithy/config-resolver" "^4.1.4" 70 - "@smithy/core" "^3.7.0" 71 - "@smithy/fetch-http-handler" "^5.1.0" 72 - "@smithy/hash-node" "^4.0.4" 73 - "@smithy/invalid-dependency" "^4.0.4" 74 - "@smithy/middleware-content-length" "^4.0.4" 75 - "@smithy/middleware-endpoint" "^4.1.15" 76 - "@smithy/middleware-retry" "^4.1.16" 77 - "@smithy/middleware-serde" "^4.0.8" 78 - "@smithy/middleware-stack" "^4.0.4" 79 - "@smithy/node-config-provider" "^4.1.3" 80 - "@smithy/node-http-handler" "^4.1.0" 81 - "@smithy/protocol-http" "^5.1.2" 82 - "@smithy/smithy-client" "^4.4.7" 83 - "@smithy/types" "^4.3.1" 84 - "@smithy/url-parser" "^4.0.4" 85 "@smithy/util-base64" "^4.0.0" 86 "@smithy/util-body-length-browser" "^4.0.0" 87 "@smithy/util-body-length-node" "^4.0.0" 88 - "@smithy/util-defaults-mode-browser" "^4.0.23" 89 - "@smithy/util-defaults-mode-node" "^4.0.23" 90 - "@smithy/util-endpoints" "^3.0.6" 91 - "@smithy/util-middleware" "^4.0.4" 92 - "@smithy/util-retry" "^4.0.6" 93 "@smithy/util-utf8" "^4.0.0" 94 tslib "^2.6.2" 95 96 - "@aws-sdk/client-sso@3.848.0": 97 - version "3.848.0" 98 - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.848.0.tgz#84178a83af2a1ce5d0ddfcfc980f4fe71987c01a" 99 - integrity sha512-mD+gOwoeZQvbecVLGoCmY6pS7kg02BHesbtIxUj+PeBqYoZV5uLvjUOmuGfw1SfoSobKvS11urxC9S7zxU/Maw== 100 dependencies: 101 "@aws-crypto/sha256-browser" "5.2.0" 102 "@aws-crypto/sha256-js" "5.2.0" 103 - "@aws-sdk/core" "3.846.0" 104 - "@aws-sdk/middleware-host-header" "3.840.0" 105 - "@aws-sdk/middleware-logger" "3.840.0" 106 - "@aws-sdk/middleware-recursion-detection" "3.840.0" 107 - "@aws-sdk/middleware-user-agent" "3.848.0" 108 - "@aws-sdk/region-config-resolver" "3.840.0" 109 - "@aws-sdk/types" "3.840.0" 110 - "@aws-sdk/util-endpoints" "3.848.0" 111 - "@aws-sdk/util-user-agent-browser" "3.840.0" 112 - "@aws-sdk/util-user-agent-node" "3.848.0" 113 - "@smithy/config-resolver" "^4.1.4" 114 - "@smithy/core" "^3.7.0" 115 - "@smithy/fetch-http-handler" "^5.1.0" 116 - "@smithy/hash-node" "^4.0.4" 117 - "@smithy/invalid-dependency" "^4.0.4" 118 - "@smithy/middleware-content-length" "^4.0.4" 119 - "@smithy/middleware-endpoint" "^4.1.15" 120 - "@smithy/middleware-retry" "^4.1.16" 121 - "@smithy/middleware-serde" "^4.0.8" 122 - "@smithy/middleware-stack" "^4.0.4" 123 - "@smithy/node-config-provider" "^4.1.3" 124 - "@smithy/node-http-handler" "^4.1.0" 125 - "@smithy/protocol-http" "^5.1.2" 126 - "@smithy/smithy-client" "^4.4.7" 127 - "@smithy/types" "^4.3.1" 128 - "@smithy/url-parser" "^4.0.4" 129 "@smithy/util-base64" "^4.0.0" 130 "@smithy/util-body-length-browser" "^4.0.0" 131 "@smithy/util-body-length-node" "^4.0.0" 132 - "@smithy/util-defaults-mode-browser" "^4.0.23" 133 - "@smithy/util-defaults-mode-node" "^4.0.23" 134 - "@smithy/util-endpoints" "^3.0.6" 135 - "@smithy/util-middleware" "^4.0.4" 136 - "@smithy/util-retry" "^4.0.6" 137 "@smithy/util-utf8" "^4.0.0" 138 tslib "^2.6.2" 139 140 - "@aws-sdk/core@3.846.0": 141 - version "3.846.0" 142 - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.846.0.tgz#f226d7d4f9b25f31dfda260f7ef1f4de8e4314fa" 143 - integrity sha512-7CX0pM906r4WSS68fCTNMTtBCSkTtf3Wggssmx13gD40gcWEZXsU00KzPp1bYheNRyPlAq3rE22xt4wLPXbuxA== 144 dependencies: 145 - "@aws-sdk/types" "3.840.0" 146 - "@aws-sdk/xml-builder" "3.821.0" 147 - "@smithy/core" "^3.7.0" 148 - "@smithy/node-config-provider" "^4.1.3" 149 - "@smithy/property-provider" "^4.0.4" 150 - "@smithy/protocol-http" "^5.1.2" 151 - "@smithy/signature-v4" "^5.1.2" 152 - "@smithy/smithy-client" "^4.4.7" 153 - "@smithy/types" "^4.3.1" 154 "@smithy/util-base64" "^4.0.0" 155 "@smithy/util-body-length-browser" "^4.0.0" 156 - "@smithy/util-middleware" "^4.0.4" 157 "@smithy/util-utf8" "^4.0.0" 158 fast-xml-parser "5.2.5" 159 tslib "^2.6.2" 160 161 - "@aws-sdk/credential-provider-cognito-identity@3.848.0": 162 - version "3.848.0" 163 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.848.0.tgz#c3d54f75a176aadddd3a6a7f6092987744ca32d1" 164 - integrity sha512-2cm/Ye6ktagW1h7FmF4sgo8STZyBr2+0+L9lr/veuPKZVWoi/FyhJR3l0TtKrd8z78no9P5xbsGUmxoDLtsxiw== 165 dependencies: 166 - "@aws-sdk/client-cognito-identity" "3.848.0" 167 - "@aws-sdk/types" "3.840.0" 168 - "@smithy/property-provider" "^4.0.4" 169 - "@smithy/types" "^4.3.1" 170 tslib "^2.6.2" 171 172 - "@aws-sdk/credential-provider-env@3.846.0": 173 - version "3.846.0" 174 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.846.0.tgz#b47637b123544971f4d1c7300ea77b70143a7141" 175 - integrity sha512-QuCQZET9enja7AWVISY+mpFrEIeHzvkx/JEEbHYzHhUkxcnC2Kq2c0bB7hDihGD0AZd3Xsm653hk1O97qu69zg== 176 dependencies: 177 - "@aws-sdk/core" "3.846.0" 178 - "@aws-sdk/types" "3.840.0" 179 - "@smithy/property-provider" "^4.0.4" 180 - "@smithy/types" "^4.3.1" 181 tslib "^2.6.2" 182 183 - "@aws-sdk/credential-provider-http@3.846.0": 184 - version "3.846.0" 185 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.846.0.tgz#fe8b36493070a3444d76082b5129450598563fe0" 186 - integrity sha512-Jh1iKUuepdmtreMYozV2ePsPcOF5W9p3U4tWhi3v6nDvz0GsBjzjAROW+BW8XMz9vAD3I9R+8VC3/aq63p5nlw== 187 dependencies: 188 - "@aws-sdk/core" "3.846.0" 189 - "@aws-sdk/types" "3.840.0" 190 - "@smithy/fetch-http-handler" "^5.1.0" 191 - "@smithy/node-http-handler" "^4.1.0" 192 - "@smithy/property-provider" "^4.0.4" 193 - "@smithy/protocol-http" "^5.1.2" 194 - "@smithy/smithy-client" "^4.4.7" 195 - "@smithy/types" "^4.3.1" 196 - "@smithy/util-stream" "^4.2.3" 197 tslib "^2.6.2" 198 199 - "@aws-sdk/credential-provider-ini@3.848.0": 200 - version "3.848.0" 201 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.848.0.tgz#aec6f9158b08b9842d4e9ee7671296a2a237b026" 202 - integrity sha512-r6KWOG+En2xujuMhgZu7dzOZV3/M5U/5+PXrG8dLQ3rdPRB3vgp5tc56KMqLwm/EXKRzAOSuw/UE4HfNOAB8Hw== 203 dependencies: 204 - "@aws-sdk/core" "3.846.0" 205 - "@aws-sdk/credential-provider-env" "3.846.0" 206 - "@aws-sdk/credential-provider-http" "3.846.0" 207 - "@aws-sdk/credential-provider-process" "3.846.0" 208 - "@aws-sdk/credential-provider-sso" "3.848.0" 209 - "@aws-sdk/credential-provider-web-identity" "3.848.0" 210 - "@aws-sdk/nested-clients" "3.848.0" 211 - "@aws-sdk/types" "3.840.0" 212 - "@smithy/credential-provider-imds" "^4.0.6" 213 - "@smithy/property-provider" "^4.0.4" 214 - "@smithy/shared-ini-file-loader" "^4.0.4" 215 - "@smithy/types" "^4.3.1" 216 tslib "^2.6.2" 217 218 - "@aws-sdk/credential-provider-node@3.848.0": 219 - version "3.848.0" 220 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.848.0.tgz#aeeccc9cadaae57fd2664298ecacea18648d6b9c" 221 - integrity sha512-AblNesOqdzrfyASBCo1xW3uweiSro4Kft9/htdxLeCVU1KVOnFWA5P937MNahViRmIQm2sPBCqL8ZG0u9lnh5g== 222 dependencies: 223 - "@aws-sdk/credential-provider-env" "3.846.0" 224 - "@aws-sdk/credential-provider-http" "3.846.0" 225 - "@aws-sdk/credential-provider-ini" "3.848.0" 226 - "@aws-sdk/credential-provider-process" "3.846.0" 227 - "@aws-sdk/credential-provider-sso" "3.848.0" 228 - "@aws-sdk/credential-provider-web-identity" "3.848.0" 229 - "@aws-sdk/types" "3.840.0" 230 - "@smithy/credential-provider-imds" "^4.0.6" 231 - "@smithy/property-provider" "^4.0.4" 232 - "@smithy/shared-ini-file-loader" "^4.0.4" 233 - "@smithy/types" "^4.3.1" 234 tslib "^2.6.2" 235 236 - "@aws-sdk/credential-provider-process@3.846.0": 237 - version "3.846.0" 238 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.846.0.tgz#19d22592594ca554a83148313651d5167c181fc3" 239 - integrity sha512-mEpwDYarJSH+CIXnnHN0QOe0MXI+HuPStD6gsv3z/7Q6ESl8KRWon3weFZCDnqpiJMUVavlDR0PPlAFg2MQoPg== 240 dependencies: 241 - "@aws-sdk/core" "3.846.0" 242 - "@aws-sdk/types" "3.840.0" 243 - "@smithy/property-provider" "^4.0.4" 244 - "@smithy/shared-ini-file-loader" "^4.0.4" 245 - "@smithy/types" "^4.3.1" 246 tslib "^2.6.2" 247 248 - "@aws-sdk/credential-provider-sso@3.848.0": 249 - version "3.848.0" 250 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.848.0.tgz#5921e154cde77f261e00da63431294ddde91d6f9" 251 - integrity sha512-pozlDXOwJZL0e7w+dqXLgzVDB7oCx4WvtY0sk6l4i07uFliWF/exupb6pIehFWvTUcOvn5aFTTqcQaEzAD5Wsg== 252 dependencies: 253 - "@aws-sdk/client-sso" "3.848.0" 254 - "@aws-sdk/core" "3.846.0" 255 - "@aws-sdk/token-providers" "3.848.0" 256 - "@aws-sdk/types" "3.840.0" 257 - "@smithy/property-provider" "^4.0.4" 258 - "@smithy/shared-ini-file-loader" "^4.0.4" 259 - "@smithy/types" "^4.3.1" 260 tslib "^2.6.2" 261 262 - "@aws-sdk/credential-provider-web-identity@3.848.0": 263 - version "3.848.0" 264 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.848.0.tgz#86eaa04daf17ce41b9aab06a3c19a326fcbfaddf" 265 - integrity sha512-D1fRpwPxtVDhcSc/D71exa2gYweV+ocp4D3brF0PgFd//JR3XahZ9W24rVnTQwYEcK9auiBZB89Ltv+WbWN8qw== 266 dependencies: 267 - "@aws-sdk/core" "3.846.0" 268 - "@aws-sdk/nested-clients" "3.848.0" 269 - "@aws-sdk/types" "3.840.0" 270 - "@smithy/property-provider" "^4.0.4" 271 - "@smithy/types" "^4.3.1" 272 tslib "^2.6.2" 273 274 "@aws-sdk/credential-providers@^3.186.0": 275 - version "3.848.0" 276 - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.848.0.tgz#78ab8cb8114136130f2ccb357761c4936117a38a" 277 - integrity sha512-lRDuU05YC+r/1JmRULngJQli7scP5hmq0/7D+xw1s8eRM0H2auaH7LQFlq/SLxQZLMkVNPCrmsug3b3KcLj1NA== 278 dependencies: 279 - "@aws-sdk/client-cognito-identity" "3.848.0" 280 - "@aws-sdk/core" "3.846.0" 281 - "@aws-sdk/credential-provider-cognito-identity" "3.848.0" 282 - "@aws-sdk/credential-provider-env" "3.846.0" 283 - "@aws-sdk/credential-provider-http" "3.846.0" 284 - "@aws-sdk/credential-provider-ini" "3.848.0" 285 - "@aws-sdk/credential-provider-node" "3.848.0" 286 - "@aws-sdk/credential-provider-process" "3.846.0" 287 - "@aws-sdk/credential-provider-sso" "3.848.0" 288 - "@aws-sdk/credential-provider-web-identity" "3.848.0" 289 - "@aws-sdk/nested-clients" "3.848.0" 290 - "@aws-sdk/types" "3.840.0" 291 - "@smithy/config-resolver" "^4.1.4" 292 - "@smithy/core" "^3.7.0" 293 - "@smithy/credential-provider-imds" "^4.0.6" 294 - "@smithy/node-config-provider" "^4.1.3" 295 - "@smithy/property-provider" "^4.0.4" 296 - "@smithy/types" "^4.3.1" 297 tslib "^2.6.2" 298 299 - "@aws-sdk/middleware-host-header@3.840.0": 300 - version "3.840.0" 301 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.840.0.tgz#7c8b163fb13d588b87523b53f7d98de73262e83f" 302 - integrity sha512-ub+hXJAbAje94+Ya6c6eL7sYujoE8D4Bumu1NUI8TXjUhVVn0HzVWQjpRLshdLsUp1AW7XyeJaxyajRaJQ8+Xg== 303 dependencies: 304 - "@aws-sdk/types" "3.840.0" 305 - "@smithy/protocol-http" "^5.1.2" 306 - "@smithy/types" "^4.3.1" 307 tslib "^2.6.2" 308 309 - "@aws-sdk/middleware-logger@3.840.0": 310 - version "3.840.0" 311 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.840.0.tgz#d92ade1817ac7dc78a3567c1239bb1a3f3b1b57a" 312 - integrity sha512-lSV8FvjpdllpGaRspywss4CtXV8M7NNNH+2/j86vMH+YCOZ6fu2T/TyFd/tHwZ92vDfHctWkRbQxg0bagqwovA== 313 dependencies: 314 - "@aws-sdk/types" "3.840.0" 315 - "@smithy/types" "^4.3.1" 316 tslib "^2.6.2" 317 318 - "@aws-sdk/middleware-recursion-detection@3.840.0": 319 - version "3.840.0" 320 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.840.0.tgz#8ea2c00af258db0b64ea394e044cedb6101b5ffd" 321 - integrity sha512-Gu7lGDyfddyhIkj1Z1JtrY5NHb5+x/CRiB87GjaSrKxkDaydtX2CU977JIABtt69l9wLbcGDIQ+W0uJ5xPof7g== 322 dependencies: 323 - "@aws-sdk/types" "3.840.0" 324 - "@smithy/protocol-http" "^5.1.2" 325 - "@smithy/types" "^4.3.1" 326 tslib "^2.6.2" 327 328 - "@aws-sdk/middleware-user-agent@3.848.0": 329 - version "3.848.0" 330 - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.848.0.tgz#d1bba79ba7f026ad7a6df55e47ccd0513f8fdada" 331 - integrity sha512-rjMuqSWJEf169/ByxvBqfdei1iaduAnfolTshsZxwcmLIUtbYrFUmts0HrLQqsAG8feGPpDLHA272oPl+NTCCA== 332 dependencies: 333 - "@aws-sdk/core" "3.846.0" 334 - "@aws-sdk/types" "3.840.0" 335 - "@aws-sdk/util-endpoints" "3.848.0" 336 - "@smithy/core" "^3.7.0" 337 - "@smithy/protocol-http" "^5.1.2" 338 - "@smithy/types" "^4.3.1" 339 tslib "^2.6.2" 340 341 - "@aws-sdk/nested-clients@3.848.0": 342 - version "3.848.0" 343 - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.848.0.tgz#69f8f57fb5df25262b8e60a3334e13dcded0309d" 344 - integrity sha512-joLsyyo9u61jnZuyYzo1z7kmS7VgWRAkzSGESVzQHfOA1H2PYeUFek6vLT4+c9xMGrX/Z6B0tkRdzfdOPiatLg== 345 dependencies: 346 "@aws-crypto/sha256-browser" "5.2.0" 347 "@aws-crypto/sha256-js" "5.2.0" 348 - "@aws-sdk/core" "3.846.0" 349 - "@aws-sdk/middleware-host-header" "3.840.0" 350 - "@aws-sdk/middleware-logger" "3.840.0" 351 - "@aws-sdk/middleware-recursion-detection" "3.840.0" 352 - "@aws-sdk/middleware-user-agent" "3.848.0" 353 - "@aws-sdk/region-config-resolver" "3.840.0" 354 - "@aws-sdk/types" "3.840.0" 355 - "@aws-sdk/util-endpoints" "3.848.0" 356 - "@aws-sdk/util-user-agent-browser" "3.840.0" 357 - "@aws-sdk/util-user-agent-node" "3.848.0" 358 - "@smithy/config-resolver" "^4.1.4" 359 - "@smithy/core" "^3.7.0" 360 - "@smithy/fetch-http-handler" "^5.1.0" 361 - "@smithy/hash-node" "^4.0.4" 362 - "@smithy/invalid-dependency" "^4.0.4" 363 - "@smithy/middleware-content-length" "^4.0.4" 364 - "@smithy/middleware-endpoint" "^4.1.15" 365 - "@smithy/middleware-retry" "^4.1.16" 366 - "@smithy/middleware-serde" "^4.0.8" 367 - "@smithy/middleware-stack" "^4.0.4" 368 - "@smithy/node-config-provider" "^4.1.3" 369 - "@smithy/node-http-handler" "^4.1.0" 370 - "@smithy/protocol-http" "^5.1.2" 371 - "@smithy/smithy-client" "^4.4.7" 372 - "@smithy/types" "^4.3.1" 373 - "@smithy/url-parser" "^4.0.4" 374 "@smithy/util-base64" "^4.0.0" 375 "@smithy/util-body-length-browser" "^4.0.0" 376 "@smithy/util-body-length-node" "^4.0.0" 377 - "@smithy/util-defaults-mode-browser" "^4.0.23" 378 - "@smithy/util-defaults-mode-node" "^4.0.23" 379 - "@smithy/util-endpoints" "^3.0.6" 380 - "@smithy/util-middleware" "^4.0.4" 381 - "@smithy/util-retry" "^4.0.6" 382 "@smithy/util-utf8" "^4.0.0" 383 tslib "^2.6.2" 384 385 - "@aws-sdk/region-config-resolver@3.840.0": 386 - version "3.840.0" 387 - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.840.0.tgz#240690ead3131c4c47186b4929776439fe2f6729" 388 - integrity sha512-Qjnxd/yDv9KpIMWr90ZDPtRj0v75AqGC92Lm9+oHXZ8p1MjG5JE2CW0HL8JRgK9iKzgKBL7pPQRXI8FkvEVfrA== 389 dependencies: 390 - "@aws-sdk/types" "3.840.0" 391 - "@smithy/node-config-provider" "^4.1.3" 392 - "@smithy/types" "^4.3.1" 393 "@smithy/util-config-provider" "^4.0.0" 394 - "@smithy/util-middleware" "^4.0.4" 395 tslib "^2.6.2" 396 397 - "@aws-sdk/token-providers@3.848.0": 398 - version "3.848.0" 399 - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.848.0.tgz#a30431066b2fc2927169e3a958bb610cfb936406" 400 - integrity sha512-oNPyM4+Di2Umu0JJRFSxDcKQ35+Chl/rAwD47/bS0cDPI8yrao83mLXLeDqpRPHyQW4sXlP763FZcuAibC0+mg== 401 dependencies: 402 - "@aws-sdk/core" "3.846.0" 403 - "@aws-sdk/nested-clients" "3.848.0" 404 - "@aws-sdk/types" "3.840.0" 405 - "@smithy/property-provider" "^4.0.4" 406 - "@smithy/shared-ini-file-loader" "^4.0.4" 407 - "@smithy/types" "^4.3.1" 408 tslib "^2.6.2" 409 410 - "@aws-sdk/types@3.840.0", "@aws-sdk/types@^3.222.0": 411 - version "3.840.0" 412 - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.840.0.tgz#aadc6843d5c1f24b3d1d228059e702a355bf07c3" 413 - integrity sha512-xliuHaUFZxEx1NSXeLLZ9Dyu6+EJVQKEoD+yM+zqUo3YDZ7medKJWY6fIOKiPX/N7XbLdBYwajb15Q7IL8KkeA== 414 dependencies: 415 - "@smithy/types" "^4.3.1" 416 tslib "^2.6.2" 417 418 - "@aws-sdk/util-endpoints@3.848.0": 419 - version "3.848.0" 420 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.848.0.tgz#dea15ac0949fcbc518426fb4a86d1e9bd53433db" 421 - integrity sha512-fY/NuFFCq/78liHvRyFKr+aqq1aA/uuVSANjzr5Ym8c+9Z3HRPE9OrExAHoMrZ6zC8tHerQwlsXYYH5XZ7H+ww== 422 dependencies: 423 - "@aws-sdk/types" "3.840.0" 424 - "@smithy/types" "^4.3.1" 425 - "@smithy/url-parser" "^4.0.4" 426 - "@smithy/util-endpoints" "^3.0.6" 427 tslib "^2.6.2" 428 429 "@aws-sdk/util-locate-window@^3.0.0": 430 - version "3.804.0" 431 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.804.0.tgz#a2ee8dc5d9c98276986e8e1ba03c0c84d9afb0f5" 432 - integrity sha512-zVoRfpmBVPodYlnMjgVjfGoEZagyRF5IPn3Uo6ZvOZp24chnW/FRstH7ESDHDDRga4z3V+ElUQHKpFDXWyBW5A== 433 dependencies: 434 tslib "^2.6.2" 435 436 - "@aws-sdk/util-user-agent-browser@3.840.0": 437 - version "3.840.0" 438 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.840.0.tgz#6c2f55494352a86048c52852b0c357bb21905984" 439 - integrity sha512-JdyZM3EhhL4PqwFpttZu1afDpPJCCc3eyZOLi+srpX11LsGj6sThf47TYQN75HT1CarZ7cCdQHGzP2uy3/xHfQ== 440 dependencies: 441 - "@aws-sdk/types" "3.840.0" 442 - "@smithy/types" "^4.3.1" 443 bowser "^2.11.0" 444 tslib "^2.6.2" 445 446 - "@aws-sdk/util-user-agent-node@3.848.0": 447 - version "3.848.0" 448 - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.848.0.tgz#992acf856aa8edd9d26b906c7c92fbdcd72f8bb1" 449 - integrity sha512-Zz1ft9NiLqbzNj/M0jVNxaoxI2F4tGXN0ZbZIj+KJ+PbJo+w5+Jo6d0UDAtbj3AEd79pjcCaP4OA9NTVzItUdw== 450 dependencies: 451 - "@aws-sdk/middleware-user-agent" "3.848.0" 452 - "@aws-sdk/types" "3.840.0" 453 - "@smithy/node-config-provider" "^4.1.3" 454 - "@smithy/types" "^4.3.1" 455 tslib "^2.6.2" 456 457 - "@aws-sdk/xml-builder@3.821.0": 458 - version "3.821.0" 459 - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.821.0.tgz#ff89bf1276fca41276ed508b9c8ae21978d91177" 460 - integrity sha512-DIIotRnefVL6DiaHtO6/21DhJ4JZnnIwdNbpwiAhdt/AVbttcE4yw925gsjur0OGv5BTYXQXU3YnANBYnZjuQA== 461 dependencies: 462 - "@smithy/types" "^4.3.1" 463 tslib "^2.6.2" 464 465 "@babel/cli@^7.16.0": 466 - version "7.28.0" 467 - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.28.0.tgz#26959456cbedff569a2c3ac909e8a268ca6cb7e2" 468 - integrity sha512-CYrZG7FagtE8ReKDBfItxnrEBf2khq2eTMnPuqO8UVN0wzhp1eMX1wfda8b1a32l2aqYLwRRIOGNovm8FVzmMw== 469 dependencies: 470 "@jridgewell/trace-mapping" "^0.3.28" 471 commander "^6.2.0" ··· 493 integrity sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw== 494 495 "@babel/core@^7.16.5": 496 - version "7.28.0" 497 - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.0.tgz#55dad808d5bf3445a108eefc88ea3fdf034749a4" 498 - integrity sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ== 499 dependencies: 500 "@ampproject/remapping" "^2.2.0" 501 "@babel/code-frame" "^7.27.1" 502 - "@babel/generator" "^7.28.0" 503 "@babel/helper-compilation-targets" "^7.27.2" 504 - "@babel/helper-module-transforms" "^7.27.3" 505 - "@babel/helpers" "^7.27.6" 506 - "@babel/parser" "^7.28.0" 507 "@babel/template" "^7.27.2" 508 - "@babel/traverse" "^7.28.0" 509 - "@babel/types" "^7.28.0" 510 convert-source-map "^2.0.0" 511 debug "^4.1.0" 512 gensync "^1.0.0-beta.2" 513 json5 "^2.2.3" 514 semver "^6.3.1" 515 516 - "@babel/generator@^7.28.0", "@babel/generator@^7.4.0": 517 - version "7.28.0" 518 - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.0.tgz#9cc2f7bd6eb054d77dc66c2664148a0c5118acd2" 519 - integrity sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg== 520 dependencies: 521 - "@babel/parser" "^7.28.0" 522 - "@babel/types" "^7.28.0" 523 "@jridgewell/gen-mapping" "^0.3.12" 524 "@jridgewell/trace-mapping" "^0.3.28" 525 jsesc "^3.0.2" ··· 555 "@babel/traverse" "^7.27.1" 556 "@babel/types" "^7.27.1" 557 558 - "@babel/helper-module-transforms@^7.27.3": 559 - version "7.27.3" 560 - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz#db0bbcfba5802f9ef7870705a7ef8788508ede02" 561 - integrity sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg== 562 dependencies: 563 "@babel/helper-module-imports" "^7.27.1" 564 "@babel/helper-validator-identifier" "^7.27.1" 565 - "@babel/traverse" "^7.27.3" 566 567 "@babel/helper-plugin-utils@^7.27.1": 568 version "7.27.1" ··· 584 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f" 585 integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== 586 587 - "@babel/helpers@^7.27.6": 588 - version "7.27.6" 589 - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.6.tgz#6456fed15b2cb669d2d1fabe84b66b34991d812c" 590 - integrity sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug== 591 dependencies: 592 "@babel/template" "^7.27.2" 593 - "@babel/types" "^7.27.6" 594 595 "@babel/node@^7.16.5": 596 version "7.28.0" ··· 604 regenerator-runtime "^0.14.0" 605 v8flags "^3.1.1" 606 607 - "@babel/parser@^7.27.2", "@babel/parser@^7.28.0", "@babel/parser@^7.4.3": 608 - version "7.28.0" 609 - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.0.tgz#979829fbab51a29e13901e5a80713dbcb840825e" 610 - integrity sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g== 611 dependencies: 612 - "@babel/types" "^7.28.0" 613 614 "@babel/plugin-syntax-jsx@^7.27.1": 615 version "7.27.1" ··· 630 "@babel/types" "^7.27.1" 631 632 "@babel/register@^7.27.1": 633 - version "7.27.1" 634 - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.27.1.tgz#ea4d701649d788d7cb8a064b7540fd21083147f1" 635 - integrity sha512-K13lQpoV54LATKkzBpBAEu1GGSIRzxR9f4IN4V8DCDgiUMo2UDGagEZr3lPeVNJPLkWUi5JE4hCHKneVTwQlYQ== 636 dependencies: 637 clone-deep "^4.0.1" 638 find-cache-dir "^2.0.0" ··· 649 "@babel/parser" "^7.27.2" 650 "@babel/types" "^7.27.1" 651 652 - "@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.28.0", "@babel/traverse@^7.4.3": 653 - version "7.28.0" 654 - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.0.tgz#518aa113359b062042379e333db18380b537e34b" 655 - integrity sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg== 656 dependencies: 657 "@babel/code-frame" "^7.27.1" 658 - "@babel/generator" "^7.28.0" 659 "@babel/helper-globals" "^7.28.0" 660 - "@babel/parser" "^7.28.0" 661 "@babel/template" "^7.27.2" 662 - "@babel/types" "^7.28.0" 663 debug "^4.3.1" 664 665 - "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.27.6", "@babel/types@^7.28.0", "@babel/types@^7.4.0": 666 - version "7.28.1" 667 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.1.tgz#2aaf3c10b31ba03a77ac84f52b3912a0edef4cf9" 668 - integrity sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ== 669 dependencies: 670 "@babel/helper-string-parser" "^7.27.1" 671 "@babel/helper-validator-identifier" "^7.27.1" ··· 708 kuler "^2.0.0" 709 710 "@discordjs/builders@^1.3.0": 711 - version "1.11.2" 712 - resolved "https://registry.yarnpkg.com/@discordjs/builders/-/builders-1.11.2.tgz#b96185d05d22f9d6bde89aada2decf45a5c982ce" 713 - integrity sha512-F1WTABdd8/R9D1icJzajC4IuLyyS8f3rTOz66JsSI3pKvpCAtsMBweu8cyNYsIyvcrKAVn9EPK+Psoymq+XC0A== 714 dependencies: 715 "@discordjs/formatters" "^0.6.1" 716 "@discordjs/util" "^1.1.1" 717 "@sapphire/shapeshift" "^4.0.0" 718 - discord-api-types "^0.38.1" 719 fast-deep-equal "^3.1.3" 720 ts-mixer "^6.0.4" 721 tslib "^2.6.3" ··· 775 integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== 776 777 "@fastify/busboy@^3.0.0": 778 - version "3.1.1" 779 - resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-3.1.1.tgz#af3aea7f1e52ec916d8b5c9dcc0f09d4c060a3fc" 780 - integrity sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw== 781 782 "@firebase/app-check-interop-types@0.3.2": 783 version "0.3.2" ··· 884 integrity sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g== 885 886 "@google-cloud/storage@^7.7.0": 887 - version "7.16.0" 888 - resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-7.16.0.tgz#62c04ee4f80190992ef06cb033a90c054bcea575" 889 - integrity sha512-7/5LRgykyOfQENcm6hDKP8SX/u9XxE5YOiWOkgkwcoO+cG8xT/cyOvp9wwN3IxfdYgpHs8CE7Nq2PKX2lNaEXw== 890 dependencies: 891 "@google-cloud/paginator" "^5.0.0" 892 "@google-cloud/projectify" "^4.0.0" ··· 947 wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" 948 949 "@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.5": 950 - version "0.3.12" 951 - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz#2234ce26c62889f03db3d7fea43c1932ab3e927b" 952 - integrity sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg== 953 dependencies: 954 "@jridgewell/sourcemap-codec" "^1.5.0" 955 "@jridgewell/trace-mapping" "^0.3.24" ··· 960 integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== 961 962 "@jridgewell/source-map@^0.3.3": 963 - version "0.3.10" 964 - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.10.tgz#a35714446a2e84503ff9bfe66f1d1d4846f2075b" 965 - integrity sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q== 966 dependencies: 967 "@jridgewell/gen-mapping" "^0.3.5" 968 "@jridgewell/trace-mapping" "^0.3.25" 969 970 "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": 971 - version "1.5.4" 972 - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz#7358043433b2e5da569aa02cbc4c121da3af27d7" 973 - integrity sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw== 974 975 "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28": 976 - version "0.3.29" 977 - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz#a58d31eaadaf92c6695680b2e1d464a9b8fbf7fc" 978 - integrity sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ== 979 dependencies: 980 "@jridgewell/resolve-uri" "^3.1.0" 981 "@jridgewell/sourcemap-codec" "^1.4.14" ··· 1221 resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 1222 integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 1223 1224 - "@smithy/abort-controller@^4.0.4": 1225 - version "4.0.4" 1226 - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.0.4.tgz#ab991d521fc78b5c7f24907fcd6803c0f2da51d9" 1227 - integrity sha512-gJnEjZMvigPDQWHrW3oPrFhQtkrgqBkyjj3pCIdF3A5M6vsZODG93KNlfJprv6bp4245bdT32fsHK4kkH3KYDA== 1228 dependencies: 1229 - "@smithy/types" "^4.3.1" 1230 tslib "^2.6.2" 1231 1232 - "@smithy/config-resolver@^4.1.4": 1233 - version "4.1.4" 1234 - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.1.4.tgz#05d8eab8bb8eb73bec90c222fc19ac5608b1384e" 1235 - integrity sha512-prmU+rDddxHOH0oNcwemL+SwnzcG65sBF2yXRO7aeXIn/xTlq2pX7JLVbkBnVLowHLg4/OL4+jBmv9hVrVGS+w== 1236 dependencies: 1237 - "@smithy/node-config-provider" "^4.1.3" 1238 - "@smithy/types" "^4.3.1" 1239 "@smithy/util-config-provider" "^4.0.0" 1240 - "@smithy/util-middleware" "^4.0.4" 1241 tslib "^2.6.2" 1242 1243 - "@smithy/core@^3.7.0", "@smithy/core@^3.7.1": 1244 - version "3.7.1" 1245 - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.7.1.tgz#7f47fc1ec93f20b686d007a7d667a02de8b86219" 1246 - integrity sha512-ExRCsHnXFtBPnM7MkfKBPcBBdHw1h/QS/cbNw4ho95qnyNHvnpmGbR39MIAv9KggTr5qSPxRSEL+hRXlyGyGQw== 1247 dependencies: 1248 - "@smithy/middleware-serde" "^4.0.8" 1249 - "@smithy/protocol-http" "^5.1.2" 1250 - "@smithy/types" "^4.3.1" 1251 "@smithy/util-base64" "^4.0.0" 1252 "@smithy/util-body-length-browser" "^4.0.0" 1253 - "@smithy/util-middleware" "^4.0.4" 1254 - "@smithy/util-stream" "^4.2.3" 1255 "@smithy/util-utf8" "^4.0.0" 1256 tslib "^2.6.2" 1257 1258 - "@smithy/credential-provider-imds@^4.0.6": 1259 - version "4.0.6" 1260 - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.0.6.tgz#4cfd79a619cdbc9a75fcdc51a1193685f6a8944e" 1261 - integrity sha512-hKMWcANhUiNbCJouYkZ9V3+/Qf9pteR1dnwgdyzR09R4ODEYx8BbUysHwRSyex4rZ9zapddZhLFTnT4ZijR4pw== 1262 dependencies: 1263 - "@smithy/node-config-provider" "^4.1.3" 1264 - "@smithy/property-provider" "^4.0.4" 1265 - "@smithy/types" "^4.3.1" 1266 - "@smithy/url-parser" "^4.0.4" 1267 tslib "^2.6.2" 1268 1269 - "@smithy/fetch-http-handler@^5.1.0": 1270 - version "5.1.0" 1271 - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.1.0.tgz#387abd9ec6c8ff0af33b268c0f6ccb289c1b1563" 1272 - integrity sha512-mADw7MS0bYe2OGKkHYMaqarOXuDwRbO6ArD91XhHcl2ynjGCFF+hvqf0LyQcYxkA1zaWjefSkU7Ne9mqgApSgQ== 1273 dependencies: 1274 - "@smithy/protocol-http" "^5.1.2" 1275 - "@smithy/querystring-builder" "^4.0.4" 1276 - "@smithy/types" "^4.3.1" 1277 "@smithy/util-base64" "^4.0.0" 1278 tslib "^2.6.2" 1279 1280 - "@smithy/hash-node@^4.0.4": 1281 - version "4.0.4" 1282 - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.0.4.tgz#f867cfe6b702ed8893aacd3e097f8ca8ecba579e" 1283 - integrity sha512-qnbTPUhCVnCgBp4z4BUJUhOEkVwxiEi1cyFM+Zj6o+aY8OFGxUQleKWq8ltgp3dujuhXojIvJWdoqpm6dVO3lQ== 1284 dependencies: 1285 - "@smithy/types" "^4.3.1" 1286 "@smithy/util-buffer-from" "^4.0.0" 1287 "@smithy/util-utf8" "^4.0.0" 1288 tslib "^2.6.2" 1289 1290 - "@smithy/invalid-dependency@^4.0.4": 1291 - version "4.0.4" 1292 - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.0.4.tgz#8c2c539b2f22e857b4652bd2427a3d7a8befd610" 1293 - integrity sha512-bNYMi7WKTJHu0gn26wg8OscncTt1t2b8KcsZxvOv56XA6cyXtOAAAaNP7+m45xfppXfOatXF3Sb1MNsLUgVLTw== 1294 dependencies: 1295 - "@smithy/types" "^4.3.1" 1296 tslib "^2.6.2" 1297 1298 "@smithy/is-array-buffer@^2.2.0": ··· 1309 dependencies: 1310 tslib "^2.6.2" 1311 1312 - "@smithy/middleware-content-length@^4.0.4": 1313 - version "4.0.4" 1314 - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.0.4.tgz#fad1f125779daf8d5f261dae6dbebba0f60c234b" 1315 - integrity sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w== 1316 dependencies: 1317 - "@smithy/protocol-http" "^5.1.2" 1318 - "@smithy/types" "^4.3.1" 1319 tslib "^2.6.2" 1320 1321 - "@smithy/middleware-endpoint@^4.1.15", "@smithy/middleware-endpoint@^4.1.16": 1322 - version "4.1.16" 1323 - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.16.tgz#d0fea3683659289974a87afb089e5f38575f96c0" 1324 - integrity sha512-plpa50PIGLqzMR2ANKAw2yOW5YKS626KYKqae3atwucbz4Ve4uQ9K9BEZxDLIFmCu7hKLcrq2zmj4a+PfmUV5w== 1325 dependencies: 1326 - "@smithy/core" "^3.7.1" 1327 - "@smithy/middleware-serde" "^4.0.8" 1328 - "@smithy/node-config-provider" "^4.1.3" 1329 - "@smithy/shared-ini-file-loader" "^4.0.4" 1330 - "@smithy/types" "^4.3.1" 1331 - "@smithy/url-parser" "^4.0.4" 1332 - "@smithy/util-middleware" "^4.0.4" 1333 tslib "^2.6.2" 1334 1335 - "@smithy/middleware-retry@^4.1.16": 1336 - version "4.1.17" 1337 - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.17.tgz#5a7aa2547918422e3a8747520900c2fd26a43328" 1338 - integrity sha512-gsCimeG6BApj0SBecwa1Be+Z+JOJe46iy3B3m3A8jKJHf7eIihP76Is4LwLrbJ1ygoS7Vg73lfqzejmLOrazUA== 1339 dependencies: 1340 - "@smithy/node-config-provider" "^4.1.3" 1341 - "@smithy/protocol-http" "^5.1.2" 1342 - "@smithy/service-error-classification" "^4.0.6" 1343 - "@smithy/smithy-client" "^4.4.8" 1344 - "@smithy/types" "^4.3.1" 1345 - "@smithy/util-middleware" "^4.0.4" 1346 - "@smithy/util-retry" "^4.0.6" 1347 tslib "^2.6.2" 1348 uuid "^9.0.1" 1349 1350 - "@smithy/middleware-serde@^4.0.8": 1351 - version "4.0.8" 1352 - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.0.8.tgz#3704c8cc46acd0a7f910a78ee1d2f23ce928701f" 1353 - integrity sha512-iSSl7HJoJaGyMIoNn2B7czghOVwJ9nD7TMvLhMWeSB5vt0TnEYyRRqPJu/TqW76WScaNvYYB8nRoiBHR9S1Ddw== 1354 dependencies: 1355 - "@smithy/protocol-http" "^5.1.2" 1356 - "@smithy/types" "^4.3.1" 1357 tslib "^2.6.2" 1358 1359 - "@smithy/middleware-stack@^4.0.4": 1360 - version "4.0.4" 1361 - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.0.4.tgz#58e0c6a0d7678c6ad4d6af8dd9a00f749ffac7c5" 1362 - integrity sha512-kagK5ggDrBUCCzI93ft6DjteNSfY8Ulr83UtySog/h09lTIOAJ/xUSObutanlPT0nhoHAkpmW9V5K8oPyLh+QA== 1363 dependencies: 1364 - "@smithy/types" "^4.3.1" 1365 tslib "^2.6.2" 1366 1367 - "@smithy/node-config-provider@^4.1.3": 1368 - version "4.1.3" 1369 - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.1.3.tgz#6626fe26c6fe7b0df34f71cb72764ccba414a815" 1370 - integrity sha512-HGHQr2s59qaU1lrVH6MbLlmOBxadtzTsoO4c+bF5asdgVik3I8o7JIOzoeqWc5MjVa+vD36/LWE0iXKpNqooRw== 1371 dependencies: 1372 - "@smithy/property-provider" "^4.0.4" 1373 - "@smithy/shared-ini-file-loader" "^4.0.4" 1374 - "@smithy/types" "^4.3.1" 1375 tslib "^2.6.2" 1376 1377 - "@smithy/node-http-handler@^4.1.0": 1378 - version "4.1.0" 1379 - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.1.0.tgz#6b528cd0da0c35755b34afba207b7db972b0eb92" 1380 - integrity sha512-vqfSiHz2v8b3TTTrdXi03vNz1KLYYS3bhHCDv36FYDqxT7jvTll1mMnCrkD+gOvgwybuunh/2VmvOMqwBegxEg== 1381 dependencies: 1382 - "@smithy/abort-controller" "^4.0.4" 1383 - "@smithy/protocol-http" "^5.1.2" 1384 - "@smithy/querystring-builder" "^4.0.4" 1385 - "@smithy/types" "^4.3.1" 1386 tslib "^2.6.2" 1387 1388 - "@smithy/property-provider@^4.0.4": 1389 - version "4.0.4" 1390 - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.0.4.tgz#303a8fd99665fff61eeb6ec3922eee53838962c5" 1391 - integrity sha512-qHJ2sSgu4FqF4U/5UUp4DhXNmdTrgmoAai6oQiM+c5RZ/sbDwJ12qxB1M6FnP+Tn/ggkPZf9ccn4jqKSINaquw== 1392 dependencies: 1393 - "@smithy/types" "^4.3.1" 1394 tslib "^2.6.2" 1395 1396 - "@smithy/protocol-http@^5.1.2": 1397 - version "5.1.2" 1398 - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.1.2.tgz#8094860c2407f250b80c95899e0385112d6eb98b" 1399 - integrity sha512-rOG5cNLBXovxIrICSBm95dLqzfvxjEmuZx4KK3hWwPFHGdW3lxY0fZNXfv2zebfRO7sJZ5pKJYHScsqopeIWtQ== 1400 dependencies: 1401 - "@smithy/types" "^4.3.1" 1402 tslib "^2.6.2" 1403 1404 - "@smithy/querystring-builder@^4.0.4": 1405 - version "4.0.4" 1406 - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.0.4.tgz#f7546efd59d457b3d2525a330c6137e5f907864c" 1407 - integrity sha512-SwREZcDnEYoh9tLNgMbpop+UTGq44Hl9tdj3rf+yeLcfH7+J8OXEBaMc2kDxtyRHu8BhSg9ADEx0gFHvpJgU8w== 1408 dependencies: 1409 - "@smithy/types" "^4.3.1" 1410 "@smithy/util-uri-escape" "^4.0.0" 1411 tslib "^2.6.2" 1412 1413 - "@smithy/querystring-parser@^4.0.4": 1414 - version "4.0.4" 1415 - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.0.4.tgz#307ab95ee5f1a142ab46c2eddebeae68cb2f703d" 1416 - integrity sha512-6yZf53i/qB8gRHH/l2ZwUG5xgkPgQF15/KxH0DdXMDHjesA9MeZje/853ifkSY0x4m5S+dfDZ+c4x439PF0M2w== 1417 dependencies: 1418 - "@smithy/types" "^4.3.1" 1419 tslib "^2.6.2" 1420 1421 - "@smithy/service-error-classification@^4.0.6": 1422 - version "4.0.6" 1423 - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.6.tgz#5d4d3017f5b62258fbfc1067e14198e125a8286c" 1424 - integrity sha512-RRoTDL//7xi4tn5FrN2NzH17jbgmnKidUqd4KvquT0954/i6CXXkh1884jBiunq24g9cGtPBEXlU40W6EpNOOg== 1425 dependencies: 1426 - "@smithy/types" "^4.3.1" 1427 1428 - "@smithy/shared-ini-file-loader@^4.0.4": 1429 - version "4.0.4" 1430 - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.0.4.tgz#33c63468b95cfd5e7d642c8131d7acc034025e00" 1431 - integrity sha512-63X0260LoFBjrHifPDs+nM9tV0VMkOTl4JRMYNuKh/f5PauSjowTfvF3LogfkWdcPoxsA9UjqEOgjeYIbhb7Nw== 1432 dependencies: 1433 - "@smithy/types" "^4.3.1" 1434 tslib "^2.6.2" 1435 1436 - "@smithy/signature-v4@^5.1.2": 1437 - version "5.1.2" 1438 - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.1.2.tgz#5afd9d428bd26bb660bee8075b6e89fe93600c22" 1439 - integrity sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ== 1440 dependencies: 1441 "@smithy/is-array-buffer" "^4.0.0" 1442 - "@smithy/protocol-http" "^5.1.2" 1443 - "@smithy/types" "^4.3.1" 1444 "@smithy/util-hex-encoding" "^4.0.0" 1445 - "@smithy/util-middleware" "^4.0.4" 1446 "@smithy/util-uri-escape" "^4.0.0" 1447 "@smithy/util-utf8" "^4.0.0" 1448 tslib "^2.6.2" 1449 1450 - "@smithy/smithy-client@^4.4.7", "@smithy/smithy-client@^4.4.8": 1451 - version "4.4.8" 1452 - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.4.8.tgz#91b562a4f60db92c2533a720a091e98557117ab6" 1453 - integrity sha512-pcW691/lx7V54gE+dDGC26nxz8nrvnvRSCJaIYD6XLPpOInEZeKdV/SpSux+wqeQ4Ine7LJQu8uxMvobTIBK0w== 1454 dependencies: 1455 - "@smithy/core" "^3.7.1" 1456 - "@smithy/middleware-endpoint" "^4.1.16" 1457 - "@smithy/middleware-stack" "^4.0.4" 1458 - "@smithy/protocol-http" "^5.1.2" 1459 - "@smithy/types" "^4.3.1" 1460 - "@smithy/util-stream" "^4.2.3" 1461 tslib "^2.6.2" 1462 1463 - "@smithy/types@^4.3.1": 1464 - version "4.3.1" 1465 - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.3.1.tgz#c11276ea16235d798f47a68aef9f44d3dbb70dd4" 1466 - integrity sha512-UqKOQBL2x6+HWl3P+3QqFD4ncKq0I8Nuz9QItGv5WuKuMHuuwlhvqcZCoXGfc+P1QmfJE7VieykoYYmrOoFJxA== 1467 dependencies: 1468 tslib "^2.6.2" 1469 1470 - "@smithy/url-parser@^4.0.4": 1471 - version "4.0.4" 1472 - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.0.4.tgz#049143f4c156356e177bd69242675db26fe4f4db" 1473 - integrity sha512-eMkc144MuN7B0TDA4U2fKs+BqczVbk3W+qIvcoCY6D1JY3hnAdCuhCZODC+GAeaxj0p6Jroz4+XMUn3PCxQQeQ== 1474 dependencies: 1475 - "@smithy/querystring-parser" "^4.0.4" 1476 - "@smithy/types" "^4.3.1" 1477 tslib "^2.6.2" 1478 1479 "@smithy/util-base64@^4.0.0": ··· 1522 dependencies: 1523 tslib "^2.6.2" 1524 1525 - "@smithy/util-defaults-mode-browser@^4.0.23": 1526 - version "4.0.24" 1527 - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.24.tgz#36e2ebd191cffa4799c2474d1d4e793264067fa9" 1528 - integrity sha512-UkQNgaQ+bidw1MgdgPO1z1k95W/v8Ej/5o/T/Is8PiVUYPspl/ZxV6WO/8DrzZQu5ULnmpB9CDdMSRwgRc21AA== 1529 dependencies: 1530 - "@smithy/property-provider" "^4.0.4" 1531 - "@smithy/smithy-client" "^4.4.8" 1532 - "@smithy/types" "^4.3.1" 1533 bowser "^2.11.0" 1534 tslib "^2.6.2" 1535 1536 - "@smithy/util-defaults-mode-node@^4.0.23": 1537 - version "4.0.24" 1538 - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.24.tgz#3b9382bbffcc5c211e582ea6164c630ad994816f" 1539 - integrity sha512-phvGi/15Z4MpuQibTLOYIumvLdXb+XIJu8TA55voGgboln85jytA3wiD7CkUE8SNcWqkkb+uptZKPiuFouX/7g== 1540 dependencies: 1541 - "@smithy/config-resolver" "^4.1.4" 1542 - "@smithy/credential-provider-imds" "^4.0.6" 1543 - "@smithy/node-config-provider" "^4.1.3" 1544 - "@smithy/property-provider" "^4.0.4" 1545 - "@smithy/smithy-client" "^4.4.8" 1546 - "@smithy/types" "^4.3.1" 1547 tslib "^2.6.2" 1548 1549 - "@smithy/util-endpoints@^3.0.6": 1550 - version "3.0.6" 1551 - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.0.6.tgz#a24b0801a1b94c0de26ad83da206b9add68117f2" 1552 - integrity sha512-YARl3tFL3WgPuLzljRUnrS2ngLiUtkwhQtj8PAL13XZSyUiNLQxwG3fBBq3QXFqGFUXepIN73pINp3y8c2nBmA== 1553 dependencies: 1554 - "@smithy/node-config-provider" "^4.1.3" 1555 - "@smithy/types" "^4.3.1" 1556 tslib "^2.6.2" 1557 1558 "@smithy/util-hex-encoding@^4.0.0": ··· 1562 dependencies: 1563 tslib "^2.6.2" 1564 1565 - "@smithy/util-middleware@^4.0.4": 1566 - version "4.0.4" 1567 - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.0.4.tgz#8f639de049082c687841ea5e69c6c36e12e31a3c" 1568 - integrity sha512-9MLKmkBmf4PRb0ONJikCbCwORACcil6gUWojwARCClT7RmLzF04hUR4WdRprIXal7XVyrddadYNfp2eF3nrvtQ== 1569 dependencies: 1570 - "@smithy/types" "^4.3.1" 1571 tslib "^2.6.2" 1572 1573 - "@smithy/util-retry@^4.0.6": 1574 - version "4.0.6" 1575 - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.0.6.tgz#f931fdd1f01786b21a82711e185c58410e8e41c7" 1576 - integrity sha512-+YekoF2CaSMv6zKrA6iI/N9yva3Gzn4L6n35Luydweu5MMPYpiGZlWqehPHDHyNbnyaYlz/WJyYAZnC+loBDZg== 1577 dependencies: 1578 - "@smithy/service-error-classification" "^4.0.6" 1579 - "@smithy/types" "^4.3.1" 1580 tslib "^2.6.2" 1581 1582 - "@smithy/util-stream@^4.2.3": 1583 - version "4.2.3" 1584 - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.2.3.tgz#7980fb94dbee96301b0b2610de8ae1700c7daab1" 1585 - integrity sha512-cQn412DWHHFNKrQfbHY8vSFI3nTROY1aIKji9N0tpp8gUABRilr7wdf8fqBbSlXresobM+tQFNk6I+0LXK/YZg== 1586 dependencies: 1587 - "@smithy/fetch-http-handler" "^5.1.0" 1588 - "@smithy/node-http-handler" "^4.1.0" 1589 - "@smithy/types" "^4.3.1" 1590 "@smithy/util-base64" "^4.0.0" 1591 "@smithy/util-buffer-from" "^4.0.0" 1592 "@smithy/util-hex-encoding" "^4.0.0" ··· 1712 integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== 1713 1714 "@types/node@*", "@types/node@>=13.7.0": 1715 - version "24.1.0" 1716 - resolved "https://registry.yarnpkg.com/@types/node/-/node-24.1.0.tgz#0993f7dc31ab5cc402d112315b463e383d68a49c" 1717 - integrity sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w== 1718 dependencies: 1719 - undici-types "~7.8.0" 1720 1721 "@types/node@^14.14.14": 1722 version "14.18.63" ··· 1724 integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== 1725 1726 "@types/node@^22.0.1", "@types/node@^22.5.4": 1727 - version "22.16.5" 1728 - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.16.5.tgz#cc46ac3994cd957000d0c11095a0b1dae2ea2368" 1729 - integrity sha512-bJFoMATwIGaxxx8VJPeM8TonI8t579oRvgAuT8zFugJsJZgzqv0Fu8Mhp68iecjzG7cnN3mO2dJQ5uUM2EFrgQ== 1730 dependencies: 1731 undici-types "~6.21.0" 1732 ··· 1741 integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== 1742 1743 "@types/request@^2.48.8": 1744 - version "2.48.12" 1745 - resolved "https://registry.yarnpkg.com/@types/request/-/request-2.48.12.tgz#0f590f615a10f87da18e9790ac94c29ec4c5ef30" 1746 - integrity sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw== 1747 dependencies: 1748 "@types/caseless" "*" 1749 "@types/node" "*" 1750 "@types/tough-cookie" "*" 1751 - form-data "^2.5.0" 1752 1753 "@types/send@*": 1754 version "0.17.5" ··· 1776 version "1.3.5" 1777 resolved "https://registry.yarnpkg.com/@types/triple-beam/-/triple-beam-1.3.5.tgz#74fef9ffbaa198eb8b588be029f38b00299caa2c" 1778 integrity sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw== 1779 1780 "@types/webidl-conversions@*": 1781 version "7.0.3" ··· 2184 integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 2185 2186 ansi-regex@^6.0.1: 2187 - version "6.1.0" 2188 - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" 2189 - integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== 2190 2191 ansi-styles@^2.2.1: 2192 version "2.2.1" ··· 2495 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 2496 2497 bare-events@^2.2.0: 2498 - version "2.6.0" 2499 - resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.6.0.tgz#11d9506da109e363a2f3af050fbb005ccdb3ee8f" 2500 - integrity sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg== 2501 2502 base-64@^0.1.0: 2503 version "0.1.0" ··· 2628 hoek "0.9.x" 2629 2630 bowser@^2.11.0: 2631 - version "2.11.0" 2632 - resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" 2633 - integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== 2634 2635 brace-expansion@^1.1.7: 2636 version "1.1.12" ··· 2660 integrity sha512-8CVjaLJGuSKMVTxJ2DpBl5XnlNDiT4cQFeuCJJrvJmts9YrTZDizTX7PjC2s6W4x+MBGZeEY6dGMrF04/6Hgqg== 2661 2662 browserslist@^4.24.0: 2663 - version "4.25.1" 2664 - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111" 2665 - integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw== 2666 dependencies: 2667 - caniuse-lite "^1.0.30001726" 2668 - electron-to-chromium "^1.5.173" 2669 node-releases "^2.0.19" 2670 update-browserslist-db "^1.1.3" 2671 ··· 2825 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 2826 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2827 2828 - caniuse-lite@^1.0.30001726: 2829 - version "1.0.30001727" 2830 - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz#22e9706422ad37aa50556af8c10e40e2d93a8b85" 2831 - integrity sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q== 2832 2833 caseless@~0.12.0: 2834 version "0.12.0" ··· 3142 integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== 3143 3144 core-js@^3.30.2: 3145 - version "3.44.0" 3146 - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.44.0.tgz#db4fd4fa07933c1d6898c8b112a1119a9336e959" 3147 - integrity sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw== 3148 3149 core-util-is@1.0.2: 3150 version "1.0.2" ··· 3309 is-data-view "^1.0.1" 3310 3311 dayjs@^1.11.9: 3312 - version "1.11.13" 3313 - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" 3314 - integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== 3315 3316 debug@2.6.9, debug@^2.2.0: 3317 version "2.6.9" ··· 3441 resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.37.120.tgz#ad7209930509c4cee3efddbacc77a1b18cf66d34" 3442 integrity sha512-7xpNK0EiWjjDFp2nAhHXezE4OUWm7s1zhc/UXXN6hnFFU8dfoPHgV0Hx0RPiCa3ILRpdeh152icc68DGCyXYIw== 3443 3444 - discord-api-types@^0.38.1: 3445 - version "0.38.16" 3446 - resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.38.16.tgz#15e034ae99f5bf0bee5a97d411d675e078e38ad8" 3447 - integrity sha512-Cz42dC5WqJD17Yk0bRy7YLTJmh3NKo4FGpxZuA8MHqT0RPxKSrll5YhlODZ2z5DiEV/gpHMeTSrTFTWpSXjT1Q== 3448 3449 discord.js@14.6.0: 3450 version "14.6.0" ··· 3558 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 3559 integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== 3560 3561 - electron-to-chromium@^1.5.173: 3562 - version "1.5.190" 3563 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.190.tgz#f0ac8be182291a45e8154dbb12f18d2b2318e4ac" 3564 - integrity sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw== 3565 3566 emoji-regex@^7.0.1: 3567 version "7.0.3" ··· 4086 integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 4087 4088 follow-redirects@^1.14.0, follow-redirects@^1.14.8, follow-redirects@^1.15.6: 4089 - version "1.15.9" 4090 - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" 4091 - integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== 4092 4093 for-each@^0.3.3, for-each@^0.3.5: 4094 version "0.3.5" ··· 4123 resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 4124 integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== 4125 4126 - form-data@^2.5.0: 4127 version "2.5.5" 4128 resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.5.tgz#a5f6364ad7e4e67e95b4a07e2d8c6f711c74f624" 4129 integrity sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A== ··· 4851 hasown "^2.0.2" 4852 side-channel "^1.1.0" 4853 4854 ip-address@^7.1.0: 4855 version "7.1.0" 4856 resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-7.1.0.tgz#4a9c699e75b51cbeb18b38de8ed216efa1a490c5" ··· 4859 jsbn "1.1.0" 4860 sprintf-js "1.1.2" 4861 4862 - ip-address@^9.0.5: 4863 - version "9.0.5" 4864 - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" 4865 - integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== 4866 - dependencies: 4867 - jsbn "1.1.0" 4868 - sprintf-js "^1.1.3" 4869 - 4870 ipaddr.js@1.9.1: 4871 version "1.9.1" 4872 resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" ··· 5259 integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== 5260 5261 jose@^6.0.11: 5262 - version "6.0.12" 5263 - resolved "https://registry.yarnpkg.com/jose/-/jose-6.0.12.tgz#56253d94d46bd784addc4bde3691c323552fe7e4" 5264 - integrity sha512-T8xypXs8CpmiIi78k0E+Lk7T2zlK4zDyg+o1CZ4AkOHgDg98ogdP2BeZ61lTFKFyoEwJ9RgAgN+SdM3iPgNonQ== 5265 5266 js-tokens@^4.0.0: 5267 version "4.0.0" ··· 6249 optimist "~0.6.0" 6250 xml "0.0.12" 6251 6252 - nodemailer@6.9.16: 6253 - version "6.9.16" 6254 - resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.9.16.tgz#3ebdf6c6f477c571c0facb0727b33892635e0b8b" 6255 - integrity sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ== 6256 6257 nofilter@^1.0.4: 6258 version "1.0.4" ··· 6297 integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== 6298 6299 nwsapi@^2.2.4: 6300 - version "2.2.20" 6301 - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.20.tgz#22e53253c61e7b0e7e93cef42c891154bcca11ef" 6302 - integrity sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA== 6303 6304 nyc@^14.1.1: 6305 version "14.1.1" ··· 6403 safe-array-concat "^1.1.2" 6404 6405 oidc-token-hash@^5.0.3: 6406 - version "5.1.0" 6407 - resolved "https://registry.yarnpkg.com/oidc-token-hash/-/oidc-token-hash-5.1.0.tgz#74bda0c35dd9f71ea9ce0db72ce8dabf5f90ef79" 6408 - integrity sha512-y0W+X7Ppo7oZX6eovsRkuzcSM40Bicg2JEJkDJ4irIt1wsYAP5MLSNv+QAogO8xivMffw/9OvV3um1pxXgt1uA== 6409 6410 on-finished@2.4.1: 6411 version "2.4.1" ··· 6887 xtend "^4.0.0" 6888 6889 postman-request@^2.88.1-postman.33: 6890 - version "2.88.1-postman.42" 6891 - resolved "https://registry.yarnpkg.com/postman-request/-/postman-request-2.88.1-postman.42.tgz#b7c9b07edcd7b0d4930a2a4c53ec06c4682357e7" 6892 - integrity sha512-lepCE8QU0izagxxA31O/MHj8IUguwLlpqeVK7A8vHK401FPvN/PTIzWHm29c/L3j3kTUE7dhZbq8vvbyQ7S2Bw== 6893 dependencies: 6894 "@postman/form-data" "~3.1.1" 6895 "@postman/tough-cookie" "~4.1.3-postman.1" ··· 6908 oauth-sign "~0.9.0" 6909 qs "~6.5.3" 6910 safe-buffer "^5.1.2" 6911 stream-length "^1.0.2" 6912 uuid "^8.3.2" 6913 ··· 6973 protobufjs "^7.2.5" 6974 6975 protobufjs@^7.2.5, protobufjs@^7.2.6, protobufjs@^7.3.2: 6976 - version "7.5.3" 6977 - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.5.3.tgz#13f95a9e3c84669995ec3652db2ac2fb00b89363" 6978 - integrity sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw== 6979 dependencies: 6980 "@protobufjs/aspromise" "^1.1.2" 6981 "@protobufjs/base64" "^1.1.2" ··· 7731 debug "^4.3.3" 7732 socks "^2.6.2" 7733 7734 - socks@^2.6.2, socks@^2.7.1: 7735 - version "2.8.6" 7736 - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.6.tgz#e335486a2552f34f932f0c27d8dbb93f2be867aa" 7737 - integrity sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA== 7738 dependencies: 7739 - ip-address "^9.0.5" 7740 smart-buffer "^4.2.0" 7741 7742 source-map-support@^0.5.16, source-map-support@~0.5.20: ··· 7793 spdx-license-ids "^3.0.0" 7794 7795 spdx-license-ids@^3.0.0: 7796 - version "3.0.21" 7797 - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz#6d6e980c9df2b6fc905343a3b2d702a6239536c3" 7798 - integrity sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg== 7799 7800 split-on-first@^1.0.0: 7801 version "1.1.0" ··· 7811 version "1.1.2" 7812 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" 7813 integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 7814 - 7815 - sprintf-js@^1.1.3: 7816 - version "1.1.3" 7817 - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" 7818 - integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== 7819 7820 sprintf-js@~1.0.2: 7821 version "1.0.3" ··· 8544 resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" 8545 integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== 8546 8547 - undici-types@~7.8.0: 8548 - version "7.8.0" 8549 - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.8.0.tgz#de00b85b710c54122e44fbfd911f8d70174cd294" 8550 - integrity sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw== 8551 8552 undici@^5.11.0, undici@^5.22.0: 8553 version "5.29.0"
··· 48 "@smithy/util-utf8" "^2.0.0" 49 tslib "^2.6.2" 50 51 + "@aws-sdk/client-cognito-identity@3.876.0": 52 + version "3.876.0" 53 + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.876.0.tgz#9184aaaf99e47ef8279afd828241fdcf3c0b42a8" 54 + integrity sha512-oSoTroa0sJ8TIFh/PamqAKBAmPzNvYCbWm7K9OFCOXApCxF7E981Cwd4AbXwLgy/AAMiXfPgCesPZqr0gTQQQQ== 55 dependencies: 56 "@aws-crypto/sha256-browser" "5.2.0" 57 "@aws-crypto/sha256-js" "5.2.0" 58 + "@aws-sdk/core" "3.876.0" 59 + "@aws-sdk/credential-provider-node" "3.876.0" 60 + "@aws-sdk/middleware-host-header" "3.873.0" 61 + "@aws-sdk/middleware-logger" "3.876.0" 62 + "@aws-sdk/middleware-recursion-detection" "3.873.0" 63 + "@aws-sdk/middleware-user-agent" "3.876.0" 64 + "@aws-sdk/region-config-resolver" "3.873.0" 65 + "@aws-sdk/types" "3.862.0" 66 + "@aws-sdk/util-endpoints" "3.873.0" 67 + "@aws-sdk/util-user-agent-browser" "3.873.0" 68 + "@aws-sdk/util-user-agent-node" "3.876.0" 69 + "@smithy/config-resolver" "^4.1.5" 70 + "@smithy/core" "^3.8.0" 71 + "@smithy/fetch-http-handler" "^5.1.1" 72 + "@smithy/hash-node" "^4.0.5" 73 + "@smithy/invalid-dependency" "^4.0.5" 74 + "@smithy/middleware-content-length" "^4.0.5" 75 + "@smithy/middleware-endpoint" "^4.1.18" 76 + "@smithy/middleware-retry" "^4.1.19" 77 + "@smithy/middleware-serde" "^4.0.9" 78 + "@smithy/middleware-stack" "^4.0.5" 79 + "@smithy/node-config-provider" "^4.1.4" 80 + "@smithy/node-http-handler" "^4.1.1" 81 + "@smithy/protocol-http" "^5.1.3" 82 + "@smithy/smithy-client" "^4.4.10" 83 + "@smithy/types" "^4.3.2" 84 + "@smithy/url-parser" "^4.0.5" 85 "@smithy/util-base64" "^4.0.0" 86 "@smithy/util-body-length-browser" "^4.0.0" 87 "@smithy/util-body-length-node" "^4.0.0" 88 + "@smithy/util-defaults-mode-browser" "^4.0.26" 89 + "@smithy/util-defaults-mode-node" "^4.0.26" 90 + "@smithy/util-endpoints" "^3.0.7" 91 + "@smithy/util-middleware" "^4.0.5" 92 + "@smithy/util-retry" "^4.0.7" 93 "@smithy/util-utf8" "^4.0.0" 94 tslib "^2.6.2" 95 96 + "@aws-sdk/client-sso@3.876.0": 97 + version "3.876.0" 98 + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.876.0.tgz#1088a594684aeb469b5986eeef7ca3819baf8cac" 99 + integrity sha512-Vf0PMF7HVpvllrfPODnBZmlz6kT/y2AvOt1RQG3+qD0VrHWzShc5nwgRZ+yyP3xkKVhZsQ3sJapfZTFnjqMOYA== 100 dependencies: 101 "@aws-crypto/sha256-browser" "5.2.0" 102 "@aws-crypto/sha256-js" "5.2.0" 103 + "@aws-sdk/core" "3.876.0" 104 + "@aws-sdk/middleware-host-header" "3.873.0" 105 + "@aws-sdk/middleware-logger" "3.876.0" 106 + "@aws-sdk/middleware-recursion-detection" "3.873.0" 107 + "@aws-sdk/middleware-user-agent" "3.876.0" 108 + "@aws-sdk/region-config-resolver" "3.873.0" 109 + "@aws-sdk/types" "3.862.0" 110 + "@aws-sdk/util-endpoints" "3.873.0" 111 + "@aws-sdk/util-user-agent-browser" "3.873.0" 112 + "@aws-sdk/util-user-agent-node" "3.876.0" 113 + "@smithy/config-resolver" "^4.1.5" 114 + "@smithy/core" "^3.8.0" 115 + "@smithy/fetch-http-handler" "^5.1.1" 116 + "@smithy/hash-node" "^4.0.5" 117 + "@smithy/invalid-dependency" "^4.0.5" 118 + "@smithy/middleware-content-length" "^4.0.5" 119 + "@smithy/middleware-endpoint" "^4.1.18" 120 + "@smithy/middleware-retry" "^4.1.19" 121 + "@smithy/middleware-serde" "^4.0.9" 122 + "@smithy/middleware-stack" "^4.0.5" 123 + "@smithy/node-config-provider" "^4.1.4" 124 + "@smithy/node-http-handler" "^4.1.1" 125 + "@smithy/protocol-http" "^5.1.3" 126 + "@smithy/smithy-client" "^4.4.10" 127 + "@smithy/types" "^4.3.2" 128 + "@smithy/url-parser" "^4.0.5" 129 "@smithy/util-base64" "^4.0.0" 130 "@smithy/util-body-length-browser" "^4.0.0" 131 "@smithy/util-body-length-node" "^4.0.0" 132 + "@smithy/util-defaults-mode-browser" "^4.0.26" 133 + "@smithy/util-defaults-mode-node" "^4.0.26" 134 + "@smithy/util-endpoints" "^3.0.7" 135 + "@smithy/util-middleware" "^4.0.5" 136 + "@smithy/util-retry" "^4.0.7" 137 "@smithy/util-utf8" "^4.0.0" 138 tslib "^2.6.2" 139 140 + "@aws-sdk/core@3.876.0": 141 + version "3.876.0" 142 + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.876.0.tgz#8f5c6afac9c9f90e6dd19d5d257db1482e50c233" 143 + integrity sha512-sVFBFkdoPOPyY13NaXO1E/R9O5J6ixzHnnRbqrbXYM2QQgLNPTKIiRtmVEuVoFV9YULg+/aKm7caix8m468y9w== 144 dependencies: 145 + "@aws-sdk/types" "3.862.0" 146 + "@aws-sdk/xml-builder" "3.873.0" 147 + "@smithy/core" "^3.8.0" 148 + "@smithy/node-config-provider" "^4.1.4" 149 + "@smithy/property-provider" "^4.0.5" 150 + "@smithy/protocol-http" "^5.1.3" 151 + "@smithy/signature-v4" "^5.1.3" 152 + "@smithy/smithy-client" "^4.4.10" 153 + "@smithy/types" "^4.3.2" 154 "@smithy/util-base64" "^4.0.0" 155 "@smithy/util-body-length-browser" "^4.0.0" 156 + "@smithy/util-middleware" "^4.0.5" 157 "@smithy/util-utf8" "^4.0.0" 158 fast-xml-parser "5.2.5" 159 tslib "^2.6.2" 160 161 + "@aws-sdk/credential-provider-cognito-identity@3.876.0": 162 + version "3.876.0" 163 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.876.0.tgz#2c40a6af34eac4fc0137f9f80a1cba47372f66bb" 164 + integrity sha512-6LlQCVef+DBpBZ3F1g7Fr6uuDCXLK4uf90f6bumZSg4ET/LUoAvIhWIiEZGkZ9jJ441Jnil73kOzwmsb7GkPWQ== 165 dependencies: 166 + "@aws-sdk/client-cognito-identity" "3.876.0" 167 + "@aws-sdk/types" "3.862.0" 168 + "@smithy/property-provider" "^4.0.5" 169 + "@smithy/types" "^4.3.2" 170 tslib "^2.6.2" 171 172 + "@aws-sdk/credential-provider-env@3.876.0": 173 + version "3.876.0" 174 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.876.0.tgz#11e4d4964e6e2fb85351e68da3a0cea9ff3036ab" 175 + integrity sha512-cof7lwp2AlrAfRs0pt4W2KMS2VMBvEmpcti1UOFfSJIqkn+cyJliMJ8LHg22GI+kUexjvxdAqSbf3M7OHvEW+w== 176 dependencies: 177 + "@aws-sdk/core" "3.876.0" 178 + "@aws-sdk/types" "3.862.0" 179 + "@smithy/property-provider" "^4.0.5" 180 + "@smithy/types" "^4.3.2" 181 tslib "^2.6.2" 182 183 + "@aws-sdk/credential-provider-http@3.876.0": 184 + version "3.876.0" 185 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.876.0.tgz#da29a773b5b1ee53308978582582d6bfbb490c66" 186 + integrity sha512-wzmef2NBp2+X1l8D4Q8hx1G8oI3+WdvLdPev9VnVpRYZxYGRWVPl++wvCBsCn/ZL0mdWopPkhHA3kFexQhMzvg== 187 dependencies: 188 + "@aws-sdk/core" "3.876.0" 189 + "@aws-sdk/types" "3.862.0" 190 + "@smithy/fetch-http-handler" "^5.1.1" 191 + "@smithy/node-http-handler" "^4.1.1" 192 + "@smithy/property-provider" "^4.0.5" 193 + "@smithy/protocol-http" "^5.1.3" 194 + "@smithy/smithy-client" "^4.4.10" 195 + "@smithy/types" "^4.3.2" 196 + "@smithy/util-stream" "^4.2.4" 197 tslib "^2.6.2" 198 199 + "@aws-sdk/credential-provider-ini@3.876.0": 200 + version "3.876.0" 201 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.876.0.tgz#6afb8bf97198f88d1740e922a9abf4b4e1155038" 202 + integrity sha512-JHbW6fqnJsVjGHCyko7B0NVPT1nEAPxkM3CGjUcVGsHgJBkxOLVCMQqTRyHcDdeHR2qeojlLoOHRz97xIHQjYw== 203 dependencies: 204 + "@aws-sdk/core" "3.876.0" 205 + "@aws-sdk/credential-provider-env" "3.876.0" 206 + "@aws-sdk/credential-provider-http" "3.876.0" 207 + "@aws-sdk/credential-provider-process" "3.876.0" 208 + "@aws-sdk/credential-provider-sso" "3.876.0" 209 + "@aws-sdk/credential-provider-web-identity" "3.876.0" 210 + "@aws-sdk/nested-clients" "3.876.0" 211 + "@aws-sdk/types" "3.862.0" 212 + "@smithy/credential-provider-imds" "^4.0.7" 213 + "@smithy/property-provider" "^4.0.5" 214 + "@smithy/shared-ini-file-loader" "^4.0.5" 215 + "@smithy/types" "^4.3.2" 216 tslib "^2.6.2" 217 218 + "@aws-sdk/credential-provider-node@3.876.0": 219 + version "3.876.0" 220 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.876.0.tgz#1619f84fee068217414ea2fa57c0e327768a9465" 221 + integrity sha512-eHbNt1+Hi43e8ANnwf6toapLSxfMiyGq459y3Uh6i7NBOiWWKEsOVcgOfUC3RCoqeikxovt1tFM2cEElWUIOhg== 222 dependencies: 223 + "@aws-sdk/credential-provider-env" "3.876.0" 224 + "@aws-sdk/credential-provider-http" "3.876.0" 225 + "@aws-sdk/credential-provider-ini" "3.876.0" 226 + "@aws-sdk/credential-provider-process" "3.876.0" 227 + "@aws-sdk/credential-provider-sso" "3.876.0" 228 + "@aws-sdk/credential-provider-web-identity" "3.876.0" 229 + "@aws-sdk/types" "3.862.0" 230 + "@smithy/credential-provider-imds" "^4.0.7" 231 + "@smithy/property-provider" "^4.0.5" 232 + "@smithy/shared-ini-file-loader" "^4.0.5" 233 + "@smithy/types" "^4.3.2" 234 tslib "^2.6.2" 235 236 + "@aws-sdk/credential-provider-process@3.876.0": 237 + version "3.876.0" 238 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.876.0.tgz#4f9760041e0c9f33d816ea7c5d004ef26d80a8f8" 239 + integrity sha512-SMX4OlHvspu3gF4hxe7WAnZFhxpiCye+WlBSVoWfW/i9XNhtrZS1JMr29MK34GlCTk9qO7FlRwds/Z5k7xPpHg== 240 dependencies: 241 + "@aws-sdk/core" "3.876.0" 242 + "@aws-sdk/types" "3.862.0" 243 + "@smithy/property-provider" "^4.0.5" 244 + "@smithy/shared-ini-file-loader" "^4.0.5" 245 + "@smithy/types" "^4.3.2" 246 tslib "^2.6.2" 247 248 + "@aws-sdk/credential-provider-sso@3.876.0": 249 + version "3.876.0" 250 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.876.0.tgz#d4867ebf546c36ca3df7366bbf70ef99b958da9a" 251 + integrity sha512-iP5dz9XqwePbgnh7Bdrq5e1319JpCRKLyomUfHH1XVeXkIHmwIJdmTj1Upeo1J8L/5cLHmhXAN6CTN11bLo8SA== 252 dependencies: 253 + "@aws-sdk/client-sso" "3.876.0" 254 + "@aws-sdk/core" "3.876.0" 255 + "@aws-sdk/token-providers" "3.876.0" 256 + "@aws-sdk/types" "3.862.0" 257 + "@smithy/property-provider" "^4.0.5" 258 + "@smithy/shared-ini-file-loader" "^4.0.5" 259 + "@smithy/types" "^4.3.2" 260 tslib "^2.6.2" 261 262 + "@aws-sdk/credential-provider-web-identity@3.876.0": 263 + version "3.876.0" 264 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.876.0.tgz#ece58ac87f7b2eb13176f5f89aafe916562289ef" 265 + integrity sha512-q/XSCP1uae5aB9veM8zcm6Gqu6A4ckX9ZbhHgCzURXVJDwp+nINW1hM9vppMjGw3ND9Ibx/adR+KfTI0TDMzqw== 266 dependencies: 267 + "@aws-sdk/core" "3.876.0" 268 + "@aws-sdk/nested-clients" "3.876.0" 269 + "@aws-sdk/types" "3.862.0" 270 + "@smithy/property-provider" "^4.0.5" 271 + "@smithy/types" "^4.3.2" 272 tslib "^2.6.2" 273 274 "@aws-sdk/credential-providers@^3.186.0": 275 + version "3.876.0" 276 + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.876.0.tgz#2812958919070f28aa036b1d87df9ea99973e3fd" 277 + integrity sha512-ruCLlBpz+ggJQtdrnnfgjtFUJaHKN2WtNp1tyuV/qDmLk5vMgk2BSyOWLyTsbJC+L+I76w7NADY6VIRe9MiF0Q== 278 dependencies: 279 + "@aws-sdk/client-cognito-identity" "3.876.0" 280 + "@aws-sdk/core" "3.876.0" 281 + "@aws-sdk/credential-provider-cognito-identity" "3.876.0" 282 + "@aws-sdk/credential-provider-env" "3.876.0" 283 + "@aws-sdk/credential-provider-http" "3.876.0" 284 + "@aws-sdk/credential-provider-ini" "3.876.0" 285 + "@aws-sdk/credential-provider-node" "3.876.0" 286 + "@aws-sdk/credential-provider-process" "3.876.0" 287 + "@aws-sdk/credential-provider-sso" "3.876.0" 288 + "@aws-sdk/credential-provider-web-identity" "3.876.0" 289 + "@aws-sdk/nested-clients" "3.876.0" 290 + "@aws-sdk/types" "3.862.0" 291 + "@smithy/config-resolver" "^4.1.5" 292 + "@smithy/core" "^3.8.0" 293 + "@smithy/credential-provider-imds" "^4.0.7" 294 + "@smithy/node-config-provider" "^4.1.4" 295 + "@smithy/property-provider" "^4.0.5" 296 + "@smithy/types" "^4.3.2" 297 tslib "^2.6.2" 298 299 + "@aws-sdk/middleware-host-header@3.873.0": 300 + version "3.873.0" 301 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.873.0.tgz#81e9c2f61674b96337472bcaefd85ce3b7a24f7b" 302 + integrity sha512-KZ/W1uruWtMOs7D5j3KquOxzCnV79KQW9MjJFZM/M0l6KI8J6V3718MXxFHsTjUE4fpdV6SeCNLV1lwGygsjJA== 303 dependencies: 304 + "@aws-sdk/types" "3.862.0" 305 + "@smithy/protocol-http" "^5.1.3" 306 + "@smithy/types" "^4.3.2" 307 tslib "^2.6.2" 308 309 + "@aws-sdk/middleware-logger@3.876.0": 310 + version "3.876.0" 311 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.876.0.tgz#16ee45f7bcd887badc8f12d80eef9ba18a0ac97c" 312 + integrity sha512-cpWJhOuMSyz9oV25Z/CMHCBTgafDCbv7fHR80nlRrPdPZ8ETNsahwRgltXP1QJJ8r3X/c1kwpOR7tc+RabVzNA== 313 dependencies: 314 + "@aws-sdk/types" "3.862.0" 315 + "@smithy/types" "^4.3.2" 316 tslib "^2.6.2" 317 318 + "@aws-sdk/middleware-recursion-detection@3.873.0": 319 + version "3.873.0" 320 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.873.0.tgz#1f9086542800d355d85332acea7accf1856e408b" 321 + integrity sha512-OtgY8EXOzRdEWR//WfPkA/fXl0+WwE8hq0y9iw2caNyKPtca85dzrrZWnPqyBK/cpImosrpR1iKMYr41XshsCg== 322 dependencies: 323 + "@aws-sdk/types" "3.862.0" 324 + "@smithy/protocol-http" "^5.1.3" 325 + "@smithy/types" "^4.3.2" 326 tslib "^2.6.2" 327 328 + "@aws-sdk/middleware-user-agent@3.876.0": 329 + version "3.876.0" 330 + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.876.0.tgz#207f62b1e9f141ede0a562fd1f1bf90b948a2089" 331 + integrity sha512-FR+8INfnbNv32QDQ5szxkWX6mB/QgezfNyx8LnAh1ErISZMmEFBxXXir+ZOfuV8vsmal1a6cy9qmnMNDaNnaNQ== 332 dependencies: 333 + "@aws-sdk/core" "3.876.0" 334 + "@aws-sdk/types" "3.862.0" 335 + "@aws-sdk/util-endpoints" "3.873.0" 336 + "@smithy/core" "^3.8.0" 337 + "@smithy/protocol-http" "^5.1.3" 338 + "@smithy/types" "^4.3.2" 339 tslib "^2.6.2" 340 341 + "@aws-sdk/nested-clients@3.876.0": 342 + version "3.876.0" 343 + resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.876.0.tgz#73919a21b0d71d9b25b3eb2294f62fc812e79f31" 344 + integrity sha512-R4TZrkM2gUElTsotk8mt3y7iLG8TNi1LL1wgVdEEWSLOYTaFyglGdoNBMtEeP7lmXilaTy00AbYF6BakJvSTHg== 345 dependencies: 346 "@aws-crypto/sha256-browser" "5.2.0" 347 "@aws-crypto/sha256-js" "5.2.0" 348 + "@aws-sdk/core" "3.876.0" 349 + "@aws-sdk/middleware-host-header" "3.873.0" 350 + "@aws-sdk/middleware-logger" "3.876.0" 351 + "@aws-sdk/middleware-recursion-detection" "3.873.0" 352 + "@aws-sdk/middleware-user-agent" "3.876.0" 353 + "@aws-sdk/region-config-resolver" "3.873.0" 354 + "@aws-sdk/types" "3.862.0" 355 + "@aws-sdk/util-endpoints" "3.873.0" 356 + "@aws-sdk/util-user-agent-browser" "3.873.0" 357 + "@aws-sdk/util-user-agent-node" "3.876.0" 358 + "@smithy/config-resolver" "^4.1.5" 359 + "@smithy/core" "^3.8.0" 360 + "@smithy/fetch-http-handler" "^5.1.1" 361 + "@smithy/hash-node" "^4.0.5" 362 + "@smithy/invalid-dependency" "^4.0.5" 363 + "@smithy/middleware-content-length" "^4.0.5" 364 + "@smithy/middleware-endpoint" "^4.1.18" 365 + "@smithy/middleware-retry" "^4.1.19" 366 + "@smithy/middleware-serde" "^4.0.9" 367 + "@smithy/middleware-stack" "^4.0.5" 368 + "@smithy/node-config-provider" "^4.1.4" 369 + "@smithy/node-http-handler" "^4.1.1" 370 + "@smithy/protocol-http" "^5.1.3" 371 + "@smithy/smithy-client" "^4.4.10" 372 + "@smithy/types" "^4.3.2" 373 + "@smithy/url-parser" "^4.0.5" 374 "@smithy/util-base64" "^4.0.0" 375 "@smithy/util-body-length-browser" "^4.0.0" 376 "@smithy/util-body-length-node" "^4.0.0" 377 + "@smithy/util-defaults-mode-browser" "^4.0.26" 378 + "@smithy/util-defaults-mode-node" "^4.0.26" 379 + "@smithy/util-endpoints" "^3.0.7" 380 + "@smithy/util-middleware" "^4.0.5" 381 + "@smithy/util-retry" "^4.0.7" 382 "@smithy/util-utf8" "^4.0.0" 383 tslib "^2.6.2" 384 385 + "@aws-sdk/region-config-resolver@3.873.0": 386 + version "3.873.0" 387 + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.873.0.tgz#9a5ddf8aa5a068d1c728dda3ef7e5b31561f7419" 388 + integrity sha512-q9sPoef+BBG6PJnc4x60vK/bfVwvRWsPgcoQyIra057S/QGjq5VkjvNk6H8xedf6vnKlXNBwq9BaANBXnldUJg== 389 dependencies: 390 + "@aws-sdk/types" "3.862.0" 391 + "@smithy/node-config-provider" "^4.1.4" 392 + "@smithy/types" "^4.3.2" 393 "@smithy/util-config-provider" "^4.0.0" 394 + "@smithy/util-middleware" "^4.0.5" 395 tslib "^2.6.2" 396 397 + "@aws-sdk/token-providers@3.876.0": 398 + version "3.876.0" 399 + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.876.0.tgz#952d62cfe53c9964bb2a6db687698279fe22fd57" 400 + integrity sha512-iU08kaQbhXnY0CC2TBcr7y/2PqPwZP2CTWX/Rbq0NvhOyteikfh7ASC+bRfLUp0XMSHKvSb+w2dh8a0lvx4oHg== 401 dependencies: 402 + "@aws-sdk/core" "3.876.0" 403 + "@aws-sdk/nested-clients" "3.876.0" 404 + "@aws-sdk/types" "3.862.0" 405 + "@smithy/property-provider" "^4.0.5" 406 + "@smithy/shared-ini-file-loader" "^4.0.5" 407 + "@smithy/types" "^4.3.2" 408 tslib "^2.6.2" 409 410 + "@aws-sdk/types@3.862.0", "@aws-sdk/types@^3.222.0": 411 + version "3.862.0" 412 + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.862.0.tgz#2f5622e1aa3a5281d4f419f5d2c90f87dd5ff0cf" 413 + integrity sha512-Bei+RL0cDxxV+lW2UezLbCYYNeJm6Nzee0TpW0FfyTRBhH9C1XQh4+x+IClriXvgBnRquTMMYsmJfvx8iyLKrg== 414 dependencies: 415 + "@smithy/types" "^4.3.2" 416 tslib "^2.6.2" 417 418 + "@aws-sdk/util-endpoints@3.873.0": 419 + version "3.873.0" 420 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.873.0.tgz#11afbcf503bdbcf10c0ed08c81696303b8bb5fb0" 421 + integrity sha512-YByHrhjxYdjKRf/RQygRK1uh0As1FIi9+jXTcIEX/rBgN8mUByczr2u4QXBzw7ZdbdcOBMOkPnLRjNOWW1MkFg== 422 dependencies: 423 + "@aws-sdk/types" "3.862.0" 424 + "@smithy/types" "^4.3.2" 425 + "@smithy/url-parser" "^4.0.5" 426 + "@smithy/util-endpoints" "^3.0.7" 427 tslib "^2.6.2" 428 429 "@aws-sdk/util-locate-window@^3.0.0": 430 + version "3.873.0" 431 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.873.0.tgz#cc10edef3b7aecf365943ec657116d6eb470d9cb" 432 + integrity sha512-xcVhZF6svjM5Rj89T1WzkjQmrTF6dpR2UvIHPMTnSZoNe6CixejPZ6f0JJ2kAhO8H+dUHwNBlsUgOTIKiK/Syg== 433 dependencies: 434 tslib "^2.6.2" 435 436 + "@aws-sdk/util-user-agent-browser@3.873.0": 437 + version "3.873.0" 438 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.873.0.tgz#0fcc3c1877ae74aa692cc0b4ad874bc9a6ee1ad6" 439 + integrity sha512-AcRdbK6o19yehEcywI43blIBhOCSo6UgyWcuOJX5CFF8k39xm1ILCjQlRRjchLAxWrm0lU0Q7XV90RiMMFMZtA== 440 dependencies: 441 + "@aws-sdk/types" "3.862.0" 442 + "@smithy/types" "^4.3.2" 443 bowser "^2.11.0" 444 tslib "^2.6.2" 445 446 + "@aws-sdk/util-user-agent-node@3.876.0": 447 + version "3.876.0" 448 + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.876.0.tgz#0300f97d6a67bb451c9bc7d59fc35976ad311189" 449 + integrity sha512-/ZIaeUt60JBdI0mNc7sZ8v3Tuzp8Pbe4gIAYnppGyF4KV8QA+Yu8tp2bGHfkKn150t1uvQ6P/4CwFfoGF34dzg== 450 dependencies: 451 + "@aws-sdk/middleware-user-agent" "3.876.0" 452 + "@aws-sdk/types" "3.862.0" 453 + "@smithy/node-config-provider" "^4.1.4" 454 + "@smithy/types" "^4.3.2" 455 tslib "^2.6.2" 456 457 + "@aws-sdk/xml-builder@3.873.0": 458 + version "3.873.0" 459 + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.873.0.tgz#b5a3acfdeecfc1b7fee8a7773cb2a45590eb5701" 460 + integrity sha512-kLO7k7cGJ6KaHiExSJWojZurF7SnGMDHXRuQunFnEoD0n1yB6Lqy/S/zHiQ7oJnBhPr9q0TW9qFkrsZb1Uc54w== 461 dependencies: 462 + "@smithy/types" "^4.3.2" 463 tslib "^2.6.2" 464 465 "@babel/cli@^7.16.0": 466 + version "7.28.3" 467 + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.28.3.tgz#f33693753bc103ab0084a5776ccf8ab8a140038b" 468 + integrity sha512-n1RU5vuCX0CsaqaXm9I0KUCNKNQMy5epmzl/xdSSm70bSqhg9GWhgeosypyQLc0bK24+Xpk1WGzZlI9pJtkZdg== 469 dependencies: 470 "@jridgewell/trace-mapping" "^0.3.28" 471 commander "^6.2.0" ··· 493 integrity sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw== 494 495 "@babel/core@^7.16.5": 496 + version "7.28.3" 497 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.3.tgz#aceddde69c5d1def69b839d09efa3e3ff59c97cb" 498 + integrity sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ== 499 dependencies: 500 "@ampproject/remapping" "^2.2.0" 501 "@babel/code-frame" "^7.27.1" 502 + "@babel/generator" "^7.28.3" 503 "@babel/helper-compilation-targets" "^7.27.2" 504 + "@babel/helper-module-transforms" "^7.28.3" 505 + "@babel/helpers" "^7.28.3" 506 + "@babel/parser" "^7.28.3" 507 "@babel/template" "^7.27.2" 508 + "@babel/traverse" "^7.28.3" 509 + "@babel/types" "^7.28.2" 510 convert-source-map "^2.0.0" 511 debug "^4.1.0" 512 gensync "^1.0.0-beta.2" 513 json5 "^2.2.3" 514 semver "^6.3.1" 515 516 + "@babel/generator@^7.28.3", "@babel/generator@^7.4.0": 517 + version "7.28.3" 518 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.3.tgz#9626c1741c650cbac39121694a0f2d7451b8ef3e" 519 + integrity sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw== 520 dependencies: 521 + "@babel/parser" "^7.28.3" 522 + "@babel/types" "^7.28.2" 523 "@jridgewell/gen-mapping" "^0.3.12" 524 "@jridgewell/trace-mapping" "^0.3.28" 525 jsesc "^3.0.2" ··· 555 "@babel/traverse" "^7.27.1" 556 "@babel/types" "^7.27.1" 557 558 + "@babel/helper-module-transforms@^7.28.3": 559 + version "7.28.3" 560 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz#a2b37d3da3b2344fe085dab234426f2b9a2fa5f6" 561 + integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw== 562 dependencies: 563 "@babel/helper-module-imports" "^7.27.1" 564 "@babel/helper-validator-identifier" "^7.27.1" 565 + "@babel/traverse" "^7.28.3" 566 567 "@babel/helper-plugin-utils@^7.27.1": 568 version "7.27.1" ··· 584 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f" 585 integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== 586 587 + "@babel/helpers@^7.28.3": 588 + version "7.28.3" 589 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.3.tgz#b83156c0a2232c133d1b535dd5d3452119c7e441" 590 + integrity sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw== 591 dependencies: 592 "@babel/template" "^7.27.2" 593 + "@babel/types" "^7.28.2" 594 595 "@babel/node@^7.16.5": 596 version "7.28.0" ··· 604 regenerator-runtime "^0.14.0" 605 v8flags "^3.1.1" 606 607 + "@babel/parser@^7.27.2", "@babel/parser@^7.28.3", "@babel/parser@^7.4.3": 608 + version "7.28.3" 609 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.3.tgz#d2d25b814621bca5fe9d172bc93792547e7a2a71" 610 + integrity sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA== 611 dependencies: 612 + "@babel/types" "^7.28.2" 613 614 "@babel/plugin-syntax-jsx@^7.27.1": 615 version "7.27.1" ··· 630 "@babel/types" "^7.27.1" 631 632 "@babel/register@^7.27.1": 633 + version "7.28.3" 634 + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.28.3.tgz#abd8a3753480c799bdaf9c9092d6745d16e052c2" 635 + integrity sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA== 636 dependencies: 637 clone-deep "^4.0.1" 638 find-cache-dir "^2.0.0" ··· 649 "@babel/parser" "^7.27.2" 650 "@babel/types" "^7.27.1" 651 652 + "@babel/traverse@^7.27.1", "@babel/traverse@^7.28.3", "@babel/traverse@^7.4.3": 653 + version "7.28.3" 654 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.3.tgz#6911a10795d2cce43ec6a28cffc440cca2593434" 655 + integrity sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ== 656 dependencies: 657 "@babel/code-frame" "^7.27.1" 658 + "@babel/generator" "^7.28.3" 659 "@babel/helper-globals" "^7.28.0" 660 + "@babel/parser" "^7.28.3" 661 "@babel/template" "^7.27.2" 662 + "@babel/types" "^7.28.2" 663 debug "^4.3.1" 664 665 + "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.4.0": 666 + version "7.28.2" 667 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.2.tgz#da9db0856a9a88e0a13b019881d7513588cf712b" 668 + integrity sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ== 669 dependencies: 670 "@babel/helper-string-parser" "^7.27.1" 671 "@babel/helper-validator-identifier" "^7.27.1" ··· 708 kuler "^2.0.0" 709 710 "@discordjs/builders@^1.3.0": 711 + version "1.11.3" 712 + resolved "https://registry.yarnpkg.com/@discordjs/builders/-/builders-1.11.3.tgz#14b8b027e16b73136924faecaf1819b94711647c" 713 + integrity sha512-p3kf5eV49CJiRTfhtutUCeivSyQ/l2JlKodW1ZquRwwvlOWmG9+6jFShX6x8rUiYhnP6wKI96rgN/SXMy5e5aw== 714 dependencies: 715 "@discordjs/formatters" "^0.6.1" 716 "@discordjs/util" "^1.1.1" 717 "@sapphire/shapeshift" "^4.0.0" 718 + discord-api-types "^0.38.16" 719 fast-deep-equal "^3.1.3" 720 ts-mixer "^6.0.4" 721 tslib "^2.6.3" ··· 775 integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== 776 777 "@fastify/busboy@^3.0.0": 778 + version "3.2.0" 779 + resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-3.2.0.tgz#13ed8212f3b9ba697611529d15347f8528058cea" 780 + integrity sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA== 781 782 "@firebase/app-check-interop-types@0.3.2": 783 version "0.3.2" ··· 884 integrity sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g== 885 886 "@google-cloud/storage@^7.7.0": 887 + version "7.17.0" 888 + resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-7.17.0.tgz#1d238f54a0932f36c2364ec9babded218edd7d53" 889 + integrity sha512-5m9GoZqKh52a1UqkxDBu/+WVFDALNtHg5up5gNmNbXQWBcV813tzJKsyDtKjOPrlR1em1TxtD7NSPCrObH7koQ== 890 dependencies: 891 "@google-cloud/paginator" "^5.0.0" 892 "@google-cloud/projectify" "^4.0.0" ··· 947 wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" 948 949 "@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.5": 950 + version "0.3.13" 951 + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz#6342a19f44347518c93e43b1ac69deb3c4656a1f" 952 + integrity sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== 953 dependencies: 954 "@jridgewell/sourcemap-codec" "^1.5.0" 955 "@jridgewell/trace-mapping" "^0.3.24" ··· 960 integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== 961 962 "@jridgewell/source-map@^0.3.3": 963 + version "0.3.11" 964 + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.11.tgz#b21835cbd36db656b857c2ad02ebd413cc13a9ba" 965 + integrity sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== 966 dependencies: 967 "@jridgewell/gen-mapping" "^0.3.5" 968 "@jridgewell/trace-mapping" "^0.3.25" 969 970 "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": 971 + version "1.5.5" 972 + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba" 973 + integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== 974 975 "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28": 976 + version "0.3.30" 977 + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz#4a76c4daeee5df09f5d3940e087442fb36ce2b99" 978 + integrity sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q== 979 dependencies: 980 "@jridgewell/resolve-uri" "^3.1.0" 981 "@jridgewell/sourcemap-codec" "^1.4.14" ··· 1221 resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 1222 integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 1223 1224 + "@smithy/abort-controller@^4.0.5": 1225 + version "4.0.5" 1226 + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.0.5.tgz#2872a12d0f11dfdcc4254b39566d5f24ab26a4ab" 1227 + integrity sha512-jcrqdTQurIrBbUm4W2YdLVMQDoL0sA9DTxYd2s+R/y+2U9NLOP7Xf/YqfSg1FZhlZIYEnvk2mwbyvIfdLEPo8g== 1228 dependencies: 1229 + "@smithy/types" "^4.3.2" 1230 tslib "^2.6.2" 1231 1232 + "@smithy/config-resolver@^4.1.5": 1233 + version "4.1.5" 1234 + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.1.5.tgz#3cb7cde8d13ca64630e5655812bac9ffe8182469" 1235 + integrity sha512-viuHMxBAqydkB0AfWwHIdwf/PRH2z5KHGUzqyRtS/Wv+n3IHI993Sk76VCA7dD/+GzgGOmlJDITfPcJC1nIVIw== 1236 dependencies: 1237 + "@smithy/node-config-provider" "^4.1.4" 1238 + "@smithy/types" "^4.3.2" 1239 "@smithy/util-config-provider" "^4.0.0" 1240 + "@smithy/util-middleware" "^4.0.5" 1241 tslib "^2.6.2" 1242 1243 + "@smithy/core@^3.8.0": 1244 + version "3.8.0" 1245 + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.8.0.tgz#321d03564b753025b92e4476579efcd5c505ab1f" 1246 + integrity sha512-EYqsIYJmkR1VhVE9pccnk353xhs+lB6btdutJEtsp7R055haMJp2yE16eSxw8fv+G0WUY6vqxyYOP8kOqawxYQ== 1247 dependencies: 1248 + "@smithy/middleware-serde" "^4.0.9" 1249 + "@smithy/protocol-http" "^5.1.3" 1250 + "@smithy/types" "^4.3.2" 1251 "@smithy/util-base64" "^4.0.0" 1252 "@smithy/util-body-length-browser" "^4.0.0" 1253 + "@smithy/util-middleware" "^4.0.5" 1254 + "@smithy/util-stream" "^4.2.4" 1255 "@smithy/util-utf8" "^4.0.0" 1256 + "@types/uuid" "^9.0.1" 1257 tslib "^2.6.2" 1258 + uuid "^9.0.1" 1259 1260 + "@smithy/credential-provider-imds@^4.0.7": 1261 + version "4.0.7" 1262 + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.0.7.tgz#d8bb566ffd8d9e556810b83d6e0b01b39036b810" 1263 + integrity sha512-dDzrMXA8d8riFNiPvytxn0mNwR4B3h8lgrQ5UjAGu6T9z/kRg/Xncf4tEQHE/+t25sY8IH3CowcmWi+1U5B1Gw== 1264 dependencies: 1265 + "@smithy/node-config-provider" "^4.1.4" 1266 + "@smithy/property-provider" "^4.0.5" 1267 + "@smithy/types" "^4.3.2" 1268 + "@smithy/url-parser" "^4.0.5" 1269 tslib "^2.6.2" 1270 1271 + "@smithy/fetch-http-handler@^5.1.1": 1272 + version "5.1.1" 1273 + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.1.1.tgz#a444c99bffdf314deb447370429cc3e719f1a866" 1274 + integrity sha512-61WjM0PWmZJR+SnmzaKI7t7G0UkkNFboDpzIdzSoy7TByUzlxo18Qlh9s71qug4AY4hlH/CwXdubMtkcNEb/sQ== 1275 dependencies: 1276 + "@smithy/protocol-http" "^5.1.3" 1277 + "@smithy/querystring-builder" "^4.0.5" 1278 + "@smithy/types" "^4.3.2" 1279 "@smithy/util-base64" "^4.0.0" 1280 tslib "^2.6.2" 1281 1282 + "@smithy/hash-node@^4.0.5": 1283 + version "4.0.5" 1284 + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.0.5.tgz#16cf8efe42b8b611b1f56f78464b97b27ca6a3ec" 1285 + integrity sha512-cv1HHkKhpyRb6ahD8Vcfb2Hgz67vNIXEp2vnhzfxLFGRukLCNEA5QdsorbUEzXma1Rco0u3rx5VTqbM06GcZqQ== 1286 dependencies: 1287 + "@smithy/types" "^4.3.2" 1288 "@smithy/util-buffer-from" "^4.0.0" 1289 "@smithy/util-utf8" "^4.0.0" 1290 tslib "^2.6.2" 1291 1292 + "@smithy/invalid-dependency@^4.0.5": 1293 + version "4.0.5" 1294 + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.0.5.tgz#ed88e209668266b09c4b501f9bd656728b5ece60" 1295 + integrity sha512-IVnb78Qtf7EJpoEVo7qJ8BEXQwgC4n3igeJNNKEj/MLYtapnx8A67Zt/J3RXAj2xSO1910zk0LdFiygSemuLow== 1296 dependencies: 1297 + "@smithy/types" "^4.3.2" 1298 tslib "^2.6.2" 1299 1300 "@smithy/is-array-buffer@^2.2.0": ··· 1311 dependencies: 1312 tslib "^2.6.2" 1313 1314 + "@smithy/middleware-content-length@^4.0.5": 1315 + version "4.0.5" 1316 + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.0.5.tgz#c5d6e47f5a9fbba20433602bec9bffaeeb821ff3" 1317 + integrity sha512-l1jlNZoYzoCC7p0zCtBDE5OBXZ95yMKlRlftooE5jPWQn4YBPLgsp+oeHp7iMHaTGoUdFqmHOPa8c9G3gBsRpQ== 1318 dependencies: 1319 + "@smithy/protocol-http" "^5.1.3" 1320 + "@smithy/types" "^4.3.2" 1321 tslib "^2.6.2" 1322 1323 + "@smithy/middleware-endpoint@^4.1.18": 1324 + version "4.1.18" 1325 + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.18.tgz#81b2f85e3c72b0f1a2d8776e01b0a2968af62c0a" 1326 + integrity sha512-ZhvqcVRPZxnZlokcPaTwb+r+h4yOIOCJmx0v2d1bpVlmP465g3qpVSf7wxcq5zZdu4jb0H4yIMxuPwDJSQc3MQ== 1327 dependencies: 1328 + "@smithy/core" "^3.8.0" 1329 + "@smithy/middleware-serde" "^4.0.9" 1330 + "@smithy/node-config-provider" "^4.1.4" 1331 + "@smithy/shared-ini-file-loader" "^4.0.5" 1332 + "@smithy/types" "^4.3.2" 1333 + "@smithy/url-parser" "^4.0.5" 1334 + "@smithy/util-middleware" "^4.0.5" 1335 tslib "^2.6.2" 1336 1337 + "@smithy/middleware-retry@^4.1.19": 1338 + version "4.1.19" 1339 + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.19.tgz#19c013c1a548e1185cc1bfabfab3f498667c9e89" 1340 + integrity sha512-X58zx/NVECjeuUB6A8HBu4bhx72EoUz+T5jTMIyeNKx2lf+Gs9TmWPNNkH+5QF0COjpInP/xSpJGJ7xEnAklQQ== 1341 dependencies: 1342 + "@smithy/node-config-provider" "^4.1.4" 1343 + "@smithy/protocol-http" "^5.1.3" 1344 + "@smithy/service-error-classification" "^4.0.7" 1345 + "@smithy/smithy-client" "^4.4.10" 1346 + "@smithy/types" "^4.3.2" 1347 + "@smithy/util-middleware" "^4.0.5" 1348 + "@smithy/util-retry" "^4.0.7" 1349 + "@types/uuid" "^9.0.1" 1350 tslib "^2.6.2" 1351 uuid "^9.0.1" 1352 1353 + "@smithy/middleware-serde@^4.0.9": 1354 + version "4.0.9" 1355 + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.0.9.tgz#71213158bb11c1d632829001ca3f233323fb2a7c" 1356 + integrity sha512-uAFFR4dpeoJPGz8x9mhxp+RPjo5wW0QEEIPPPbLXiRRWeCATf/Km3gKIVR5vaP8bN1kgsPhcEeh+IZvUlBv6Xg== 1357 dependencies: 1358 + "@smithy/protocol-http" "^5.1.3" 1359 + "@smithy/types" "^4.3.2" 1360 tslib "^2.6.2" 1361 1362 + "@smithy/middleware-stack@^4.0.5": 1363 + version "4.0.5" 1364 + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.0.5.tgz#577050d4c0afe816f1ea85f335b2ef64f73e4328" 1365 + integrity sha512-/yoHDXZPh3ocRVyeWQFvC44u8seu3eYzZRveCMfgMOBcNKnAmOvjbL9+Cp5XKSIi9iYA9PECUuW2teDAk8T+OQ== 1366 dependencies: 1367 + "@smithy/types" "^4.3.2" 1368 tslib "^2.6.2" 1369 1370 + "@smithy/node-config-provider@^4.1.4": 1371 + version "4.1.4" 1372 + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.1.4.tgz#42f231b7027e5a7ce003fd80180e586fe814944a" 1373 + integrity sha512-+UDQV/k42jLEPPHSn39l0Bmc4sB1xtdI9Gd47fzo/0PbXzJ7ylgaOByVjF5EeQIumkepnrJyfx86dPa9p47Y+w== 1374 dependencies: 1375 + "@smithy/property-provider" "^4.0.5" 1376 + "@smithy/shared-ini-file-loader" "^4.0.5" 1377 + "@smithy/types" "^4.3.2" 1378 tslib "^2.6.2" 1379 1380 + "@smithy/node-http-handler@^4.1.1": 1381 + version "4.1.1" 1382 + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.1.1.tgz#dd806d9e08b6e73125040dd0808ab56d16a178e9" 1383 + integrity sha512-RHnlHqFpoVdjSPPiYy/t40Zovf3BBHc2oemgD7VsVTFFZrU5erFFe0n52OANZZ/5sbshgD93sOh5r6I35Xmpaw== 1384 dependencies: 1385 + "@smithy/abort-controller" "^4.0.5" 1386 + "@smithy/protocol-http" "^5.1.3" 1387 + "@smithy/querystring-builder" "^4.0.5" 1388 + "@smithy/types" "^4.3.2" 1389 tslib "^2.6.2" 1390 1391 + "@smithy/property-provider@^4.0.5": 1392 + version "4.0.5" 1393 + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.0.5.tgz#d3b368b31d5b130f4c30cc0c91f9ebb28d9685fc" 1394 + integrity sha512-R/bswf59T/n9ZgfgUICAZoWYKBHcsVDurAGX88zsiUtOTA/xUAPyiT+qkNCPwFn43pZqN84M4MiUsbSGQmgFIQ== 1395 dependencies: 1396 + "@smithy/types" "^4.3.2" 1397 tslib "^2.6.2" 1398 1399 + "@smithy/protocol-http@^5.1.3": 1400 + version "5.1.3" 1401 + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.1.3.tgz#86855b528c0e4cb9fa6fb4ed6ba3cdf5960f88f4" 1402 + integrity sha512-fCJd2ZR7D22XhDY0l+92pUag/7je2BztPRQ01gU5bMChcyI0rlly7QFibnYHzcxDvccMjlpM/Q1ev8ceRIb48w== 1403 dependencies: 1404 + "@smithy/types" "^4.3.2" 1405 tslib "^2.6.2" 1406 1407 + "@smithy/querystring-builder@^4.0.5": 1408 + version "4.0.5" 1409 + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.0.5.tgz#158ae170f8ec2d8af6b84cdaf774205a7dfacf68" 1410 + integrity sha512-NJeSCU57piZ56c+/wY+AbAw6rxCCAOZLCIniRE7wqvndqxcKKDOXzwWjrY7wGKEISfhL9gBbAaWWgHsUGedk+A== 1411 dependencies: 1412 + "@smithy/types" "^4.3.2" 1413 "@smithy/util-uri-escape" "^4.0.0" 1414 tslib "^2.6.2" 1415 1416 + "@smithy/querystring-parser@^4.0.5": 1417 + version "4.0.5" 1418 + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.0.5.tgz#95706e56aa769f09dc8922d1b19ffaa06946e252" 1419 + integrity sha512-6SV7md2CzNG/WUeTjVe6Dj8noH32r4MnUeFKZrnVYsQxpGSIcphAanQMayi8jJLZAWm6pdM9ZXvKCpWOsIGg0w== 1420 dependencies: 1421 + "@smithy/types" "^4.3.2" 1422 tslib "^2.6.2" 1423 1424 + "@smithy/service-error-classification@^4.0.7": 1425 + version "4.0.7" 1426 + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.7.tgz#24072198a8c110d29677762162a5096e29eb4862" 1427 + integrity sha512-XvRHOipqpwNhEjDf2L5gJowZEm5nsxC16pAZOeEcsygdjv9A2jdOh3YoDQvOXBGTsaJk6mNWtzWalOB9976Wlg== 1428 dependencies: 1429 + "@smithy/types" "^4.3.2" 1430 1431 + "@smithy/shared-ini-file-loader@^4.0.5": 1432 + version "4.0.5" 1433 + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.0.5.tgz#8d8a493276cd82a7229c755bef8d375256c5ebb9" 1434 + integrity sha512-YVVwehRDuehgoXdEL4r1tAAzdaDgaC9EQvhK0lEbfnbrd0bd5+CTQumbdPryX3J2shT7ZqQE+jPW4lmNBAB8JQ== 1435 dependencies: 1436 + "@smithy/types" "^4.3.2" 1437 tslib "^2.6.2" 1438 1439 + "@smithy/signature-v4@^5.1.3": 1440 + version "5.1.3" 1441 + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.1.3.tgz#92a4f6e9ce66730eeb0d996cd0478c5cbaf5b3f5" 1442 + integrity sha512-mARDSXSEgllNzMw6N+mC+r1AQlEBO3meEAkR/UlfAgnMzJUB3goRBWgip1EAMG99wh36MDqzo86SfIX5Y+VEaw== 1443 dependencies: 1444 "@smithy/is-array-buffer" "^4.0.0" 1445 + "@smithy/protocol-http" "^5.1.3" 1446 + "@smithy/types" "^4.3.2" 1447 "@smithy/util-hex-encoding" "^4.0.0" 1448 + "@smithy/util-middleware" "^4.0.5" 1449 "@smithy/util-uri-escape" "^4.0.0" 1450 "@smithy/util-utf8" "^4.0.0" 1451 tslib "^2.6.2" 1452 1453 + "@smithy/smithy-client@^4.4.10": 1454 + version "4.4.10" 1455 + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.4.10.tgz#c4b49c1d1ff9eb813f88f1e425a5dfac25a03180" 1456 + integrity sha512-iW6HjXqN0oPtRS0NK/zzZ4zZeGESIFcxj2FkWed3mcK8jdSdHzvnCKXSjvewESKAgGKAbJRA+OsaqKhkdYRbQQ== 1457 dependencies: 1458 + "@smithy/core" "^3.8.0" 1459 + "@smithy/middleware-endpoint" "^4.1.18" 1460 + "@smithy/middleware-stack" "^4.0.5" 1461 + "@smithy/protocol-http" "^5.1.3" 1462 + "@smithy/types" "^4.3.2" 1463 + "@smithy/util-stream" "^4.2.4" 1464 tslib "^2.6.2" 1465 1466 + "@smithy/types@^4.3.2": 1467 + version "4.3.2" 1468 + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.3.2.tgz#66ac513e7057637de262e41ac15f70cf464c018a" 1469 + integrity sha512-QO4zghLxiQ5W9UZmX2Lo0nta2PuE1sSrXUYDoaB6HMR762C0P7v/HEPHf6ZdglTVssJG1bsrSBxdc3quvDSihw== 1470 dependencies: 1471 tslib "^2.6.2" 1472 1473 + "@smithy/url-parser@^4.0.5": 1474 + version "4.0.5" 1475 + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.0.5.tgz#1824a9c108b85322c5a31f345f608d47d06f073a" 1476 + integrity sha512-j+733Um7f1/DXjYhCbvNXABV53NyCRRA54C7bNEIxNPs0YjfRxeMKjjgm2jvTYrciZyCjsicHwQ6Q0ylo+NAUw== 1477 dependencies: 1478 + "@smithy/querystring-parser" "^4.0.5" 1479 + "@smithy/types" "^4.3.2" 1480 tslib "^2.6.2" 1481 1482 "@smithy/util-base64@^4.0.0": ··· 1525 dependencies: 1526 tslib "^2.6.2" 1527 1528 + "@smithy/util-defaults-mode-browser@^4.0.26": 1529 + version "4.0.26" 1530 + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.26.tgz#fc04cd466bbb0d80e41930af8d6a8c33c48490f2" 1531 + integrity sha512-xgl75aHIS/3rrGp7iTxQAOELYeyiwBu+eEgAk4xfKwJJ0L8VUjhO2shsDpeil54BOFsqmk5xfdesiewbUY5tKQ== 1532 dependencies: 1533 + "@smithy/property-provider" "^4.0.5" 1534 + "@smithy/smithy-client" "^4.4.10" 1535 + "@smithy/types" "^4.3.2" 1536 bowser "^2.11.0" 1537 tslib "^2.6.2" 1538 1539 + "@smithy/util-defaults-mode-node@^4.0.26": 1540 + version "4.0.26" 1541 + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.26.tgz#adfee8c54301ec4cbabed58cd604995a81b4a8dc" 1542 + integrity sha512-z81yyIkGiLLYVDetKTUeCZQ8x20EEzvQjrqJtb/mXnevLq2+w3XCEWTJ2pMp401b6BkEkHVfXb/cROBpVauLMQ== 1543 dependencies: 1544 + "@smithy/config-resolver" "^4.1.5" 1545 + "@smithy/credential-provider-imds" "^4.0.7" 1546 + "@smithy/node-config-provider" "^4.1.4" 1547 + "@smithy/property-provider" "^4.0.5" 1548 + "@smithy/smithy-client" "^4.4.10" 1549 + "@smithy/types" "^4.3.2" 1550 tslib "^2.6.2" 1551 1552 + "@smithy/util-endpoints@^3.0.7": 1553 + version "3.0.7" 1554 + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.0.7.tgz#9d52f2e7e7a1ea4814ae284270a5f1d3930b3773" 1555 + integrity sha512-klGBP+RpBp6V5JbrY2C/VKnHXn3d5V2YrifZbmMY8os7M6m8wdYFoO6w/fe5VkP+YVwrEktW3IWYaSQVNZJ8oQ== 1556 dependencies: 1557 + "@smithy/node-config-provider" "^4.1.4" 1558 + "@smithy/types" "^4.3.2" 1559 tslib "^2.6.2" 1560 1561 "@smithy/util-hex-encoding@^4.0.0": ··· 1565 dependencies: 1566 tslib "^2.6.2" 1567 1568 + "@smithy/util-middleware@^4.0.5": 1569 + version "4.0.5" 1570 + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.0.5.tgz#405caf2a66e175ce8ca6c747fa1245b3f5386879" 1571 + integrity sha512-N40PfqsZHRSsByGB81HhSo+uvMxEHT+9e255S53pfBw/wI6WKDI7Jw9oyu5tJTLwZzV5DsMha3ji8jk9dsHmQQ== 1572 dependencies: 1573 + "@smithy/types" "^4.3.2" 1574 tslib "^2.6.2" 1575 1576 + "@smithy/util-retry@^4.0.7": 1577 + version "4.0.7" 1578 + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.0.7.tgz#3169450193e917da170a87557fcbdfe0faa86779" 1579 + integrity sha512-TTO6rt0ppK70alZpkjwy+3nQlTiqNfoXja+qwuAchIEAIoSZW8Qyd76dvBv3I5bCpE38APafG23Y/u270NspiQ== 1580 dependencies: 1581 + "@smithy/service-error-classification" "^4.0.7" 1582 + "@smithy/types" "^4.3.2" 1583 tslib "^2.6.2" 1584 1585 + "@smithy/util-stream@^4.2.4": 1586 + version "4.2.4" 1587 + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.2.4.tgz#fa9f0e2fd5a8a5adbd013066b475ea8f9d4f900f" 1588 + integrity sha512-vSKnvNZX2BXzl0U2RgCLOwWaAP9x/ddd/XobPK02pCbzRm5s55M53uwb1rl/Ts7RXZvdJZerPkA+en2FDghLuQ== 1589 dependencies: 1590 + "@smithy/fetch-http-handler" "^5.1.1" 1591 + "@smithy/node-http-handler" "^4.1.1" 1592 + "@smithy/types" "^4.3.2" 1593 "@smithy/util-base64" "^4.0.0" 1594 "@smithy/util-buffer-from" "^4.0.0" 1595 "@smithy/util-hex-encoding" "^4.0.0" ··· 1715 integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== 1716 1717 "@types/node@*", "@types/node@>=13.7.0": 1718 + version "24.3.0" 1719 + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.0.tgz#89b09f45cb9a8ee69466f18ee5864e4c3eb84dec" 1720 + integrity sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow== 1721 dependencies: 1722 + undici-types "~7.10.0" 1723 1724 "@types/node@^14.14.14": 1725 version "14.18.63" ··· 1727 integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== 1728 1729 "@types/node@^22.0.1", "@types/node@^22.5.4": 1730 + version "22.18.0" 1731 + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.18.0.tgz#9e4709be4f104e3568f7dd1c71e2949bf147a47b" 1732 + integrity sha512-m5ObIqwsUp6BZzyiy4RdZpzWGub9bqLJMvZDD0QMXhxjqMHMENlj+SqF5QxoUwaQNFe+8kz8XM8ZQhqkQPTgMQ== 1733 dependencies: 1734 undici-types "~6.21.0" 1735 ··· 1744 integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== 1745 1746 "@types/request@^2.48.8": 1747 + version "2.48.13" 1748 + resolved "https://registry.yarnpkg.com/@types/request/-/request-2.48.13.tgz#abdf4256524e801ea8fdda54320f083edb5a6b80" 1749 + integrity sha512-FGJ6udDNUCjd19pp0Q3iTiDkwhYup7J8hpMW9c4k53NrccQFFWKRho6hvtPPEhnXWKvukfwAlB6DbDz4yhH5Gg== 1750 dependencies: 1751 "@types/caseless" "*" 1752 "@types/node" "*" 1753 "@types/tough-cookie" "*" 1754 + form-data "^2.5.5" 1755 1756 "@types/send@*": 1757 version "0.17.5" ··· 1779 version "1.3.5" 1780 resolved "https://registry.yarnpkg.com/@types/triple-beam/-/triple-beam-1.3.5.tgz#74fef9ffbaa198eb8b588be029f38b00299caa2c" 1781 integrity sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw== 1782 + 1783 + "@types/uuid@^9.0.1": 1784 + version "9.0.8" 1785 + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba" 1786 + integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA== 1787 1788 "@types/webidl-conversions@*": 1789 version "7.0.3" ··· 2192 integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 2193 2194 ansi-regex@^6.0.1: 2195 + version "6.2.0" 2196 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.0.tgz#2f302e7550431b1b7762705fffb52cf1ffa20447" 2197 + integrity sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg== 2198 2199 ansi-styles@^2.2.1: 2200 version "2.2.1" ··· 2503 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 2504 2505 bare-events@^2.2.0: 2506 + version "2.6.1" 2507 + resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.6.1.tgz#f793b28bdc3dcf147d7cf01f882a6f0b12ccc4a2" 2508 + integrity sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g== 2509 2510 base-64@^0.1.0: 2511 version "0.1.0" ··· 2636 hoek "0.9.x" 2637 2638 bowser@^2.11.0: 2639 + version "2.12.1" 2640 + resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.12.1.tgz#f9ad78d7aebc472feb63dd9635e3ce2337e0e2c1" 2641 + integrity sha512-z4rE2Gxh7tvshQ4hluIT7XcFrgLIQaw9X3A+kTTRdovCz5PMukm/0QC/BKSYPj3omF5Qfypn9O/c5kgpmvYUCw== 2642 2643 brace-expansion@^1.1.7: 2644 version "1.1.12" ··· 2668 integrity sha512-8CVjaLJGuSKMVTxJ2DpBl5XnlNDiT4cQFeuCJJrvJmts9YrTZDizTX7PjC2s6W4x+MBGZeEY6dGMrF04/6Hgqg== 2669 2670 browserslist@^4.24.0: 2671 + version "4.25.3" 2672 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.3.tgz#9167c9cbb40473f15f75f85189290678b99b16c5" 2673 + integrity sha512-cDGv1kkDI4/0e5yON9yM5G/0A5u8sf5TnmdX5C9qHzI9PPu++sQ9zjm1k9NiOrf3riY4OkK0zSGqfvJyJsgCBQ== 2674 dependencies: 2675 + caniuse-lite "^1.0.30001735" 2676 + electron-to-chromium "^1.5.204" 2677 node-releases "^2.0.19" 2678 update-browserslist-db "^1.1.3" 2679 ··· 2833 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 2834 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2835 2836 + caniuse-lite@^1.0.30001735: 2837 + version "1.0.30001737" 2838 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001737.tgz#8292bb7591932ff09e9a765f12fdf5629a241ccc" 2839 + integrity sha512-BiloLiXtQNrY5UyF0+1nSJLXUENuhka2pzy2Fx5pGxqavdrxSCW4U6Pn/PoG3Efspi2frRbHpBV2XsrPE6EDlw== 2840 2841 caseless@~0.12.0: 2842 version "0.12.0" ··· 3150 integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== 3151 3152 core-js@^3.30.2: 3153 + version "3.45.1" 3154 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.45.1.tgz#5810e04a1b4e9bc5ddaa4dd12e702ff67300634d" 3155 + integrity sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg== 3156 3157 core-util-is@1.0.2: 3158 version "1.0.2" ··· 3317 is-data-view "^1.0.1" 3318 3319 dayjs@^1.11.9: 3320 + version "1.11.14" 3321 + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.14.tgz#aa47cd445471acac25d55deb101557dd827eff60" 3322 + integrity sha512-E8fIdSxUlyqSA8XYGnNa3IkIzxtEmFjI+JU/6ic0P1zmSqyL6HyG5jHnpPjRguDNiaHLpfvHKWFiohNsJLqcJQ== 3323 3324 debug@2.6.9, debug@^2.2.0: 3325 version "2.6.9" ··· 3449 resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.37.120.tgz#ad7209930509c4cee3efddbacc77a1b18cf66d34" 3450 integrity sha512-7xpNK0EiWjjDFp2nAhHXezE4OUWm7s1zhc/UXXN6hnFFU8dfoPHgV0Hx0RPiCa3ILRpdeh152icc68DGCyXYIw== 3451 3452 + discord-api-types@^0.38.1, discord-api-types@^0.38.16: 3453 + version "0.38.21" 3454 + resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.38.21.tgz#f28d3546869038db247d16e85900f2033b880aa5" 3455 + integrity sha512-E6KtXUNjZVIYP1GMjmeRdAC1xRql9xtSahRwJYpP74/hJ6Q2i2oTp6ZbFG/FUN0WqtdW2igHDsJyF2u9hV8pHQ== 3456 3457 discord.js@14.6.0: 3458 version "14.6.0" ··· 3566 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 3567 integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== 3568 3569 + electron-to-chromium@^1.5.204: 3570 + version "1.5.209" 3571 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.209.tgz#403e7a84933b7206bb2e737d897042b2a6ef8d3e" 3572 + integrity sha512-Xoz0uMrim9ZETCQt8UgM5FxQF9+imA7PBpokoGcZloA1uw2LeHzTlip5cb5KOAsXZLjh/moN2vReN3ZjJmjI9A== 3573 3574 emoji-regex@^7.0.1: 3575 version "7.0.3" ··· 4094 integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 4095 4096 follow-redirects@^1.14.0, follow-redirects@^1.14.8, follow-redirects@^1.15.6: 4097 + version "1.15.11" 4098 + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.11.tgz#777d73d72a92f8ec4d2e410eb47352a56b8e8340" 4099 + integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== 4100 4101 for-each@^0.3.3, for-each@^0.3.5: 4102 version "0.3.5" ··· 4131 resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 4132 integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== 4133 4134 + form-data@^2.5.5: 4135 version "2.5.5" 4136 resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.5.tgz#a5f6364ad7e4e67e95b4a07e2d8c6f711c74f624" 4137 integrity sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A== ··· 4859 hasown "^2.0.2" 4860 side-channel "^1.1.0" 4861 4862 + ip-address@^10.0.1: 4863 + version "10.0.1" 4864 + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-10.0.1.tgz#a8180b783ce7788777d796286d61bce4276818ed" 4865 + integrity sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA== 4866 + 4867 ip-address@^7.1.0: 4868 version "7.1.0" 4869 resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-7.1.0.tgz#4a9c699e75b51cbeb18b38de8ed216efa1a490c5" ··· 4872 jsbn "1.1.0" 4873 sprintf-js "1.1.2" 4874 4875 ipaddr.js@1.9.1: 4876 version "1.9.1" 4877 resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" ··· 5264 integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== 5265 5266 jose@^6.0.11: 5267 + version "6.0.13" 5268 + resolved "https://registry.yarnpkg.com/jose/-/jose-6.0.13.tgz#078563b07e9ab82f0ea6922eca589041e8278a22" 5269 + integrity sha512-Yms4GpbmdANamS51kKK6w4hRlKx8KTxbWyAAKT/MhUMtqbIqh5mb2HjhTNUbk7TFL8/MBB5zWSDohL7ed4k/UA== 5270 5271 js-tokens@^4.0.0: 5272 version "4.0.0" ··· 6254 optimist "~0.6.0" 6255 xml "0.0.12" 6256 6257 + nodemailer@6.10.1: 6258 + version "6.10.1" 6259 + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.10.1.tgz#cbc434c54238f83a51c07eabd04e2b3e832da623" 6260 + integrity sha512-Z+iLaBGVaSjbIzQ4pX6XV41HrooLsQ10ZWPUehGmuantvzWoDVBnmsdUcOIDM1t+yPor5pDhVlDESgOMEGxhHA== 6261 6262 nofilter@^1.0.4: 6263 version "1.0.4" ··· 6302 integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== 6303 6304 nwsapi@^2.2.4: 6305 + version "2.2.21" 6306 + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.21.tgz#8df7797079350adda208910d8c33fc4c2d7520c3" 6307 + integrity sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA== 6308 6309 nyc@^14.1.1: 6310 version "14.1.1" ··· 6408 safe-array-concat "^1.1.2" 6409 6410 oidc-token-hash@^5.0.3: 6411 + version "5.1.1" 6412 + resolved "https://registry.yarnpkg.com/oidc-token-hash/-/oidc-token-hash-5.1.1.tgz#d35e31ca26d3a26678f5e9bda100b095ab58011f" 6413 + integrity sha512-D7EmwxJV6DsEB6vOFLrBM2OzsVgQzgPWyHlV2OOAVj772n+WTXpudC9e9u5BVKQnYwaD30Ivhi9b+4UeBcGu9g== 6414 6415 on-finished@2.4.1: 6416 version "2.4.1" ··· 6892 xtend "^4.0.0" 6893 6894 postman-request@^2.88.1-postman.33: 6895 + version "2.88.1-postman.43" 6896 + resolved "https://registry.yarnpkg.com/postman-request/-/postman-request-2.88.1-postman.43.tgz#98aef15a01003d86cd943f844fa2bf6b11434fed" 6897 + integrity sha512-5ivoZnMvnX47/HA7mk2GQubZsnXptlJGVyO0hLV3MTK/MDgJVnB/q3bUgzU4KhwG8OBxe2L8uqv3ZpK6mp+RdA== 6898 dependencies: 6899 "@postman/form-data" "~3.1.1" 6900 "@postman/tough-cookie" "~4.1.3-postman.1" ··· 6913 oauth-sign "~0.9.0" 6914 qs "~6.5.3" 6915 safe-buffer "^5.1.2" 6916 + socks-proxy-agent "^8.0.5" 6917 stream-length "^1.0.2" 6918 uuid "^8.3.2" 6919 ··· 6979 protobufjs "^7.2.5" 6980 6981 protobufjs@^7.2.5, protobufjs@^7.2.6, protobufjs@^7.3.2: 6982 + version "7.5.4" 6983 + resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.5.4.tgz#885d31fe9c4b37f25d1bb600da30b1c5b37d286a" 6984 + integrity sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg== 6985 dependencies: 6986 "@protobufjs/aspromise" "^1.1.2" 6987 "@protobufjs/base64" "^1.1.2" ··· 7737 debug "^4.3.3" 7738 socks "^2.6.2" 7739 7740 + socks-proxy-agent@^8.0.5: 7741 + version "8.0.5" 7742 + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" 7743 + integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== 7744 dependencies: 7745 + agent-base "^7.1.2" 7746 + debug "^4.3.4" 7747 + socks "^2.8.3" 7748 + 7749 + socks@^2.6.2, socks@^2.7.1, socks@^2.8.3: 7750 + version "2.8.7" 7751 + resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz#e2fb1d9a603add75050a2067db8c381a0b5669ea" 7752 + integrity sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A== 7753 + dependencies: 7754 + ip-address "^10.0.1" 7755 smart-buffer "^4.2.0" 7756 7757 source-map-support@^0.5.16, source-map-support@~0.5.20: ··· 7808 spdx-license-ids "^3.0.0" 7809 7810 spdx-license-ids@^3.0.0: 7811 + version "3.0.22" 7812 + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz#abf5a08a6f5d7279559b669f47f0a43e8f3464ef" 7813 + integrity sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ== 7814 7815 split-on-first@^1.0.0: 7816 version "1.1.0" ··· 7826 version "1.1.2" 7827 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" 7828 integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 7829 7830 sprintf-js@~1.0.2: 7831 version "1.0.3" ··· 8554 resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" 8555 integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== 8556 8557 + undici-types@~7.10.0: 8558 + version "7.10.0" 8559 + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.10.0.tgz#4ac2e058ce56b462b056e629cc6a02393d3ff350" 8560 + integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag== 8561 8562 undici@^5.11.0, undici@^5.22.0: 8563 version "5.29.0"
+2
pkgs/top-level/aliases.nix
··· 1569 minizip2 = pkgs.minizip-ng; # Added 2022-12-28 1570 miru = throw "'miru' has been removed due to lack maintenance"; # Added 2025-08-21 1571 mmsd = throw "'mmsd' has been removed due to being unmaintained upstream. Consider using 'mmsd-tng' instead"; # Added 2025-06-07 1572 mod_dnssd = throw "'mod_dnssd' has been renamed to/replaced by 'apacheHttpdPackages.mod_dnssd'"; # Converted to throw 2024-10-17 1573 mod_fastcgi = throw "'mod_fastcgi' has been renamed to/replaced by 'apacheHttpdPackages.mod_fastcgi'"; # Converted to throw 2024-10-17 1574 mod_python = throw "'mod_python' has been renamed to/replaced by 'apacheHttpdPackages.mod_python'"; # Converted to throw 2024-10-17 ··· 1724 noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09 1725 noto-fonts-extra = noto-fonts; # Added 2023-04-08 1726 NSPlist = nsplist; # Added 2024-01-05 1727 nushellFull = lib.warnOnInstantiate "`nushellFull` has has been replaced by `nushell` as its features no longer exist" nushell; # Added 2024-05-30 1728 nux = throw "nux has been removed because it has been abandoned for 4 years"; # Added 2025-03-22 1729 nvidia-podman = throw "podman should use the Container Device Interface (CDI) instead. See https://web.archive.org/web/20240729183805/https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#configuring-podman"; # Added 2024-08-02
··· 1569 minizip2 = pkgs.minizip-ng; # Added 2022-12-28 1570 miru = throw "'miru' has been removed due to lack maintenance"; # Added 2025-08-21 1571 mmsd = throw "'mmsd' has been removed due to being unmaintained upstream. Consider using 'mmsd-tng' instead"; # Added 2025-06-07 1572 + mmutils = throw "'mmutils' has been removed due to being unmaintained upstream"; # Added 2025-08-29 1573 mod_dnssd = throw "'mod_dnssd' has been renamed to/replaced by 'apacheHttpdPackages.mod_dnssd'"; # Converted to throw 2024-10-17 1574 mod_fastcgi = throw "'mod_fastcgi' has been renamed to/replaced by 'apacheHttpdPackages.mod_fastcgi'"; # Converted to throw 2024-10-17 1575 mod_python = throw "'mod_python' has been renamed to/replaced by 'apacheHttpdPackages.mod_python'"; # Converted to throw 2024-10-17 ··· 1725 noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09 1726 noto-fonts-extra = noto-fonts; # Added 2023-04-08 1727 NSPlist = nsplist; # Added 2024-01-05 1728 + nuget-to-nix = throw "nuget-to-nix has been removed as it was deprecated in favor of nuget-to-json. Please use nuget-to-json instead"; # Added 2025-08-28 1729 nushellFull = lib.warnOnInstantiate "`nushellFull` has has been replaced by `nushell` as its features no longer exist" nushell; # Added 2024-05-30 1730 nux = throw "nux has been removed because it has been abandoned for 4 years"; # Added 2025-03-22 1731 nvidia-podman = throw "podman should use the Container Device Interface (CDI) instead. See https://web.archive.org/web/20240729183805/https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#configuring-podman"; # Added 2024-08-02
+78 -3
pkgs/top-level/all-packages.nix
··· 2715 dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { }; 2716 2717 inherit (import ../build-support/dlang/dub-support.nix { inherit callPackage; }) 2718 buildDubPackage 2719 - dub-to-nix 2720 ; 2721 2722 dvtm = callPackage ../tools/misc/dvtm { ··· 7113 7114 qtcreator = qt6Packages.callPackage ../development/tools/qtcreator { 7115 inherit (linuxPackages) perf; 7116 - llvmPackages = llvmPackages_18; 7117 - stdenv = llvmPackages_18.stdenv; 7118 }; 7119 7120 qxmledit = libsForQt5.callPackage ../applications/editors/qxmledit { }; ··· 14450 14451 avogadro2 = libsForQt5.callPackage ../applications/science/chemistry/avogadro2 { }; 14452 14453 molbar = with python3Packages; toPythonApplication molbar; 14454 14455 nwchem = callPackage ../applications/science/chemistry/nwchem { ··· 14468 siesta = callPackage ../applications/science/chemistry/siesta { }; 14469 14470 siesta-mpi = callPackage ../applications/science/chemistry/siesta { useMpi = true; }; 14471 14472 ### SCIENCE/GEOMETRY 14473
··· 2715 dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { }; 2716 2717 inherit (import ../build-support/dlang/dub-support.nix { inherit callPackage; }) 2718 + dub-to-nix 2719 + importDubLock 2720 buildDubPackage 2721 + dubSetupHook 2722 + dubBuildHook 2723 + dubCheckHook 2724 ; 2725 2726 dvtm = callPackage ../tools/misc/dvtm { ··· 7117 7118 qtcreator = qt6Packages.callPackage ../development/tools/qtcreator { 7119 inherit (linuxPackages) perf; 7120 + llvmPackages = llvmPackages_21; 7121 + stdenv = llvmPackages_21.stdenv; 7122 }; 7123 7124 qxmledit = libsForQt5.callPackage ../applications/editors/qxmledit { }; ··· 14454 14455 avogadro2 = libsForQt5.callPackage ../applications/science/chemistry/avogadro2 { }; 14456 14457 + libxc_7 = pkgs.libxc.override { version = "7.0.0"; }; 14458 + 14459 molbar = with python3Packages; toPythonApplication molbar; 14460 14461 nwchem = callPackage ../applications/science/chemistry/nwchem { ··· 14474 siesta = callPackage ../applications/science/chemistry/siesta { }; 14475 14476 siesta-mpi = callPackage ../applications/science/chemistry/siesta { useMpi = true; }; 14477 + 14478 + cp2k = 14479 + # CP2K requires all dependencies from the Grimme ecosystem to be build with 14480 + # CMake instead of Meson. Unfortunately most other consumers require meson 14481 + let 14482 + grimmeCmake = lib.makeScope pkgs.newScope (self: { 14483 + mctc-lib = pkgs.mctc-lib.override { 14484 + buildType = "cmake"; 14485 + inherit (self) jonquil toml-f; 14486 + }; 14487 + 14488 + toml-f = pkgs.toml-f.override { 14489 + buildType = "cmake"; 14490 + inherit (self) test-drive; 14491 + }; 14492 + 14493 + dftd4 = pkgs.dftd4.override { 14494 + buildType = "cmake"; 14495 + inherit (self) mstore mctc-lib multicharge; 14496 + }; 14497 + 14498 + jonquil = pkgs.jonquil.override { 14499 + buildType = "cmake"; 14500 + inherit (self) toml-f test-drive; 14501 + }; 14502 + 14503 + mstore = pkgs.mstore.override { 14504 + buildType = "cmake"; 14505 + inherit (self) mctc-lib; 14506 + }; 14507 + 14508 + multicharge = pkgs.multicharge.override { 14509 + buildType = "cmake"; 14510 + inherit (self) mctc-lib mstore; 14511 + }; 14512 + 14513 + test-drive = pkgs.test-drive.override { buildType = "cmake"; }; 14514 + 14515 + simple-dftd3 = pkgs.simple-dftd3.override { 14516 + buildType = "cmake"; 14517 + inherit (self) mctc-lib mstore toml-f; 14518 + }; 14519 + 14520 + tblite = pkgs.tblite.override { 14521 + buildType = "cmake"; 14522 + inherit (self) 14523 + mctc-lib 14524 + mstore 14525 + toml-f 14526 + multicharge 14527 + dftd4 14528 + simple-dftd3 14529 + ; 14530 + }; 14531 + 14532 + sirius = pkgs.sirius.override { 14533 + inherit (self) 14534 + mctc-lib 14535 + toml-f 14536 + multicharge 14537 + dftd4 14538 + simple-dftd3 14539 + ; 14540 + }; 14541 + }); 14542 + in 14543 + grimmeCmake.callPackage ../applications/science/chemistry/cp2k/default.nix { 14544 + libxc = pkgs.libxc_7; 14545 + }; 14546 14547 ### SCIENCE/GEOMETRY 14548
+2
pkgs/top-level/qt6-packages.nix
··· 92 qmlbox2d = callPackage ../development/libraries/qmlbox2d { }; 93 packagekit-qt = callPackage ../tools/package-management/packagekit/qt.nix { }; 94 95 qt6ct = callPackage ../tools/misc/qt6ct { }; 96 97 qt6gtk2 = callPackage ../tools/misc/qt6gtk2 { };
··· 92 qmlbox2d = callPackage ../development/libraries/qmlbox2d { }; 93 packagekit-qt = callPackage ../tools/package-management/packagekit/qt.nix { }; 94 95 + qodeassist-plugin = callPackage ../development/libraries/qodeassist-plugin { }; 96 + 97 qt6ct = callPackage ../tools/misc/qt6ct { }; 98 99 qt6gtk2 = callPackage ../tools/misc/qt6gtk2 { };