Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 3a5c0e6c 9e37dcaa

+959 -463
+12
maintainers/maintainer-list.nix
··· 537 githubId = 749381; 538 name = "Adam Tulinius"; 539 }; 540 addict3d = { 541 email = "nickbathum@gmail.com"; 542 matrix = "@nbathum:matrix.org"; ··· 16803 github = "PanAeon"; 16804 githubId = 686076; 16805 name = "Vitalii Voloshyn"; 16806 }; 16807 panda2134 = { 16808 email = "me+nixpkgs@panda2134.site";
··· 537 githubId = 749381; 538 name = "Adam Tulinius"; 539 }; 540 + adda = { 541 + email = "chocholaty.david@protonmail.com"; 542 + matrix = "@adda0:matrix.org"; 543 + github = "adda0"; 544 + githubId = 52529234; 545 + name = "David Chocholatý"; 546 + }; 547 addict3d = { 548 email = "nickbathum@gmail.com"; 549 matrix = "@nbathum:matrix.org"; ··· 16810 github = "PanAeon"; 16811 githubId = 686076; 16812 name = "Vitalii Voloshyn"; 16813 + }; 16814 + pancaek = { 16815 + github = "pancaek"; 16816 + githubId = 20342389; 16817 + name = "paneku"; 16818 }; 16819 panda2134 = { 16820 email = "me+nixpkgs@panda2134.site";
+1 -1
nixos/modules/services/hardware/asusd.nix
··· 88 "asusd/anime.ron" = maybeConfig "anime.ron" cfg.animeConfig; 89 "asusd/asusd.ron" = maybeConfig "asusd.ron" cfg.asusdConfig; 90 "asusd/aura.ron" = maybeConfig "aura.ron" cfg.auraConfig; 91 - "asusd/profile.conf" = maybeConfig "profile.ron" cfg.profileConfig; 92 "asusd/fan_curves.ron" = maybeConfig "fan_curves.ron" cfg.fanCurvesConfig; 93 "asusd/asusd_user_ledmodes.ron" = maybeConfig "asusd_user_ledmodes.ron" cfg.userLedModesConfig; 94 };
··· 88 "asusd/anime.ron" = maybeConfig "anime.ron" cfg.animeConfig; 89 "asusd/asusd.ron" = maybeConfig "asusd.ron" cfg.asusdConfig; 90 "asusd/aura.ron" = maybeConfig "aura.ron" cfg.auraConfig; 91 + "asusd/profile.ron" = maybeConfig "profile.ron" cfg.profileConfig; 92 "asusd/fan_curves.ron" = maybeConfig "fan_curves.ron" cfg.fanCurvesConfig; 93 "asusd/asusd_user_ledmodes.ron" = maybeConfig "asusd_user_ledmodes.ron" cfg.userLedModesConfig; 94 };
+7
nixos/modules/services/monitoring/prometheus/exporters.nix
··· 334 not reside within /tmp - it won't be visible to the systemd service. 335 ''; 336 } { 337 assertion = cfg.snmp.enable -> ( 338 (cfg.snmp.configurationPath == null) != (cfg.snmp.configuration == null) 339 );
··· 334 not reside within /tmp - it won't be visible to the systemd service. 335 ''; 336 } { 337 + assertion = 338 + cfg.restic.enable -> ((cfg.restic.repository == null) != (cfg.restic.repositoryFile == null)); 339 + message = '' 340 + Please specify either 'services.prometheus.exporters.restic.repository' 341 + or 'services.prometheus.exporters.restic.repositoryFile'. 342 + ''; 343 + } { 344 assertion = cfg.snmp.enable -> ( 345 (cfg.snmp.configurationPath == null) != (cfg.snmp.configuration == null) 346 );
+20 -3
nixos/modules/services/monitoring/prometheus/exporters/restic.nix
··· 10 mapAttrs' 11 splitString 12 toUpper 13 optionalAttrs 14 nameValuePair 15 ; ··· 18 port = 9753; 19 extraOpts = { 20 repository = mkOption { 21 - type = types.str; 22 description = '' 23 URI pointing to the repository to monitor. 24 ''; 25 example = "sftp:backup@192.168.1.100:/backups/example"; 26 }; 27 28 passwordFile = mkOption { ··· 103 104 serviceOpts = { 105 script = '' 106 export RESTIC_PASSWORD_FILE=$CREDENTIALS_DIRECTORY/RESTIC_PASSWORD_FILE 107 ${pkgs.prometheus-restic-exporter}/bin/restic-exporter.py \ 108 ${concatStringsSep " \\\n " cfg.extraFlags} 109 ''; 110 serviceConfig = { 111 EnvironmentFile = mkIf (cfg.environmentFile != null) cfg.environmentFile; 112 - LoadCredential = [ "RESTIC_PASSWORD_FILE:${cfg.passwordFile}" ]; 113 }; 114 environment = 115 let ··· 119 toRcloneVal = v: if lib.isBool v then lib.boolToString v else v; 120 in 121 { 122 - RESTIC_REPOSITORY = cfg.repository; 123 LISTEN_ADDRESS = cfg.listenAddress; 124 LISTEN_PORT = toString cfg.port; 125 REFRESH_INTERVAL = toString cfg.refreshInterval;
··· 10 mapAttrs' 11 splitString 12 toUpper 13 + optional 14 optionalAttrs 15 nameValuePair 16 ; ··· 19 port = 9753; 20 extraOpts = { 21 repository = mkOption { 22 + type = with lib.types; nullOr str; 23 + default = null; 24 description = '' 25 URI pointing to the repository to monitor. 26 ''; 27 example = "sftp:backup@192.168.1.100:/backups/example"; 28 + }; 29 + 30 + repositoryFile = mkOption { 31 + type = with lib.types; nullOr path; 32 + default = null; 33 + description = '' 34 + Path to the file containing the URI for the repository to monitor. 35 + ''; 36 }; 37 38 passwordFile = mkOption { ··· 113 114 serviceOpts = { 115 script = '' 116 + export RESTIC_REPOSITORY=${ 117 + if cfg.repositoryFile != null 118 + then "$(cat $CREDENTIALS_DIRECTORY/RESTIC_REPOSITORY)" 119 + else "${cfg.repository}" 120 + } 121 export RESTIC_PASSWORD_FILE=$CREDENTIALS_DIRECTORY/RESTIC_PASSWORD_FILE 122 ${pkgs.prometheus-restic-exporter}/bin/restic-exporter.py \ 123 ${concatStringsSep " \\\n " cfg.extraFlags} 124 ''; 125 serviceConfig = { 126 EnvironmentFile = mkIf (cfg.environmentFile != null) cfg.environmentFile; 127 + LoadCredential = 128 + [ "RESTIC_PASSWORD_FILE:${cfg.passwordFile}" ] 129 + ++ optional (cfg.repositoryFile != null) 130 + [ "RESTIC_REPOSITORY:${cfg.repositoryFile}" ]; 131 }; 132 environment = 133 let ··· 137 toRcloneVal = v: if lib.isBool v then lib.boolToString v else v; 138 in 139 { 140 LISTEN_ADDRESS = cfg.listenAddress; 141 LISTEN_PORT = toString cfg.port; 142 REFRESH_INTERVAL = toString cfg.refreshInterval;
-69
pkgs/applications/audio/famistudio/build-native-wrapper.nix
··· 1 - { depname 2 - , version 3 - , src 4 - , sourceRoot 5 - , stdenv 6 - , lib 7 - , patches ? [] 8 - , extraPostPatch ? "" 9 - , buildInputs ? [] 10 - }: 11 - 12 - let 13 - rebuildscriptName = if stdenv.hostPlatform.isLinux then 14 - "build_linux" 15 - else if stdenv.hostPlatform.isDarwin then 16 - "build_macos" 17 - else throw "Don't know how to rebuild FamiStudio's vendored ${depname} for ${stdenv.hostPlatform.system}"; 18 - in 19 - stdenv.mkDerivation { 20 - pname = "famistudio-nativedep-${depname}"; 21 - inherit version src sourceRoot patches buildInputs; 22 - 23 - postPatch = let 24 - libnameBase = lib.optionalString stdenv.hostPlatform.isLinux "lib" + depname; 25 - in '' 26 - # Use one name for build script, eases with patching 27 - mv ${rebuildscriptName}.sh build.sh 28 - 29 - # Scripts use hardcoded compilers and try to copy built libraries into FamiStudio's build tree 30 - # Not all scripts use the same compiler, so don't fail on replacing that 31 - substituteInPlace build.sh \ 32 - --replace-fail '../../FamiStudio/' "$out/lib/" \ 33 - --replace-quiet 'g++' "$CXX" 34 - 35 - # Replacing gcc via sed, would break -static-libgcc otherwise 36 - sed -i -e "s/^gcc/$CC/g" build.sh 37 - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' 38 - # Darwin rebuild scripts try to make a universal2 dylib 39 - # - build dylib for non-hostPlatform 40 - # - copy built library into special directory for later packaging script 41 - # - join two dylibs together into a universal2 dylib 42 - # Remove everything we don't need 43 - sed -ri \ 44 - -e '/-target ${if stdenv.hostPlatform.isx86_64 then "arm64" else "x86_64"}/d' \ 45 - -e '/..\/..\/Setup/d' \ 46 - build.sh 47 - 48 - # Replace joining multi-arch dylibs with copying dylib for target arch 49 - substituteInPlace build.sh \ 50 - --replace-fail 'lipo -create -output ${libnameBase}.dylib' 'cp ${libnameBase}_${if stdenv.hostPlatform.isx86_64 then "x86_64" else "arm64"}.dylib ${libnameBase}.dylib #' 51 - '' + extraPostPatch; 52 - 53 - dontConfigure = true; 54 - dontInstall = true; # rebuild script automatically installs 55 - 56 - buildPhase = '' 57 - runHook preBuild 58 - 59 - mkdir -p $out/lib 60 - 61 - # Delete all prebuilt libraries, make sure everything is rebuilt 62 - find . -name '*.so' -or -name '*.dylib' -or -name '*.a' -delete 63 - 64 - # When calling normally, an error won't cause derivation to fail 65 - source ./build.sh 66 - 67 - runHook postBuild 68 - ''; 69 - }
···
-125
pkgs/applications/audio/famistudio/default.nix
··· 1 - { stdenv 2 - , lib 3 - , buildDotnetModule 4 - , dotnetCorePackages 5 - , callPackage 6 - , fetchFromGitHub 7 - , ffmpeg 8 - , glfw 9 - , libglvnd 10 - , libogg 11 - , libvorbis 12 - , openal 13 - , portaudio 14 - , rtmidi 15 - }: 16 - 17 - let 18 - csprojName = if stdenv.hostPlatform.isLinux then 19 - "FamiStudio.Linux" 20 - else if stdenv.hostPlatform.isDarwin then 21 - "FamiStudio.Mac" 22 - else throw "Don't know how to build FamiStudio for ${stdenv.hostPlatform.system}"; 23 - in 24 - buildDotnetModule rec { 25 - pname = "famistudio"; 26 - version = "4.2.1"; 27 - 28 - src = fetchFromGitHub { 29 - owner = "BleuBleu"; 30 - repo = "FamiStudio"; 31 - rev = "refs/tags/${version}"; 32 - hash = "sha256-WYy/6cWQg3Ayok/eAdnvlWAvdcuhy/sdlWOVvaYcPkc="; 33 - }; 34 - 35 - postPatch = let 36 - libname = library: "${library}${stdenv.hostPlatform.extensions.sharedLibrary}"; 37 - buildNativeWrapper = args: callPackage ./build-native-wrapper.nix (args // { 38 - inherit version src; 39 - sourceRoot = "${src.name}/ThirdParty/${args.depname}"; 40 - }); 41 - nativeWrapperToReplaceFormat = args: let 42 - libPrefix = lib.optionalString stdenv.hostPlatform.isLinux "lib"; 43 - in { 44 - package = buildNativeWrapper args; 45 - expectedName = "${libPrefix}${args.depname}"; 46 - ourName = "${libPrefix}${args.depname}"; 47 - }; 48 - librariesToReplace = [ 49 - # Unmodified native libraries that we can fully substitute 50 - { package = glfw; expectedName = "libglfw"; ourName = "libglfw"; } 51 - { package = rtmidi; expectedName = "librtmidi"; ourName = "librtmidi"; } 52 - ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 53 - { package = openal; expectedName = "libopenal32"; ourName = "libopenal"; } 54 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 55 - { package = portaudio; expectedName = "libportaudio.2"; ourName = "libportaudio.2"; } 56 - ] ++ [ 57 - # Native libraries, with extra code for the C# wrapping 58 - (nativeWrapperToReplaceFormat { depname = "GifDec"; }) 59 - (nativeWrapperToReplaceFormat { depname = "NesSndEmu"; }) 60 - (nativeWrapperToReplaceFormat { depname = "NotSoFatso"; extraPostPatch = '' 61 - # C++17 does not allow register storage class specifier 62 - substituteInPlace build.sh \ 63 - --replace-fail "$CXX" "$CXX -std=c++14" 64 - ''; }) 65 - (nativeWrapperToReplaceFormat { depname = "ShineMp3"; }) 66 - (nativeWrapperToReplaceFormat { depname = "Stb"; }) 67 - (nativeWrapperToReplaceFormat { depname = "Vorbis"; buildInputs = [ libogg libvorbis ]; }) 68 - ]; 69 - libraryReplaceArgs = lib.strings.concatMapStringsSep " " 70 - (library: "--replace-fail '${libname library.expectedName}' '${lib.getLib library.package}/lib/${libname library.ourName}'") 71 - librariesToReplace; 72 - in '' 73 - # Don't use any prebuilt libraries 74 - rm FamiStudio/*.{dll,dylib,so*} 75 - 76 - # Replace copying of vendored prebuilt native libraries with copying of our native libraries 77 - substituteInPlace ${projectFile} ${libraryReplaceArgs} 78 - 79 - # Un-hardcode target platform if set 80 - sed -i -e '/PlatformTarget/d' ${projectFile} 81 - 82 - # Don't require a special name to be preserved, our OpenAL isn't 32-bit 83 - substituteInPlace FamiStudio/Source/AudioStreams/OpenALStream.cs \ 84 - --replace-fail 'libopenal32' 'libopenal' 85 - ''; 86 - 87 - projectFile = "FamiStudio/${csprojName}.csproj"; 88 - nugetDeps = ./deps.nix; 89 - dotnet-sdk = dotnetCorePackages.sdk_7_0; 90 - dotnet-runtime = dotnetCorePackages.runtime_7_0; 91 - 92 - runtimeDeps = lib.optionals stdenv.hostPlatform.isLinux [ 93 - libglvnd 94 - ]; 95 - 96 - executables = [ "FamiStudio" ]; 97 - 98 - postInstall = '' 99 - mkdir -p $out/share/famistudio 100 - for datdir in Setup/Demo\ {Instruments,Songs}; do 101 - cp -R "$datdir" $out/share/famistudio/ 102 - done 103 - ''; 104 - 105 - postFixup = '' 106 - # FFMpeg looked up from PATH 107 - wrapProgram $out/bin/FamiStudio \ 108 - --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 109 - ''; 110 - 111 - passthru.updateScript = ./update.sh; 112 - 113 - meta = with lib; { 114 - homepage = "https://famistudio.org/"; 115 - description = "NES Music Editor"; 116 - longDescription = '' 117 - FamiStudio is very simple music editor for the Nintendo Entertainment System 118 - or Famicom. It is targeted at both chiptune artists and NES homebrewers. 119 - ''; 120 - license = licenses.mit; 121 - maintainers = with maintainers; [ OPNA2608 ]; 122 - platforms = platforms.unix; 123 - mainProgram = "FamiStudio"; 124 - }; 125 - }
···
pkgs/applications/audio/famistudio/deps.nix pkgs/by-name/fa/famistudio/deps.nix
pkgs/applications/audio/famistudio/update.sh pkgs/by-name/fa/famistudio/update.sh
+2 -2
pkgs/applications/audio/qpwgraph/default.nix
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "qpwgraph"; 16 - version = "0.7.9"; 17 18 src = fetchFromGitLab { 19 domain = "gitlab.freedesktop.org"; 20 owner = "rncbc"; 21 repo = "qpwgraph"; 22 rev = "v${finalAttrs.version}"; 23 - sha256 = "sha256-VEJbjrXSMERGUyfIo43hg7v/S7lRzzvQ4gmwlqOMgAQ="; 24 }; 25 26 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "qpwgraph"; 16 + version = "0.8.0"; 17 18 src = fetchFromGitLab { 19 domain = "gitlab.freedesktop.org"; 20 owner = "rncbc"; 21 repo = "qpwgraph"; 22 rev = "v${finalAttrs.version}"; 23 + sha256 = "sha256-jB2mMLwJ1e/fIsf1R9Wd0stwp/RQH6f9pkF1qQX72Aw="; 24 }; 25 26 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
+2 -2
pkgs/applications/audio/youtube-music/default.nix
··· 78 name = "youtube-music"; 79 exec = "youtube-music %u"; 80 icon = "youtube-music"; 81 - desktopName = "Youtube Music"; 82 - startupWMClass = "Youtube Music"; 83 categories = [ "AudioVideo" ]; 84 }) 85 ];
··· 78 name = "youtube-music"; 79 exec = "youtube-music %u"; 80 icon = "youtube-music"; 81 + desktopName = "YouTube Music"; 82 + startupWMClass = "YouTube Music"; 83 categories = [ "AudioVideo" ]; 84 }) 85 ];
+3 -3
pkgs/applications/version-management/gitoxide/default.nix
··· 17 ein = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/ein"; 18 in rustPlatform.buildRustPackage rec { 19 pname = "gitoxide"; 20 - version = "0.38.0"; 21 22 src = fetchFromGitHub { 23 owner = "Byron"; 24 repo = "gitoxide"; 25 rev = "v${version}"; 26 - hash = "sha256-JqWFdZXcmL97w5CochG9kXXH7cN2KMarkNUvfQXbYU0="; 27 }; 28 29 - cargoHash = "sha256-EGPx4NNvgGe+LJ8Gn0ne8O4lCA+9p+E9J7OOhLQDWX0="; 30 31 nativeBuildInputs = [ cmake pkg-config installShellFiles ]; 32
··· 17 ein = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/ein"; 18 in rustPlatform.buildRustPackage rec { 19 pname = "gitoxide"; 20 + version = "0.39.0"; 21 22 src = fetchFromGitHub { 23 owner = "Byron"; 24 repo = "gitoxide"; 25 rev = "v${version}"; 26 + hash = "sha256-xv4xGkrArJ/LTVLs2SYhvxhfNG6sjVm5nZWsi4s34iM="; 27 }; 28 29 + cargoHash = "sha256-36ue3f67Btw0/AM5lTaByrJLKU5r1FJA3sFRJ1IbXXc="; 30 31 nativeBuildInputs = [ cmake pkg-config installShellFiles ]; 32
+4 -4
pkgs/applications/virtualization/qemu/default.nix
··· 1 { lib, stdenv, fetchurl, fetchpatch, python3Packages, zlib, pkg-config, glib, overrideSDK, buildPackages 2 , pixman, vde2, alsa-lib, flex, pcre2 3 - , bison, lzo, snappy, libaio, libtasn1, gnutls, nettle, curl, dtc, ninja, meson 4 , sigtool 5 , makeWrapper, removeReferencesTo 6 , attr, libcap, libcap_ng, socat, libslirp ··· 87 88 nativeBuildInputs = [ 89 makeWrapper removeReferencesTo 90 - pkg-config flex bison meson ninja 91 92 # Don't change this to python3 and python3.pkgs.*, breaks cross-compilation 93 python3Packages.python ··· 95 ++ lib.optionals gtkSupport [ wrapGAppsHook3 ] 96 ++ lib.optionals enableDocs [ python3Packages.sphinx python3Packages.sphinx-rtd-theme ] 97 ++ lib.optionals hexagonSupport [ glib ] 98 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ sigtool ] 99 ++ lib.optionals (!userOnly) [ dtc ]; 100 101 buildInputs = [ glib zlib ] 102 ++ lib.optionals (!minimal) [ dtc pixman vde2 lzo snappy libtasn1 gnutls nettle libslirp ] 103 ++ lib.optionals (!userOnly) [ curl ] 104 ++ lib.optionals ncursesSupport [ ncurses ] 105 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices Cocoa Hypervisor Kernel rez setfile vmnet ] 106 ++ lib.optionals seccompSupport [ libseccomp ] 107 ++ lib.optionals numaSupport [ numactl ] 108 ++ lib.optionals alsaSupport [ alsa-lib ]
··· 1 { lib, stdenv, fetchurl, fetchpatch, python3Packages, zlib, pkg-config, glib, overrideSDK, buildPackages 2 , pixman, vde2, alsa-lib, flex, pcre2 3 + , bison, lzo, snappy, libaio, libtasn1, gnutls, nettle, curl, dtc, ninja, meson, perl 4 , sigtool 5 , makeWrapper, removeReferencesTo 6 , attr, libcap, libcap_ng, socat, libslirp ··· 87 88 nativeBuildInputs = [ 89 makeWrapper removeReferencesTo 90 + pkg-config flex bison meson ninja perl 91 92 # Don't change this to python3 and python3.pkgs.*, breaks cross-compilation 93 python3Packages.python ··· 95 ++ lib.optionals gtkSupport [ wrapGAppsHook3 ] 96 ++ lib.optionals enableDocs [ python3Packages.sphinx python3Packages.sphinx-rtd-theme ] 97 ++ lib.optionals hexagonSupport [ glib ] 98 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ sigtool rez setfile ] 99 ++ lib.optionals (!userOnly) [ dtc ]; 100 101 buildInputs = [ glib zlib ] 102 ++ lib.optionals (!minimal) [ dtc pixman vde2 lzo snappy libtasn1 gnutls nettle libslirp ] 103 ++ lib.optionals (!userOnly) [ curl ] 104 ++ lib.optionals ncursesSupport [ ncurses ] 105 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices Cocoa Hypervisor Kernel vmnet ] 106 ++ lib.optionals seccompSupport [ libseccomp ] 107 ++ lib.optionals numaSupport [ numactl ] 108 ++ lib.optionals alsaSupport [ alsa-lib ]
+2
pkgs/build-support/dotnet/add-nuget-deps/default.nix
··· 5 lib, 6 substituteAll, 7 nuget-to-nix, 8 cacert, 9 fetchNupkg, 10 callPackage, ··· 67 isExecutable = true; 68 inherit cacert; 69 nugetToNix = nuget-to-nix; 70 }; 71 72 defaultDepsFile =
··· 5 lib, 6 substituteAll, 7 nuget-to-nix, 8 + nixfmt-rfc-style, 9 cacert, 10 fetchNupkg, 11 callPackage, ··· 68 isExecutable = true; 69 inherit cacert; 70 nugetToNix = nuget-to-nix; 71 + nixfmt = nixfmt-rfc-style; 72 }; 73 74 defaultDepsFile =
+2
pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh
··· 7 @nugetToNix@/bin/nuget-to-nix "${NUGET_PACKAGES%/}" 8 ) > deps.nix 9 10 mv deps.nix "$1" 11 echo "Succesfully wrote lockfile to $1"
··· 7 @nugetToNix@/bin/nuget-to-nix "${NUGET_PACKAGES%/}" 8 ) > deps.nix 9 10 + @nixfmt@/bin/nixfmt deps.nix 11 + 12 mv deps.nix "$1" 13 echo "Succesfully wrote lockfile to $1"
+3 -3
pkgs/by-name/bu/burpsuite/package.nix
··· 9 }: 10 11 let 12 - version = "2024.10.1"; 13 14 product = 15 if proEdition then 16 { 17 productName = "pro"; 18 productDesktop = "Burp Suite Professional Edition"; 19 - hash = "sha256-r/j7nATyd8GbfoLNby5x1/5BVeRv5B/8Ri1fPUwaCoQ="; 20 } 21 else 22 { 23 productName = "community"; 24 productDesktop = "Burp Suite Community Edition"; 25 - hash = "sha256-uvX1LTe2slPINrn+ywY3nyu/K+FTczvsW/FnP0z43Q8="; 26 }; 27 28 src = fetchurl {
··· 9 }: 10 11 let 12 + version = "2024.11.1"; 13 14 product = 15 if proEdition then 16 { 17 productName = "pro"; 18 productDesktop = "Burp Suite Professional Edition"; 19 + hash = "sha256-T2mihC/E9P2ARDs3aN6Acg62W86zNR4rTjngriGl3aU="; 20 } 21 else 22 { 23 productName = "community"; 24 productDesktop = "Burp Suite Community Edition"; 25 + hash = "sha256-feTqtqnYtT7i+HtJAERcKK3QAdPkXm+JUtl6JZLEHJA="; 26 }; 27 28 src = fetchurl {
+3 -3
pkgs/by-name/ca/cargo-shuttle/package.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-shuttle"; 14 - version = "0.47.0"; 15 16 src = fetchFromGitHub { 17 owner = "shuttle-hq"; 18 repo = "shuttle"; 19 rev = "v${version}"; 20 - hash = "sha256-AJ+7IUxi5SRRWw0EHh9JmQHkdQU3Mhd1Nmo1peEG2zg="; 21 }; 22 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-RqPVFovDaD2rW31HyETJfQ0qVwFxoGEvqkIgag3H6KU="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-shuttle"; 14 + version = "0.49.0"; 15 16 src = fetchFromGitHub { 17 owner = "shuttle-hq"; 18 repo = "shuttle"; 19 rev = "v${version}"; 20 + hash = "sha256-97AiRgTPzkNsnxMTF0zleHVR6QYLyRlhguh2nz+duUM="; 21 }; 22 23 useFetchCargoVendor = true; 24 + cargoHash = "sha256-eHmNGIcSXzFdfEHKKr0R+igtZbm8bPRFg2uhzJwKDhk="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
+84
pkgs/by-name/fa/famistudio/build-native-wrapper.nix
···
··· 1 + { 2 + depname, 3 + version, 4 + src, 5 + sourceRoot, 6 + stdenv, 7 + lib, 8 + patches ? [ ], 9 + extraPostPatch ? "", 10 + buildInputs ? [ ], 11 + }: 12 + 13 + let 14 + rebuildscriptName = 15 + if stdenv.hostPlatform.isLinux then 16 + "build_linux" 17 + else if stdenv.hostPlatform.isDarwin then 18 + "build_macos" 19 + else 20 + throw "Don't know how to rebuild FamiStudio's vendored ${depname} for ${stdenv.hostPlatform.system}"; 21 + in 22 + stdenv.mkDerivation { 23 + pname = "famistudio-nativedep-${depname}"; 24 + inherit 25 + version 26 + src 27 + sourceRoot 28 + patches 29 + buildInputs 30 + ; 31 + 32 + postPatch = 33 + let 34 + libnameBase = lib.optionalString stdenv.hostPlatform.isLinux "lib" + depname; 35 + in 36 + '' 37 + # Use one name for build script, eases with patching 38 + mv ${rebuildscriptName}.sh build.sh 39 + 40 + # Scripts use hardcoded compilers and try to copy built libraries into FamiStudio's build tree 41 + # Not all scripts use the same compiler, so don't fail on replacing that 42 + substituteInPlace build.sh \ 43 + --replace-fail '../../FamiStudio/' "$out/lib/" \ 44 + --replace-quiet 'g++' "$CXX" 45 + 46 + # Replacing gcc via sed, would break -static-libgcc otherwise 47 + sed -i -e "s/^gcc/$CC/g" build.sh 48 + '' 49 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 50 + # Darwin rebuild scripts try to make a universal2 dylib 51 + # - build dylib for non-hostPlatform 52 + # - copy built library into special directory for later packaging script 53 + # - join two dylibs together into a universal2 dylib 54 + # Remove everything we don't need 55 + sed -ri \ 56 + -e '/-target ${if stdenv.hostPlatform.isx86_64 then "arm64" else "x86_64"}/d' \ 57 + -e '/..\/..\/Setup/d' \ 58 + build.sh 59 + 60 + # Replace joining multi-arch dylibs with copying dylib for target arch 61 + substituteInPlace build.sh \ 62 + --replace-fail 'lipo -create -output ${libnameBase}.dylib' 'cp ${libnameBase}_${ 63 + if stdenv.hostPlatform.isx86_64 then "x86_64" else "arm64" 64 + }.dylib ${libnameBase}.dylib #' 65 + '' 66 + + extraPostPatch; 67 + 68 + dontConfigure = true; 69 + dontInstall = true; # rebuild script automatically installs 70 + 71 + buildPhase = '' 72 + runHook preBuild 73 + 74 + mkdir -p $out/lib 75 + 76 + # Delete all prebuilt libraries, make sure everything is rebuilt 77 + find . -name '*.so' -or -name '*.dylib' -or -name '*.a' -delete 78 + 79 + # When calling normally, an error won't cause derivation to fail 80 + source ./build.sh 81 + 82 + runHook postBuild 83 + ''; 84 + }
+171
pkgs/by-name/fa/famistudio/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + buildDotnetModule, 5 + dotnetCorePackages, 6 + callPackage, 7 + fetchFromGitHub, 8 + ffmpeg, 9 + glfw, 10 + libglvnd, 11 + libogg, 12 + libvorbis, 13 + openal, 14 + portaudio, 15 + rtmidi, 16 + }: 17 + 18 + let 19 + csprojName = 20 + if stdenv.hostPlatform.isLinux then 21 + "FamiStudio.Linux" 22 + else if stdenv.hostPlatform.isDarwin then 23 + "FamiStudio.Mac" 24 + else 25 + throw "Don't know how to build FamiStudio for ${stdenv.hostPlatform.system}"; 26 + in 27 + buildDotnetModule rec { 28 + pname = "famistudio"; 29 + version = "4.2.1"; 30 + 31 + src = fetchFromGitHub { 32 + owner = "BleuBleu"; 33 + repo = "FamiStudio"; 34 + rev = "refs/tags/${version}"; 35 + hash = "sha256-WYy/6cWQg3Ayok/eAdnvlWAvdcuhy/sdlWOVvaYcPkc="; 36 + }; 37 + 38 + postPatch = 39 + let 40 + libname = library: "${library}${stdenv.hostPlatform.extensions.sharedLibrary}"; 41 + buildNativeWrapper = 42 + args: 43 + callPackage ./build-native-wrapper.nix ( 44 + args 45 + // { 46 + inherit version src; 47 + sourceRoot = "${src.name}/ThirdParty/${args.depname}"; 48 + } 49 + ); 50 + nativeWrapperToReplaceFormat = 51 + args: 52 + let 53 + libPrefix = lib.optionalString stdenv.hostPlatform.isLinux "lib"; 54 + in 55 + { 56 + package = buildNativeWrapper args; 57 + expectedName = "${libPrefix}${args.depname}"; 58 + ourName = "${libPrefix}${args.depname}"; 59 + }; 60 + librariesToReplace = 61 + [ 62 + # Unmodified native libraries that we can fully substitute 63 + { 64 + package = glfw; 65 + expectedName = "libglfw"; 66 + ourName = "libglfw"; 67 + } 68 + { 69 + package = rtmidi; 70 + expectedName = "librtmidi"; 71 + ourName = "librtmidi"; 72 + } 73 + ] 74 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 75 + { 76 + package = openal; 77 + expectedName = "libopenal32"; 78 + ourName = "libopenal"; 79 + } 80 + ] 81 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 82 + { 83 + package = portaudio; 84 + expectedName = "libportaudio.2"; 85 + ourName = "libportaudio.2"; 86 + } 87 + ] 88 + ++ [ 89 + # Native libraries, with extra code for the C# wrapping 90 + (nativeWrapperToReplaceFormat { depname = "GifDec"; }) 91 + (nativeWrapperToReplaceFormat { depname = "NesSndEmu"; }) 92 + (nativeWrapperToReplaceFormat { 93 + depname = "NotSoFatso"; 94 + extraPostPatch = '' 95 + # C++17 does not allow register storage class specifier 96 + substituteInPlace build.sh \ 97 + --replace-fail "$CXX" "$CXX -std=c++14" 98 + ''; 99 + }) 100 + (nativeWrapperToReplaceFormat { depname = "ShineMp3"; }) 101 + (nativeWrapperToReplaceFormat { depname = "Stb"; }) 102 + (nativeWrapperToReplaceFormat { 103 + depname = "Vorbis"; 104 + buildInputs = [ 105 + libogg 106 + libvorbis 107 + ]; 108 + }) 109 + ]; 110 + libraryReplaceArgs = lib.strings.concatMapStringsSep " " ( 111 + library: 112 + "--replace-fail '${libname library.expectedName}' '${lib.getLib library.package}/lib/${libname library.ourName}'" 113 + ) librariesToReplace; 114 + in 115 + '' 116 + # Don't use any prebuilt libraries 117 + rm FamiStudio/*.{dll,dylib,so*} 118 + 119 + # Replace copying of vendored prebuilt native libraries with copying of our native libraries 120 + substituteInPlace ${projectFile} ${libraryReplaceArgs} 121 + 122 + # Un-hardcode target platform if set 123 + sed -i -e '/PlatformTarget/d' ${projectFile} 124 + 125 + # Don't require a special name to be preserved, our OpenAL isn't 32-bit 126 + substituteInPlace FamiStudio/Source/AudioStreams/OpenALStream.cs \ 127 + --replace-fail 'libopenal32' 'libopenal' 128 + ''; 129 + 130 + projectFile = "FamiStudio/${csprojName}.csproj"; 131 + nugetDeps = ./deps.nix; 132 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 133 + dotnet-runtime = dotnetCorePackages.runtime_8_0; 134 + dotnetFlags = [ "-p:TargetFramework=net8.0" ]; 135 + 136 + runtimeDeps = lib.optionals stdenv.hostPlatform.isLinux [ 137 + libglvnd 138 + ]; 139 + 140 + executables = [ "FamiStudio" ]; 141 + 142 + postInstall = '' 143 + mkdir -p $out/share/famistudio 144 + for datdir in Setup/Demo\ {Instruments,Songs}; do 145 + cp -R "$datdir" $out/share/famistudio/ 146 + done 147 + ''; 148 + 149 + postFixup = '' 150 + # FFMpeg looked up from PATH 151 + wrapProgram $out/bin/FamiStudio \ 152 + --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 153 + ''; 154 + 155 + passthru.updateScript = ./update.sh; 156 + 157 + meta = { 158 + homepage = "https://famistudio.org/"; 159 + description = "NES Music Editor"; 160 + longDescription = '' 161 + FamiStudio is very simple music editor for the Nintendo Entertainment System 162 + or Famicom. It is targeted at both chiptune artists and NES homebrewers. 163 + ''; 164 + license = lib.licenses.mit; 165 + maintainers = with lib.maintainers; [ 166 + OPNA2608 167 + ]; 168 + platforms = lib.platforms.unix; 169 + mainProgram = "FamiStudio"; 170 + }; 171 + }
+29
pkgs/by-name/fl/flirt/package.nix
···
··· 1 + { 2 + rustPlatform, 3 + fetchFromSourcehut, 4 + lib, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "flirt"; 9 + version = "0.2"; 10 + 11 + src = fetchFromSourcehut { 12 + owner = "~hadronized"; 13 + repo = "flirt"; 14 + rev = "v${version}"; 15 + hash = "sha256-NV6UP7fPTcn0WrZwIfe1zuZW6hJDuxrfATM2Gpx0yr0="; 16 + }; 17 + 18 + cargoHash = "sha256-gVtRU+tjwf3rTei/TjUFYSMvLB9g6gNeGYO+9NBxgYQ="; 19 + 20 + meta = { 21 + description = "FiLe InteRacT, the file interaction tool for your command line"; 22 + homepage = "https://git.sr.ht/~hadronized/flirt"; 23 + license = lib.licenses.bsd3; 24 + maintainers = with lib.maintainers; [ 25 + adda 26 + ]; 27 + mainProgram = "flirt"; 28 + }; 29 + }
+203 -147
pkgs/by-name/fs/fsautocomplete/deps.nix
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "altcover"; version = "8.3.838"; hash = "sha256-1kVHQ9LVW5UeDQM9akVtHAWqaek9xyGdsbj3fnkuC1E="; }) 6 - (fetchNuGet { pname = "BenchmarkDotNet"; version = "0.13.5"; hash = "sha256-DFj37xGD1ZS+kuRwC6/ry6fCcB7Ua3pUeSEcpayh5Ys="; }) 7 - (fetchNuGet { pname = "BenchmarkDotNet.Annotations"; version = "0.13.5"; hash = "sha256-wm/xxRicbpcX2+k+pY0bciAqcJDcD/YTZUOBbaCR/Zc="; }) 8 - (fetchNuGet { pname = "CliWrap"; version = "3.4.4"; hash = "sha256-qBNxZ9XE8Ggml6SJO0APLwLzAZPEyK9oLIG6juHSx7w="; }) 9 - (fetchNuGet { pname = "CommandLineParser"; version = "2.4.3"; hash = "sha256-pTyYP26uXXLe6ejCb/yVYpb23ad/Dkl2Ka8NWwQeiqk="; }) 10 - (fetchNuGet { pname = "CommunityToolkit.HighPerformance"; version = "7.0.1"; hash = "sha256-+RgiTMxrNWj3ugtdookh/xZSSZ9N2AAVwwpVC6w7vKM="; }) 11 - (fetchNuGet { pname = "Destructurama.FSharp"; version = "1.2.0"; hash = "sha256-2xoQITsoczLJZ01q5RpZf6QAyadTGFfiT2SKPxVCc30="; }) 12 - (fetchNuGet { pname = "DiffPlex"; version = "1.7.1"; hash = "sha256-0kDBRvlMALkuE0G86ACEkZ4hNCeFwMmLPOvleMHJ6OA="; }) 13 - (fetchNuGet { pname = "dotnet-reportgenerator-globaltool"; version = "5.0.2"; hash = "sha256-0Hrww0XM6T5vtk2pjDcurODd0h6iq4g65MMJBE2TPz8="; }) 14 - (fetchNuGet { pname = "DotNet.ReproducibleBuilds"; version = "1.1.1"; hash = "sha256-+E+F4W9AbqVBwbbwPvaaM62btwF4h8dxlZ+GzRfvQHE="; }) 15 - (fetchNuGet { pname = "Expecto"; version = "10.1.0"; hash = "sha256-Cecf3x1iHWSqXzasGsyEiuUgjeLCs14qXJ6KC2Lx/og="; }) 16 - (fetchNuGet { pname = "Expecto.Diff"; version = "9.0.4"; hash = "sha256-8jhTfIWb0aJwUXUihqdjt8PnuvGZCOiVhye3WfKy5hk="; }) 17 - (fetchNuGet { pname = "fantomas"; version = "6.3.1"; hash = "sha256-mPuY2OwVK6dLtI+L8SIK5i7545VQ0ChhUPdQwBlvcE4="; }) 18 - (fetchNuGet { pname = "Fantomas.Client"; version = "0.9.0"; hash = "sha256-LUnFBYZ7LYhPcTRcXx3KfpnY+TRGIGdw8md6F8zkPf4="; }) 19 (fetchNuGet { pname = "FParsec"; version = "1.1.1"; hash = "sha256-BFTUFsdUDtPf3Y7YYsIHGnR3SykVeE6MAN3NRHv+Qwc="; }) 20 - (fetchNuGet { pname = "fsharp-analyzers"; version = "0.26.0"; hash = "sha256-60Bl36LOb/zVNdH2SBSuQ5O41lP9dKTNZbs5vvYs+3U="; }) 21 (fetchNuGet { pname = "FSharp.Analyzers.Build"; version = "0.3.0"; hash = "sha256-Lrb30y+i2NuSyFT/kBQz0HKKGDAi1dGso4T7TROTMbE="; }) 22 - (fetchNuGet { pname = "FSharp.Analyzers.SDK"; version = "0.26.0"; hash = "sha256-4Y433meN0SKb/0JFzStpwScpC1Nly+HCjuihiVGVeE8="; }) 23 - (fetchNuGet { pname = "FSharp.Compiler.Service"; version = "43.8.300"; hash = "sha256-i/vULPC06ZPAsY2t45ZbHjWXViBV1C0FWsN3D94nGmI="; }) 24 (fetchNuGet { pname = "FSharp.Control.AsyncSeq"; version = "3.2.1"; hash = "sha256-ezSZrGMqTQZKt0ojCRKUWuDGx1JVUyNZzkmUZjVqiAk="; }) 25 (fetchNuGet { pname = "FSharp.Control.Reactive"; version = "5.0.5"; hash = "sha256-Dy8f5tIU/uwv6Nyjq8iomIWTi/IArKEnCGY7XvRoGyo="; }) 26 - (fetchNuGet { pname = "FSharp.Core"; version = "8.0.300"; hash = "sha256-BGDVf+oYfTgeqdS5iApzfT+rEhFN3P/9iuJDC1PuHZU="; }) 27 - (fetchNuGet { pname = "FSharp.Data.Adaptive"; version = "1.2.13"; hash = "sha256-P5stVsJ/IrfAO5Z21Vik2FN1c/AfDoQF9SAEiMKBgZo="; }) 28 (fetchNuGet { pname = "FSharp.Formatting"; version = "14.0.1"; hash = "sha256-SnfSGd4YoXfns6mG9oS7E4OUwU4sqzMSq6zl+juVpGs="; }) 29 (fetchNuGet { pname = "FSharp.UMX"; version = "1.1.0"; hash = "sha256-E0nEJUfxpXo/d+0BIKcJVG0tJr2pjM2gg/cyh0Yt7uc="; }) 30 - (fetchNuGet { pname = "FSharpLint.Core"; version = "0.21.2"; hash = "sha256-AH5W55M6IJiS4ywvVgBMk79bLmXKE7Q4APK2+vNjn4M="; }) 31 (fetchNuGet { pname = "FSharpx.Async"; version = "1.14.1"; hash = "sha256-bDZb/ppG8N1L88enRqcy6wIhB+O+5vWPj6c2jfYlDtQ="; }) 32 - (fetchNuGet { pname = "FsToolkit.ErrorHandling"; version = "4.4.0"; hash = "sha256-XsUBzpwDeIOr5DqXsw7KR76M2wcB/n2rjEUABUqMtSg="; }) 33 - (fetchNuGet { pname = "FsToolkit.ErrorHandling.TaskResult"; version = "4.4.0"; hash = "sha256-OJMBFzAYoQqHoQ0T3NZ6BkOIJKbHqkbBiKppt2Ml/OE="; }) 34 (fetchNuGet { pname = "Gee.External.Capstone"; version = "2.3.0"; hash = "sha256-wdYT/F8SLL72OIVv/Q/hfLMfhlWMnhDNCTWx+wWlPoU="; }) 35 - (fetchNuGet { pname = "GitHubActionsTestLogger"; version = "2.0.1"; hash = "sha256-DkhXkjt4aeRkgzvgZSLA1gyINlrkbDL5uQfTbqsLrZQ="; }) 36 - (fetchNuGet { pname = "Google.Protobuf"; version = "3.22.0"; hash = "sha256-x8ZwDIy+uodM/2H2U4VoSFe8o35LI3+HA0vK3DDtXfI="; }) 37 (fetchNuGet { pname = "Grpc"; version = "2.46.6"; hash = "sha256-UvshzRfdXji+35rPAlS5Kcc5On6OxvFJ0Lbhk+CRQv4="; }) 38 (fetchNuGet { pname = "Grpc.Core"; version = "2.46.6"; hash = "sha256-/8HjIi72DMNH8WMCHcinEmNwdHWudZlc3s7K3hEV3tM="; }) 39 - (fetchNuGet { pname = "Grpc.Core.Api"; version = "2.51.0"; hash = "sha256-P0OJ2rfOwaGXc5XJXoiW2sOmPWAPV5qgblNy3idu6a8="; }) 40 - (fetchNuGet { pname = "Grpc.Net.Client"; version = "2.51.0"; hash = "sha256-0CotAbUEJFJ4ed2P1p6Yu3cc0/6Dpz8NlPiiGIpSmNA="; }) 41 - (fetchNuGet { pname = "Grpc.Net.Common"; version = "2.51.0"; hash = "sha256-H+STGNVZyOK+jfMjn47MnN+UpHFW0xJrIoSRiYvj8aw="; }) 42 (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; }) 43 - (fetchNuGet { pname = "Iced"; version = "1.17.0"; hash = "sha256-6/5E5v5mqSG7yiE2zHUChZZeC47NRgLzQFD4+7bqKaU="; }) 44 - (fetchNuGet { pname = "IcedTasks"; version = "0.11.5"; hash = "sha256-OJQfoUF9ZIr8tQBJjwGTM0B7Mhsh7n8vwrK8VrT9/FA="; }) 45 - (fetchNuGet { pname = "ICSharpCode.Decompiler"; version = "7.2.1.6856"; hash = "sha256-ap3Uq6AwYjO7FbhAm/JjG9YUAv9vWYVggHQk+l9G5qc="; }) 46 - (fetchNuGet { pname = "Ionide.Analyzers"; version = "0.11.0"; hash = "sha256-AChoZnk+qr0SKsvqIcirrif8KEs/hl9qrExVktc7XfM="; }) 47 (fetchNuGet { pname = "Ionide.KeepAChangelog.Tasks"; version = "0.1.8"; hash = "sha256-yyg8Az7VG4rK/AsMC9cUZc67onl6wOGXoUqHm4Wi3xg="; }) 48 (fetchNuGet { pname = "Ionide.LanguageServerProtocol"; version = "0.6.0"; hash = "sha256-4CUMAzICBpp621nh3zTnIGrKH9YYvyflbXA3HFKtkpc="; }) 49 - (fetchNuGet { pname = "Ionide.ProjInfo"; version = "0.65.0"; hash = "sha256-n+kJQFf2EAiSnlP1QH/0EIo8Y8tHxZTXVQMeqTw6aio="; }) 50 - (fetchNuGet { pname = "Ionide.ProjInfo.FCS"; version = "0.65.0"; hash = "sha256-IDbSOOD2bJ6bxfvw8xoxnEkW1fdXokV5qaVxa7KxWU4="; }) 51 - (fetchNuGet { pname = "Ionide.ProjInfo.ProjectSystem"; version = "0.65.0"; hash = "sha256-GNXwArp1Y4Sq/yVKBOLLuhcYoTQ76Wnibxt/4IYHCJQ="; }) 52 - (fetchNuGet { pname = "Ionide.ProjInfo.Sln"; version = "0.65.0"; hash = "sha256-FMtbVFnOxFnxFVkkw7ec8Hj9iZdiUisfF6LLjYT2Xbg="; }) 53 (fetchNuGet { pname = "LinkDotNet.StringBuilder"; version = "1.18.0"; hash = "sha256-nvZmHQr3y8SjXru11dhjQUEqoiv9vlknXjjVaKUn8FE="; }) 54 (fetchNuGet { pname = "McMaster.NETCore.Plugins"; version = "1.4.0"; hash = "sha256-PtpD8S74UXyoA80YRDlrp8qR/I7Ws7+4m2EJZzH4WMw="; }) 55 (fetchNuGet { pname = "MessagePack"; version = "2.5.108"; hash = "sha256-+vMXyEbfutY5WOFuFnNF24uLcKJTTdntVrVlSJH4yjI="; }) 56 - (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.108"; hash = "sha256-u3Qu8UftNIz3oIzQUMa7Z0G6VzmDLcAnAeNQ3lB3YVk="; }) 57 - (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "7.0.0"; hash = "sha256-1e031E26iraIqun84ad0fCIR4MJZ1hcQo4yFN+B7UfE="; }) 58 - (fetchNuGet { pname = "Microsoft.Bcl.HashCode"; version = "1.1.0"; hash = "sha256-IFvXCMV2joahytylQ2BGSpZd2tdX0Rss++ZcClVT+r0="; }) 59 - (fetchNuGet { pname = "Microsoft.Build"; version = "17.2.0"; hash = "sha256-JzPqbxFyotNhSr5tokVevdqB9+nJKx4YH2hPkC05GiY="; }) 60 - (fetchNuGet { pname = "Microsoft.Build.Framework"; version = "17.6.3"; hash = "sha256-xu4GNWtHgwOLOCyI/AfaXxPgWehHFQIYSDkLGLlAQT4="; }) 61 - (fetchNuGet { pname = "Microsoft.Build.Locator"; version = "1.5.3"; hash = "sha256-5PXL9/sEmtM8xO8U8Ce9Dg3rrFKA7K/Ak5jU9Zz6oE4="; }) 62 - (fetchNuGet { pname = "Microsoft.Build.Tasks.Core"; version = "17.4.0"; hash = "sha256-THxSNkjJY82lY6iahcH6PCoHjkDi7G7nK5O4i9GTo4k="; }) 63 - (fetchNuGet { pname = "Microsoft.Build.Tasks.Git"; version = "1.1.1"; hash = "sha256-PHxHmsCty8Si5dCUQSizeHkJrHa9+j2nRsg6Sz+5Za0="; }) 64 - (fetchNuGet { pname = "Microsoft.Build.Utilities.Core"; version = "17.4.0"; hash = "sha256-xyMwjD98ic4Bc3MSC31F9r4CFG1tRGODiXrEZxLm+tM="; }) 65 - (fetchNuGet { pname = "Microsoft.CodeAnalysis"; version = "4.5.0"; hash = "sha256-3WFWy2PC0X3D/ho3OjEgTx0Wh3Y0+urDBBDnzceYNOw="; }) 66 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.3"; hash = "sha256-pkZiggwLw8k+CVSXKTzsVGsT+K49LxXUS3VH5PNlpCY="; }) 67 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.5.0"; hash = "sha256-qo1oVNTB9JIMEPoiIZ+02qvF/O8PshQ/5gTjsY9iX0I="; }) 68 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.5.0"; hash = "sha256-5dZTS9PYtY83vyVa5bdNG3XKV5EjcnmddfUqWmIE29A="; }) 69 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Workspaces"; version = "4.5.0"; hash = "sha256-Kmyt1Xfcs0rSZHvN9PH94CKAooqMS9abZQY7EpEqb2o="; }) 70 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.VisualBasic"; version = "4.5.0"; hash = "sha256-Szem/v7hUsx5NdG6Zt7pJ30mgqCbwR4WShPU89xgqEs="; }) 71 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.VisualBasic.Workspaces"; version = "4.5.0"; hash = "sha256-h0iLQdXKU/u/RHyrAeEHgRrsrSHHb/GaEP53d8j+MfI="; }) 72 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Workspaces.Common"; version = "4.5.0"; hash = "sha256-WM7AXJYHagaPx2waj2E32gG0qXq6Kx4Zhiq7Ym3WXPI="; }) 73 - (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.4.1"; hash = "sha256-MauJBMP1gySvvAsuNB7m+KvcAWsexU9i/tOwavBDxi0="; }) 74 - (fetchNuGet { pname = "Microsoft.Diagnostics.NETCore.Client"; version = "0.2.251802"; hash = "sha256-9ZH4rrfACzJP5oiarDW4cD2nczv1SNgZr4GW1J9hlUA="; }) 75 - (fetchNuGet { pname = "Microsoft.Diagnostics.Runtime"; version = "2.2.332302"; hash = "sha256-5R9xK0owZEhXsucqPKnPaTiwhXBnLo92L2AY7IjyxNg="; }) 76 - (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.TraceEvent"; version = "3.0.2"; hash = "sha256-BHuiTEkA76/9QIR9MG8SBhdExgKFFGd//2RjX8V3XJM="; }) 77 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; hash = "sha256-RfM2qXiqdiamPkXr4IDkNc0IZSF9iTZv4uou/E7zNS0="; }) 78 - (fetchNuGet { pname = "Microsoft.Extensions.Caching.Abstractions"; version = "6.0.0"; hash = "sha256-aGp1qcL1hVmb+HqCWrao3YVXOpGyiDJFDz2Td0cDw2I="; }) 79 - (fetchNuGet { pname = "Microsoft.Extensions.Caching.Memory"; version = "6.0.1"; hash = "sha256-8xXb65hiKNlCeTCpuZ2yAEFB4FgXYre/BCQn8FajQGU="; }) 80 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration"; version = "6.0.1"; hash = "sha256-v55PAURxnSGYgbv9x+4/pMeI51H27ikRfHBuUB+N5nE="; }) 81 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "6.0.0"; hash = "sha256-Evg+Ynj2QUa6Gz+zqF+bUyfGD0HI5A2fHmxZEXbn3HA="; }) 82 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Binder"; version = "6.0.0"; hash = "sha256-7NZcKkiXWSuhhVcA/fXHPY/62aGUyMsRdiHm91cWC5Y="; }) 83 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "6.0.1"; hash = "sha256-V+CulDoU3NXWn5EjH64JhDVQ0h+ev5BW95T+2uL1hU4="; }) 84 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "6.0.0"; hash = "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4="; }) 85 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "5.0.0"; hash = "sha256-vUwAWMxXiMW+JOiQE5fcJycOfJJzO87ESYAsEPsPqtY="; }) 86 - (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "6.0.0"; hash = "sha256-8WsZKRGfXW5MsXkMmNVf6slrkw+cR005czkOP2KUqTk="; }) 87 - (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "6.0.2"; hash = "sha256-VRyyMGCMBh25vIIzbLapMAqY8UffqJRvkF/kcYcjZfM="; }) 88 - (fetchNuGet { pname = "Microsoft.Extensions.Logging.Configuration"; version = "6.0.0"; hash = "sha256-IeMOza71UDzsEIVIlYuI0RYKk+d+VOC6zCqYCQs6nV4="; }) 89 - (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "6.0.0"; hash = "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE="; }) 90 - (fetchNuGet { pname = "Microsoft.Extensions.Options.ConfigurationExtensions"; version = "6.0.0"; hash = "sha256-au0Y13cGk/dQFKuvSA5NnP/++bErTk0oOTlgmHdI2Mw="; }) 91 - (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "6.0.0"; hash = "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4="; }) 92 - (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.4.0"; hash = "sha256-+9uBaUDZ3roUJwyYJUL30Mz+3C6LE16FzfQKgS0Yveo="; }) 93 - (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.4.1"; hash = "sha256-Kl8ZAWCMFZcYEfPDr/YG4zfQEuEzlOuhWI40Zl2S4Qo="; }) 94 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.1"; hash = "sha256-8hLiUKvy/YirCWlFwzdejD2Db3DaXhHxT7GSZx/znJg="; }) 95 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.3"; hash = "sha256-WLsf1NuUfRWyr7C7Rl9jiua9jximnVvzy6nk2D2bVRc="; }) 96 - (fetchNuGet { pname = "Microsoft.NETFramework.ReferenceAssemblies"; version = "1.0.3"; hash = "sha256-FBoJP5DHZF0QHM0xLm9yd4HJZVQOuSpSKA+VQRpphEE="; }) 97 - (fetchNuGet { pname = "Microsoft.NETFramework.ReferenceAssemblies.net461"; version = "1.0.3"; hash = "sha256-vVIonl+4dlCQuxibOZoGR3o1DAhjAYpFW15dnkUpjMk="; }) 98 - (fetchNuGet { pname = "Microsoft.SourceLink.AzureRepos.Git"; version = "1.1.1"; hash = "sha256-Pyf/qCztg3ybe/5D070W1Huiaj9ZCq6Hsfkuv0VELBU="; }) 99 - (fetchNuGet { pname = "Microsoft.SourceLink.Bitbucket.Git"; version = "1.1.1"; hash = "sha256-yR7+KmYQqNCUh1JrrZhwPy3KL9xUO0+ajlhlGOmJ7dw="; }) 100 - (fetchNuGet { pname = "Microsoft.SourceLink.Common"; version = "1.1.1"; hash = "sha256-b4FaNFneDVDbvJVX1iNyhhLTrnxUfnmyypeJr47GbXY="; }) 101 - (fetchNuGet { pname = "Microsoft.SourceLink.GitHub"; version = "1.1.1"; hash = "sha256-3hc9ym5ReONp00ruCKio/Ka1gYXo/jDlUHtfK1wZPiU="; }) 102 - (fetchNuGet { pname = "Microsoft.SourceLink.GitLab"; version = "1.1.1"; hash = "sha256-gfT9xzBXzmVlMR/2T2fTapA+udrYUNvP+bO6AhgDpTo="; }) 103 - (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.4.1"; hash = "sha256-Qa059jbu0zIXHknnCYkrqFFZwXR8mpuihaTC65PjyGg="; }) 104 - (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.4.1"; hash = "sha256-RIt6iAlpq52zaLy1X1dDAQkIVp/SGhAz6x7mYhGmMdk="; }) 105 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.6.40"; hash = "sha256-5HtsgSPV5RdaPREGDvJ7qMOFubb1wMyHwkfTnZs9Zsc="; }) 106 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.6.40"; hash = "sha256-WghLNITEsKTV5pCjogmhfsVD3iO7ghTk0KNrOXzKSS0="; }) 107 - (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "17.6.11"; hash = "sha256-Lkjp9Ove4+CFP06x/toYpJEiAinuTfn/o+oh0fW3pGM="; }) 108 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; }) 109 - (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "7.0.0"; hash = "sha256-i6JojctqrqfJ4Wa+BDtaKZEol26jYq5DTQHar2M9B64="; }) 110 - (fetchNuGet { pname = "Mono.Cecil"; version = "0.11.4"; hash = "sha256-HrnRgFsOzfqAWw0fUxi/vkzZd8dMn5zueUeLQWA9qvs="; }) 111 - (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.10.66"; hash = "sha256-35qyZOVDemtsBYjaZSkzuXGp0mIOSFnCeEHWsUXb5BI="; }) 112 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.2"; hash = "sha256-ESyjt/R7y9dDvvz5Sftozk+e/3Otn38bOcLGGh69Ot0="; }) 113 - (fetchNuGet { pname = "NuGet.Frameworks"; version = "6.3.0"; hash = "sha256-DMTS6vJJ5p0lpld2oXGEzcVk+mZV6vBgUTi5OJ9buBY="; }) 114 - (fetchNuGet { pname = "OpenTelemetry"; version = "1.3.2"; hash = "sha256-6awzrYhug+Tq1R4uRl1Ry8SC+PPSz0o+hJLfWA67Me0="; }) 115 - (fetchNuGet { pname = "OpenTelemetry.Api"; version = "1.3.2"; hash = "sha256-YXN8ijWIGq6/0CwQ88oSUlJ7zfCm17T3IXZUa2ZK9Dk="; }) 116 - (fetchNuGet { pname = "OpenTelemetry.Exporter.OpenTelemetryProtocol"; version = "1.3.2"; hash = "sha256-OJI1qaTB1V6Ms4HPbgEyX75HqOf7hGjVgCzjiozN5pI="; }) 117 - (fetchNuGet { pname = "OpenTelemetry.Instrumentation.Runtime"; version = "1.0.0"; hash = "sha256-NLxoW+nvQB6kssdFyJej168XmWVOOPccfS25H+15QQs="; }) 118 - (fetchNuGet { pname = "Paket"; version = "8.0.3"; hash = "sha256-wAIzB3RURvy51UeMMrdHGI2ImKx1GDu3K1eglwEItYs="; }) 119 - (fetchNuGet { pname = "Perfolizer"; version = "0.2.1"; hash = "sha256-nllshKuHU+1jSBfcTz8BTJTGr1TeCFvxjM4OPyLGSgQ="; }) 120 - (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-EbnOqPOrAgI9eNheXLR++VnY4pHzMsEKw1dFPJ/Fl2c="; }) 121 - (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-mVg02TNvJc1BuHU03q3fH3M6cMgkKaQPBxraSHl/Btg="; }) 122 - (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-g9Uiikrl+M40hYe0JMlGHe/lrR0+nN05YF64wzLmBBA="; }) 123 - (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; }) 124 - (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="; }) 125 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="; }) 126 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-xqF6LbbtpzNC9n1Ua16PnYgXHU0LvblEROTfK4vIxX8="; }) 127 - (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-aJBu6Frcg6webvzVcKNoUP1b462OAqReF2giTSyBzCQ="; }) 128 - (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-Mpt7KN2Kq51QYOEVesEjhWcCGTqWckuPf8HlQ110qLY="; }) 129 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="; }) 130 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-JvMltmfVC53mCZtKDHE69G3RT6Id28hnskntP9MMP9U="; }) 131 - (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-QfFxWTVRNBhN4Dm1XRbCf+soNQpy81PsZed3x6op/bI="; }) 132 - (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-EaJHVc9aDZ6F7ltM2JwlIuiJvqM67CKRq682iVSo+pU="; }) 133 - (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-PHR0+6rIjJswn89eoiWYY1DuU8u6xRJLrtjykAMuFmA="; }) 134 - (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.2"; hash = "sha256-LFkh7ua7R4rI5w2KGjcHlGXLecsncCy6kDXLuy4qD/Q="; }) 135 (fetchNuGet { pname = "SemanticVersioning"; version = "2.0.2"; hash = "sha256-d5tUJshDHk/rhNqt7Rl9S/Fg526el1faeanNHKcqtAg="; }) 136 - (fetchNuGet { pname = "Serilog"; version = "2.11.0"; hash = "sha256-kI7I/NiH7GuR0MQTZsy+m+8+2qT0xMBrY7SXYCocbds="; }) 137 - (fetchNuGet { pname = "Serilog.Sinks.Async"; version = "1.5.0"; hash = "sha256-z78CCkdeV+C4HnrH/HX0D61V3fLxVwOQdLy8So0diy0="; }) 138 - (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "4.0.1"; hash = "sha256-n0LQOEsUg9M/T1aWryiG2690pyGBjHsk6TRZz2aCGyA="; }) 139 - (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0"; hash = "sha256-GKy9hwOdlu2W0Rw8LiPyEwus+sDtSOTl8a5l9uqz+SQ="; }) 140 (fetchNuGet { pname = "StreamJsonRpc"; version = "2.16.36"; hash = "sha256-XLCQsY7xu67E8E7WJIvjHtk3iobREPCiljW8jNpfi68="; }) 141 (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; }) 142 - (fetchNuGet { pname = "System.CodeDom"; version = "6.0.0"; hash = "sha256-uPetUFZyHfxjScu5x4agjk9pIhbCkt5rG4Axj25npcQ="; }) 143 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 144 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; }) 145 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; hash = "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk="; }) 146 (fetchNuGet { pname = "System.CommandLine"; version = "2.0.0-beta4.22272.1"; hash = "sha256-zSO+CYnMH8deBHDI9DHhCPj79Ce3GOzHCyH1/TiHxcc="; }) 147 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg="; }) 148 - (fetchNuGet { pname = "System.Composition"; version = "6.0.0"; hash = "sha256-H5TnnxOwihI0VyRuykbOWuKFSCWNN+MUEYyloa328Nw="; }) 149 - (fetchNuGet { pname = "System.Composition.AttributedModel"; version = "6.0.0"; hash = "sha256-03DR8ecEHSKfgzwuTuxtsRW0Gb7aQtDS4LAYChZdGdc="; }) 150 - (fetchNuGet { pname = "System.Composition.Convention"; version = "6.0.0"; hash = "sha256-a3DZS8CT2kV8dVpGxHKoP5wHVKsT+kiPJixckpYfdQo="; }) 151 - (fetchNuGet { pname = "System.Composition.Hosting"; version = "6.0.0"; hash = "sha256-fpoh6WBNmaHEHszwlBR/TNjd85lwesfM7ZkQhqYtLy4="; }) 152 - (fetchNuGet { pname = "System.Composition.Runtime"; version = "6.0.0"; hash = "sha256-nGZvg2xYhhazAjOjhWqltBue+hROKP0IOiFGP8yMBW8="; }) 153 - (fetchNuGet { pname = "System.Composition.TypedParts"; version = "6.0.0"; hash = "sha256-4uAETfmL1CvGjHajzWowsEmJgTKnuFC8u9lbYPzAN3k="; }) 154 - (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "6.0.0"; hash = "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms="; }) 155 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 156 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "7.0.2"; hash = "sha256-8Uawe7mWOQsDzMSAAP16nuGD1FRSajyS8q+cA++MJ8E="; }) 157 (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; }) 158 - (fetchNuGet { pname = "System.Drawing.Common"; version = "7.0.0"; hash = "sha256-t4FBgTMhuOA5FA23fg0WQOGuH0njV7hJXST/Ln/Znks="; }) 159 - (fetchNuGet { pname = "System.Formats.Asn1"; version = "6.0.0"; hash = "sha256-KaMHgIRBF7Nf3VwOo+gJS1DcD+41cJDPWFh+TDQ8ee8="; }) 160 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 161 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; }) 162 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; }) 163 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 164 (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; }) 165 (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; }) 166 - (fetchNuGet { pname = "System.IO.Pipelines"; version = "7.0.0"; hash = "sha256-W2181khfJUTxLqhuAVRhCa52xZ3+ePGOLIPwEN8WisY="; }) 167 (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 168 - (fetchNuGet { pname = "System.Management"; version = "6.0.0"; hash = "sha256-uZEf0a+9a2dqmzJS1Qxm3TR5ZxBHfeBLNO+q6ct5QWU="; }) 169 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 170 (fetchNuGet { pname = "System.Net.Http"; version = "4.3.4"; hash = "sha256-FMoU0K7nlPLxoDju0NL21Wjlga9GpnAoQjsFhFYYt00="; }) 171 - (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="; }) 172 (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; hash = "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8="; }) 173 (fetchNuGet { pname = "System.Reactive"; version = "5.0.0"; hash = "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE="; }) 174 (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 175 (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.7.0"; hash = "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg="; }) 176 (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.7.0"; hash = "sha256-GUnQeGo/DtvZVQpFnESGq7lJcjB30/KnDY7Kd2G/ElE="; }) 177 (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.7.0"; hash = "sha256-V0Wz/UUoNIHdTGS9e1TR89u58zJjo/wPUWw6VaVyclU="; }) 178 - (fetchNuGet { pname = "System.Reflection.Metadata"; version = "7.0.0"; hash = "sha256-GwAKQhkhPBYTqmRdG9c9taqrKSKDwyUgOEhWLKxWNPI="; }) 179 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 180 - (fetchNuGet { pname = "System.Resources.Extensions"; version = "6.0.0"; hash = "sha256-/EEdeNvp9FrLeVnmowzHk6nn0KmPf6L9Poc7l/R948A="; }) 181 (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 182 (fetchNuGet { pname = "System.Runtime"; version = "4.3.1"; hash = "sha256-R9T68AzS1PJJ7v6ARz9vo88pKL1dWqLOANg4pkQjkA0="; }) 183 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 184 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.1"; hash = "sha256-xll/AF6sF1soQ15prAPIVHSH69CiL4E9OHVDHyrm868="; }) 185 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 186 (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 187 (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; }) 188 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0"; hash = "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg="; }) 189 - (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="; }) 190 (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "5.0.0"; hash = "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo="; }) 191 (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; }) 192 (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; }) 193 - (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="; }) 194 - (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "6.0.4"; hash = "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI="; }) 195 (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; }) 196 - (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "6.0.0"; hash = "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY="; }) 197 - (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="; }) 198 - (fetchNuGet { pname = "System.Security.Cryptography.Xml"; version = "6.0.1"; hash = "sha256-spXV8cWZu0V3liek1936REtdpvS4fQwc98JvacO1oJU="; }) 199 - (fetchNuGet { pname = "System.Security.Permissions"; version = "7.0.0"; hash = "sha256-DOFoX+AKRmrkllykHheR8FfUXYx/Ph+I/HYuReQydXI="; }) 200 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; }) 201 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 202 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; hash = "sha256-nGc2A6XYnwqGcq8rfgTRjGr+voISxNe/76k2K36coj4="; }) 203 - (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; hash = "sha256-tF8qt9GZh/nPy0mEnj6nKLG4Lldpoi/D8xM5lv2CoYQ="; }) 204 - (fetchNuGet { pname = "System.Text.Json"; version = "7.0.3"; hash = "sha256-aSJZ17MjqaZNQkprfxm/09LaCoFtpdWmqU9BTROzWX4="; }) 205 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.1"; hash = "sha256-DxsEZ0nnPozyC1W164yrMUXwnAdHShS9En7ImD/GJMM="; }) 206 (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 207 - (fetchNuGet { pname = "System.Threading.Channels"; version = "6.0.0"; hash = "sha256-klGYnsyrjvXaGeqgfnMf/dTAMNtcHY+zM4Xh6v2JfuE="; }) 208 (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 209 - (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "7.0.0"; hash = "sha256-KTeMhCWcyYEwG7EkA0VkVvHwo0B2FBs5FpjW3BFNVUE="; }) 210 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; }) 211 - (fetchNuGet { pname = "System.Windows.Extensions"; version = "7.0.0"; hash = "sha256-yRivIiENFKMxbSh8SZ/fmKjshwBdFXzbKmZcfDZwKYc="; }) 212 (fetchNuGet { pname = "telplin"; version = "0.9.6"; hash = "sha256-kBiLPgmdKpCx+0x06E7Sq3xoDAFVjLrBPI5F4rU1j3I="; }) 213 - (fetchNuGet { pname = "YoloDev.Expecto.TestSdk"; version = "0.14.2"; hash = "sha256-Kufv0plq7ypcEeZdZja+PYja9U1aPyjt6IFy5EZ+56A="; }) 214 ]
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 + (fetchNuGet { pname = "altcover"; version = "9.0.1"; hash = "sha256-wBTGAGUFiy36FILROhs1CTV467UhAcwxvqxoQ9pkrFo="; }) 6 + (fetchNuGet { pname = "BenchmarkDotNet"; version = "0.14.0"; hash = "sha256-Ynfhr0OsW0dKp81caryZXcrBJsA2YScuKQOCiLVg1rI="; }) 7 + (fetchNuGet { pname = "BenchmarkDotNet.Annotations"; version = "0.14.0"; hash = "sha256-BKtno0khZ2jZtXF05l9/vsYjbQIqxAimoaSkxyx6L9A="; }) 8 + (fetchNuGet { pname = "CliWrap"; version = "3.6.7"; hash = "sha256-9j3GILP25inLJoQe0E8sF8egVt8ISqEQBGdIShev4Mk="; }) 9 + (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; hash = "sha256-ApU9y1yX60daSjPk3KYDBeJ7XZByKW8hse9NRZGcjeo="; }) 10 + (fetchNuGet { pname = "CommunityToolkit.HighPerformance"; version = "8.3.2"; hash = "sha256-8wB8IwDi1u8WLxPHd+6cyAbhGUr1oSi1juULE1crSQc="; }) 11 + (fetchNuGet { pname = "Destructurama.FSharp"; version = "2.0.0"; hash = "sha256-9/aTLL8rO7bJhchVTDTL+F1vDfe0hXrr2FWXygX5HaY="; }) 12 + (fetchNuGet { pname = "DiffPlex"; version = "1.7.2"; hash = "sha256-Vsn81duAmPIPkR40h5bEz7hgtF5Kt5nAAGhQZrQbqxE="; }) 13 + (fetchNuGet { pname = "dotnet-reportgenerator-globaltool"; version = "5.3.8"; hash = "sha256-jJQ6aB7ePEPVKKeGowBM4b1PNRSvDhREBJFFlap2CHU="; }) 14 + (fetchNuGet { pname = "DotNet.ReproducibleBuilds"; version = "1.2.25"; hash = "sha256-Vl9RPq9vCO4bjulPZiOr3gDVKlr9vnuKIIX3KWlRxvw="; }) 15 + (fetchNuGet { pname = "Expecto"; version = "10.2.1"; hash = "sha256-DgwHFsPMySlnMag4kPTviTwrNOD7uPnnJLi9DCZif5s="; }) 16 + (fetchNuGet { pname = "Expecto.Diff"; version = "10.2.1"; hash = "sha256-qLDLd8xZia6eDCt3PmZbnF6BtBBAHHYwe2CCPqTvSnY="; }) 17 + (fetchNuGet { pname = "Fantomas.Client"; version = "0.9.1"; hash = "sha256-KIHugHvwgaCVD/XQ0FjeZKhiSzzHJyovVPtM5IzttJI="; }) 18 (fetchNuGet { pname = "FParsec"; version = "1.1.1"; hash = "sha256-BFTUFsdUDtPf3Y7YYsIHGnR3SykVeE6MAN3NRHv+Qwc="; }) 19 + (fetchNuGet { pname = "fsharp-analyzers"; version = "0.28.0"; hash = "sha256-BqGk9MzHHA3oRPNfWuANcM1YELsdhzWI+kLF4mUDUx8="; }) 20 (fetchNuGet { pname = "FSharp.Analyzers.Build"; version = "0.3.0"; hash = "sha256-Lrb30y+i2NuSyFT/kBQz0HKKGDAi1dGso4T7TROTMbE="; }) 21 + (fetchNuGet { pname = "FSharp.Analyzers.SDK"; version = "0.28.0"; hash = "sha256-3pB20Niv5q65D4BSCqkMUZk24MeO556kRlv0RXdUzYI="; }) 22 + (fetchNuGet { pname = "FSharp.Compiler.Service"; version = "43.9.100"; hash = "sha256-9mMAYbS0c5Z/9SQ31NaBmDmZxr7hsX4144an5Yc8RgU="; }) 23 (fetchNuGet { pname = "FSharp.Control.AsyncSeq"; version = "3.2.1"; hash = "sha256-ezSZrGMqTQZKt0ojCRKUWuDGx1JVUyNZzkmUZjVqiAk="; }) 24 (fetchNuGet { pname = "FSharp.Control.Reactive"; version = "5.0.5"; hash = "sha256-Dy8f5tIU/uwv6Nyjq8iomIWTi/IArKEnCGY7XvRoGyo="; }) 25 + (fetchNuGet { pname = "FSharp.Core"; version = "4.3.4"; hash = "sha256-styyo+6mJy+yxE0NZG/b1hxkAjPOnJfMgd9zWzCJ5uk="; }) 26 + (fetchNuGet { pname = "FSharp.Core"; version = "4.7.0"; hash = "sha256-7aa4bga9XWLkq7J5KXv8Bilf1KGum77lSUqp+ooYIUg="; }) 27 + (fetchNuGet { pname = "FSharp.Core"; version = "4.7.2"; hash = "sha256-1eDe16w8+syA35AtrSiViMHQYgwBqmdViS4yCa4AMZ8="; }) 28 + (fetchNuGet { pname = "FSharp.Core"; version = "5.0.1"; hash = "sha256-WPkytjnHlThxzYlPvmpICMfR+4ANTiWNGjEA6LoAcBA="; }) 29 + (fetchNuGet { pname = "FSharp.Core"; version = "6.0.0"; hash = "sha256-aQDRgiGC7iTyzNEmvyd2RBCDcLG0I1dbfncHlkbeUMI="; }) 30 + (fetchNuGet { pname = "FSharp.Core"; version = "6.0.1"; hash = "sha256-Ehsgt3nCJijpaVuJguC1TPVEKSkJd6PSc07D2ZQSemI="; }) 31 + (fetchNuGet { pname = "FSharp.Core"; version = "7.0.300"; hash = "sha256-pDi6WWiwxmpceSUON1UWDNSOSDP8M5n0nSxF1yy59QQ="; }) 32 + (fetchNuGet { pname = "FSharp.Core"; version = "8.0.101"; hash = "sha256-MS6Z8dFRaGn1KxxCr6lScK3AQdksZ7VcphloE6dlL18="; }) 33 + (fetchNuGet { pname = "FSharp.Core"; version = "9.0.100"; hash = "sha256-V1q3CjbRvWZqxpi6cXD/R0F7pyXGGtH83M5Z/ITDrp8="; }) 34 + (fetchNuGet { pname = "FSharp.Data.Adaptive"; version = "1.2.16"; hash = "sha256-H6kc8WMztWG03xISlMJolg8y+RSNdvPF7lY4biNuNfI="; }) 35 (fetchNuGet { pname = "FSharp.Formatting"; version = "14.0.1"; hash = "sha256-SnfSGd4YoXfns6mG9oS7E4OUwU4sqzMSq6zl+juVpGs="; }) 36 (fetchNuGet { pname = "FSharp.UMX"; version = "1.1.0"; hash = "sha256-E0nEJUfxpXo/d+0BIKcJVG0tJr2pjM2gg/cyh0Yt7uc="; }) 37 + (fetchNuGet { pname = "FSharpLint.Core"; version = "0.23.0"; hash = "sha256-9sLDEXG3jvVEq3eprvnZztdI8dfgDpHwt7ASzarJduc="; }) 38 (fetchNuGet { pname = "FSharpx.Async"; version = "1.14.1"; hash = "sha256-bDZb/ppG8N1L88enRqcy6wIhB+O+5vWPj6c2jfYlDtQ="; }) 39 + (fetchNuGet { pname = "FsToolkit.ErrorHandling"; version = "4.18.0"; hash = "sha256-3XmWa7BBRJTvFqOxS1Xu55TQYUQJ2v/VyRz8OM8hvuU="; }) 40 + (fetchNuGet { pname = "FsToolkit.ErrorHandling.TaskResult"; version = "4.18.0"; hash = "sha256-TXQ8cZZsFc8RUQBdxIvbLMtngwFtnNBHId5GkEZ0K/8="; }) 41 (fetchNuGet { pname = "Gee.External.Capstone"; version = "2.3.0"; hash = "sha256-wdYT/F8SLL72OIVv/Q/hfLMfhlWMnhDNCTWx+wWlPoU="; }) 42 + (fetchNuGet { pname = "GitHubActionsTestLogger"; version = "2.4.1"; hash = "sha256-bY8RXB3fIsgYIrlLeEuq8dsOfIn8zcbZ0dj2Ra1sFZg="; }) 43 + (fetchNuGet { pname = "Google.Protobuf"; version = "3.22.5"; hash = "sha256-KuPCqobX6vE9RYElAN9vw+FPonFipms7kE/cRDCLmSQ="; }) 44 + (fetchNuGet { pname = "Google.Protobuf"; version = "3.28.3"; hash = "sha256-jiA/FeYEEk/u9O1gtdnOzatym+/uHyaRJSdp34TOb1o="; }) 45 (fetchNuGet { pname = "Grpc"; version = "2.46.6"; hash = "sha256-UvshzRfdXji+35rPAlS5Kcc5On6OxvFJ0Lbhk+CRQv4="; }) 46 (fetchNuGet { pname = "Grpc.Core"; version = "2.46.6"; hash = "sha256-/8HjIi72DMNH8WMCHcinEmNwdHWudZlc3s7K3hEV3tM="; }) 47 + (fetchNuGet { pname = "Grpc.Core.Api"; version = "2.66.0"; hash = "sha256-XVZmvlUK0t4bWaIBUAoAm007VhUdUvSSlCDh6P4IV9c="; }) 48 + (fetchNuGet { pname = "Grpc.Net.Client"; version = "2.52.0"; hash = "sha256-4Rhb8PIoV2BiohfRwzx1GYDPbcfqxGAmL2uB0atFFTk="; }) 49 + (fetchNuGet { pname = "Grpc.Net.Client"; version = "2.66.0"; hash = "sha256-bxK/5xFYWpqFmD8N79B79ymSt/u4aKRJkrO5I1ZxDgI="; }) 50 + (fetchNuGet { pname = "Grpc.Net.Common"; version = "2.66.0"; hash = "sha256-M/GsAvCs1vQ29xLYtK1tuxOhk5MPm5lmwn+DPhfcgkA="; }) 51 (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; }) 52 + (fetchNuGet { pname = "Iced"; version = "1.21.0"; hash = "sha256-0xYTYX4935Ejm7yUqMWHhJtCNuj4oqK6Weojl6FIfHo="; }) 53 + (fetchNuGet { pname = "IcedTasks"; version = "0.11.7"; hash = "sha256-X0WDX9imlVG3TheFPYCCTXST6ypLclN1DXmXsABG24I="; }) 54 + (fetchNuGet { pname = "ICSharpCode.Decompiler"; version = "8.2.0.7535"; hash = "sha256-4BWs04Va9pc/SLeMA/vKoBydhw+Bu6s9MDtoo/Ucft8="; }) 55 + (fetchNuGet { pname = "Ionide.Analyzers"; version = "0.13.0"; hash = "sha256-PQ118rNahGoK7CPMv+NKDAPwm68p71vzMqmX71eu8E8="; }) 56 (fetchNuGet { pname = "Ionide.KeepAChangelog.Tasks"; version = "0.1.8"; hash = "sha256-yyg8Az7VG4rK/AsMC9cUZc67onl6wOGXoUqHm4Wi3xg="; }) 57 (fetchNuGet { pname = "Ionide.LanguageServerProtocol"; version = "0.6.0"; hash = "sha256-4CUMAzICBpp621nh3zTnIGrKH9YYvyflbXA3HFKtkpc="; }) 58 + (fetchNuGet { pname = "Ionide.ProjInfo"; version = "0.68.0"; hash = "sha256-aRkn1YxZquU+eTIZ7kLOmqnKxzCY/fm3sO539MlnnRw="; }) 59 + (fetchNuGet { pname = "Ionide.ProjInfo.FCS"; version = "0.68.0"; hash = "sha256-L/v/iwv0Lyrrb/53waIUtTUcRff0mHeNOvXI8FOpllE="; }) 60 + (fetchNuGet { pname = "Ionide.ProjInfo.ProjectSystem"; version = "0.68.0"; hash = "sha256-rnoHnT3wSLrwrGa15Uod6PbpvX41i8yOjchxxQA/A44="; }) 61 + (fetchNuGet { pname = "Ionide.ProjInfo.Sln"; version = "0.68.0"; hash = "sha256-wtF91XZWw9W6X2ignQi0M5dxGY8pmaC+4fQWmhAjn8o="; }) 62 (fetchNuGet { pname = "LinkDotNet.StringBuilder"; version = "1.18.0"; hash = "sha256-nvZmHQr3y8SjXru11dhjQUEqoiv9vlknXjjVaKUn8FE="; }) 63 (fetchNuGet { pname = "McMaster.NETCore.Plugins"; version = "1.4.0"; hash = "sha256-PtpD8S74UXyoA80YRDlrp8qR/I7Ws7+4m2EJZzH4WMw="; }) 64 (fetchNuGet { pname = "MessagePack"; version = "2.5.108"; hash = "sha256-+vMXyEbfutY5WOFuFnNF24uLcKJTTdntVrVlSJH4yjI="; }) 65 + (fetchNuGet { pname = "MessagePack"; version = "2.5.192"; hash = "sha256-M9QUEAIeSoSgO3whVkOou0F8kbKCNJ7HHAvTZgytkPU="; }) 66 + (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.192"; hash = "sha256-DLtncnaQ9Sp5YmWm89+2w3InhdU1ZQxnJgbonAq/1aM="; }) 67 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.36"; hash = "sha256-9jDkWbjw/nd8yqdzVTagCuqr6owJ/DUMi4BlUZT4hWU="; }) 68 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.36"; hash = "sha256-JQULJyF0ivLoUU1JaFfK/HHg+/qzpN7V2RR2Cc+WlQ4="; }) 69 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.36"; hash = "sha256-zUsVIpV481vMLAXaLEEUpEMA9/f1HGOnvaQnaWdzlyY="; }) 70 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.36"; hash = "sha256-2seqZcz0JeUjkzh3QcGa9TcJ4LUafpFjTRk+Nm8T6T0="; }) 71 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.36"; hash = "sha256-yxLafxiBKkvfkDggPk0P9YZIHBkDJOsFTO7/V9mEHuU="; }) 72 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "8.0.0"; hash = "sha256-9aWmiwMJKrKr9ohD1KSuol37y+jdDxPGJct3m2/Bknw="; }) 73 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "9.0.0"; hash = "sha256-BsXNOWEgfFq3Yz7VTtK6m/ov4/erRqyBzieWSIpmc1U="; }) 74 + (fetchNuGet { pname = "Microsoft.Bcl.Cryptography"; version = "9.0.0"; hash = "sha256-yEji2HL9c5zgrNd0XsAwWTLIEi0z89hD0meJzneUoJM="; }) 75 + (fetchNuGet { pname = "Microsoft.Bcl.HashCode"; version = "6.0.0"; hash = "sha256-87myurC/jMcX1f32167j7FTjbZ6FvUE0esrhYTGcvWs="; }) 76 + (fetchNuGet { pname = "Microsoft.Build"; version = "17.12.6"; hash = "sha256-e5RdZsu7xSRhS9oFNszDvyxmQ41uIiw5i1Na7NIJ7zQ="; }) 77 + (fetchNuGet { pname = "Microsoft.Build.Framework"; version = "17.12.6"; hash = "sha256-FTI/DWIdoI4oSEMjgsG/TT8uxJpO8DQvrfZnXJeiCXY="; }) 78 + (fetchNuGet { pname = "Microsoft.Build.Locator"; version = "1.7.8"; hash = "sha256-VhZ4jiJi17Cd5AkENXL1tjG9dV/oGj0aY67IGYd7vNs="; }) 79 + (fetchNuGet { pname = "Microsoft.Build.Tasks.Core"; version = "17.12.6"; hash = "sha256-kgZd4bDrnej5A+sPYc2gC/GwZriv5b5lNji8omDnvjI="; }) 80 + (fetchNuGet { pname = "Microsoft.Build.Utilities.Core"; version = "17.12.6"; hash = "sha256-rkPYc3XhJoBVHdQ+pHAIzhxcqrk71XMqIZDIdoG94bY="; }) 81 + (fetchNuGet { pname = "Microsoft.CodeAnalysis"; version = "4.11.0"; hash = "sha256-2fA+FctRBqOeNzvrcMxGNIahJsg7mHlERnt4wecwk8o="; }) 82 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.11.0"; hash = "sha256-hQ2l6E6PO4m7i+ZsfFlEx+93UsLPo4IY3wDkNG11/Sw="; }) 83 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; hash = "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE="; }) 84 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.11.0"; hash = "sha256-cX/xgM0VmS+Bsu63KZk2ofjFOOy1mzI+CCVEY6kI+Qk="; }) 85 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.11.0"; hash = "sha256-E9jEOjp9g/CFecsc5/QfRKOPXMRpSw0Tf79XsRgL+Mk="; }) 86 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Workspaces"; version = "4.11.0"; hash = "sha256-A3hmUJzaqRcWndwGKCHXt3in9T5GeV6ypl/ka8dDQr0="; }) 87 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.VisualBasic"; version = "4.11.0"; hash = "sha256-ZaR+4UCavAge+LgjzM6DZVlAbFPDtuN3JP5KnbjOJFk="; }) 88 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.VisualBasic.Workspaces"; version = "4.11.0"; hash = "sha256-PzpH1iVtig74ZQIamx7Dnm1KjfqNV38+oRpcza8m9Hs="; }) 89 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Workspaces.Common"; version = "4.11.0"; hash = "sha256-8+HxGPWrxOsvqFBnx4rrNQRDfeLbPU7DGcQYyNMq/pE="; }) 90 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.12.0"; hash = "sha256-lGjifppD0OBMBp28pjUfPipaeXg739n8cPhtHWoo5RE="; }) 91 + (fetchNuGet { pname = "Microsoft.Diagnostics.NETCore.Client"; version = "0.2.553101"; hash = "sha256-6jiLj2HA/qT8pru4C1rgnBdUBLBHCNGU6TrTwbe3oOQ="; }) 92 + (fetchNuGet { pname = "Microsoft.Diagnostics.Runtime"; version = "3.1.512801"; hash = "sha256-nDE0cI9oVGPE4aKsmq81ojRizZC/Oi+5W4N97bg3c4A="; }) 93 + (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.TraceEvent"; version = "3.1.17"; hash = "sha256-vfVqz7GTFNC/JrrHgZ7WkPe/sNHyI29fq6XXS9ks2A4="; }) 94 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; hash = "sha256-RfM2qXiqdiamPkXr4IDkNc0IZSF9iTZv4uou/E7zNS0="; }) 95 + (fetchNuGet { pname = "Microsoft.Extensions.Caching.Abstractions"; version = "9.0.0"; hash = "sha256-hDau5OMVGIg4sc5+ofe14ROqwt63T0NSbzm/Cv0pDrY="; }) 96 + (fetchNuGet { pname = "Microsoft.Extensions.Caching.Memory"; version = "9.0.0"; hash = "sha256-OZVOVGZOyv9uk5XGJrz6irBkPNjxnBxjfSyW30MnU0s="; }) 97 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration"; version = "9.0.0"; hash = "sha256-uBLeb4z60y8z7NelHs9uT3cLD6wODkdwyfJm6/YZLDM="; }) 98 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "9.0.0"; hash = "sha256-xtG2USC9Qm0f2Nn6jkcklpyEDT3hcEZOxOwTc0ep7uc="; }) 99 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Binder"; version = "9.0.0"; hash = "sha256-6ajYWcNOQX2WqftgnoUmVtyvC1kkPOtTCif4AiKEffU="; }) 100 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "9.0.0"; hash = "sha256-dAH52PPlTLn7X+1aI/7npdrDzMEFPMXRv4isV1a+14k="; }) 101 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "9.0.0"; hash = "sha256-CncVwkKZ5CsIG2O0+OM9qXuYXh3p6UGyueTHSLDVL+c="; }) 102 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "5.0.0"; hash = "sha256-vUwAWMxXiMW+JOiQE5fcJycOfJJzO87ESYAsEPsPqtY="; }) 103 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "9.0.0"; hash = "sha256-xirwlMWM0hBqgTneQOGkZ8l45mHT08XuSSRIbprgq94="; }) 104 + (fetchNuGet { pname = "Microsoft.Extensions.Diagnostics.Abstractions"; version = "9.0.0"; hash = "sha256-wG1LcET+MPRjUdz3HIOTHVEnbG/INFJUqzPErCM79eY="; }) 105 + (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "9.0.0"; hash = "sha256-kR16c+N8nQrWeYLajqnXPg7RiXjZMSFLnKLEs4VfjcM="; }) 106 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "6.0.0"; hash = "sha256-QNqcQ3x+MOK7lXbWkCzSOWa/2QyYNbdM/OEEbWN15Sw="; }) 107 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "9.0.0"; hash = "sha256-iBTs9twjWXFeERt4CErkIIcoJZU1jrd1RWCI8V5j7KU="; }) 108 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Configuration"; version = "9.0.0"; hash = "sha256-ysPjBq64p6JM4EmeVndryXnhLWHYYszzlVpPxRWkUkw="; }) 109 + (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "9.0.0"; hash = "sha256-DT5euAQY/ItB5LPI8WIp6Dnd0lSvBRP35vFkOXC68ck="; }) 110 + (fetchNuGet { pname = "Microsoft.Extensions.Options.ConfigurationExtensions"; version = "9.0.0"; hash = "sha256-r1Z3sEVSIjeH2UKj+KMj86har68g/zybSqoSjESBcoA="; }) 111 + (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "9.0.0"; hash = "sha256-ZNLusK1CRuq5BZYZMDqaz04PIKScE2Z7sS2tehU7EJs="; }) 112 + (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.12.6"; hash = "sha256-cZnnBoiUIZOGMUy31sIMAn3gAd4VgSBFFe8pNfzQBtA="; }) 113 + (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.6.3"; hash = "sha256-H2Qw8x47WyFOd/VmgRmGMc+uXySgUv68UISgK8Frsjw="; }) 114 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.12.0"; hash = "sha256-DKFEbhh2wPzahNeHdEoFig8tZh/LEVrFc5+zpT43Btg="; }) 115 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.36"; hash = "sha256-9lC/LYnthYhjkWWz2kkFCvlA5LJOv11jdt59SDnpdy0="; }) 116 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.36"; hash = "sha256-VFRDzx7LJuvI5yzKdGmw/31NYVbwHWPKQvueQt5xc10="; }) 117 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.36"; hash = "sha256-DaSWwYACJGolEBuMhzDVCj/rQTdDt061xCVi+gyQnuo="; }) 118 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.36"; hash = "sha256-FrRny9EI6HKCKQbu6mcLj5w4ooSRrODD4Vj2ZMGnMd4="; }) 119 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.36"; hash = "sha256-9LZgVoIFF8qNyUu8kdJrYGLutMF/cL2K82HN2ywwlx8="; }) 120 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.36"; hash = "sha256-k3rxvUhCEU0pVH8KgEMtkPiSOibn+nBh+0zT2xIfId8="; }) 121 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.36"; hash = "sha256-U8wJ2snSDFqeAgDVLXjnniidC7Cr5aJ1/h/BMSlyu0c="; }) 122 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.36"; hash = "sha256-UfLcrL2Gj/OLz0s92Oo+OCJeDpZFAcQLPLiSNND8D5Y="; }) 123 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.36"; hash = "sha256-0xIJYFzxdMcnCj3wzkFRQZSnQcPHzPHMzePRIOA3oJs="; }) 124 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; }) 125 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "7.0.4"; hash = "sha256-VX+zrmzGUBaBbtJyV3ZUp7wTf3YHUYuj5hWCOuaO1Sk="; }) 126 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "5.0.0"; hash = "sha256-5rFBJ8Fkw7+11iCG9nMVhOqPCpyVIrbUzrFQhc/2eHw="; }) 127 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.12.0"; hash = "sha256-3XBHBSuCxggAIlHXmKNQNlPqMqwFlM952Av6RrLw1/w="; }) 128 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.12.0"; hash = "sha256-rf8Sh0fQq44Sneuvs64unkkIHg8kOjDGWE35j9iLx5I="; }) 129 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.10.48"; hash = "sha256-WL8c7TjDBHGjsVLMMPf9cin8rirzOdxusEBQlkUfiVU="; }) 130 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.12.19"; hash = "sha256-4lriaeIL8wbirIvT1sxLTsL8dny+0Puq+OFxrp/4nng="; }) 131 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.10.48"; hash = "sha256-EvZGbyxtrJDvHZwsQbZDXtVfWiy0f58oCdTdSzD34wI="; }) 132 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.12.19"; hash = "sha256-7EteBGfUDOOpDihazJ4XGuPA2dvdc7HkpV8zTVl3FdQ="; }) 133 + (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "17.8.8"; hash = "sha256-sB8GLRiJHX3Py7qeBUnUANiDWhyPtISon6HQs+8wKms="; }) 134 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; }) 135 + (fetchNuGet { pname = "Mono.Cecil"; version = "0.11.6"; hash = "sha256-0qI4MqqpSLqaAazEK1cm40xfmVlY8bMNRcDnxws6ctU="; }) 136 + (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.11.74"; hash = "sha256-asIdaqCIjZspTA+hhtjKNajpCo+ZQi3erZLCpBQ5No4="; }) 137 + (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.11.79"; hash = "sha256-1bzibVcSH8LJMR8Nb6Q0q/7fieTgxRnVY4C1RvRbrrI="; }) 138 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; }) 139 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; }) 140 + (fetchNuGet { pname = "NuGet.Frameworks"; version = "6.12.1"; hash = "sha256-GGpkbas+PNLx35vvr3nyAVz5lY/aeoMx6qjmT368Lpg="; }) 141 + (fetchNuGet { pname = "OpenTelemetry"; version = "1.10.0"; hash = "sha256-ucUy3vIabYb0TGDhraqMEzT+LLPmXrO1NgAjEeyVCO8="; }) 142 + (fetchNuGet { pname = "OpenTelemetry.Api"; version = "1.10.0"; hash = "sha256-ZSpQFnNgkk3dO8Q7yokJ/VSl4wp5PuIv9nduxgC6UxU="; }) 143 + (fetchNuGet { pname = "OpenTelemetry.Api"; version = "1.9.0"; hash = "sha256-raXpHi2DZ3mSLn9dnJYF64XaP23epdfu8zgagSpm8+4="; }) 144 + (fetchNuGet { pname = "OpenTelemetry.Api.ProviderBuilderExtensions"; version = "1.10.0"; hash = "sha256-hLw3Sf1fviAlVJYhaMudVJEdG5pjX5JvVrqv9DgYAk8="; }) 145 + (fetchNuGet { pname = "OpenTelemetry.Exporter.OpenTelemetryProtocol"; version = "1.10.0"; hash = "sha256-1sKqD/DsEo1nfD4BuuIde/In7W0wAbIEWD3jvvbO8JA="; }) 146 + (fetchNuGet { pname = "OpenTelemetry.Instrumentation.Runtime"; version = "1.9.0"; hash = "sha256-Xov89h4Py7MCz6SAOjV0tjtZvvjHbx7NyPXZsY1PZhk="; }) 147 + (fetchNuGet { pname = "Paket"; version = "9.0.2"; hash = "sha256-/NFd2DQE1rmAMNTzNRgGj7aBMunl3Wkf2ju3JnvRiOw="; }) 148 + (fetchNuGet { pname = "Perfolizer"; version = "0.3.17"; hash = "sha256-EfT9EabewLMOAKrxEwpj7QRzqnHODU0tZ08o1w7aV6Q="; }) 149 + (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-Zu908yAE2vKu/eCWu/EtxeY0bpSu2jg+UPGGvQISq+k="; }) 150 + (fetchNuGet { pname = "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-PcaO9QXsBKBGh5njpMvsPb56OshLsbqlb3M7QJY29Y4="; }) 151 + (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-cmNlzevXubNf8vT43Xpa2utU1UQYKUM3fbayxhpnBek="; }) 152 + (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-heEPCJqlnwfK+TLqdi0IB7CcOqPHQ+6jqKJLSfU0Gsc="; }) 153 + (fetchNuGet { pname = "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-jJhuPNmDpiWYQmaHJvwRdIt9h+uLSQc2q6q0dzhw8K4="; }) 154 + (fetchNuGet { pname = "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-Nr8c3+2urG0ePt7fFrkg/iWoICypipXeRz+Zws/ayaM="; }) 155 + (fetchNuGet { pname = "runtime.native.System"; version = "4.3.1"; hash = "sha256-Ezxni8//ko4X51Urfz/crb0+dqWfq46eZvVyt0S0tso="; }) 156 + (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.1"; hash = "sha256-S8mmFpkshoG1D6VgpqV6Ulmjr1lBY05IEvuk3rKFykY="; }) 157 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.1"; hash = "sha256-Mt2QAjNH5nKnwpbyoUe2O+En97CP84EQFoS3CkmYXAM="; }) 158 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-rp2iQsY5dl3jt9Qnw3NkexTqzKNBSxKPG6utsf4Kg0Q="; }) 159 + (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-UVFRdf1Am2bwb2Vgu5zY+px60ijYZ2wgKlPpxQpT8QM="; }) 160 + (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-bTUoXnUQ0yUIO7PJoSSqPgqQe3VolkSrZeQtXb5OLjU="; }) 161 + (fetchNuGet { pname = "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-VGL9nvYCMOHAgl6K6nGX+ljhRBci0Aef7bAZLSA0u+Q="; }) 162 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.1"; hash = "sha256-J5RHzSIfUs001NsY82+ZXn0ZIqux+aLvY7uDuXjRd8U="; }) 163 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-740H2o1F3HP+A5hnhwt1CcmDBh+4CYi6ld2A/rFDbWM="; }) 164 + (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-Xk521T6ppCknW+sjLZUGHWINwbed90F6ObYRH4GQ58s="; }) 165 + (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-HRGXRnddE8O3AaZIpJtk4WMkveU6VRl1eGlZ13AKewo="; }) 166 + (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-ZXtvlK1Stke22Pnc8XdnpPl90ev078lnpiuXwtQXpzA="; }) 167 + (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-SeyZLMv9GFxvt9blmfTAuWcMNc+dL0xhMCm2wUsHVK0="; }) 168 + (fetchNuGet { pname = "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.3"; hash = "sha256-zhG1bm8Qj1I4XuYg047p3eFI36QrBqVGRTb+gQoCRG8="; }) 169 (fetchNuGet { pname = "SemanticVersioning"; version = "2.0.2"; hash = "sha256-d5tUJshDHk/rhNqt7Rl9S/Fg526el1faeanNHKcqtAg="; }) 170 + (fetchNuGet { pname = "Serilog"; version = "3.1.1"; hash = "sha256-L263y8jkn7dNFD2jAUK6mgvyRTqFe39i1tRhVZsNZTI="; }) 171 + (fetchNuGet { pname = "Serilog"; version = "4.0.0"; hash = "sha256-j8hQ5TdL1TjfdGiBO9PyHJFMMPvATHWN1dtrrUZZlNw="; }) 172 + (fetchNuGet { pname = "Serilog"; version = "4.1.0"; hash = "sha256-r89nJ5JE5uZlsRrfB8QJQ1byVVfCWQbySKQ/m9PYj0k="; }) 173 + (fetchNuGet { pname = "Serilog.Sinks.Async"; version = "2.1.0"; hash = "sha256-LDoLpXkleD2MVPK2KBsLGRf5yqrwckBiAnYDbuIbaUM="; }) 174 + (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "6.0.0"; hash = "sha256-QH8ykDkLssJ99Fgl+ZBFBr+RQRl0wRTkeccQuuGLyro="; }) 175 + (fetchNuGet { pname = "Serilog.Sinks.File"; version = "6.0.0"; hash = "sha256-KQmlUpG9ovRpNqKhKe6rz3XMLUjkBqjyQhEm2hV5Sow="; }) 176 (fetchNuGet { pname = "StreamJsonRpc"; version = "2.16.36"; hash = "sha256-XLCQsY7xu67E8E7WJIvjHtk3iobREPCiljW8jNpfi68="; }) 177 + (fetchNuGet { pname = "StreamJsonRpc"; version = "2.20.17"; hash = "sha256-0uUM1JUC6NLjQOPhpEIKCt0zkd/Sh8FjMCjI2j+TYxw="; }) 178 + (fetchNuGet { pname = "StreamJsonRpc"; version = "2.8.28"; hash = "sha256-iMesOucDwxjGDw2cBKDDzxZskjC1Mc0bszI/frB6qpA="; }) 179 (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; }) 180 + (fetchNuGet { pname = "System.Buffers"; version = "4.6.0"; hash = "sha256-c2QlgFB16IlfBms5YLsTCFQ/QeKoS6ph1a9mdRkq/Jc="; }) 181 + (fetchNuGet { pname = "System.CodeDom"; version = "8.0.0"; hash = "sha256-uwVhi3xcvX7eiOGQi7dRETk3Qx1EfHsUfchZsEto338="; }) 182 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 183 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; }) 184 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "6.0.0"; hash = "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs="; }) 185 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "8.0.0"; hash = "sha256-F7OVjKNwpqbUh8lTidbqJWYi476nsq9n+6k0+QVRo3w="; }) 186 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "9.0.0"; hash = "sha256-+6q5VMeoc5bm4WFsoV6nBXA9dV5pa/O4yW+gOdi8yac="; }) 187 (fetchNuGet { pname = "System.CommandLine"; version = "2.0.0-beta4.22272.1"; hash = "sha256-zSO+CYnMH8deBHDI9DHhCPj79Ce3GOzHCyH1/TiHxcc="; }) 188 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg="; }) 189 + (fetchNuGet { pname = "System.Composition"; version = "8.0.0"; hash = "sha256-rA118MFj6soKN++BvD3y9gXAJf0lZJAtGARuznG5+Xg="; }) 190 + (fetchNuGet { pname = "System.Composition"; version = "9.0.0"; hash = "sha256-FehOkQ2u1p8mQ0/wn3cZ+24HjhTLdck8VZYWA1CcgbM="; }) 191 + (fetchNuGet { pname = "System.Composition.AttributedModel"; version = "9.0.0"; hash = "sha256-a7y7H6zj+kmYkllNHA402DoVfY9IaqC3Ooys8Vzl24M="; }) 192 + (fetchNuGet { pname = "System.Composition.Convention"; version = "9.0.0"; hash = "sha256-tw4vE5JRQ60ubTZBbxoMPhtjOQCC3XoDFUH7NHO7o8U="; }) 193 + (fetchNuGet { pname = "System.Composition.Hosting"; version = "9.0.0"; hash = "sha256-oOxU+DPEEfMCuNLgW6wSkZp0JY5gYt44FJNnWt+967s="; }) 194 + (fetchNuGet { pname = "System.Composition.Runtime"; version = "9.0.0"; hash = "sha256-AyIe+di1TqwUBbSJ/sJ8Q8tzsnTN+VBdJw4K8xZz43s="; }) 195 + (fetchNuGet { pname = "System.Composition.TypedParts"; version = "9.0.0"; hash = "sha256-F5fpTUs3Rr7yP/NyIzr+Xn5NdTXXp8rrjBnF9UBBUog="; }) 196 + (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "8.0.0"; hash = "sha256-xhljqSkNQk8DMkEOBSYnn9lzCSEDDq4yO910itptqiE="; }) 197 + (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "9.0.0"; hash = "sha256-+pLnTC0YDP6Kjw5DVBiFrV/Q3x5is/+6N6vAtjvhVWk="; }) 198 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 199 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "8.0.0"; hash = "sha256-+aODaDEQMqla5RYZeq0Lh66j+xkPYxykrVvSCmJQ+Vs="; }) 200 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "9.0.0"; hash = "sha256-1VzO9i8Uq2KlTw1wnCCrEdABPZuB2JBD5gBsMTFTSvE="; }) 201 + (fetchNuGet { pname = "System.Diagnostics.EventLog"; version = "9.0.0"; hash = "sha256-tPvt6yoAp56sK/fe+/ei8M65eavY2UUhRnbrREj/Ems="; }) 202 (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; }) 203 + (fetchNuGet { pname = "System.Formats.Asn1"; version = "9.0.0"; hash = "sha256-LHyYt3rzKjPzxCHW/cynkBBzkl4I2h5wW6WYWG0k1w4="; }) 204 + (fetchNuGet { pname = "System.Formats.Nrbf"; version = "9.0.0"; hash = "sha256-c4qf6CocQUZB0ySGQd8s15PXY7xfrjQqMGXxkwytKyw="; }) 205 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 206 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; }) 207 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; }) 208 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 209 (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; }) 210 (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; }) 211 + (fetchNuGet { pname = "System.IO.Pipelines"; version = "8.0.0"; hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="; }) 212 + (fetchNuGet { pname = "System.IO.Pipelines"; version = "9.0.0"; hash = "sha256-vb0NrPjfEao3kfZ0tavp2J/29XnsQTJgXv3/qaAwwz0="; }) 213 (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 214 + (fetchNuGet { pname = "System.Management"; version = "8.0.0"; hash = "sha256-HwpfDb++q7/vxR6q57mGFgl5U0vxy+oRJ6orFKORfP0="; }) 215 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 216 + (fetchNuGet { pname = "System.Memory"; version = "4.6.0"; hash = "sha256-OhAEKzUM6eEaH99DcGaMz2pFLG/q/N4KVWqqiBYUOFo="; }) 217 (fetchNuGet { pname = "System.Net.Http"; version = "4.3.4"; hash = "sha256-FMoU0K7nlPLxoDju0NL21Wjlga9GpnAoQjsFhFYYt00="; }) 218 + (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.1"; hash = "sha256-qICFjQo5FcSfNSeb8XOMwA5aUgP+PO0idlO5HVpgusM="; }) 219 (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; hash = "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8="; }) 220 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.6.0"; hash = "sha256-fKS3uWQ2HmR69vNhDHqPLYNOt3qpjiWQOXZDHvRE1HU="; }) 221 (fetchNuGet { pname = "System.Reactive"; version = "5.0.0"; hash = "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE="; }) 222 (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 223 (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.7.0"; hash = "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg="; }) 224 (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.7.0"; hash = "sha256-GUnQeGo/DtvZVQpFnESGq7lJcjB30/KnDY7Kd2G/ElE="; }) 225 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.6.0"; hash = "sha256-913OIkt3v3N12Yke328IRxTtgYUQYNs/eSzOs8wUPkM="; }) 226 (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.7.0"; hash = "sha256-V0Wz/UUoNIHdTGS9e1TR89u58zJjo/wPUWw6VaVyclU="; }) 227 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "6.0.0"; hash = "sha256-VJHXPjP05w6RE/Swu8wa2hilEWuji3g9bl/6lBMSC/Q="; }) 228 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "8.0.0"; hash = "sha256-dQGC30JauIDWNWXMrSNOJncVa1umR1sijazYwUDdSIE="; }) 229 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "9.0.0"; hash = "sha256-avEWbcCh7XgpsSesnR3/SgxWi/6C5OxjR89Jf/SfRjQ="; }) 230 + (fetchNuGet { pname = "System.Reflection.MetadataLoadContext"; version = "9.0.0"; hash = "sha256-voF8Csk1WLPikMRrKmGxUOtM9k6W4RB2JAfwjsaF8oo="; }) 231 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 232 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.7.0"; hash = "sha256-GEtCGXwtOnkYejSV+Tfl+DqyGq5jTUaVyL9eMupMHBM="; }) 233 + (fetchNuGet { pname = "System.Resources.Extensions"; version = "9.0.0"; hash = "sha256-y2gLEMuAy6QfEyNJxABC/ayMWGnwlpX735jsUQLktho="; }) 234 (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 235 (fetchNuGet { pname = "System.Runtime"; version = "4.3.1"; hash = "sha256-R9T68AzS1PJJ7v6ARz9vo88pKL1dWqLOANg4pkQjkA0="; }) 236 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 237 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.1.0"; hash = "sha256-NyqqpRcHumzSxpsgRDguD5SGwdUNHBbo0OOdzLTIzCU="; }) 238 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.1"; hash = "sha256-xll/AF6sF1soQ15prAPIVHSH69CiL4E9OHVDHyrm868="; }) 239 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 240 (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 241 (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; }) 242 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; }) 243 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.1"; hash = "sha256-Ri4m95ZBfopDUGVahbvUIzuUy9D3FQwcXprP2I6IUUE="; }) 244 + (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.1"; hash = "sha256-QlO/ppRk/OyDYHCimD867RAlKIOakidD0ICNOt63XNQ="; }) 245 (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "5.0.0"; hash = "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo="; }) 246 (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; }) 247 (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; }) 248 + (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "5.0.0"; hash = "sha256-yprw1SpkT25xpHsGHXO5RYfeZa/ea7CxEdRp4X7GUHE="; }) 249 + (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "9.0.0"; hash = "sha256-AjG14mGeSc2Ka4QSelGBM1LrGBW3VJX60lnihKyJjGY="; }) 250 (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; }) 251 + (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "9.0.0"; hash = "sha256-gPgPU7k/InTqmXoRzQfUMEKL3QuTnOKowFqmXTnWaBQ="; }) 252 + (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.2"; hash = "sha256-skaAtIqikbBv1586EocSiwg+QqBs9t5jKUAr/Qb9yi0="; }) 253 + (fetchNuGet { pname = "System.Security.Cryptography.Xml"; version = "9.0.0"; hash = "sha256-SQJWwAFrJUddEU6JiZB52FM9tGjRlJAYH8oYVzG5IJU="; }) 254 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; }) 255 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 256 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; hash = "sha256-eCKTVwumD051ZEcoJcDVRGnIGAsEvKpfH3ydKluHxmo="; }) 257 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "9.0.0"; hash = "sha256-OvtGrWDjuXdcIuMV504IDiBq9g8vtRIcn5w25x4W9HE="; }) 258 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "9.0.0"; hash = "sha256-WGaUklQEJywoGR2jtCEs5bxdvYu5SHaQchd6s4RE5x0="; }) 259 + (fetchNuGet { pname = "System.Text.Json"; version = "9.0.0"; hash = "sha256-aM5Dh4okLnDv940zmoFAzRmqZre83uQBtGOImJpoIqk="; }) 260 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.1"; hash = "sha256-DxsEZ0nnPozyC1W164yrMUXwnAdHShS9En7ImD/GJMM="; }) 261 (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 262 + (fetchNuGet { pname = "System.Threading.Channels"; version = "7.0.0"; hash = "sha256-Cu0gjQsLIR8Yvh0B4cOPJSYVq10a+3F9pVz/C43CNeM="; }) 263 + (fetchNuGet { pname = "System.Threading.Channels"; version = "9.0.0"; hash = "sha256-depIorJqzjyWew0+aBRgbGh88KWivbp9RrtWZHFr+pI="; }) 264 (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 265 + (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "9.0.0"; hash = "sha256-nRzcFvLBpcOfyIJdCCZq5vDKZN0xHVuB8yCXoMrwZJA="; }) 266 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; }) 267 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.6.0"; hash = "sha256-OwIB0dpcdnyfvTUUj6gQfKW2XF2pWsQhykwM1HNCHqY="; }) 268 (fetchNuGet { pname = "telplin"; version = "0.9.6"; hash = "sha256-kBiLPgmdKpCx+0x06E7Sq3xoDAFVjLrBPI5F4rU1j3I="; }) 269 + (fetchNuGet { pname = "YoloDev.Expecto.TestSdk"; version = "0.14.3"; hash = "sha256-3FIZM+GYsBsFGhLsasF7Ia9nXHSpqooQNe5H7ANy334="; }) 270 ]
+5 -14
pkgs/by-name/fs/fsautocomplete/package.nix
··· 2 lib, 3 buildDotnetModule, 4 fetchFromGitHub, 5 - fetchpatch, 6 dotnetCorePackages, 7 testers, 8 }: 9 10 buildDotnetModule (finalAttrs: rec { 11 pname = "fsautocomplete"; 12 - version = "0.73.2"; 13 14 src = fetchFromGitHub { 15 owner = "fsharp"; 16 repo = "FsAutoComplete"; 17 rev = "v${version}"; 18 - hash = "sha256-iiV/Tw3gOteARrOEbLjPA/jGawoxJVBZg6GvF9p9HHA="; 19 }; 20 21 - patches = [ 22 - (fetchpatch { 23 - url = "https://github.com/ionide/FsAutoComplete/pull/1311/commits/e258ba3db47daec9d5befcdc1ae79484c2804cf4.patch"; 24 - hash = "sha256-bKTk5gszyVZObvq78emAtqE6bBg+1doseoxjUnrjOH4="; 25 - }) 26 - ]; 27 - 28 nugetDeps = ./deps.nix; 29 30 postPatch = '' 31 rm global.json 32 33 substituteInPlace src/FsAutoComplete/FsAutoComplete.fsproj \ 34 - --replace TargetFrameworks TargetFramework \ 35 ''; 36 37 dotnet-sdk = 38 with dotnetCorePackages; 39 combinePackages [ 40 - sdk_6_0 41 - sdk_7_0 42 sdk_8_0 43 ]; 44 - dotnet-runtime = dotnetCorePackages.sdk_8_0; 45 46 projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj"; 47 executables = [ "fsautocomplete" ];
··· 2 lib, 3 buildDotnetModule, 4 fetchFromGitHub, 5 dotnetCorePackages, 6 testers, 7 }: 8 9 buildDotnetModule (finalAttrs: rec { 10 pname = "fsautocomplete"; 11 + version = "0.75.0"; 12 13 src = fetchFromGitHub { 14 owner = "fsharp"; 15 repo = "FsAutoComplete"; 16 rev = "v${version}"; 17 + hash = "sha256-+IkoXj7l6a/iPigIVy334XiwQFm/pD63FWpV2r0x84c="; 18 }; 19 20 nugetDeps = ./deps.nix; 21 22 postPatch = '' 23 rm global.json 24 25 substituteInPlace src/FsAutoComplete/FsAutoComplete.fsproj \ 26 + --replace-fail TargetFrameworks TargetFramework \ 27 ''; 28 29 dotnet-sdk = 30 with dotnetCorePackages; 31 combinePackages [ 32 sdk_8_0 33 + sdk_9_0 34 ]; 35 + dotnet-runtime = dotnetCorePackages.sdk_9_0; 36 37 projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj"; 38 executables = [ "fsautocomplete" ];
+33
pkgs/by-name/gq/gqmqtt/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildGoModule, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "gqmqtt"; 10 + version = "0.2.0-alpha"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "klumw"; 14 + repo = "gqmqtt"; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-4FV2Z3eow69v/Z6sfVfJew/N8ceiXX+JtvLidmiysPk="; 17 + }; 18 + 19 + vendorHash = "sha256-4kT3dswD+Zlgal/kt3jOclDKkrBNXOZqvSPXg79TqX0="; 20 + 21 + passthru = { 22 + updateScript = nix-update-script { }; 23 + }; 24 + 25 + meta = { 26 + description = "GQ GMC-500+ USB serial to MQTT bridge"; 27 + homepage = "https://github.com/klumw/gqmqtt"; 28 + changelog = "https://github.com/klumw/gqmqtt/releases/tag/v${version}"; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ genga898 ]; 31 + mainProgram = "gqmqtt"; 32 + }; 33 + }
+3 -2
pkgs/by-name/gr/graphene-hardened-malloc/package.nix
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "graphene-hardened-malloc"; 12 - version = "2024040900"; 13 14 src = fetchFromGitHub { 15 owner = "GrapheneOS"; 16 repo = "hardened_malloc"; 17 rev = finalAttrs.version; 18 - hash = "sha256-1j7xzhuhK8ZRAJm9dJ95xiTIla7lh3LBiWc/+x/kjp0="; 19 }; 20 21 nativeCheckInputs = [ python3 ]; ··· 47 separateDebugInfo = true; 48 49 passthru = { 50 ld-preload-tests = stdenv.mkDerivation { 51 name = "${finalAttrs.pname}-ld-preload-tests"; 52 inherit (finalAttrs) src;
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "graphene-hardened-malloc"; 12 + version = "2024120400"; 13 14 src = fetchFromGitHub { 15 owner = "GrapheneOS"; 16 repo = "hardened_malloc"; 17 rev = finalAttrs.version; 18 + hash = "sha256-VzP7JimAbFcp1HrSS3GArSRhxHaa1s49kFP22iDHt+8="; 19 }; 20 21 nativeCheckInputs = [ python3 ]; ··· 47 separateDebugInfo = true; 48 49 passthru = { 50 + updateScript = ./update.sh; 51 ld-preload-tests = stdenv.mkDerivation { 52 name = "${finalAttrs.pname}-ld-preload-tests"; 53 inherit (finalAttrs) src;
+10
pkgs/by-name/gr/graphene-hardened-malloc/update.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell --pure -i bash -p bash cacert curl common-updater-scripts 3 + # shellcheck shell=bash 4 + set -eu -o pipefail 5 + 6 + host="https://releases.grapheneos.org" 7 + read -ra metadata <<< "$(curl -s "$host/caiman-stable")" 8 + version=${metadata[0]} 9 + 10 + update-source-version graphene-hardened-malloc "$version"
+2 -2
pkgs/by-name/ja/jazz2/package.nix
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "jazz2"; 16 - version = "2.9.1"; 17 18 src = fetchFromGitHub { 19 owner = "deathkiller"; 20 repo = "jazz2-native"; 21 rev = finalAttrs.version; 22 - hash = "sha256-q/08lQ+HW2obWc8YAAEorKkNWy1d2uWeufOC5TVKpN4="; 23 }; 24 25 patches = [ ./nocontent.patch ];
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "jazz2"; 16 + version = "3.0.0"; 17 18 src = fetchFromGitHub { 19 owner = "deathkiller"; 20 repo = "jazz2-native"; 21 rev = finalAttrs.version; 22 + hash = "sha256-t1bXREL/WWnYnSfCyAY5tus/Bq5V4HVHg9s7oltGoIg="; 23 }; 24 25 patches = [ ./nocontent.patch ];
+11 -3
pkgs/by-name/jo/joplin-desktop/package.nix
··· 66 67 nativeBuildInputs = [ _7zz ]; 68 69 - sourceRoot = "Joplin.app"; 70 71 installPhase = '' 72 - mkdir -p $out/Applications/Joplin.app 73 - cp -R . $out/Applications/Joplin.app 74 ''; 75 }; 76 in
··· 66 67 nativeBuildInputs = [ _7zz ]; 68 69 + unpackPhase = '' 70 + runHook preUnpack 71 + 7zz x -x'!Joplin ${version}/Applications' $src 72 + runHook postUnpack 73 + ''; 74 + 75 + sourceRoot = if stdenv.hostPlatform.isx86_64 then "Joplin ${version}" else "."; 76 77 installPhase = '' 78 + runHook preInstall 79 + mkdir -p $out/Applications 80 + cp -R Joplin.app $out/Applications 81 + runHook postInstall 82 ''; 83 }; 84 in
+15 -1
pkgs/by-name/ko/komac/package.nix
··· 10 komac, 11 dbus, 12 zstd, 13 versionCheckHook, 14 nix-update-script, 15 }: ··· 30 31 cargoHash = "sha256-kb18phtY5rRNUw0ZaZu2tipAaOURSy+2duf/+cOj5Y8="; 32 33 - nativeBuildInputs = [ pkg-config ]; 34 35 buildInputs = 36 [ ··· 52 doInstallCheck = true; 53 nativeInstallCheckInputs = [ versionCheckHook ]; 54 versionCheckProgram = "${placeholder "out"}/bin/komac"; 55 56 passthru = { 57 tests.version = testers.testVersion {
··· 10 komac, 11 dbus, 12 zstd, 13 + installShellFiles, 14 versionCheckHook, 15 nix-update-script, 16 }: ··· 31 32 cargoHash = "sha256-kb18phtY5rRNUw0ZaZu2tipAaOURSy+2duf/+cOj5Y8="; 33 34 + nativeBuildInputs = 35 + [ 36 + pkg-config 37 + ] 38 + ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ 39 + installShellFiles 40 + ]; 41 42 buildInputs = 43 [ ··· 59 doInstallCheck = true; 60 nativeInstallCheckInputs = [ versionCheckHook ]; 61 versionCheckProgram = "${placeholder "out"}/bin/komac"; 62 + 63 + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 64 + installShellCompletion --cmd komac \ 65 + --bash <($out/bin/komac complete bash) \ 66 + --zsh <($out/bin/komac complete zsh) \ 67 + --fish <($out/bin/komac complete fish) 68 + ''; 69 70 passthru = { 71 tests.version = testers.testVersion {
+120
pkgs/by-name/ko/komika-fonts/package.nix
···
··· 1 + { 2 + stdenvNoCC, 3 + lib, 4 + fetchzip, 5 + variants ? [ 6 + "display" 7 + "hand" 8 + "poster" 9 + "text" 10 + "title" 11 + "komikahuna" 12 + "komikandy" 13 + "komikazba" 14 + "komikaze" 15 + "komikazoom" 16 + ], 17 + }: 18 + 19 + let 20 + fetchFont = 21 + { 22 + url, 23 + hash, 24 + curlOptsList ? [ ], 25 + }: 26 + fetchzip { 27 + inherit url hash curlOptsList; 28 + name = lib.nameFromURL url "."; 29 + stripRoot = false; 30 + }; 31 + fontMap = { 32 + "display" = { 33 + url = "https://www.1001fonts.com/download/komika-display.zip"; 34 + hash = "sha256-6oNKuaoV+a/cFCKFXRV8gtWqvFtPGtrqg+vt8hQREMI="; 35 + }; 36 + "hand" = { 37 + url = "https://www.1001fonts.com/download/komika.zip"; 38 + hash = "sha256-yb5SWQj7BRCLYHL31m25bhCOuo8qAvkRzGH6UIo3Bbs="; 39 + }; 40 + "poster" = { 41 + url = "https://www.1001freefonts.com/d/5010/komika-poster.zip"; 42 + hash = "sha256-k1uUfHSh9kymCJrfuPtKHejFeZGl2PxL4C/3hpoPIc4="; 43 + curlOptsList = [ 44 + "-H" 45 + "Referer: https://www.1001freefonts.com/komika-poster.font" 46 + ]; 47 + }; 48 + "text" = { 49 + url = "https://www.1001fonts.com/download/komika-text.zip"; 50 + hash = "sha256-FdeFGw6MlYVTiYdvbfjSlQYq+UlKZTJ79HAdEEjMPQs="; 51 + }; 52 + "title" = { 53 + url = "https://www.1001freefonts.com/d/5011/komika-title.zip"; 54 + hash = "sha256-M/1NgsHjLR/w/ZxWEb5cebqEI1VKgPvtk75bhAPaw20="; 55 + curlOptsList = [ 56 + "-H" 57 + "Referer: https://www.1001freefonts.com/komika-title.font" 58 + ]; 59 + }; 60 + "komikahuna" = { 61 + url = "https://www.1001fonts.com/download/komikahuna.zip"; 62 + hash = "sha256-TjGxQA3ZyIOyJUNP+MVkYiSDk9WDIDPy3d2ttWC1aoc="; 63 + }; 64 + "komikandy" = { 65 + url = "https://www.1001fonts.com/download/komikandy.zip"; 66 + hash = "sha256-NqpR+gM2giTHGUBYoJlO8vkzOD0ep7LzAry3nIagjLY="; 67 + }; 68 + "komikazba" = { 69 + url = "https://www.1001fonts.com/download/komikazba.zip"; 70 + hash = "sha256-SGJMP0OdZ/AEImN5S3QshCbWSLXO4qTjHnSQYqoy3Pc="; 71 + }; 72 + "komikaze" = { 73 + url = "https://www.1001fonts.com/download/komikaze.zip"; 74 + hash = "sha256-daJRwgkzL5v224KwkaGMK2FqVnfin8+8WvMTvXTkCGE="; 75 + }; 76 + "komikazoom" = { 77 + url = "https://www.1001fonts.com/download/komikazoom.zip"; 78 + hash = "sha256-/o2QPPPiQBkNU0XRxJyI0+5CKFEv4FKU3A5ku1zyVX4="; 79 + }; 80 + 81 + }; 82 + knownFonts = lib.attrNames fontMap; 83 + selectedFonts = 84 + if (variants == [ ]) then 85 + lib.warn "No variants selected, installing all instead" knownFonts 86 + else 87 + let 88 + unknown = lib.subtractLists knownFonts variants; 89 + in 90 + if (unknown != [ ]) then 91 + throw "Unknown variant(s): ${lib.concatStringsSep " " unknown}" 92 + else 93 + variants; 94 + 95 + in 96 + stdenvNoCC.mkDerivation { 97 + pname = "komika-fonts"; 98 + version = "0-unstable-2024-08-12"; 99 + sourceRoot = "."; 100 + 101 + srcs = map (variant: fetchFont fontMap.${variant}) selectedFonts; 102 + installPhase = '' 103 + runHook preInstall 104 + mkdir -p $out/share/fonts/ttf 105 + mv **/*.ttf $out/share/fonts/ttf 106 + runHook postInstall 107 + ''; 108 + 109 + meta = { 110 + homepage = "https://moorstation.org/typoasis/designers/lab/index.htm"; 111 + # description from archive here: http://web.archive.org/web/20030422173903fw_/http://www.hardcovermedia.com/lab/Pages/Fontpages/komikahands.html 112 + description = "First ever comic lettering super family"; 113 + longDescription = '' 114 + 50 fonts, covering everything the comic artist needs when it comes to lettering. 10 text faces, 10 display faces, 10 tiling faces, 10 hand variations, 9 poster faces, and 20 balloons in a font. 115 + ''; 116 + license = lib.licenses.unfree; 117 + maintainers = with lib.maintainers; [ pancaek ]; 118 + platforms = lib.platforms.all; 119 + }; 120 + }
+2 -2
pkgs/by-name/ly/lynx/package.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "lynx"; 15 - version = "2.9.0dev.12"; 16 17 src = fetchurl { 18 urls = [ 19 "ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2" 20 "https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2" 21 ]; 22 - hash = "sha256-pkVbFZ0Ad22OwQUShcly3B8MVS0FcaDP8Coj7BRu6OU="; 23 }; 24 25 enableParallelBuilding = true;
··· 12 13 stdenv.mkDerivation rec { 14 pname = "lynx"; 15 + version = "2.9.2"; 16 17 src = fetchurl { 18 urls = [ 19 "ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2" 20 "https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2" 21 ]; 22 + hash = "sha256-c3S4mTbZkWaeEB9Ol/LJWSA24ejNqnuvwlmnerb7B84="; 23 }; 24 25 enableParallelBuilding = true;
+2 -2
pkgs/by-name/ma/maelstrom-clj/package.nix
··· 10 }: 11 stdenv.mkDerivation rec { 12 pname = "maelstrom"; 13 - version = "0.2.3"; 14 15 src = fetchurl { 16 url = "https://github.com/jepsen-io/maelstrom/releases/download/v${version}/maelstrom.tar.bz2"; 17 - hash = "sha256-ISS2qma139Jz9eDxLJvULkqDZeu1vyx9ot4uO0LIVho="; 18 }; 19 20 installPhase = ''
··· 10 }: 11 stdenv.mkDerivation rec { 12 pname = "maelstrom"; 13 + version = "0.2.4"; 14 15 src = fetchurl { 16 url = "https://github.com/jepsen-io/maelstrom/releases/download/v${version}/maelstrom.tar.bz2"; 17 + hash = "sha256-MB7HHWsSrw12XttBP1z1qhBGtWCb1OMTdqC1SVSOV5k="; 18 }; 19 20 installPhase = ''
+2 -2
pkgs/by-name/na/nanopb/package.nix
··· 58 in 59 { 60 pname = "nanopb"; 61 - version = "0.4.9"; 62 63 src = fetchFromGitHub { 64 owner = "nanopb"; 65 repo = "nanopb"; 66 rev = self.version; 67 - hash = "sha256-zXhUEajCZ24VA/S0pSFewz096s8rmhKARSWbSC5TdAg="; 68 }; 69 70 dontPatch = true;
··· 58 in 59 { 60 pname = "nanopb"; 61 + version = "0.4.9.1"; 62 63 src = fetchFromGitHub { 64 owner = "nanopb"; 65 repo = "nanopb"; 66 rev = self.version; 67 + hash = "sha256-bMSZZaF8egAegi3enCM+DRyxOrPoWKAKybvWsrKZEDc="; 68 }; 69 70 dontPatch = true;
+3 -3
pkgs/by-name/oh/oh-my-posh/package.nix
··· 6 7 buildGoModule rec { 8 pname = "oh-my-posh"; 9 - version = "23.20.3"; 10 11 src = fetchFromGitHub { 12 owner = "jandedobbeleer"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-quncE2OfSQUnLOEKsqKGBeONCI67CNRB/egqyf7o+4U="; 16 }; 17 18 - vendorHash = "sha256-VgSQMY2JyGZ50T4PCdKQNnwnP6hknnxP2AJ15A9aHig="; 19 20 sourceRoot = "${src.name}/src"; 21
··· 6 7 buildGoModule rec { 8 pname = "oh-my-posh"; 9 + version = "24.11.4"; 10 11 src = fetchFromGitHub { 12 owner = "jandedobbeleer"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-hb5XgwBg9llX/PDX8A8hL5fJbG03nTjrvEd252k2Il0="; 16 }; 17 18 + vendorHash = "sha256-bOjIwBPxu/BfRaAcZTXf4xCGvVXnumb2++JZTx7ZG1s="; 19 20 sourceRoot = "${src.name}/src"; 21
+52
pkgs/by-name/op/openseeface/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + python3, 5 + fetchFromGitHub, 6 + makeWrapper, 7 + enableVisualization ? false, 8 + }: 9 + 10 + let 11 + python = python3.withPackages ( 12 + ps: with ps; [ 13 + (opencv4.override { enableGtk3 = enableVisualization; }) 14 + onnxruntime 15 + pillow 16 + numpy 17 + ] 18 + ); 19 + in 20 + stdenvNoCC.mkDerivation { 21 + pname = "openseeface"; 22 + version = "1.20.4-unstable-2024-09-21"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "emilianavt"; 26 + repo = "OpenSeeFace"; 27 + rev = "e6e24efd2038ab778ac094bab21c2c18a7efbeb2"; 28 + hash = "sha256-pSZXD6UiKPd8sTagdA/I6bI8nWdF1c6SX2Bho+X7pX8="; 29 + }; 30 + 31 + nativeBuildInputs = [ makeWrapper ]; 32 + 33 + installPhase = '' 34 + runHook preInstall 35 + 36 + mkdir -p $out/share/openseeface 37 + cp -r *.py models $out/share/openseeface 38 + 39 + makeWrapper ${python.interpreter} "$out/bin/facetracker" \ 40 + --add-flags "$out/share/openseeface/facetracker.py" 41 + 42 + runHook postInstall 43 + ''; 44 + 45 + meta = { 46 + description = "Robust realtime face and facial landmark tracking on CPU with Unity integration"; 47 + homepage = "https://github.com/emilianavt/OpenSeeFace"; 48 + license = lib.licenses.bsd2; 49 + mainProgram = "facetracker"; 50 + maintainers = with lib.maintainers; [ tomasajt ]; 51 + }; 52 + }
+5 -5
pkgs/by-name/pd/pdfium-binaries/package.nix
··· 4 stdenv, 5 }: 6 let 7 - version = "6721"; 8 src = 9 let 10 inherit (stdenv.hostPlatform) system; ··· 16 aarch64-darwin = "mac-arm64"; 17 }; 18 hash = selectSystem { 19 - x86_64-linux = "sha256-SHCYdw3X8Uy9CgT8SN90FKdPKIk6VZFjIb6NYfOgoCo="; 20 - aarch64-linux = "sha256-RqyzxQ2RnBuoFBAxJVC8x/XDpJJWdJ45dJXV/Yzh7pM="; 21 - x86_64-darwin = "sha256-7XuBlG2pUtSN5kdcTTLbijEHHX5IU5kTj1aW8ZHHS2M="; 22 - aarch64-darwin = "sha256-ZNsQkay8ZF2RQ6dKJ24GawIthjFgB5TUa08LNKpZv1A="; 23 }; 24 in 25 fetchzip {
··· 4 stdenv, 5 }: 6 let 7 + version = "6872"; 8 src = 9 let 10 inherit (stdenv.hostPlatform) system; ··· 16 aarch64-darwin = "mac-arm64"; 17 }; 18 hash = selectSystem { 19 + x86_64-linux = "sha256-JhAW1Ot4ncLiEz/Y83D/capJ+H46GybYnWHpMChX6F0="; 20 + aarch64-linux = "sha256-/8o+v8fIXYK8N7xdC14/fWk3LOr13xyjadMXJgploek="; 21 + x86_64-darwin = "sha256-nVu3JhvjnqhCpNDSBzzZA1PHbT2y5b+kEeu4ZPqgf4Q="; 22 + aarch64-darwin = "sha256-IyoeuNno+Y8nLi1u9tjl75ZJiULrnKyShe3oaSY9GF4="; 23 }; 24 in 25 fetchzip {
+66
pkgs/by-name/qh/qhexedit2/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchpatch, 5 + fetchFromGitHub, 6 + qt6, 7 + nix-update-script, 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "qhexedit2"; 12 + version = "0.8.9"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "Simsys"; 16 + repo = "qhexedit2"; 17 + rev = "refs/tags/v${finalAttrs.version}"; 18 + hash = "sha256-qg8dyXwAsTVSx85Ad7UYhr4d1aTRG9QbvC0uyOMcY8g="; 19 + }; 20 + 21 + postPatch = '' 22 + # Replace QPallete::Background with QPallete::Window in all files, since QPallete::Background was removed in Qt 6 23 + find . -type f -exec sed -i 's/QPalette::Background/QPalette::Window/g' {} + 24 + ''; 25 + 26 + nativeBuildInputs = [ 27 + qt6.qmake 28 + qt6.wrapQtAppsHook 29 + ]; 30 + 31 + buildInputs = [ 32 + qt6.qtbase 33 + qt6.qttools 34 + qt6.qtwayland 35 + ]; 36 + 37 + qmakeFlags = [ 38 + "./example/qhexedit.pro" 39 + ]; 40 + 41 + # A custom installPhase is needed because no [native] build input provides an installPhase hook 42 + installPhase = '' 43 + runHook preInstall 44 + 45 + mkdir -p $out/bin 46 + cp qhexedit $out/bin 47 + 48 + runHook postInstall 49 + ''; 50 + 51 + passthru = { 52 + updateScript = nix-update-script { }; 53 + # I would use testers.testVersion except for some reason it fails, even with my patches that add a --version flag 54 + # TODO: Debug why testVersion reports a non-zero status code in the nix sandbox 55 + }; 56 + 57 + meta = { 58 + description = "Hex Editor for Qt"; 59 + homepage = "https://github.com/Simsys/qhexedit2"; 60 + changelog = "https://github.com/Simsys/qhexedit2/releases"; 61 + mainProgram = "qhexedit"; 62 + license = lib.licenses.lgpl21Only; 63 + platforms = lib.platforms.all; 64 + maintainers = with lib.maintainers; [ pandapip1 ]; 65 + }; 66 + })
+6
pkgs/by-name/sc/scarab/package.nix
··· 31 --replace-fail 'net6.0' 'net8.0' 32 ''; 33 34 runtimeDeps = [ 35 bc 36 ];
··· 31 --replace-fail 'net6.0' 'net8.0' 32 ''; 33 34 + preConfigureNuGet = '' 35 + # This should really be in the upstream nuget.config 36 + dotnet nuget add source https://api.nuget.org/v3/index.json \ 37 + -n nuget.org --configfile NuGet.Config 38 + ''; 39 + 40 runtimeDeps = [ 41 bc 42 ];
+12 -4
pkgs/by-name/sp/sptlrx/package.nix
··· 2 3 buildGoModule rec { 4 pname = "sptlrx"; 5 - version = "1.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "raitonoberu"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-6GbefTWrhH6RdASmSrugd4xESkwqFVF5qwFmf0JUDTY="; 12 }; 13 14 - vendorHash = "sha256-Ll5jUjpx4165BAE86/z95i4xa8fdKlfxqrUc/gDLqJ0="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 passthru = { 19 updateScript = nix-update-script { }; 20 tests.version = testers.testVersion { ··· 26 meta = with lib; { 27 description = "Spotify lyrics in your terminal"; 28 homepage = "https://github.com/raitonoberu/sptlrx"; 29 - changelog = "https://github.com/raitonoberu/sptlrx/releases/tag/v${version}"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ MoritzBoehme ]; 32 mainProgram = "sptlrx";
··· 2 3 buildGoModule rec { 4 pname = "sptlrx"; 5 + version = "1.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "raitonoberu"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-b8ALhEjolH0RH+I9HVQeOagPBi2isLNUxqKdj5u2O9s="; 12 }; 13 14 + vendorHash = "sha256-pExSQcYjqliZZg/91t52yk6UJ4QCbpToMpONIFUNkwc="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 + checkFlags = 19 + let 20 + # Requires network access 21 + skippedTests = [ "TestGetIndex" ]; 22 + in 23 + [ "-skip=^${lib.concatStringsSep "$|^" skippedTests}$" ]; 24 + 25 passthru = { 26 updateScript = nix-update-script { }; 27 tests.version = testers.testVersion { ··· 33 meta = with lib; { 34 description = "Spotify lyrics in your terminal"; 35 homepage = "https://github.com/raitonoberu/sptlrx"; 36 + changelog = 37 + "https://github.com/raitonoberu/sptlrx/releases/tag/v${version}"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ MoritzBoehme ]; 40 mainProgram = "sptlrx";
+2 -2
pkgs/by-name/st/staruml/package.nix
··· 24 ]; 25 in 26 stdenv.mkDerivation (finalAttrs: { 27 - version = "6.2.2"; 28 pname = "staruml"; 29 30 src = fetchurl { 31 url = "https://files.staruml.io/releases-v6/StarUML_${finalAttrs.version}_amd64.deb"; 32 - sha256 = "sha256-1zxrT7phXeQYNbWHWMyPuHiUglrPSMPP0bfAcfvt8dM="; 33 }; 34 35 nativeBuildInputs = [ wrapGAppsHook3 dpkg ];
··· 24 ]; 25 in 26 stdenv.mkDerivation (finalAttrs: { 27 + version = "6.3.0"; 28 pname = "staruml"; 29 30 src = fetchurl { 31 url = "https://files.staruml.io/releases-v6/StarUML_${finalAttrs.version}_amd64.deb"; 32 + sha256 = "sha256-G63MxjefAJ0J40HzrI9j/sRkHLIdUzBf0GSbw6fAFoI="; 33 }; 34 35 nativeBuildInputs = [ wrapGAppsHook3 dpkg ];
+2 -2
pkgs/by-name/st/stella/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "stella"; 11 - version = "7.0"; 12 13 src = fetchFromGitHub { 14 owner = "stella-emu"; 15 repo = "stella"; 16 rev = finalAttrs.version; 17 - hash = "sha256-c7A1gFvYkxxwuwrntw/w8FYD24l5m1Uip+44Pe664lE="; 18 }; 19 20 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "stella"; 11 + version = "7.0b"; 12 13 src = fetchFromGitHub { 14 owner = "stella-emu"; 15 repo = "stella"; 16 rev = finalAttrs.version; 17 + hash = "sha256-310rGYfCVRoTi9kq9XqmvTCVLLDY/PG2qgBG1kNT/DY="; 18 }; 19 20 nativeBuildInputs = [
+3 -3
pkgs/by-name/ta/tailscale/package.nix
··· 15 }: 16 17 let 18 - version = "1.76.6"; 19 in 20 buildGo123Module { 21 pname = "tailscale"; ··· 27 owner = "tailscale"; 28 repo = "tailscale"; 29 rev = "v${version}"; 30 - hash = "sha256-c44Fz/cYGN2nsjlaKln8ozjjS5jHSO/X9RMnHa37tJM="; 31 }; 32 33 patches = [ ··· 39 }) 40 ]; 41 42 - vendorHash = "sha256-xCZ6YMJ0fqVzO+tKbCzF0ftV05NOB+lJbJBovLqlrtQ="; 43 44 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ makeWrapper ] ++ [ installShellFiles ]; 45
··· 15 }: 16 17 let 18 + version = "1.78.0"; 19 in 20 buildGo123Module { 21 pname = "tailscale"; ··· 27 owner = "tailscale"; 28 repo = "tailscale"; 29 rev = "v${version}"; 30 + hash = "sha256-AujYfsPrLT0D6POge/pcA6dtWpQ4I6vI5op7zqzJ/+g="; 31 }; 32 33 patches = [ ··· 39 }) 40 ]; 41 42 + vendorHash = "sha256-0VB7q9HKd5/QKaWBMpCYycRRiNTWCEjUMc3g3z6agc8="; 43 44 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ makeWrapper ] ++ [ installShellFiles ]; 45
+4 -4
pkgs/by-name/ta/taterclient-ddnet/package.nix
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "taterclient-ddnet"; 37 - version = "9.0.0"; 38 39 src = fetchFromGitHub { 40 owner = "sjrc6"; 41 repo = "taterclient-ddnet"; 42 - rev = finalAttrs.version; 43 - hash = "sha256-2vWZ5RE65nJrKEtqD2/vK0RKnIK3mSYdlcS/OD9jFvw="; 44 }; 45 46 cargoDeps = rustPlatform.fetchCargoTarball { 47 inherit (finalAttrs) pname src version; 48 - hash = "sha256-+NY2g8WeuMxsh3WJHhn3ESLxIUnvaf73qjlWaLOYzuM="; 49 }; 50 51 nativeBuildInputs = [
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "taterclient-ddnet"; 37 + version = "9.0.1"; 38 39 src = fetchFromGitHub { 40 owner = "sjrc6"; 41 repo = "taterclient-ddnet"; 42 + rev = "refs/tags/V${finalAttrs.version}"; 43 + hash = "sha256-s+GIY29WYbVETtJSLBfP87pakRfxgGcw3Dk3p6HHoYA="; 44 }; 45 46 cargoDeps = rustPlatform.fetchCargoTarball { 47 inherit (finalAttrs) pname src version; 48 + hash = "sha256-u+IhlJYVEYeWnmFzRmcVqJfM3zBy70k9yp0AjRTovwg="; 49 }; 50 51 nativeBuildInputs = [
+1
pkgs/development/compilers/dotnet/8/default.nix
··· 5 releaseInfoFile = ./release-info.json; 6 bootstrapSdkFile = ./bootstrap-sdk.nix; 7 depsFile = ./deps.nix; 8 }
··· 5 releaseInfoFile = ./release-info.json; 6 bootstrapSdkFile = ./bootstrap-sdk.nix; 7 depsFile = ./deps.nix; 8 + fallbackTargetPackages = dotnetCorePackages.sdk_8_0.targetPackages; 9 }
+1
pkgs/development/compilers/dotnet/9/default.nix
··· 6 bootstrapSdkFile = ./bootstrap-sdk.nix; 7 allowPrerelease = true; 8 depsFile = ./deps.nix; 9 }
··· 6 bootstrapSdkFile = ./bootstrap-sdk.nix; 7 allowPrerelease = true; 8 depsFile = ./deps.nix; 9 + fallbackTargetPackages = dotnetCorePackages.sdk_9_0.targetPackages; 10 }
+2
pkgs/development/compilers/dotnet/dotnet.nix
··· 8 bootstrapSdkFile, 9 allowPrerelease ? false, 10 depsFile, 11 pkgsBuildHost, 12 buildDotnetSdk, 13 }: ··· 25 releaseManifestFile 26 tarballHash 27 depsFile 28 ; 29 bootstrapSdk = (buildDotnetSdk bootstrapSdkFile).sdk.unwrapped.overrideAttrs (old: { 30 passthru = old.passthru or { } // {
··· 8 bootstrapSdkFile, 9 allowPrerelease ? false, 10 depsFile, 11 + fallbackTargetPackages, 12 pkgsBuildHost, 13 buildDotnetSdk, 14 }: ··· 26 releaseManifestFile 27 tarballHash 28 depsFile 29 + fallbackTargetPackages 30 ; 31 bootstrapSdk = (buildDotnetSdk bootstrapSdkFile).sdk.unwrapped.overrideAttrs (old: { 32 passthru = old.passthru or { } // {
+7 -1
pkgs/development/compilers/dotnet/stage0.nix
··· 7 nix, 8 cacert, 9 nuget-to-nix, 10 dotnetCorePackages, 11 xmlstarlet, 12 patchNupkgs, ··· 16 releaseManifestFile, 17 tarballHash, 18 depsFile, 19 bootstrapSdk, 20 }: 21 ··· 94 nix 95 cacert 96 nuget-to-nix 97 ]; 98 postPatch = 99 old.postPatch or "" ··· 138 --arg list "[ ''${depsFiles[*]} ]" \ 139 --argstr baseRid ${targetRid} \ 140 --arg otherRids '${lib.generators.toPretty { multiline = false; } otherRids}' \ 141 - ) > "${toString prebuiltPackages.sourceFile}" 142 EOF 143 ''; 144 };
··· 7 nix, 8 cacert, 9 nuget-to-nix, 10 + nixfmt-rfc-style, 11 dotnetCorePackages, 12 xmlstarlet, 13 patchNupkgs, ··· 17 releaseManifestFile, 18 tarballHash, 19 depsFile, 20 + fallbackTargetPackages, 21 bootstrapSdk, 22 }: 23 ··· 96 nix 97 cacert 98 nuget-to-nix 99 + nixfmt-rfc-style 100 ]; 101 postPatch = 102 old.postPatch or "" ··· 141 --arg list "[ ''${depsFiles[*]} ]" \ 142 --argstr baseRid ${targetRid} \ 143 --arg otherRids '${lib.generators.toPretty { multiline = false; } otherRids}' \ 144 + ) > deps.nix 145 + nixfmt deps.nix 146 + 147 + mv deps.nix "${toString prebuiltPackages.sourceFile}" 148 EOF 149 ''; 150 };
+2 -2
pkgs/development/compilers/dotnet/stage1.nix
··· 7 tarballHash, 8 depsFile, 9 bootstrapSdk, 10 }@args: 11 12 let ··· 33 34 in 35 mkPackages { 36 - inherit vmr; 37 - fallbackTargetPackages = bootstrapSdk.targetPackages; 38 } 39 // { 40 stage0 = lib.dontRecurseIntoAttrs stage0;
··· 7 tarballHash, 8 depsFile, 9 bootstrapSdk, 10 + fallbackTargetPackages, 11 }@args: 12 13 let ··· 34 35 in 36 mkPackages { 37 + inherit vmr fallbackTargetPackages; 38 } 39 // { 40 stage0 = lib.dontRecurseIntoAttrs stage0;
+7 -7
pkgs/development/compilers/julia/default.nix
··· 40 { }); 41 julia_111-bin = wrapJulia (callPackage 42 (import ./generic-bin.nix { 43 - version = "1.11.1"; 44 sha256 = { 45 - x86_64-linux = "cca8d13dc4507e4f62a129322293313ee574f300d4df9e7db30b7b41c5f8a8f3"; 46 - aarch64-linux = "bd623ef3801c5a56103464d349c7901d5cc034405ad289332c67f1e8ecc05840"; 47 - x86_64-darwin = "59885de9310788c1ed12f41e7d2c2f05eabd314888cd105d299837b76a4a7240"; 48 - aarch64-darwin = "e09d13e1c6c98452e91e698220688dd784ec8e5367e9e6443099c5f9aa2add78"; 49 }; 50 }) 51 { }); ··· 69 { }); 70 julia_111 = wrapJulia (callPackage 71 (import ./generic.nix { 72 - version = "1.11.1"; 73 - hash = "sha256-pJuATeboagP+Jsc/WIUeruH/JD1yBPK1rk28XB3CdY0="; 74 patches = [ 75 ./patches/1.11/0002-skip-failing-and-flaky-tests.patch 76 ];
··· 40 { }); 41 julia_111-bin = wrapJulia (callPackage 42 (import ./generic-bin.nix { 43 + version = "1.11.2"; 44 sha256 = { 45 + x86_64-linux = "8a372ad262d4d4d55a1044f4fe3bce7c9a4a3ce8c513d2470e58e8071eecd476"; 46 + aarch64-linux = "0346e6d65852a3b73ced2c80c40f5a8cf38e7048d001cd57d3d1dd9efb2f6641"; 47 + x86_64-darwin = "0b52ba3d7f283e43ba853bc3d0f401decf993d8d53da752bd644a9f934679184"; 48 + aarch64-darwin = "bcfe9c788f3dcf613a4753a4d9771d8381d00caf0e8af64d8aa87af10068b754"; 49 }; 50 }) 51 { }); ··· 69 { }); 70 julia_111 = wrapJulia (callPackage 71 (import ./generic.nix { 72 + version = "1.11.2"; 73 + hash = "sha256-pzZblplE8n3w2FY3FsqXaeB/P3e5+fu0i80RTd91LKQ="; 74 patches = [ 75 ./patches/1.11/0002-skip-failing-and-flaky-tests.patch 76 ];
+5 -6
pkgs/development/python-modules/azure-multiapi-storage/default.nix
··· 6 cryptography, 7 fetchPypi, 8 msrest, 9 - msrestazure, 10 pythonOlder, 11 requests, 12 setuptools, 13 }: 14 15 buildPythonPackage rec { ··· 31 azure-core 32 cryptography 33 msrest 34 - msrestazure 35 requests 36 ]; 37 38 # fix namespace ··· 42 doCheck = false; 43 44 pythonImportsCheck = [ 45 - "azure.common" 46 "azure.multiapi.storage" 47 ]; 48 49 - meta = with lib; { 50 description = "Microsoft Azure Storage Client Library for Python with multi API version support"; 51 - homepage = "https://github.com/Azure/azure-sdk-for-python"; 52 - license = licenses.mit; 53 maintainers = [ ]; 54 }; 55 }
··· 6 cryptography, 7 fetchPypi, 8 msrest, 9 pythonOlder, 10 requests, 11 setuptools, 12 + python-dateutil, 13 }: 14 15 buildPythonPackage rec { ··· 31 azure-core 32 cryptography 33 msrest 34 requests 35 + python-dateutil 36 ]; 37 38 # fix namespace ··· 42 doCheck = false; 43 44 pythonImportsCheck = [ 45 "azure.multiapi.storage" 46 ]; 47 48 + meta = { 49 description = "Microsoft Azure Storage Client Library for Python with multi API version support"; 50 + homepage = "https://github.com/Azure/azure-multiapi-storage-python"; 51 + license = lib.licenses.mit; 52 maintainers = [ ]; 53 }; 54 }
+2 -2
pkgs/development/python-modules/gradio-pdf/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "gradio-pdf"; 14 - version = "0.0.17"; 15 pyproject = true; 16 17 src = fetchPypi { 18 pname = "gradio_pdf"; 19 inherit version; 20 - hash = "sha256-LoVcwE7eGcK5Nc6qKTnrnI+rNlsDbekhKUP+Fzq2SQ8="; 21 }; 22 23 build-system = [
··· 11 12 buildPythonPackage rec { 13 pname = "gradio-pdf"; 14 + version = "0.0.19"; 15 pyproject = true; 16 17 src = fetchPypi { 18 pname = "gradio_pdf"; 19 inherit version; 20 + hash = "sha256-UVHNyKU2cl/0HZqntnyBOFmgeIJ6UjJejEqKqFIPdoo="; 21 }; 22 23 build-system = [
+2 -2
pkgs/development/python-modules/pyreadstat/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "pyreadstat"; 18 - version = "1.2.7"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "Roche"; 25 repo = "pyreadstat"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-XuLFLpZbaCj/MHq0+l6GoNqR5nAldAlEJhoO5ioWYTA="; 28 }; 29 30 build-system = [
··· 15 16 buildPythonPackage rec { 17 pname = "pyreadstat"; 18 + version = "1.2.8"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "Roche"; 25 repo = "pyreadstat"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-9uDmkEp9CXUCcM09CaVaaG856Q1rY3sKYOkQkGRzakE="; 28 }; 29 30 build-system = [
+3 -2
pkgs/development/tools/godot/3/mono/make-deps.nix
··· 1 - { godot3-mono, nuget-to-nix }: 2 3 godot3-mono.overrideAttrs (self: base: { 4 pname = "godot3-mono-make-deps"; 5 6 - nativeBuildInputs = base.nativeBuildInputs ++ [ nuget-to-nix ]; 7 8 nugetDeps = null; 9 nugetSource = null; ··· 50 nugetRestore modules/mono/editor/GodotTools/GodotTools.sln 51 52 nuget-to-nix nugetPackages > "$outdir"/deps.nix 53 popd > /dev/null 54 ''; 55
··· 1 + { godot3-mono, nuget-to-nix, nixfmt-rfc-style }: 2 3 godot3-mono.overrideAttrs (self: base: { 4 pname = "godot3-mono-make-deps"; 5 6 + nativeBuildInputs = base.nativeBuildInputs ++ [ nuget-to-nix nixfmt-rfc-style ]; 7 8 nugetDeps = null; 9 nugetSource = null; ··· 50 nugetRestore modules/mono/editor/GodotTools/GodotTools.sln 51 52 nuget-to-nix nugetPackages > "$outdir"/deps.nix 53 + nixfmt "$outdir"/deps.nix 54 popd > /dev/null 55 ''; 56
+9 -18
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 23 hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg="; 24 }; 25 26 - # Fixes framebuffer with linux 6.11 27 - fbdev_linux_611_patch = fetchpatch { 28 - url = "https://patch-diff.githubusercontent.com/raw/NVIDIA/open-gpu-kernel-modules/pull/692.patch"; 29 - hash = "sha256-OYw8TsHDpBE5DBzdZCBT45+AiznzO9SfECz5/uXN5Uc="; 30 - }; 31 - 32 # Fixes drm device not working with linux 6.12 33 # https://github.com/NVIDIA/open-gpu-kernel-modules/issues/712 34 drm_fop_flags_linux_612_patch = fetchpatch { ··· 55 }; 56 57 latest = selectHighestVersion production (generic { 58 - version = "560.35.03"; 59 - sha256_64bit = "sha256-8pMskvrdQ8WyNBvkU/xPc/CtcYXCa7ekP73oGuKfH+M="; 60 - sha256_aarch64 = "sha256-s8ZAVKvRNXpjxRYqM3E5oss5FdqW+tv1qQC2pDjfG+s="; 61 - openSha256 = "sha256-/32Zf0dKrofTmPZ3Ratw4vDM7B+OgpC4p7s+RHUjCrg="; 62 - settingsSha256 = "sha256-kQsvDgnxis9ANFmwIwB7HX5MkIAcpEEAHc8IBOLdXvk="; 63 - persistencedSha256 = "sha256-E2J2wYYyRu7Kc3MMZz/8ZIemcZg68rkzvqEwFAL3fFs="; 64 - patchesOpen = [ fbdev_linux_611_patch ]; 65 - 66 - broken = kernel.kernelAtLeast "6.12"; 67 }); 68 69 beta = selectHighestVersion latest (generic { ··· 79 # Vulkan developer beta driver 80 # See here for more information: https://developer.nvidia.com/vulkan-driver 81 vulkan_beta = generic rec { 82 - version = "550.40.80"; 83 persistencedVersion = "550.54.14"; 84 settingsVersion = "550.54.14"; 85 - sha256_64bit = "sha256-fuI9G9KHCCddtPNDz+8FAkporSB7G97UU/pw4KGGZOE="; 86 - openSha256 = "sha256-+soDdbklk8wr/G5cj4BzZ8ql0zeHSswJ2OkOv59uMp0="; 87 settingsSha256 = "sha256-m2rNASJp0i0Ez2OuqL+JpgEF0Yd8sYVCyrOoo/ln2a4="; 88 persistencedSha256 = "sha256-XaPN8jVTjdag9frLPgBtqvO/goB5zxeGzaTU0CdL6C4="; 89 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux";
··· 23 hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg="; 24 }; 25 26 # Fixes drm device not working with linux 6.12 27 # https://github.com/NVIDIA/open-gpu-kernel-modules/issues/712 28 drm_fop_flags_linux_612_patch = fetchpatch { ··· 49 }; 50 51 latest = selectHighestVersion production (generic { 52 + version = "565.77"; 53 + sha256_64bit = "sha256-CnqnQsRrzzTXZpgkAtF7PbH9s7wbiTRNcM0SPByzFHw="; 54 + sha256_aarch64 = "sha256-LSAYUnhfnK3rcuPe1dixOwAujSof19kNOfdRHE7bToE="; 55 + openSha256 = "sha256-Fxo0t61KQDs71YA8u7arY+503wkAc1foaa51vi2Pl5I="; 56 + settingsSha256 = "sha256-VUetj3LlOSz/LB+DDfMCN34uA4bNTTpjDrb6C6Iwukk="; 57 + persistencedSha256 = "sha256-wnDjC099D8d9NJSp9D0CbsL+vfHXyJFYYgU3CwcqKww="; 58 }); 59 60 beta = selectHighestVersion latest (generic { ··· 70 # Vulkan developer beta driver 71 # See here for more information: https://developer.nvidia.com/vulkan-driver 72 vulkan_beta = generic rec { 73 + version = "550.40.81"; 74 persistencedVersion = "550.54.14"; 75 settingsVersion = "550.54.14"; 76 + sha256_64bit = "sha256-GfufNJ3jJKPyZhbRRPbRAjENRhJWNaZ1lJF7Z6x0h4c="; 77 + openSha256 = "sha256-TOQN89yB29g9mka4CiRLSyvNVGP6hpkHWui2aFQPzLU="; 78 settingsSha256 = "sha256-m2rNASJp0i0Ez2OuqL+JpgEF0Yd8sYVCyrOoo/ln2a4="; 79 persistencedSha256 = "sha256-XaPN8jVTjdag9frLPgBtqvO/goB5zxeGzaTU0CdL6C4="; 80 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux";
+2 -2
pkgs/os-specific/linux/r8125/default.nix
··· 4 pname = "r8125"; 5 # On update please verify (using `diff -r`) that the source matches the 6 # realtek version. 7 - version = "9.013.02"; 8 9 # This is a mirror. The original website[1] doesn't allow non-interactive 10 # downloads, instead emailing you a download link. ··· 13 owner = "louistakepillz"; 14 repo = "r8125"; 15 rev = version; 16 - sha256 = "sha256-i45xKF5WVN+nNhpD6HWZHvGgxuaD/YhMHERqW8/bC5Y="; 17 }; 18 19 hardeningDisable = [ "pic" ];
··· 4 pname = "r8125"; 5 # On update please verify (using `diff -r`) that the source matches the 6 # realtek version. 7 + version = "9.014.01"; 8 9 # This is a mirror. The original website[1] doesn't allow non-interactive 10 # downloads, instead emailing you a download link. ··· 13 owner = "louistakepillz"; 14 repo = "r8125"; 15 rev = version; 16 + sha256 = "sha256-vYgAOmKFQZDKrZsS3ynXB0DrT3wU0JWzNTYO6FyMG9M="; 17 }; 18 19 hardeningDisable = [ "pic" ];
+4 -4
pkgs/servers/mail/mailpit/source.nix
··· 1 { 2 - version = "1.21.0"; 3 - hash = "sha256-u2mQfqfBfSV716FlGJyFJoRBtTs+WprM/X8i5RLuhZ0="; 4 - npmDepsHash = "sha256-0PjJkGsIpnYVSUpwgtrqWVFMI9Lpjo0j7aprtFvePWQ="; 5 - vendorHash = "sha256-2qqsYYyykmbnnyLHAk4/1HUps7XVQ5ve+niaayb/VQ0="; 6 }
··· 1 { 2 + version = "1.21.5"; 3 + hash = "sha256-i1Us3ex09RiuSYf+eV8IybxHKfR6jKda61wJj2P3wxw="; 4 + npmDepsHash = "sha256-Vb6XMECl0H+gIth2Qxuxib3SVqB0OdYGpBfr/6P4Hwc="; 5 + vendorHash = "sha256-jnhDyIRCcnyovn/sQmdZ0kQDXU1ZFKMLfXksYAnIvJ8="; 6 }
+4 -2
pkgs/tools/misc/opentelemetry-collector/releases.nix
··· 81 name, 82 sourceHash, 83 vendorHash, 84 }: 85 let 86 package = buildGoModule { ··· 92 hash = sourceHash; 93 }; 94 95 - inherit vendorHash; 96 97 nativeBuildInputs = [ installShellFiles ]; 98 ··· 155 otelcol-contrib = mkDistribution { 156 name = "otelcol-contrib"; 157 sourceHash = "sha256-1TIzfR9F6iwSwoDc08SdOWYH378Y3qjwOcQ4IDbHTWE="; 158 - vendorHash = "sha256-KObLO3bXqGL1WSTKbJjg+hYJ9sYU4rn9gC/o38U1XJI="; 159 }; 160 161 otelcol-k8s = mkDistribution {
··· 81 name, 82 sourceHash, 83 vendorHash, 84 + proxyVendor ? false, 85 }: 86 let 87 package = buildGoModule { ··· 93 hash = sourceHash; 94 }; 95 96 + inherit proxyVendor vendorHash; 97 98 nativeBuildInputs = [ installShellFiles ]; 99 ··· 156 otelcol-contrib = mkDistribution { 157 name = "otelcol-contrib"; 158 sourceHash = "sha256-1TIzfR9F6iwSwoDc08SdOWYH378Y3qjwOcQ4IDbHTWE="; 159 + vendorHash = "sha256-AmSn2M+HkOpZ0ev6Gjb+gaeE+h70W/RtXKMqaModJPs="; 160 + proxyVendor = true; # hash mismatch between linux and darwin 161 }; 162 163 otelcol-k8s = mkDistribution {
-2
pkgs/top-level/all-packages.nix
··· 13643 evolution = callPackage ../applications/networking/mailreaders/evolution/evolution { }; 13644 evolutionWithPlugins = callPackage ../applications/networking/mailreaders/evolution/evolution/wrapper.nix { plugins = [ evolution evolution-ews ]; }; 13645 13646 - famistudio = darwin.apple_sdk_11_0.callPackage ../applications/audio/famistudio { }; 13647 - 13648 fdr = libsForQt5.callPackage ../applications/science/programming/fdr { }; 13649 13650 fetchmail = callPackage ../applications/misc/fetchmail { };
··· 13643 evolution = callPackage ../applications/networking/mailreaders/evolution/evolution { }; 13644 evolutionWithPlugins = callPackage ../applications/networking/mailreaders/evolution/evolution/wrapper.nix { plugins = [ evolution evolution-ews ]; }; 13645 13646 fdr = libsForQt5.callPackage ../applications/science/programming/fdr { }; 13647 13648 fetchmail = callPackage ../applications/misc/fetchmail { };