Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub a7d71530 6d0f6703

+2721 -1114
+20 -1
.github/labeler.yml
··· 176 176 - any: 177 177 - changed-files: 178 178 - any-glob-to-any-file: 179 - - nixos/modules/programs/java.nix 179 + # Distributions 180 + - pkgs/development/compilers/adoptopenjdk-icedtea-web/**/* 181 + - pkgs/development/compilers/corretto/**/* 180 182 - pkgs/development/compilers/graalvm/**/* 181 183 - pkgs/development/compilers/openjdk/**/* 184 + - pkgs/development/compilers/semeru-bin/**/* 182 185 - pkgs/development/compilers/temurin-bin/**/* 183 186 - pkgs/development/compilers/zulu/**/* 187 + # Documentation 188 + - doc/languages-frameworks/java.section.md 189 + # Gradle 190 + - doc/languages-frameworks/gradle.section.md 191 + - pkgs/development/tools/build-managers/gradle/**/* 192 + - pkgs/by-name/gr/gradle-completion/**/* 193 + # Maven 194 + - pkgs/by-name/ma/maven/**/* 195 + - doc/languages-frameworks/maven.section.md 196 + # Ant 197 + - pkgs/by-name/ap/apacheAnt/**/* 198 + # javaPackages attrset 184 199 - pkgs/development/java-modules/**/* 185 200 - pkgs/top-level/java-packages.nix 201 + # Maintainer tooling 202 + - pkgs/by-name/ni/nixpkgs-openjdk-updater/**/* 203 + # Misc 204 + - nixos/modules/programs/java.nix 186 205 187 206 "6.topic: jitsi": 188 207 - any:
+3
nixos/doc/manual/release-notes/rl-2505.section.md
··· 33 33 34 34 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 35 35 36 + - `binwalk` was updated to 3.1.0, which has been rewritten in rust. The python module is no longer available. 37 + See the release notes of [3.1.0](https://github.com/ReFirmLabs/binwalk/releases/tag/v3.1.0) for more information. 38 + 36 39 - `buildGoPackage` has been removed. Use `buildGoModule` instead. See the [Go section in the nixpkgs manual](https://nixos.org/manual/nixpkgs/unstable/#sec-language-go) for details. 37 40 38 41 - `timescaledb` requires manual upgrade steps.
+4 -1
nixos/lib/make-disk-image.nix
··· 163 163 , # Disk image format, one of qcow2, qcow2-compressed, vdi, vpc, raw. 164 164 format ? "raw" 165 165 166 + , # Disk image filename, without any extensions (e.g. `image_1`). 167 + baseName ? "nixos" 168 + 166 169 # Whether to fix: 167 170 # - GPT Disk Unique Identifier (diskGUID) 168 171 # - GPT Partition Unique Identifier: depends on the layout, root partition UUID can be controlled through `rootGPUID` option ··· 208 211 209 212 compress = lib.optionalString (format' == "qcow2-compressed") "-c"; 210 213 211 - filename = "nixos." + { 214 + filename = "${baseName}." + { 212 215 qcow2 = "qcow2"; 213 216 vdi = "vdi"; 214 217 vpc = "vhd";
+48
nixos/modules/image/file-options.nix
··· 1 + { 2 + lib, 3 + config, 4 + pkgs, 5 + ... 6 + }: 7 + { 8 + options.image = { 9 + baseName = lib.mkOption { 10 + type = lib.types.str; 11 + default = "nixos-image-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}"; 12 + description = '' 13 + Basename of the image filename without any extension (e.g. `image_1`). 14 + ''; 15 + }; 16 + 17 + extension = lib.mkOption { 18 + type = lib.types.str; 19 + description = '' 20 + Extension of the image filename (e.g. `raw`). 21 + ''; 22 + }; 23 + 24 + # FIXME: this should be marked readOnly, when there are no 25 + # mkRenamedOptionModuleWith calls with `image.fileName` as 26 + # as a target left anymore (i.e. 24.11). We can't do it 27 + # before, as some source options where writable before. 28 + # Those should use image.baseName and image.extension instead. 29 + fileName = lib.mkOption { 30 + type = lib.types.str; 31 + default = "${config.image.baseName}.${config.image.extension}"; 32 + description = '' 33 + Filename of the image including all extensions (e.g `image_1.raw` or 34 + `image_1.raw.zst`). 35 + ''; 36 + }; 37 + 38 + filePath = lib.mkOption { 39 + type = lib.types.str; 40 + default = config.image.fileName; 41 + description = '' 42 + Path of the image, relative to `$out` in `system.build.image`. 43 + While it defaults to `config.image.fileName`, it can be different for builders where 44 + the image is in sub directory, such as `iso`, `sd-card` or `kexec` images. 45 + ''; 46 + }; 47 + }; 48 + }
+56
nixos/modules/image/images.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + extendModules, 6 + ... 7 + }: 8 + let 9 + inherit (lib) types; 10 + 11 + imageModules = { }; 12 + imageConfigs = lib.mapAttrs ( 13 + name: modules: 14 + extendModules { 15 + inherit modules; 16 + } 17 + ) config.image.modules; 18 + in 19 + { 20 + options = { 21 + system.build = { 22 + images = lib.mkOption { 23 + type = types.lazyAttrsOf types.raw; 24 + readOnly = true; 25 + description = '' 26 + Different target images generated for this NixOS configuration. 27 + ''; 28 + }; 29 + }; 30 + image.modules = lib.mkOption { 31 + type = types.attrsOf (types.listOf types.deferredModule); 32 + description = '' 33 + image-specific NixOS Modules used for `system.build.images`. 34 + ''; 35 + }; 36 + }; 37 + 38 + config.image.modules = lib.mkIf (!config.system.build ? image) imageModules; 39 + config.system.build.images = lib.mkIf (!config.system.build ? image) ( 40 + lib.mapAttrs ( 41 + name: nixos: 42 + let 43 + inherit (nixos) config; 44 + inherit (config.image) filePath; 45 + builder = 46 + config.system.build.image 47 + or (throw "Module for `system.build.images.${name}` misses required `system.build.image` option."); 48 + in 49 + lib.recursiveUpdate builder { 50 + passthru = { 51 + inherit config filePath; 52 + }; 53 + } 54 + ) imageConfigs 55 + ); 56 + }
+1
nixos/modules/module-list.nix
··· 125 125 ./i18n/input-method/kime.nix 126 126 ./i18n/input-method/nabi.nix 127 127 ./i18n/input-method/uim.nix 128 + ./image/images.nix 128 129 ./installer/tools/tools.nix 129 130 ./misc/assertions.nix 130 131 ./misc/crashdump.nix
+1 -1
nixos/modules/services/web-apps/agorakit.nix
··· 325 325 326 326 services.mysql = mkIf db.createLocally { 327 327 enable = true; 328 - package = mkDefault pkgs.mysql; 328 + package = mkDefault pkgs.mariadb; 329 329 ensureDatabases = [ db.name ]; 330 330 ensureUsers = [ 331 331 {
+15 -15
nixos/tests/scion/freestanding-deployment/bootstrap.sh
··· 5 5 6 6 # Create voting and root keys and (self-signed) certificates for core ASes 7 7 pushd AS1 8 - scion-pki certificate create --not-after=3650d --profile=sensitive-voting <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 sensitive voting cert"}') sensitive-voting.pem sensitive-voting.key 9 - scion-pki certificate create --not-after=3650d --profile=regular-voting <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 regular voting cert"}') regular-voting.pem regular-voting.key 10 - scion-pki certificate create --not-after=3650d --profile=cp-root <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 cp root cert"}') cp-root.pem cp-root.key 8 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=sensitive-voting <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 sensitive voting cert"}') sensitive-voting.pem sensitive-voting.key 9 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=regular-voting <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 regular voting cert"}') regular-voting.pem regular-voting.key 10 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-root <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 cp root cert"}') cp-root.pem cp-root.key 11 11 popd 12 12 13 13 pushd AS2 14 - scion-pki certificate create --not-after=3650d --profile=cp-root <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 cp root cert"}') cp-root.pem cp-root.key 14 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-root <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 cp root cert"}') cp-root.pem cp-root.key 15 15 popd 16 16 17 17 pushd AS3 18 - scion-pki certificate create --not-after=3650d --profile=sensitive-voting <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 sensitive voting cert"}') sensitive-voting.pem sensitive-voting.key 19 - scion-pki certificate create --not-after=3650d --profile=regular-voting <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 regular voting cert"}') regular-voting.pem regular-voting.key 18 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=sensitive-voting <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 sensitive voting cert"}') sensitive-voting.pem sensitive-voting.key 19 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=regular-voting <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 regular voting cert"}') regular-voting.pem regular-voting.key 20 20 popd 21 21 22 22 # Create the TRC (Trust Root Configuration) ··· 33 33 cert_files = ["AS1/sensitive-voting.pem", "AS1/regular-voting.pem", "AS1/cp-root.pem", "AS2/cp-root.pem", "AS3/sensitive-voting.pem", "AS3/regular-voting.pem"] 34 34 35 35 [validity] 36 - not_before = '$(date +%s)' 37 - validity = "365d"' \ 36 + not_before = '0' 37 + validity = "36500d"' \ 38 38 > trc-B1-S1-pld.tmpl 39 39 40 40 scion-pki trc payload --out=tmp/ISD42-B1-S1.pld.der --template trc-B1-S1-pld.tmpl ··· 51 51 52 52 # Create CA key and certificate for issuing ASes 53 53 pushd AS1 54 - scion-pki certificate create --profile=cp-ca <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 CA cert"}') cp-ca.pem cp-ca.key --ca cp-root.pem --ca-key cp-root.key 54 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-ca <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 CA cert"}') cp-ca.pem cp-ca.key --ca cp-root.pem --ca-key cp-root.key 55 55 popd 56 56 pushd AS2 57 - scion-pki certificate create --profile=cp-ca <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 CA cert"}') cp-ca.pem cp-ca.key --ca cp-root.pem --ca-key cp-root.key 57 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-ca <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 CA cert"}') cp-ca.pem cp-ca.key --ca cp-root.pem --ca-key cp-root.key 58 58 popd 59 59 60 60 # Create AS key and certificate chains 61 - scion-pki certificate create --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 AS cert"}') AS1/cp-as.pem AS1/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 62 - scion-pki certificate create --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 AS cert"}') AS2/cp-as.pem AS2/cp-as.key --ca AS2/cp-ca.pem --ca-key AS2/cp-ca.key --bundle 63 - scion-pki certificate create --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 AS cert"}') AS3/cp-as.pem AS3/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 64 - scion-pki certificate create --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:4", "common_name": "42-ffaa:1:4 AS cert"}') AS4/cp-as.pem AS4/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 65 - scion-pki certificate create --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:5", "common_name": "42-ffaa:1:5 AS cert"}') AS5/cp-as.pem AS5/cp-as.key --ca AS2/cp-ca.pem --ca-key AS2/cp-ca.key --bundle 61 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:1", "common_name": "42-ffaa:1:1 AS cert"}') AS1/cp-as.pem AS1/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 62 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:2", "common_name": "42-ffaa:1:2 AS cert"}') AS2/cp-as.pem AS2/cp-as.key --ca AS2/cp-ca.pem --ca-key AS2/cp-ca.key --bundle 63 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:3", "common_name": "42-ffaa:1:3 AS cert"}') AS3/cp-as.pem AS3/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 64 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:4", "common_name": "42-ffaa:1:4 AS cert"}') AS4/cp-as.pem AS4/cp-as.key --ca AS1/cp-ca.pem --ca-key AS1/cp-ca.key --bundle 65 + scion-pki certificate create --not-before="1970-01-01T00:00:00Z" --not-after="2124-11-02T15:41:22Z" --profile=cp-as <(echo '{"isd_as": "42-ffaa:1:5", "common_name": "42-ffaa:1:5 AS cert"}') AS5/cp-as.pem AS5/cp-as.key --ca AS2/cp-ca.pem --ca-key AS2/cp-ca.key --bundle 66 66 67 67 for i in {1..5} 68 68 do
+40 -30
pkgs/applications/audio/hqplayer-desktop/default.nix
··· 1 - { mkDerivation 1 + { stdenv 2 2 , alsa-lib 3 3 , autoPatchelfHook 4 + , dpkg 4 5 , evince 5 6 , fetchurl 6 7 , flac 7 - , gcc12 8 8 , lib 9 9 , libmicrohttpd 10 + , libogg 10 11 , libusb-compat-0_1 11 12 , llvmPackages 13 + , mpfr 12 14 , qtcharts 13 15 , qtdeclarative 14 - , qtquickcontrols2 16 + , qtwayland 15 17 , qtwebengine 16 18 , qtwebview 17 - , rpmextract 18 19 , wavpack 20 + , wrapQtAppsHook 19 21 }: 20 22 21 - mkDerivation rec { 23 + let 24 + version = "5.8.2-25"; 25 + srcs = { 26 + aarch64-linux = fetchurl { 27 + url = "https://signalyst.com/bins/bookworm/hqplayer5desktop_${version}_arm64.deb"; 28 + hash = "sha256-t3aiEkxl5fP5yup2l/iuLqZhltIjo4Ahe8EUg52lOLQ="; 29 + }; 30 + x86_64-linux = fetchurl { 31 + url = "https://signalyst.com/bins/noble/hqplayer5desktop_${version}_amd64.deb"; 32 + hash = "sha256-kDNVR8HkMogbdk5+eRszpyLeuE+vO3ynDS+TmCWYZ2Y="; 33 + }; 34 + }; 35 + in 36 + stdenv.mkDerivation { 22 37 pname = "hqplayer-desktop"; 23 - version = "4.22.0-65"; 38 + inherit version; 24 39 25 - src = fetchurl { 26 - url = "https://www.signalyst.eu/bins/hqplayer4desktop-${version}.fc36.x86_64.rpm"; 27 - sha256 = "sha256-PA8amsqy4O9cMruNYVhG+uBiUGQ5WfnZC2ARppmZd7g="; 28 - }; 29 - 30 - unpackPhase = '' 31 - ${rpmextract}/bin/rpmextract "$src" 32 - ''; 40 + src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 33 41 34 - nativeBuildInputs = [ autoPatchelfHook rpmextract ]; 42 + nativeBuildInputs = [ 43 + autoPatchelfHook 44 + dpkg 45 + wrapQtAppsHook 46 + ]; 35 47 36 48 buildInputs = [ 37 49 alsa-lib 38 50 flac 39 - gcc12.cc.lib 51 + stdenv.cc.cc.lib 40 52 libmicrohttpd 53 + libogg 41 54 libusb-compat-0_1 42 55 llvmPackages.openmp 56 + mpfr 43 57 qtcharts 44 58 qtdeclarative 45 - qtquickcontrols2 59 + qtwayland 46 60 qtwebengine 47 61 qtwebview 48 62 wavpack ··· 55 69 installPhase = '' 56 70 runHook preInstall 57 71 58 - # additional library 59 - mkdir -p "$out"/lib 60 - mv ./opt/hqplayer4desktop/lib/* "$out"/lib 61 - 62 72 # main executable 63 73 mkdir -p "$out"/bin 64 74 mv ./usr/bin/* "$out"/bin 65 75 66 76 # documentation 67 - mkdir -p "$doc/share/doc/${pname}" "$doc/share/applications" 68 - mv ./usr/share/doc/hqplayer4desktop/* "$doc/share/doc/${pname}" 69 - mv ./usr/share/applications/hqplayer4desktop-manual.desktop "$doc/share/applications" 77 + mkdir -p "$doc/share/doc/hqplayer-desktop" "$doc/share/applications" 78 + mv ./usr/share/doc/hqplayer5desktop/* "$doc/share/doc/hqplayer-desktop" 79 + mv ./usr/share/applications/hqplayer5desktop-manual.desktop "$doc/share/applications" 70 80 71 81 # desktop files 72 82 mkdir -p "$out/share/applications" ··· 83 93 outputs = [ "out" "doc" ]; 84 94 85 95 postInstall = '' 86 - for desktopFile in $out/share/applications/hqplayer4{desktop-nostyle,desktop-highdpi,-client,desktop}.desktop; do 96 + for desktopFile in $out/share/applications/hqplayer5{client,desktop}.desktop; do 87 97 substituteInPlace "$desktopFile" \ 88 98 --replace /usr/bin "$out"/bin 89 99 done 90 - substituteInPlace "$doc/share/applications/hqplayer4desktop-manual.desktop" \ 91 - --replace /usr/share/doc/hqplayer4desktop "$doc/share/doc/${pname}" \ 100 + substituteInPlace "$doc/share/applications/hqplayer5desktop-manual.desktop" \ 101 + --replace /usr/share/doc/hqplayer5desktop "$doc/share/doc/hqplayer-desktop" \ 92 102 --replace evince "${evince}/bin/evince" 93 103 ''; 94 104 95 105 postFixup = '' 96 - patchelf --replace-needed libomp.so.5 libomp.so "$out/bin/.hqplayer4desktop-wrapped" 106 + patchelf --replace-needed libomp.so.5 libomp.so $out/bin/.hqplayer5*-wrapped 97 107 ''; 98 108 99 109 meta = with lib; { 100 - homepage = "https://www.signalyst.com/custom.html"; 110 + homepage = "https://www.signalyst.com"; 101 111 description = "High-end upsampling multichannel software HD-audio player"; 102 112 license = licenses.unfree; 103 113 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 104 - platforms = [ "x86_64-linux" ]; 114 + platforms = builtins.attrNames srcs; 105 115 maintainers = with maintainers; [ lovesegfault ]; 106 116 }; 107 117 }
+2 -1
pkgs/applications/blockchains/sparrow/fhsenv.nix
··· 3 3 }: 4 4 5 5 buildFHSEnv { 6 - name = "sparrow-desktop"; 6 + pname = "sparrow-desktop"; 7 + inherit (sparrow-unwrapped) version; 7 8 8 9 runScript = "${sparrow-unwrapped}/bin/sparrow-desktop"; 9 10
+4 -4
pkgs/applications/editors/vim/plugins/deprecated.json
··· 3 3 "date": "2022-07-27", 4 4 "new": "true-zen-nvim" 5 5 }, 6 - "compe-tmux": { 7 - "date": "2021-12-07", 8 - "new": "cmp-tmux" 9 - }, 10 6 "compe-conjure": { 11 7 "date": "2024-11-19", 12 8 "new": "cmp-conjure" ··· 18 14 "compe-tabnine": { 19 15 "date": "2024-11-19", 20 16 "new": "cmp-tabnine" 17 + }, 18 + "compe-tmux": { 19 + "date": "2021-12-07", 20 + "new": "cmp-tmux" 21 21 }, 22 22 "compe-zsh": { 23 23 "date": "2024-11-19",
+379 -379
pkgs/applications/editors/vim/plugins/generated.nix
··· 65 65 66 66 CopilotChat-nvim = buildVimPlugin { 67 67 pname = "CopilotChat.nvim"; 68 - version = "2024-11-19"; 68 + version = "2024-11-25"; 69 69 src = fetchFromGitHub { 70 70 owner = "CopilotC-Nvim"; 71 71 repo = "CopilotChat.nvim"; 72 - rev = "947ca3d906a98ffdf9928d2e2ef8c7d694d2116f"; 73 - sha256 = "0y8m0ih0p162w84fsj2i8pp0549glmhlkrjiv73i2n0rxgmizgxq"; 72 + rev = "49edd2e21dfdc0f1bf4ed872099674cb8fe30280"; 73 + sha256 = "0cjqnzjsk6mb66jc7wvli3xyg6yxdrag552b91d8b8fa013h4k6d"; 74 74 }; 75 75 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 76 76 }; ··· 185 185 186 186 LazyVim = buildVimPlugin { 187 187 pname = "LazyVim"; 188 - version = "2024-11-18"; 188 + version = "2024-11-26"; 189 189 src = fetchFromGitHub { 190 190 owner = "LazyVim"; 191 191 repo = "LazyVim"; 192 - rev = "0bb1da6d57a32495ed4159f8933d074674066d20"; 193 - sha256 = "18i4642ixyjvcwmnkdc8zqjl47qlpdk1m6dnfn92kfn45c2qxxy1"; 192 + rev = "9eccb5d2defef4c1fe63719528b20bb210e1ef0c"; 193 + sha256 = "1nd3cwpxpwa1g4179rmnj0fbfbjnqfk8jyr236824z2cc4kdr5vx"; 194 194 }; 195 195 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 196 196 }; ··· 341 341 342 342 SchemaStore-nvim = buildVimPlugin { 343 343 pname = "SchemaStore.nvim"; 344 - version = "2024-11-17"; 344 + version = "2024-11-24"; 345 345 src = fetchFromGitHub { 346 346 owner = "b0o"; 347 347 repo = "SchemaStore.nvim"; 348 - rev = "a7ad1f6205500d1369382e2e43df4e60eeae7cb6"; 349 - sha256 = "1gc4cwwgf8qzkmk14l6xkapz7rncbsnpxaf36ry7ww9h4zxnf0xl"; 348 + rev = "bbd005a56daab7a19ceea22360a836957ac2c42c"; 349 + sha256 = "0jixj9m0k0cwqv0lr3h4jq36ryzjkpm4418jj3qdva8d87l5lp06"; 350 350 }; 351 351 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 352 352 }; ··· 643 643 644 644 ale = buildVimPlugin { 645 645 pname = "ale"; 646 - version = "2024-11-19"; 646 + version = "2024-11-23"; 647 647 src = fetchFromGitHub { 648 648 owner = "dense-analysis"; 649 649 repo = "ale"; 650 - rev = "1e1604be56f8545099c2d667085a7080f21d4cb3"; 651 - sha256 = "17rsvj6ls1pfckd1j88gmzd5yhjig62ggca31vcfl87r3s8qfv71"; 650 + rev = "9d30fb2f59132c58808e2db2099cab5dbf9b2894"; 651 + sha256 = "0dgbrdk9r0ymwbqq3xiv4xwv881vhmj9fm7p069k9w1qj5w46zyz"; 652 652 }; 653 653 meta.homepage = "https://github.com/dense-analysis/ale/"; 654 654 }; ··· 1039 1039 1040 1040 avante-nvim = buildVimPlugin { 1041 1041 pname = "avante.nvim"; 1042 - version = "2024-11-18"; 1042 + version = "2024-11-25"; 1043 1043 src = fetchFromGitHub { 1044 1044 owner = "yetone"; 1045 1045 repo = "avante.nvim"; 1046 - rev = "3c010e38ac6a40d8dbcd91399d316b9da5f53c52"; 1047 - sha256 = "1ia3wa1wnv08m6vfwbgiwrgspb75vzqg4v7a1mlkam4yfmivsili"; 1046 + rev = "16c4254b14ebe8acb79f6abecb49ca36b9d96cb0"; 1047 + sha256 = "107iykwf40byw4f0ry0rfs8yvjl1caswg0f1dpgqa7k7wxs97ggs"; 1048 1048 }; 1049 1049 meta.homepage = "https://github.com/yetone/avante.nvim/"; 1050 1050 }; ··· 1112 1112 1113 1113 bamboo-nvim = buildVimPlugin { 1114 1114 pname = "bamboo.nvim"; 1115 - version = "2024-11-03"; 1115 + version = "2024-11-26"; 1116 1116 src = fetchFromGitHub { 1117 1117 owner = "ribru17"; 1118 1118 repo = "bamboo.nvim"; 1119 - rev = "57e1bff1c0df29d7ec0071baf49210c48fc4a98b"; 1120 - sha256 = "0vx1i17w9gkfsjy9svpvpv5xmaqsr6z4gr01fd6221j9kmm6n50y"; 1119 + rev = "d38c50257d9fb16b17050569b29d777b1f2503ee"; 1120 + sha256 = "0l1vkksd7cxav6nq37paw3f4kcx9dj54rihb1js96s5p124q8vs9"; 1121 1121 }; 1122 1122 meta.homepage = "https://github.com/ribru17/bamboo.nvim/"; 1123 1123 }; 1124 1124 1125 1125 barbar-nvim = buildVimPlugin { 1126 1126 pname = "barbar.nvim"; 1127 - version = "2024-11-12"; 1127 + version = "2024-11-26"; 1128 1128 src = fetchFromGitHub { 1129 1129 owner = "romgrk"; 1130 1130 repo = "barbar.nvim"; 1131 - rev = "20f26c940991c528c5e3c6d0d82a6dc1a82b9d4c"; 1132 - sha256 = "0fx2yyg5wwi9j7j3mirfmq1pfy22py9irc1r24ri4jp71p4yfaa3"; 1131 + rev = "5c0abe2331837dcd3830f7429ddb9b8340c9fa93"; 1132 + sha256 = "1famzg92g7h6ffd586017gm08zzm7zj7n5br96nmprlp513w5rc9"; 1133 1133 }; 1134 1134 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1135 1135 }; ··· 1172 1172 1173 1173 base46 = buildVimPlugin { 1174 1174 pname = "base46"; 1175 - version = "2024-11-18"; 1175 + version = "2024-11-22"; 1176 1176 src = fetchFromGitHub { 1177 1177 owner = "nvchad"; 1178 1178 repo = "base46"; 1179 - rev = "8971be55aeb6d5fe086169c0ee9ce647a3871570"; 1180 - sha256 = "1j4inqzhj2hpy26nbjxx6zr7shf3dbmq1fwsdjkv33l4rkc1wv0i"; 1179 + rev = "40943fc668bf8f1caa4cc45f71c784cf0d3cc34f"; 1180 + sha256 = "0rh70zl2dab7rvv5vd86kyn5fkacam8a2nkpmdxwywfzyhmxcy9f"; 1181 1181 }; 1182 1182 meta.homepage = "https://github.com/nvchad/base46/"; 1183 1183 }; ··· 1280 1280 1281 1281 bluloco-nvim = buildVimPlugin { 1282 1282 pname = "bluloco.nvim"; 1283 - version = "2024-07-18"; 1283 + version = "2024-11-25"; 1284 1284 src = fetchFromGitHub { 1285 1285 owner = "uloco"; 1286 1286 repo = "bluloco.nvim"; 1287 - rev = "07f4b5cca8cfe31aad69ab5c1be0f6a0715a8d2e"; 1288 - sha256 = "1z998g3b2gffbq1ykialcfc7w9giyljdnsxrm4ylifr0b0312sfg"; 1287 + rev = "9ac4ad3a7b702035ff70b1f1d70de548130bb787"; 1288 + sha256 = "1cnp8540iyva7inmicysl2cnz0cisipqd02s2xzs22c45pj82gyy"; 1289 1289 }; 1290 1290 meta.homepage = "https://github.com/uloco/bluloco.nvim/"; 1291 1291 }; ··· 1436 1436 1437 1437 catppuccin-nvim = buildVimPlugin { 1438 1438 pname = "catppuccin-nvim"; 1439 - version = "2024-11-09"; 1439 + version = "2024-11-24"; 1440 1440 src = fetchFromGitHub { 1441 1441 owner = "catppuccin"; 1442 1442 repo = "nvim"; 1443 - rev = "637d99e638bc6f1efedac582f6ccab08badac0c6"; 1444 - sha256 = "1vi5wwndcf3gd9sqzbmb2kwy37r4vzx5g2ihh4rc31nkx0yxxjcn"; 1443 + rev = "faf15ab0201b564b6368ffa47b56feefc92ce3f4"; 1444 + sha256 = "0b5bygd3zx1pazq6mxq2kg5xrp9azbx16ky9n3riz4wq17kk121s"; 1445 1445 }; 1446 1446 meta.homepage = "https://github.com/catppuccin/nvim/"; 1447 1447 }; ··· 1688 1688 1689 1689 cmp-ai = buildVimPlugin { 1690 1690 pname = "cmp-ai"; 1691 - version = "2024-09-19"; 1691 + version = "2024-11-25"; 1692 1692 src = fetchFromGitHub { 1693 1693 owner = "tzachar"; 1694 1694 repo = "cmp-ai"; 1695 - rev = "4424e71bde8acc522ab68a122fa54b14dff3d408"; 1696 - sha256 = "0zljcdghyqwhkalir0fcy2q1zp3866qr9j2z9cj8v8z1b54rlax3"; 1695 + rev = "197257741e8637783c8d701f1095e7b6cb41720e"; 1696 + sha256 = "14j694540bzbb500lgh6vsc7c58dpa8wk15fmvvbfnf21bdn4qmd"; 1697 1697 }; 1698 1698 meta.homepage = "https://github.com/tzachar/cmp-ai/"; 1699 1699 }; ··· 2371 2371 2372 2372 coc-nvim = buildVimPlugin { 2373 2373 pname = "coc.nvim"; 2374 - version = "2024-10-12"; 2374 + version = "2024-11-25"; 2375 2375 src = fetchFromGitHub { 2376 2376 owner = "neoclide"; 2377 2377 repo = "coc.nvim"; 2378 - rev = "57d488a06bdb34de89acef3c2f3e9ce609d632ed"; 2379 - sha256 = "106w4kgrqlgnszpkzlxrlzsvca880qagv07h93dxsl2ggbdkm91l"; 2378 + rev = "ebe7a08ece39a7ea867cb43497ce83ad722b6f07"; 2379 + sha256 = "1axpvvrnyxg671nirp9q08qd3qpc4p188fjvysq43lr9blzjpb5j"; 2380 2380 }; 2381 2381 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2382 2382 }; ··· 2419 2419 2420 2420 codecompanion-nvim = buildVimPlugin { 2421 2421 pname = "codecompanion.nvim"; 2422 - version = "2024-11-24"; 2422 + version = "2024-11-26"; 2423 2423 src = fetchFromGitHub { 2424 2424 owner = "olimorris"; 2425 2425 repo = "codecompanion.nvim"; 2426 - rev = "926027bec8d7251730fe696794ced003152033fc"; 2427 - sha256 = "03yn42x9k856hr22j0lnyi9fy6ij4kvh3w44jf4ih181w8pa07j7"; 2426 + rev = "d3a9e7fddb90cfb5a147e458d12727ddf8187168"; 2427 + sha256 = "1v6i055scwc88qavybf5wqzknd9s2x4aqw08lmdi1pv2b97xpf4a"; 2428 2428 }; 2429 2429 meta.homepage = "https://github.com/olimorris/codecompanion.nvim/"; 2430 2430 }; ··· 2443 2443 2444 2444 codeium-vim = buildVimPlugin { 2445 2445 pname = "codeium.vim"; 2446 - version = "2024-10-14"; 2446 + version = "2024-11-19"; 2447 2447 src = fetchFromGitHub { 2448 2448 owner = "Exafunction"; 2449 2449 repo = "codeium.vim"; 2450 - rev = "8c01979323b2b480c8bf160d3ff85bd1668baa49"; 2451 - sha256 = "0hkmgfph4r2ayw5ch7yhiqffqccglksckgl5nb0dzsbpzvqk6g81"; 2450 + rev = "605ab06780c9c42a63fc8afa8c0bd02b3b51b66f"; 2451 + sha256 = "07rcn46grv4y7zlgl8dd5c5vrvryzyndknlngnp4jlpxl6kcwk8b"; 2452 2452 }; 2453 2453 meta.homepage = "https://github.com/Exafunction/codeium.vim/"; 2454 2454 }; ··· 2683 2683 2684 2684 conform-nvim = buildVimPlugin { 2685 2685 pname = "conform.nvim"; 2686 - version = "2024-11-13"; 2686 + version = "2024-11-24"; 2687 2687 src = fetchFromGitHub { 2688 2688 owner = "stevearc"; 2689 2689 repo = "conform.nvim"; 2690 - rev = "023f795dbcf32d4351b6a9ed2e613d471b5bb812"; 2691 - sha256 = "1my0wda7786yf634pz0m84lii71dk9442l4jlzhjimlxai517rs5"; 2690 + rev = "a203480a350b03092e473bf3001733d547160a73"; 2691 + sha256 = "1bxaidj11lfd26w0ijczch7797q31vk42bw6j615msxhfmns2qhs"; 2692 2692 fetchSubmodules = true; 2693 2693 }; 2694 2694 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 2696 2696 2697 2697 conjure = buildVimPlugin { 2698 2698 pname = "conjure"; 2699 - version = "2024-11-18"; 2699 + version = "2024-11-22"; 2700 2700 src = fetchFromGitHub { 2701 2701 owner = "Olical"; 2702 2702 repo = "conjure"; 2703 - rev = "bb42e182ba13980bc496c049476ae82a2b2e756d"; 2704 - sha256 = "15vsfd4b4jnss8fiisw31raypjx6w5z76qrna0z14jki2a71kiq0"; 2703 + rev = "9197941c0ef05bd594bf8fbcc907129361ed456f"; 2704 + sha256 = "15f11k4icshfdid1fka7qrhavr5jghygqmwl6c9iakv1kabf102j"; 2705 2705 }; 2706 2706 meta.homepage = "https://github.com/Olical/conjure/"; 2707 2707 }; ··· 2792 2792 2793 2793 coq-thirdparty = buildVimPlugin { 2794 2794 pname = "coq.thirdparty"; 2795 - version = "2024-08-26"; 2795 + version = "2024-11-20"; 2796 2796 src = fetchFromGitHub { 2797 2797 owner = "ms-jpq"; 2798 2798 repo = "coq.thirdparty"; 2799 - rev = "a827c2ab76d7c803976765cac597c79a2a5b34f6"; 2800 - sha256 = "0f9r16kkqhm6pr78v0iq87g1jqkn2acz5ll90xjdi1qg6h16dmc8"; 2799 + rev = "25b860f8631b1d659f5fecef8ee382dce1aa957e"; 2800 + sha256 = "1gand9mq66ym7igjnmp92x9hvd55ziwyyn2x5ldxsb7nhpjpbw4d"; 2801 2801 }; 2802 2802 meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 2803 2803 }; ··· 2816 2816 2817 2817 coq_nvim = buildVimPlugin { 2818 2818 pname = "coq_nvim"; 2819 - version = "2024-11-18"; 2819 + version = "2024-11-19"; 2820 2820 src = fetchFromGitHub { 2821 2821 owner = "ms-jpq"; 2822 2822 repo = "coq_nvim"; 2823 - rev = "4c2482909ca60d68084462c93f99f4b1849a9417"; 2824 - sha256 = "1cya4789z72yrsmaw7irgj23w1y2zd3dq764s0d0jrsks01q2sl7"; 2823 + rev = "eb81b7ad6b1863d1eacfca380716980ee78b624a"; 2824 + sha256 = "0gb5i3wwk3n845s4l4kh32g1ifbb2357wq020rzm2mb8fgwj8zgv"; 2825 2825 }; 2826 2826 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2827 2827 }; ··· 2830 2830 pname = "cornelis"; 2831 2831 version = "2024-10-24"; 2832 2832 src = fetchFromGitHub { 2833 - owner = "isovector"; 2833 + owner = "agda"; 2834 2834 repo = "cornelis"; 2835 2835 rev = "41b7d5ef1d1248f6a00fbd5ab798bf42ef189af0"; 2836 2836 sha256 = "12grb37w3h0rcfw9gy9b8n7cdrvi7ckv229siys7bvh6rg1k5ypg"; 2837 2837 }; 2838 - meta.homepage = "https://github.com/isovector/cornelis/"; 2838 + meta.homepage = "https://github.com/agda/cornelis/"; 2839 2839 }; 2840 2840 2841 2841 cosco-vim = buildVimPlugin { ··· 2960 2960 2961 2961 cyberdream-nvim = buildVimPlugin { 2962 2962 pname = "cyberdream.nvim"; 2963 - version = "2024-11-08"; 2963 + version = "2024-11-25"; 2964 2964 src = fetchFromGitHub { 2965 2965 owner = "scottmckendry"; 2966 2966 repo = "cyberdream.nvim"; 2967 - rev = "dd6b502050413be60c7375563142e37c3d8e71f2"; 2968 - sha256 = "0rx0yqw3fhwy72lcibnvlzk7awrvs3jfg197klrqd961k9kzc6cm"; 2967 + rev = "731290012f435e06e4d5d64ed7c09cec49df2663"; 2968 + sha256 = "0m0ws996g9vq1p5spzd4yjhs23k5gf5s6d3hyadx7n3cbnrn7zzc"; 2969 2969 }; 2970 2970 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 2971 2971 }; ··· 3044 3044 3045 3045 ddc-source-lsp = buildVimPlugin { 3046 3046 pname = "ddc-source-lsp"; 3047 - version = "2024-10-28"; 3047 + version = "2024-11-22"; 3048 3048 src = fetchFromGitHub { 3049 3049 owner = "Shougo"; 3050 3050 repo = "ddc-source-lsp"; 3051 - rev = "e11540a9c4b88adc4a9c003d93df07267e13839d"; 3052 - sha256 = "0jap9sqv8mn1m6ip6bw4fh09kswqd5f5l5kr344fgxr3ppm9p7sf"; 3051 + rev = "873230b0a6448f3c5e9cdba95567ddf6896848ed"; 3052 + sha256 = "044z250prxr52lyc7sbhzkz2h2ydqlbfy3w1n5sslyjjg70148wm"; 3053 3053 }; 3054 3054 meta.homepage = "https://github.com/Shougo/ddc-source-lsp/"; 3055 3055 }; ··· 3080 3080 3081 3081 ddc-vim = buildVimPlugin { 3082 3082 pname = "ddc.vim"; 3083 - version = "2024-11-14"; 3083 + version = "2024-11-25"; 3084 3084 src = fetchFromGitHub { 3085 3085 owner = "Shougo"; 3086 3086 repo = "ddc.vim"; 3087 - rev = "26bf496755f28dff6085c4050fd383fa3daacfd9"; 3088 - sha256 = "0nqc9cbdqbgbhvs21zvdq8nscxjxbr8gbyvnsy4cn4g22vnrv1dv"; 3087 + rev = "ec2a8963b3710aaaebc07a513e79eaa9cbb52be6"; 3088 + sha256 = "0kpdvnwx1gnrazgcbdswlacw82iqawggc70ab768rrdcd9krdjl6"; 3089 3089 }; 3090 3090 meta.homepage = "https://github.com/Shougo/ddc.vim/"; 3091 3091 }; 3092 3092 3093 3093 debugprint-nvim = buildVimPlugin { 3094 3094 pname = "debugprint.nvim"; 3095 - version = "2024-11-08"; 3095 + version = "2024-11-25"; 3096 3096 src = fetchFromGitHub { 3097 3097 owner = "andrewferrier"; 3098 3098 repo = "debugprint.nvim"; 3099 - rev = "7b7a02c76d372818ed21f9d0755e342a25a64d31"; 3100 - sha256 = "083kx5d3md9cbcmym5ikfabnmjwvh4g9gs242dz03cr0ni2s9dka"; 3099 + rev = "e4e289a12244f1f0fc13a640681dfba995671c42"; 3100 + sha256 = "0gdqpy662v4zixm4isgf4bpnm5yzq727g9xr80jchnilnzsamfwq"; 3101 3101 }; 3102 3102 meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; 3103 3103 }; ··· 3212 3212 3213 3213 deol-nvim = buildVimPlugin { 3214 3214 pname = "deol.nvim"; 3215 - version = "2024-11-03"; 3215 + version = "2024-11-25"; 3216 3216 src = fetchFromGitHub { 3217 3217 owner = "Shougo"; 3218 3218 repo = "deol.nvim"; 3219 - rev = "f4f0484cc84d11e12fa88bcc7c9f448755dbb5a6"; 3220 - sha256 = "0f9xiy8wa59mxfbq8bb5dc6sz97hdpj724ckr5k3b2g53zhvvf46"; 3219 + rev = "6d44c44332397ea5ee14ba638bbcaf83db0e9ac7"; 3220 + sha256 = "1bq389g277whb7jbq3vqr2fv7r0xnaza4i1gfvp6ixmf3vfj183v"; 3221 3221 }; 3222 3222 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 3223 3223 }; ··· 3502 3502 3503 3503 dial-nvim = buildVimPlugin { 3504 3504 pname = "dial.nvim"; 3505 - version = "2024-07-15"; 3505 + version = "2024-11-19"; 3506 3506 src = fetchFromGitHub { 3507 3507 owner = "monaqa"; 3508 3508 repo = "dial.nvim"; 3509 - rev = "ed4d6a5bbd5e479b4c4a3019d148561a2e6c1490"; 3510 - sha256 = "15qh38igdi46id6y94w2ymx91n4gmfl1xv6i4am27g65l95fcfmm"; 3509 + rev = "46b4375e84e8eb771129bff6b2b1e47746601ef9"; 3510 + sha256 = "15inpff9h1zhnrwla9v6vqj8mw7iybm9bjsk7w130xv8ghnhmq31"; 3511 3511 }; 3512 3512 meta.homepage = "https://github.com/monaqa/dial.nvim/"; 3513 3513 }; ··· 3658 3658 3659 3659 edge = buildVimPlugin { 3660 3660 pname = "edge"; 3661 - version = "2024-09-30"; 3661 + version = "2024-11-25"; 3662 3662 src = fetchFromGitHub { 3663 3663 owner = "sainnhe"; 3664 3664 repo = "edge"; 3665 - rev = "2a9c299416c5bdf0506baefcd4635f85f5718c10"; 3666 - sha256 = "1a5bkc7vq0g23v5pfpszng791b7l5nbz2c5am399m0qw36rx6wjq"; 3665 + rev = "5b5a0683be0d9d8023a874ebf7e230095f4e1bae"; 3666 + sha256 = "074s903avxqn6hl8wch0f1m34jxrdwpnymll4h1zczdaick5x5l9"; 3667 3667 }; 3668 3668 meta.homepage = "https://github.com/sainnhe/edge/"; 3669 3669 }; ··· 3719 3719 3720 3720 efmls-configs-nvim = buildVimPlugin { 3721 3721 pname = "efmls-configs-nvim"; 3722 - version = "2024-10-15"; 3722 + version = "2024-11-24"; 3723 3723 src = fetchFromGitHub { 3724 3724 owner = "creativenull"; 3725 3725 repo = "efmls-configs-nvim"; 3726 - rev = "e44e39c962dc1629a341fc71cfc8feaa09cefa6f"; 3727 - sha256 = "1ca5wrkkdf1p0lzj6h34mxvk55gy416zy153ksk6rlcf2ci5hg69"; 3726 + rev = "96371caa55b50a7ba4881604f12e8cefedc7b67b"; 3727 + sha256 = "145jbv2jw2iw8xhpk53cbh9nay10hw65klfhn5shncijns751nwl"; 3728 3728 }; 3729 3729 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 3730 3730 }; ··· 3828 3828 3829 3829 everforest = buildVimPlugin { 3830 3830 pname = "everforest"; 3831 - version = "2024-10-31"; 3831 + version = "2024-11-25"; 3832 3832 src = fetchFromGitHub { 3833 3833 owner = "sainnhe"; 3834 3834 repo = "everforest"; 3835 - rev = "0f6a0abebc98729ea0b45927151d47e2d4ce517c"; 3836 - sha256 = "00kjk7z87lxxfzlisrdx3g1glxlyzl7sgglsqnjw0771nrzz3qkc"; 3835 + rev = "44c2659ffb6d26a994346974b4d12e988f43e5e5"; 3836 + sha256 = "00rixmj4vrxv3n8b1bq6ihjcx4rkqd6whw0lp1zj32b35qk1v5bq"; 3837 3837 }; 3838 3838 meta.homepage = "https://github.com/sainnhe/everforest/"; 3839 3839 }; ··· 3888 3888 3889 3889 fastaction-nvim = buildVimPlugin { 3890 3890 pname = "fastaction.nvim"; 3891 - version = "2024-11-07"; 3891 + version = "2024-11-20"; 3892 3892 src = fetchFromGitHub { 3893 3893 owner = "Chaitanyabsprip"; 3894 3894 repo = "fastaction.nvim"; 3895 - rev = "a55feac91f39b83aa21b9ef3df1e465d9122753c"; 3896 - sha256 = "1h67x0408x10sjb4ir7sir7sh3kk5vglyc17cjzkg5znd30wmlm0"; 3895 + rev = "24255a74e0d35f1e1807aa78997f5c31ae419dbc"; 3896 + sha256 = "0w3fxz4af0wryr7sx7w3b14iswm56rsf76c31f9vrw4pg3nmgqa3"; 3897 3897 }; 3898 3898 meta.homepage = "https://github.com/Chaitanyabsprip/fastaction.nvim/"; 3899 3899 }; ··· 4129 4129 4130 4130 flutter-tools-nvim = buildVimPlugin { 4131 4131 pname = "flutter-tools.nvim"; 4132 - version = "2024-11-15"; 4132 + version = "2024-11-24"; 4133 4133 src = fetchFromGitHub { 4134 4134 owner = "nvim-flutter"; 4135 4135 repo = "flutter-tools.nvim"; 4136 - rev = "fb976f0e83296d011be95701085ff4711a89de94"; 4137 - sha256 = "0lwcf6niagz28lvq6sy693pnk5ar82m5nlm9rvskpqwys6yd41vc"; 4136 + rev = "1787090d66482552505a6498e3d2f06fb4290f96"; 4137 + sha256 = "1ggw82vqn51fpv3w1yhpgay358p82wzks68gy6wwavdalhyc27gg"; 4138 4138 }; 4139 4139 meta.homepage = "https://github.com/nvim-flutter/flutter-tools.nvim/"; 4140 4140 }; ··· 4322 4322 4323 4323 fzf-lua = buildNeovimPlugin { 4324 4324 pname = "fzf-lua"; 4325 - version = "2024-11-19"; 4325 + version = "2024-11-24"; 4326 4326 src = fetchFromGitHub { 4327 4327 owner = "ibhagwan"; 4328 4328 repo = "fzf-lua"; 4329 - rev = "def1d778de3ca4f3933a292fd56ec3cfea1325e8"; 4330 - sha256 = "1zbjm8xhl8l68733nfj4d9ncr06j8r81sq8w2rrynqnvgmzs9cyj"; 4329 + rev = "ce978474e406f4faacd2e66ec35d93b9e8ae069e"; 4330 + sha256 = "078i9f5n2iphghjxrz42gra5hnfcwqhprp5wj9rwlsq4ws6ks4d6"; 4331 4331 }; 4332 4332 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 4333 4333 }; ··· 4502 4502 4503 4503 gitlab-vim = buildVimPlugin { 4504 4504 pname = "gitlab.vim"; 4505 - version = "2024-11-22"; 4505 + version = "2024-11-26"; 4506 4506 src = fetchgit { 4507 4507 url = "https://gitlab.com/gitlab-org/editor-extensions/gitlab.vim"; 4508 - rev = "5e129155341ccb94d4a93b336e6d936f11edb77d"; 4509 - sha256 = "0nhhlcw716qhzhvqzc784xq2c104ahrzwhhzmasadk9c269s9vfd"; 4508 + rev = "ee25b3d5a854ba2d0fe14fae68ee389964c40390"; 4509 + sha256 = "0jvjwgrl88lvikp8hxcg2fkxbgw0gfqpyf6zy298xiijsril8qa7"; 4510 4510 }; 4511 4511 meta.homepage = "https://gitlab.com/gitlab-org/editor-extensions/gitlab.vim"; 4512 4512 }; ··· 4525 4525 4526 4526 gitsigns-nvim = buildNeovimPlugin { 4527 4527 pname = "gitsigns.nvim"; 4528 - version = "2024-11-14"; 4528 + version = "2024-11-23"; 4529 4529 src = fetchFromGitHub { 4530 4530 owner = "lewis6991"; 4531 4531 repo = "gitsigns.nvim"; 4532 - rev = "ac5aba6dce8c06ea22bea2c9016f51a2dbf90dc7"; 4533 - sha256 = "1jhzhgmn3gf59l45bbzr312y56dxiq8qw001kjz6vhqmkfba5xgj"; 4532 + rev = "5f808b5e4fef30bd8aca1b803b4e555da07fc412"; 4533 + sha256 = "1dxsyv26mm7lzll3xlkzjj6w7kp11wfak8rgp19fg2d8301kxc0z"; 4534 4534 }; 4535 4535 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 4536 4536 }; ··· 4549 4549 4550 4550 glance-nvim = buildVimPlugin { 4551 4551 pname = "glance.nvim"; 4552 - version = "2024-09-13"; 4552 + version = "2024-11-25"; 4553 4553 src = fetchFromGitHub { 4554 4554 owner = "DNLHC"; 4555 4555 repo = "glance.nvim"; 4556 - rev = "cdf1ec8136cfbdf73edbe1163097223c763a84b7"; 4557 - sha256 = "0x2aiiy5h3wbg42gw6ahn1070ci6hzi6dv9g2ldk8h7xgbk1dc42"; 4556 + rev = "17ee84e29ac33e7e5d91609f675cee8477586bda"; 4557 + sha256 = "1dl4xall1p0fg1dwb7993fc5xcbd24582ag3lh8g5ng6fhwrx7v8"; 4558 4558 }; 4559 4559 meta.homepage = "https://github.com/DNLHC/glance.nvim/"; 4560 4560 }; ··· 4789 4789 4790 4790 gruvbox-nvim = buildVimPlugin { 4791 4791 pname = "gruvbox.nvim"; 4792 - version = "2024-10-01"; 4792 + version = "2024-11-24"; 4793 4793 src = fetchFromGitHub { 4794 4794 owner = "ellisonleao"; 4795 4795 repo = "gruvbox.nvim"; 4796 - rev = "49d9c0b150ba70efcd831ec7b3cb8ee740067045"; 4797 - sha256 = "0vjwqyw4y6hf6qyjpap04f6z6lbgha98hizils77rg3msaw1jj7y"; 4796 + rev = "68c3460a5d1d1a362318960035c9f3466d5011f5"; 4797 + sha256 = "0yc0hv9d4888lfvhd68gdwvfhfgafyqn9ljca4b5a0pgb61hiax9"; 4798 4798 }; 4799 4799 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 4800 4800 }; ··· 4813 4813 4814 4814 guard-nvim = buildVimPlugin { 4815 4815 pname = "guard.nvim"; 4816 - version = "2024-11-04"; 4816 + version = "2024-11-21"; 4817 4817 src = fetchFromGitHub { 4818 4818 owner = "nvimdev"; 4819 4819 repo = "guard.nvim"; 4820 - rev = "1f5afa0b7ca93e05e5c80371dd5fd74ee2545097"; 4821 - sha256 = "17d48dibqsf5walfkrvn0pd43gg57qilc7qkp4pjz8fazb0j3mh8"; 4820 + rev = "e1034f65e15e132a90a2f409d8fcd12a5b8833f5"; 4821 + sha256 = "13dqr4g4wlis2qypca1y4wmy635vxh2943j7yfx9y3996qp6wkxi"; 4822 4822 }; 4823 4823 meta.homepage = "https://github.com/nvimdev/guard.nvim/"; 4824 4824 }; ··· 5041 5041 5042 5042 highlight-undo-nvim = buildVimPlugin { 5043 5043 pname = "highlight-undo.nvim"; 5044 - version = "2024-11-12"; 5044 + version = "2024-11-23"; 5045 5045 src = fetchFromGitHub { 5046 5046 owner = "tzachar"; 5047 5047 repo = "highlight-undo.nvim"; 5048 - rev = "ef7a66df6833df1ea25bce257b0d92f87ed6037b"; 5049 - sha256 = "1rq9bqd2a1s8nqdgf9q1y2av1qcaw0s2g76lw1225ib61818z1k6"; 5048 + rev = "5f588b420179a31d7073854bfd07ed9d5f364645"; 5049 + sha256 = "1ykk9kj74kpnqq003fkhj75d9k68k8fgdv3kr0hbcvggxlr6nhkg"; 5050 5050 }; 5051 5051 meta.homepage = "https://github.com/tzachar/highlight-undo.nvim/"; 5052 5052 }; ··· 5245 5245 5246 5246 image-nvim = buildNeovimPlugin { 5247 5247 pname = "image.nvim"; 5248 - version = "2024-11-10"; 5248 + version = "2024-11-20"; 5249 5249 src = fetchFromGitHub { 5250 5250 owner = "3rd"; 5251 5251 repo = "image.nvim"; 5252 - rev = "7f61c1940a8b072ca47a28928d2375dc1e11f464"; 5253 - sha256 = "0fqnz4wpw7ab1j0y4zqafazjg6q0rc66n71awx4wbxilikca80ml"; 5252 + rev = "5f8fceca2d1be96a45b81de21c2f98bf6084fb34"; 5253 + sha256 = "0mzkrgm1k60f8m4r7xhwc9pprsjk78y5nzjm6v3xn3mzfn4f6gq3"; 5254 5254 }; 5255 5255 meta.homepage = "https://github.com/3rd/image.nvim/"; 5256 5256 }; ··· 5293 5293 5294 5294 inc-rename-nvim = buildVimPlugin { 5295 5295 pname = "inc-rename.nvim"; 5296 - version = "2024-07-03"; 5296 + version = "2024-11-25"; 5297 5297 src = fetchFromGitHub { 5298 5298 owner = "smjonas"; 5299 5299 repo = "inc-rename.nvim"; 5300 - rev = "8ba77017ca468f3029bf88ef409c2d20476ea66b"; 5301 - sha256 = "01rapsr481ghxg4xr3qjnvrnnyk5hyh4bcv45a6vl9j2cnz83f59"; 5300 + rev = "b0d5b5bdd0a91eb47ff4a49b250bdc5a5eb45353"; 5301 + sha256 = "12zypdb7ybd9akhz94wscg8yhkk5vi77xybhm2k36n51krpll7ah"; 5302 5302 }; 5303 5303 meta.homepage = "https://github.com/smjonas/inc-rename.nvim/"; 5304 5304 }; ··· 5534 5534 5535 5535 jinja-vim = buildVimPlugin { 5536 5536 pname = "jinja.vim"; 5537 - version = "2024-11-17"; 5537 + version = "2024-11-19"; 5538 5538 src = fetchFromGitHub { 5539 5539 owner = "HiPhish"; 5540 5540 repo = "jinja.vim"; 5541 - rev = "c06165c2074790a220a20845b5246be61edd01b6"; 5542 - sha256 = "1ksnd0zhp7s4vrwxf05zaczccwc1b6pqd7754h51k8qb3nms91b5"; 5541 + rev = "70c2d09857bc2ff75a91b017271ffaa004201df9"; 5542 + sha256 = "1c4a8nbynpidzy0k4cn3zwg69hslz2p8f4wcb3s0qg31k10gnfn7"; 5543 5543 fetchSubmodules = true; 5544 5544 }; 5545 5545 meta.homepage = "https://github.com/HiPhish/jinja.vim/"; ··· 5547 5547 5548 5548 jq-vim = buildVimPlugin { 5549 5549 pname = "jq.vim"; 5550 - version = "2024-04-29"; 5550 + version = "2024-11-19"; 5551 5551 src = fetchFromGitHub { 5552 5552 owner = "vito-c"; 5553 5553 repo = "jq.vim"; 5554 - rev = "39df435b321e8e741ed150fbab4a27e63e0604d1"; 5555 - sha256 = "0f0xb2pgk7sd7kn0c4az8zwxmb8m61nrnb17wjf557yixavc6nh6"; 5554 + rev = "e5c2f21f28d7f343c4630c7af819afa7043e43ad"; 5555 + sha256 = "0zj8wz2bfr6xxw2mvzzl3w303mfwwhfk8bfridj73gqdaq75j5v7"; 5556 5556 }; 5557 5557 meta.homepage = "https://github.com/vito-c/jq.vim/"; 5558 5558 }; ··· 5692 5692 5693 5693 kulala-nvim = buildVimPlugin { 5694 5694 pname = "kulala.nvim"; 5695 - version = "2024-11-07"; 5695 + version = "2024-11-23"; 5696 5696 src = fetchFromGitHub { 5697 5697 owner = "mistweaverco"; 5698 5698 repo = "kulala.nvim"; 5699 - rev = "383defc97f5516621875213768bd2287c84ced2e"; 5700 - sha256 = "0631giv8xbgsb07v8rzxdvxyfcpcszp5myijp0abaj9w8js1gpjv"; 5699 + rev = "c7efcd01afafae0ab68c2a77cd050b9795edd8ad"; 5700 + sha256 = "0vmzn56jbxckyh791xcbmzsx2mkg7mb1sgwndpfq1pv8rszji2qc"; 5701 5701 }; 5702 5702 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; 5703 5703 }; ··· 5764 5764 5765 5765 lazy-nvim = buildVimPlugin { 5766 5766 pname = "lazy.nvim"; 5767 - version = "2024-11-11"; 5767 + version = "2024-11-20"; 5768 5768 src = fetchFromGitHub { 5769 5769 owner = "folke"; 5770 5770 repo = "lazy.nvim"; 5771 - rev = "7967abe55752aa90532e6bb4bd4663fe27a264cb"; 5772 - sha256 = "0s1cx99z9irgf7pxixgqi9z5k98lsx5in1i8i3wv71w3dnx7j6bz"; 5771 + rev = "56ead98e05bb37a4ec28930a54d836d033cf00f2"; 5772 + sha256 = "0fcb6zrxbrj0nnkbb7cilqsjr500rv43r5w9nbk9apvjcjx8rkg0"; 5773 5773 }; 5774 5774 meta.homepage = "https://github.com/folke/lazy.nvim/"; 5775 5775 }; 5776 5776 5777 5777 lazydev-nvim = buildVimPlugin { 5778 5778 pname = "lazydev.nvim"; 5779 - version = "2024-11-01"; 5779 + version = "2024-11-24"; 5780 5780 src = fetchFromGitHub { 5781 5781 owner = "folke"; 5782 5782 repo = "lazydev.nvim"; 5783 - rev = "d5800897d9180cea800023f2429bce0a94ed6064"; 5784 - sha256 = "0fddfdknmvac0b1dnqq90ip6cn57dy6qgpskmy44a2k803c9n1sy"; 5783 + rev = "f59bd14a852ca43db38e3662395354cb2a9b13e0"; 5784 + sha256 = "102sxfdq6ajvfs95r4084xvbcjv2qiv5cmyrqbwijmc05isg9d8j"; 5785 5785 }; 5786 5786 meta.homepage = "https://github.com/folke/lazydev.nvim/"; 5787 5787 }; ··· 5800 5800 5801 5801 lean-nvim = buildVimPlugin { 5802 5802 pname = "lean.nvim"; 5803 - version = "2024-11-19"; 5803 + version = "2024-11-25"; 5804 5804 src = fetchFromGitHub { 5805 5805 owner = "Julian"; 5806 5806 repo = "lean.nvim"; 5807 - rev = "3866a715a262f103232e9341bc6673e148aafa53"; 5808 - sha256 = "1wr58vpab9sa5kj5vhvq4z0ky17bc7paqhnyk4agg9lhzf8prz9f"; 5807 + rev = "166b941f72ce399df8063c113514e4ecbfb316e6"; 5808 + sha256 = "0xjjg7jg67xygvnyqwkc145rmhpd7g0iy3hv8xg9mq568am55ywd"; 5809 5809 }; 5810 5810 meta.homepage = "https://github.com/Julian/lean.nvim/"; 5811 5811 }; ··· 5860 5860 5861 5861 legendary-nvim = buildVimPlugin { 5862 5862 pname = "legendary.nvim"; 5863 - version = "2024-11-18"; 5863 + version = "2024-11-22"; 5864 5864 src = fetchFromGitHub { 5865 5865 owner = "mrjones2014"; 5866 5866 repo = "legendary.nvim"; 5867 - rev = "f375cf9726892514e20e1225e96a60c76f5a05a9"; 5868 - sha256 = "03i794nf92zb82m1j7qj4hvjwpg45s96wkic9mzzbn0xjyv09wv1"; 5867 + rev = "12b04a4c201b10ed71bb33356856b103bbcc7195"; 5868 + sha256 = "0z7qa2pvvq6n8rzx9pga2hpxas927yyjzaq4xd6gafbpc4574rl6"; 5869 5869 }; 5870 5870 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 5871 5871 }; ··· 6352 6352 6353 6353 luasnip-latex-snippets-nvim = buildVimPlugin { 6354 6354 pname = "luasnip-latex-snippets.nvim"; 6355 - version = "2024-09-16"; 6355 + version = "2024-11-25"; 6356 6356 src = fetchFromGitHub { 6357 6357 owner = "evesdropper"; 6358 6358 repo = "luasnip-latex-snippets.nvim"; 6359 - rev = "c6b5b5367dd4bb8419389f5acf528acf296adcdd"; 6360 - sha256 = "calv4nF1yxJyehQC+l0p4psI+f4Kg49K6XziCkH9I1Q="; 6359 + rev = "e72dc5fafb5ec826ab350871c9a0521ba8ecd6a5"; 6360 + sha256 = "1550swp7jabxx1asl1jb74965949wg2jvwdl3gq15kxvnbm037pn"; 6361 6361 }; 6362 6362 meta.homepage = "https://github.com/evesdropper/luasnip-latex-snippets.nvim/"; 6363 6363 }; ··· 6400 6400 6401 6401 luvit-meta = buildVimPlugin { 6402 6402 pname = "luvit-meta"; 6403 - version = "2024-01-20"; 6403 + version = "2024-11-19"; 6404 6404 src = fetchFromGitHub { 6405 6405 owner = "Bilal2453"; 6406 6406 repo = "luvit-meta"; 6407 - rev = "ce76f6f6cdc9201523a5875a4471dcfe0186eb60"; 6408 - sha256 = "0a0n67day3zpfxck7yiqb496bz79gwhcvdn60b0f4bp8bysjj06c"; 6407 + rev = "57d464c4acb5c2e66bd4145060f5dc9e96a7bbb7"; 6408 + sha256 = "02f9p7b7zc1rid7vfiidjscvr9prfz0s6shir8b6zk0ndk4hb83k"; 6409 6409 }; 6410 6410 meta.homepage = "https://github.com/Bilal2453/luvit-meta/"; 6411 6411 }; ··· 6484 6484 6485 6485 markview-nvim = buildVimPlugin { 6486 6486 pname = "markview.nvim"; 6487 - version = "2024-10-09"; 6487 + version = "2024-11-23"; 6488 6488 src = fetchFromGitHub { 6489 6489 owner = "OXY2DEV"; 6490 6490 repo = "markview.nvim"; 6491 - rev = "67b69cdaf9055bebac3682a070d7e5c8eecba29c"; 6492 - sha256 = "029ysnbnp5nl2jxgpg2q6zpm3ajk8yqxbnwqj42z3lcn3ylhcvsa"; 6491 + rev = "72cd34279e94ee96ee33bdf30a87b00e6d45319d"; 6492 + sha256 = "0j9bjv87rwzm6gslyn5109bi40ya7xrhzz8337wggx3zm79qpp95"; 6493 6493 fetchSubmodules = true; 6494 6494 }; 6495 6495 meta.homepage = "https://github.com/OXY2DEV/markview.nvim/"; ··· 6545 6545 6546 6546 material-nvim = buildVimPlugin { 6547 6547 pname = "material.nvim"; 6548 - version = "2024-10-31"; 6548 + version = "2024-11-20"; 6549 6549 src = fetchFromGitHub { 6550 6550 owner = "marko-cerovac"; 6551 6551 repo = "material.nvim"; 6552 - rev = "0bcabb582c31b750428af9dbb0d146c1c2d75d4c"; 6553 - sha256 = "0hnvw4knjgsf9q8ng0l66bgyrrjr71ba4nb6dk3bjgq7fv93ph1x"; 6552 + rev = "31429eef4b7233ebdae3ddb57b7165ee4f1bd653"; 6553 + sha256 = "06h9pprhb1x0w63b5cf2q894cggr97xyyqfpdxp2x78n9x4ma516"; 6554 6554 }; 6555 6555 meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; 6556 6556 }; ··· 6785 6785 6786 6786 mini-completion = buildVimPlugin { 6787 6787 pname = "mini.completion"; 6788 - version = "2024-11-08"; 6788 + version = "2024-11-22"; 6789 6789 src = fetchFromGitHub { 6790 6790 owner = "echasnovski"; 6791 6791 repo = "mini.completion"; 6792 - rev = "7f41cfa486a408c7bdadd4817c5a28888122d739"; 6793 - sha256 = "1bg6qd6ws92q7hn21pw10i8xipnak4awqy5zz6mkq3kqi2q2lyx8"; 6792 + rev = "6eb9546685c4e1c4af2365b87166d4afa39d8a1b"; 6793 + sha256 = "05hk62f74fv8axdygbdz478dfcbvm4c4j696i77xlpqhfmy04m3n"; 6794 6794 }; 6795 6795 meta.homepage = "https://github.com/echasnovski/mini.completion/"; 6796 6796 }; ··· 7001 7001 7002 7002 mini-notify = buildVimPlugin { 7003 7003 pname = "mini.notify"; 7004 - version = "2024-11-18"; 7004 + version = "2024-11-22"; 7005 7005 src = fetchFromGitHub { 7006 7006 owner = "echasnovski"; 7007 7007 repo = "mini.notify"; 7008 - rev = "74706dc1237a53efc5bd636909a1687f059d7e81"; 7009 - sha256 = "0282jfp7mzks7m53nisi1h5l06swbcv4dyx3wfn650cgif3p61yd"; 7008 + rev = "a933dc637b84314976d6482449f9f51ecd02d2b3"; 7009 + sha256 = "1kbgf7wznjrlnh4w7i5vwrrrhkk853hhc68k2z7y357j2n7m05h5"; 7010 7010 }; 7011 7011 meta.homepage = "https://github.com/echasnovski/mini.notify/"; 7012 7012 }; 7013 7013 7014 7014 mini-nvim = buildVimPlugin { 7015 7015 pname = "mini.nvim"; 7016 - version = "2024-11-18"; 7016 + version = "2024-11-26"; 7017 7017 src = fetchFromGitHub { 7018 7018 owner = "echasnovski"; 7019 7019 repo = "mini.nvim"; 7020 - rev = "6714e738555b1cfbef646a23af29aa113f91f4fe"; 7021 - sha256 = "0lm9n13a71jfxl9z94zzrj7vs0rs6xvqc5yfp490y6fcynvryrmw"; 7020 + rev = "c8922aef8207137e66c80acdb9523668599ba62a"; 7021 + sha256 = "0syc3gwnspbncx7lbg0zd5m9wdpd4cwsghzzlp5dqzjlzk0c6s6m"; 7022 7022 }; 7023 7023 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 7024 7024 }; ··· 7049 7049 7050 7050 mini-pick = buildVimPlugin { 7051 7051 pname = "mini.pick"; 7052 - version = "2024-11-10"; 7052 + version = "2024-11-26"; 7053 7053 src = fetchFromGitHub { 7054 7054 owner = "echasnovski"; 7055 7055 repo = "mini.pick"; 7056 - rev = "141496412ccd8a6d01bdafc126ea307687600cad"; 7057 - sha256 = "0ikvj43vlc840kc91mxgh9y1s21bxi4fs1rr8pqk9qvm137d0q21"; 7056 + rev = "75e9a0a7808aa772ca5e31d479ffd0280ab6bf74"; 7057 + sha256 = "1789gska07084rr2m7ila6vqyyx8fzlza48n29y7d4iz2l25ns3g"; 7058 7058 }; 7059 7059 meta.homepage = "https://github.com/echasnovski/mini.pick/"; 7060 7060 }; ··· 7229 7229 7230 7230 modus-themes-nvim = buildVimPlugin { 7231 7231 pname = "modus-themes.nvim"; 7232 - version = "2024-11-01"; 7232 + version = "2024-11-25"; 7233 7233 src = fetchFromGitHub { 7234 7234 owner = "miikanissi"; 7235 7235 repo = "modus-themes.nvim"; 7236 - rev = "ad9910a0e5055a00b1e14b507902b2a7a7fe449e"; 7237 - sha256 = "1mvygazsj0pvpxmcdqqp7r0khcxjqdyq124qk5r4dnlvdz8r445i"; 7236 + rev = "35980f19daef4745c96f1cb292d484fb1f33f822"; 7237 + sha256 = "1l04r63bs5l87wrcccknlczbdn21w532hqcq34kyzwprwnr3z46y"; 7238 7238 }; 7239 7239 meta.homepage = "https://github.com/miikanissi/modus-themes.nvim/"; 7240 7240 }; ··· 7265 7265 7266 7266 monokai-pro-nvim = buildVimPlugin { 7267 7267 pname = "monokai-pro.nvim"; 7268 - version = "2024-10-03"; 7268 + version = "2024-11-20"; 7269 7269 src = fetchFromGitHub { 7270 7270 owner = "loctvl842"; 7271 7271 repo = "monokai-pro.nvim"; 7272 - rev = "4f4133601296881bb2197800bd68d2bba9eaadb9"; 7273 - sha256 = "14vxyflbdi7v6f2a3jw83abi90fg5aqsm2g4hlh7wpqh7sjjginv"; 7272 + rev = "d79eef3cbbd2e8323e9c2131a912c0131b6dbc85"; 7273 + sha256 = "0xnw3xad51147q5qij3qvijrx6y2ayx83frfn95zsz32z9k2w3g2"; 7274 7274 }; 7275 7275 meta.homepage = "https://github.com/loctvl842/monokai-pro.nvim/"; 7276 7276 }; ··· 7577 7577 7578 7578 neo-tree-nvim = buildVimPlugin { 7579 7579 pname = "neo-tree.nvim"; 7580 - version = "2024-09-17"; 7580 + version = "2024-11-24"; 7581 7581 src = fetchFromGitHub { 7582 7582 owner = "nvim-neo-tree"; 7583 7583 repo = "neo-tree.nvim"; 7584 - rev = "a77af2e764c5ed4038d27d1c463fa49cd4794e07"; 7585 - sha256 = "02ag3h40p5ga12y1fwbcd06nnl3rb0l5hs064ylpkx2kjcl79arf"; 7584 + rev = "42caaf5c3b7ca346ab278201151bb878006a6031"; 7585 + sha256 = "0bw0ilqd6mvxn5fa1aak5dzk4259hzwxpypv808kfxjvj676h16z"; 7586 7586 }; 7587 7587 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 7588 7588 }; ··· 7601 7601 7602 7602 neoconf-nvim = buildVimPlugin { 7603 7603 pname = "neoconf.nvim"; 7604 - version = "2024-11-17"; 7604 + version = "2024-11-26"; 7605 7605 src = fetchFromGitHub { 7606 7606 owner = "folke"; 7607 7607 repo = "neoconf.nvim"; 7608 - rev = "03189359744e95f8cd150f75ef937b2b7d2ebc32"; 7609 - sha256 = "1symq67yhq0b79ln4dnpfla7si537yw0gz6058sfw18k4gla1y5p"; 7608 + rev = "201f49346bfbf9abe9bc9bc41be0623045deb1c7"; 7609 + sha256 = "0j4f6wkmrvwkvlmb6djz2nn6w207gynvjlv2f6x20xi27vvjmkv4"; 7610 7610 }; 7611 7611 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 7612 7612 }; ··· 7673 7673 7674 7674 neogit = buildVimPlugin { 7675 7675 pname = "neogit"; 7676 - version = "2024-11-14"; 7676 + version = "2024-11-24"; 7677 7677 src = fetchFromGitHub { 7678 7678 owner = "NeogitOrg"; 7679 7679 repo = "neogit"; 7680 - rev = "89d13fb9898619774d359a3900959181d60dd02f"; 7681 - sha256 = "1fxhy5iv8rr5nwp373591y5y9f96pccx5iphp11d284c331g14n6"; 7680 + rev = "26c5550016b20e4f47b376192f12a54be8897aaa"; 7681 + sha256 = "07ssj7vwbnsvgj0lgb9fgfmg5wb4mzn2zsnbbg24qmmvkhazrkk0"; 7682 7682 }; 7683 7683 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 7684 7684 }; ··· 7903 7903 7904 7904 neotest-golang = buildVimPlugin { 7905 7905 pname = "neotest-golang"; 7906 - version = "2024-11-03"; 7906 + version = "2024-11-21"; 7907 7907 src = fetchFromGitHub { 7908 7908 owner = "fredrikaverpil"; 7909 7909 repo = "neotest-golang"; 7910 - rev = "df6e3f34ae65f2520db798481a9d3f97581899b7"; 7911 - sha256 = "1mwk6fxvzddvxik7czj6p9zjinywlw0y69172nkfbyvqbf4hwszd"; 7910 + rev = "cdb0eb0edfedcdf145972fdbe19fb95d17d987c2"; 7911 + sha256 = "1pc4blxk6zikkcxjjpnvqf4vkrfqdpa63sxjdmh13k1kass8qdr9"; 7912 7912 }; 7913 7913 meta.homepage = "https://github.com/fredrikaverpil/neotest-golang/"; 7914 7914 }; ··· 7940 7940 7941 7941 neotest-haskell = buildVimPlugin { 7942 7942 pname = "neotest-haskell"; 7943 - version = "2024-11-17"; 7943 + version = "2024-11-24"; 7944 7944 src = fetchFromGitHub { 7945 7945 owner = "MrcJkb"; 7946 7946 repo = "neotest-haskell"; 7947 - rev = "e3d6f8583e74ecb7d49bd8003c5e950bccab0390"; 7948 - sha256 = "1hl9craww96c3a7mdk15xmmi0vvv511dgci16y4vl4y3c4z2y3wr"; 7947 + rev = "e93f3fa0b9655c523cbbba99278e0ac41027686d"; 7948 + sha256 = "0ami5zvk1a1pzs6amnpqfpf5j8ygpl3kajkv702gixap3j85isrk"; 7949 7949 }; 7950 7950 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 7951 7951 }; 7952 7952 7953 7953 neotest-java = buildVimPlugin { 7954 7954 pname = "neotest-java"; 7955 - version = "2024-10-27"; 7955 + version = "2024-11-19"; 7956 7956 src = fetchFromGitHub { 7957 7957 owner = "rcasia"; 7958 7958 repo = "neotest-java"; 7959 - rev = "e1371c1e9a09632bfaa7fbb5e8166e6f1d38201d"; 7960 - sha256 = "0bhwsr8a9g77r9cvi2g9hndzy4zwqj19dr21ylwdbvq765j9j7bj"; 7959 + rev = "43b4cf9ee0d3d05f56a9a43c89c4268157cfbc79"; 7960 + sha256 = "0653fx7bcr8mn38dfza4qywia1i862zc42frwf18s51zp5jjrfqy"; 7961 7961 }; 7962 7962 meta.homepage = "https://github.com/rcasia/neotest-java/"; 7963 7963 }; ··· 8252 8252 8253 8253 nfnl = buildVimPlugin { 8254 8254 pname = "nfnl"; 8255 - version = "2024-09-26"; 8255 + version = "2024-11-22"; 8256 8256 src = fetchFromGitHub { 8257 8257 owner = "Olical"; 8258 8258 repo = "nfnl"; 8259 - rev = "60b2ab7051cf2f631bc03274b56061136d1f9177"; 8260 - sha256 = "0wajfvl6n0y7wbp4ip45mhiq67ybqvk7w3jcpzabjy2cyxpfa96w"; 8259 + rev = "dc3d2772b60df2ce96816c5a3de84c116028cf31"; 8260 + sha256 = "10as8k6xlvzvl0h13skszra57yhh0a1rpczx8qvg91fh2zk91hm3"; 8261 8261 }; 8262 8262 meta.homepage = "https://github.com/Olical/nfnl/"; 8263 8263 }; ··· 8348 8348 8349 8349 nlsp-settings-nvim = buildVimPlugin { 8350 8350 pname = "nlsp-settings.nvim"; 8351 - version = "2024-11-16"; 8351 + version = "2024-11-25"; 8352 8352 src = fetchFromGitHub { 8353 8353 owner = "tamago324"; 8354 8354 repo = "nlsp-settings.nvim"; 8355 - rev = "002131b3f8ce8637e4f8c5a6bf4590cb6f305dd2"; 8356 - sha256 = "1pi854f6zhgg315l9vngqz4j648601jcsiz5vci2j0szjaz396p4"; 8355 + rev = "29f82b7270733214bae21edac41e210322a98ba8"; 8356 + sha256 = "13y5dbb6rvscy4adgjhxx8rf8miza95zyixcs9s6dnvsblyqpy00"; 8357 8357 }; 8358 8358 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 8359 8359 }; ··· 8408 8408 8409 8409 noice-nvim = buildVimPlugin { 8410 8410 pname = "noice.nvim"; 8411 - version = "2024-11-18"; 8411 + version = "2024-11-26"; 8412 8412 src = fetchFromGitHub { 8413 8413 owner = "folke"; 8414 8414 repo = "noice.nvim"; 8415 - rev = "203f74adaae11d47440a667555b4af9156be807b"; 8416 - sha256 = "1akmwhqp1r1qqn5h9ifm3wgmwlv0xbhfgwcrj6k2g991z6n1dha3"; 8415 + rev = "16ddc5650f14b3025b7ccabaf708e615042b8a84"; 8416 + sha256 = "036sd4drjz6a01wcjlai24zn6shvy8sxbkdbrd8w9bk6pr91pjjs"; 8417 8417 }; 8418 8418 meta.homepage = "https://github.com/folke/noice.nvim/"; 8419 8419 }; 8420 8420 8421 8421 none-ls-nvim = buildVimPlugin { 8422 8422 pname = "none-ls.nvim"; 8423 - version = "2024-11-17"; 8423 + version = "2024-11-19"; 8424 8424 src = fetchFromGitHub { 8425 8425 owner = "nvimtools"; 8426 8426 repo = "none-ls.nvim"; 8427 - rev = "b7cf202083b18bc9319e4c8ad5341a3d09241192"; 8428 - sha256 = "14jcfrqc0lg4qvyfm0rlg8hadlz2b9idgll7b13qy44hnwjqxjs7"; 8427 + rev = "1f2bf17eddfdd45aed254b6922c6c68b933dba9e"; 8428 + sha256 = "0c9p921v7pm2b8543kliwrds4d8cj2yda5jacs3l3yhji3898b09"; 8429 8429 }; 8430 8430 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 8431 8431 }; ··· 8540 8540 8541 8541 nvchad-ui = buildVimPlugin { 8542 8542 pname = "nvchad-ui"; 8543 - version = "2024-11-18"; 8543 + version = "2024-11-25"; 8544 8544 src = fetchFromGitHub { 8545 8545 owner = "nvchad"; 8546 8546 repo = "ui"; 8547 - rev = "9b31c25fc497d1ef726de15ae297769dbf90c1a5"; 8548 - sha256 = "1ffwsch18hcfsvnkhsiapizcz72qzm4c9lxk7ydyjjpmaaxrkrp6"; 8547 + rev = "7905539f1e10f460811dc0db800355611f8a527a"; 8548 + sha256 = "00ajxgppsmq8c9m4206b7bqw919z3mxxppza3b1v1ll9v5f5xy5a"; 8549 8549 }; 8550 8550 meta.homepage = "https://github.com/nvchad/ui/"; 8551 8551 }; ··· 8600 8600 8601 8601 nvim-bacon = buildVimPlugin { 8602 8602 pname = "nvim-bacon"; 8603 - version = "2024-10-21"; 8603 + version = "2024-11-26"; 8604 8604 src = fetchFromGitHub { 8605 8605 owner = "Canop"; 8606 8606 repo = "nvim-bacon"; 8607 - rev = "61169ad66eceb59ef01808a5f1b6aeb0b00c6a9a"; 8608 - sha256 = "0ynl38agz9v32qx6wcy2znhbc8pm5c3zd8gyslkl34jbnca8ijmk"; 8607 + rev = "25eaf9daa29ef7c335578bd9600e2c6349f16ed1"; 8608 + sha256 = "0b8hqbzamw7bsgag9wriayz08fyidis6h4c7gldavnam00p8hjcr"; 8609 8609 }; 8610 8610 meta.homepage = "https://github.com/Canop/nvim-bacon/"; 8611 8611 }; ··· 8660 8660 8661 8661 nvim-cmp = buildNeovimPlugin { 8662 8662 pname = "nvim-cmp"; 8663 - version = "2024-11-02"; 8663 + version = "2024-11-25"; 8664 8664 src = fetchFromGitHub { 8665 8665 owner = "hrsh7th"; 8666 8666 repo = "nvim-cmp"; 8667 - rev = "f17d9b4394027ff4442b298398dfcaab97e40c4f"; 8668 - sha256 = "17jvn969a1174j2p41fiwmw1psljklgxda08n1v7ilnpbwr2ilc8"; 8667 + rev = "ed31156aa2cc14e3bc066c59357cc91536a2bc01"; 8668 + sha256 = "08r7yry0xa2az0j7c6ipydnppyd36wzpwl1kbzwcwhh5ysngb5j6"; 8669 8669 }; 8670 8670 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 8671 8671 }; ··· 8696 8696 8697 8697 nvim-colorizer-lua = buildVimPlugin { 8698 8698 pname = "nvim-colorizer.lua"; 8699 - version = "2024-11-19"; 8699 + version = "2024-11-23"; 8700 8700 src = fetchFromGitHub { 8701 - owner = "nvchad"; 8701 + owner = "catgoose"; 8702 8702 repo = "nvim-colorizer.lua"; 8703 - rev = "4b7fba6eae15668098ea8835da1edb670f612431"; 8704 - sha256 = "04ckxckw3wb01w3xrjvivnpx9lh1lwkn30jgmaabi68s6hf2nqvw"; 8703 + rev = "4acf88d31b3a7a1a7f31e9c30bf2b23c6313abdb"; 8704 + sha256 = "0xg1p3bvnmi2px55kc2zkyn5iqp9536v6lnd2bkbdmq26sb9w1cl"; 8705 8705 }; 8706 - meta.homepage = "https://github.com/nvchad/nvim-colorizer.lua/"; 8706 + meta.homepage = "https://github.com/catgoose/nvim-colorizer.lua/"; 8707 8707 }; 8708 8708 8709 8709 nvim-comment = buildVimPlugin { ··· 8924 8924 8925 8925 nvim-genghis = buildVimPlugin { 8926 8926 pname = "nvim-genghis"; 8927 - version = "2024-11-17"; 8927 + version = "2024-11-26"; 8928 8928 src = fetchFromGitHub { 8929 8929 owner = "chrisgrieser"; 8930 8930 repo = "nvim-genghis"; 8931 - rev = "be794cd5fbfbb279508120eee9d4ef90948a88c4"; 8932 - sha256 = "17mhlvsdcspc9v0nhp3pzbjvdfzdkfcmaxvjgvsg0bxb28n61zsy"; 8931 + rev = "940fda51657e78d87e5e2c0c5cbf6a9110d79537"; 8932 + sha256 = "020jis356h2indzinwhby4jba62jfa1k1ygfd2w17fq2zs0q3rzb"; 8933 8933 }; 8934 8934 meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; 8935 8935 }; ··· 8972 8972 8973 8973 nvim-highlite = buildVimPlugin { 8974 8974 pname = "nvim-highlite"; 8975 - version = "2024-10-25"; 8975 + version = "2024-11-21"; 8976 8976 src = fetchFromGitHub { 8977 8977 owner = "Iron-E"; 8978 8978 repo = "nvim-highlite"; 8979 - rev = "eef0578e3bc0bbf64a74f0a911655f0b9f2f4a8a"; 8980 - sha256 = "1qfhmlqz1kcdy1fzydhjniklj96jnabk4k5mhrjs5an951jgncqz"; 8979 + rev = "80aa3f9959ab40d0e5bc49ca14ceea95da3a5a40"; 8980 + sha256 = "0v0svl5hz4vksidm4ymk50cfl3cpgyd5b07b4daz3039px9j8yg0"; 8981 8981 }; 8982 8982 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 8983 8983 }; ··· 9008 9008 9009 9009 nvim-jdtls = buildVimPlugin { 9010 9010 pname = "nvim-jdtls"; 9011 - version = "2024-11-08"; 9011 + version = "2024-11-26"; 9012 9012 src = fetchFromGitHub { 9013 9013 owner = "mfussenegger"; 9014 9014 repo = "nvim-jdtls"; 9015 - rev = "c4279b8ffce9b64eb302056d78dfebc2968a49bc"; 9016 - sha256 = "0xcixaanisvg1rhfcgypa7jc6ndp8hmsvwqkcjz1xfypssa99qhy"; 9015 + rev = "ece818f909c6414cbad4e1fb240d87e003e10fda"; 9016 + sha256 = "0w8v835diycphiq5rd9pw43sjsyqj0fbfw9njw11i0967ls0ap0b"; 9017 9017 }; 9018 9018 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 9019 9019 }; ··· 9091 9091 9092 9092 nvim-lint = buildVimPlugin { 9093 9093 pname = "nvim-lint"; 9094 - version = "2024-11-18"; 9094 + version = "2024-11-22"; 9095 9095 src = fetchFromGitHub { 9096 9096 owner = "mfussenegger"; 9097 9097 repo = "nvim-lint"; 9098 - rev = "8e9562de7261e5b862c631958df616e1a65552cd"; 9099 - sha256 = "13x9s3gj223salynz6yilpm5d58fpsfmsp03p2mcvk3l68d74bqc"; 9098 + rev = "6b46370d02cd001509a765591a3ffc481b538794"; 9099 + sha256 = "1gjz74g3d148j9l7a5n0mygnayflzs5i44ygl6gmd69dcmvp45d1"; 9100 9100 }; 9101 9101 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 9102 9102 }; ··· 9139 9139 9140 9140 nvim-lspconfig = buildVimPlugin { 9141 9141 pname = "nvim-lspconfig"; 9142 - version = "2024-11-17"; 9142 + version = "2024-11-26"; 9143 9143 src = fetchFromGitHub { 9144 9144 owner = "neovim"; 9145 9145 repo = "nvim-lspconfig"; 9146 - rev = "f012c1b176f0e3c71f40eb309bdec0316689462e"; 9147 - sha256 = "1lxfsgbmd0wmrdvkd21plg6vjf0jsghqy6985n5qzbd66dv94frx"; 9146 + rev = "16008a64f6ab9309641f30b8a7c9a432f1649b9a"; 9147 + sha256 = "0qviz4n73b3zd59fcvqx07z2vvdh3l0qz9xr1msfb6m150342qqv"; 9148 9148 }; 9149 9149 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 9150 9150 }; ··· 9391 9391 9392 9392 nvim-rip-substitute = buildVimPlugin { 9393 9393 pname = "nvim-rip-substitute"; 9394 - version = "2024-11-17"; 9394 + version = "2024-11-26"; 9395 9395 src = fetchFromGitHub { 9396 9396 owner = "chrisgrieser"; 9397 9397 repo = "nvim-rip-substitute"; 9398 - rev = "5cc87a17c65cc6c6be2124eabc71bd06dc433312"; 9399 - sha256 = "1jsi0zwha1v5a7mqy1m4msl2k7gz9vr0k72k94jdz81brgc8s9bd"; 9398 + rev = "e6c3f6d0a367cbe41a426891fc90aef1168dee79"; 9399 + sha256 = "03gjkxh0vc1p7wjay3r1z8cli4xm7bm5whdclidvx4bkqwqms2rk"; 9400 9400 }; 9401 9401 meta.homepage = "https://github.com/chrisgrieser/nvim-rip-substitute/"; 9402 9402 }; 9403 9403 9404 9404 nvim-scissors = buildVimPlugin { 9405 9405 pname = "nvim-scissors"; 9406 - version = "2024-11-17"; 9406 + version = "2024-11-26"; 9407 9407 src = fetchFromGitHub { 9408 9408 owner = "chrisgrieser"; 9409 9409 repo = "nvim-scissors"; 9410 - rev = "37e6abd18bdc461b754d9325647e162149c20881"; 9411 - sha256 = "1vb8ird896mbg2m3nzy57v36fswkvizq31n99cfay0w5hlxw3gsf"; 9410 + rev = "a21a34712da6e88d716d2034e1409fc8b47bb96f"; 9411 + sha256 = "0338hjfh4d8r9gh5mkaaa29d7n1xfhwldyas3m7x8p90da0lqdd5"; 9412 9412 }; 9413 9413 meta.homepage = "https://github.com/chrisgrieser/nvim-scissors/"; 9414 9414 }; ··· 9427 9427 9428 9428 nvim-scrollview = buildVimPlugin { 9429 9429 pname = "nvim-scrollview"; 9430 - version = "2024-10-19"; 9430 + version = "2024-11-26"; 9431 9431 src = fetchFromGitHub { 9432 9432 owner = "dstein64"; 9433 9433 repo = "nvim-scrollview"; 9434 - rev = "f7f611330a8f7cd00dc81538fec369611be678ed"; 9435 - sha256 = "1xx5aayjdjc6r8ad3lx70f67nsyi7zi7wclwd4a1zq7rx5j49vn9"; 9434 + rev = "4d60c594d78e97189c1e38720e74f13c6f5c311f"; 9435 + sha256 = "0x7w1y95pz3f3jy97qrj2vww00n2drxw5g2hxs0x9s2vzqcxi42p"; 9436 9436 }; 9437 9437 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 9438 9438 }; ··· 9511 9511 9512 9512 nvim-spider = buildVimPlugin { 9513 9513 pname = "nvim-spider"; 9514 - version = "2024-11-17"; 9514 + version = "2024-11-26"; 9515 9515 src = fetchFromGitHub { 9516 9516 owner = "chrisgrieser"; 9517 9517 repo = "nvim-spider"; 9518 - rev = "485215c02335901ddf4a5dfd7b05d77d3c5ac901"; 9519 - sha256 = "0ji4chq1ark6z6mg58bxrxji611mkw0l8l0g1wm3x3yig874pgl6"; 9518 + rev = "fc7857bbda37b5f76c47baf4d609e393ee742eeb"; 9519 + sha256 = "0j9w5a5620ln955kwfjf8cpz9jvkvzsnsfidzyvakg3a2nx00dq4"; 9520 9520 }; 9521 9521 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 9522 9522 }; ··· 9571 9571 9572 9572 nvim-tree-lua = buildVimPlugin { 9573 9573 pname = "nvim-tree.lua"; 9574 - version = "2024-11-17"; 9574 + version = "2024-11-24"; 9575 9575 src = fetchFromGitHub { 9576 9576 owner = "nvim-tree"; 9577 9577 repo = "nvim-tree.lua"; 9578 - rev = "f7c65e11d695a084ca10b93df659bb7e68b71f9f"; 9579 - sha256 = "18bhf0hprvg69gn5nv9rwwsgnpa3rhxdpq2p65awk2hb1imbl2mb"; 9578 + rev = "ca7c4c33cac2ad66ec69d45e465379716ef0cc97"; 9579 + sha256 = "1gkv2qhk4ag1822wyxdbclw0j64cw5c2nkjvv0ppi6znl7nh4y0w"; 9580 9580 }; 9581 9581 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 9582 9582 }; 9583 9583 9584 9584 nvim-treesitter = buildVimPlugin { 9585 9585 pname = "nvim-treesitter"; 9586 - version = "2024-11-18"; 9586 + version = "2024-11-26"; 9587 9587 src = fetchFromGitHub { 9588 9588 owner = "nvim-treesitter"; 9589 9589 repo = "nvim-treesitter"; 9590 - rev = "37427012d1c77c544356bfff0c9acc88fd3256bc"; 9591 - sha256 = "0w5ab1vd64pqgfz7lm38xyhslxcsd4846n5r2gyy8f974qzrz4f2"; 9590 + rev = "28591731d84c2fc18ddda60e1d53da24c31c4987"; 9591 + sha256 = "0nxj4jz00p1bch9ji4acksiilc2kglsvixwf57wgiq8nlkwnsp6l"; 9592 9592 }; 9593 9593 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 9594 9594 }; 9595 9595 9596 9596 nvim-treesitter-context = buildVimPlugin { 9597 9597 pname = "nvim-treesitter-context"; 9598 - version = "2024-11-18"; 9598 + version = "2024-11-25"; 9599 9599 src = fetchFromGitHub { 9600 9600 owner = "nvim-treesitter"; 9601 9601 repo = "nvim-treesitter-context"; 9602 - rev = "1147c42cf9477701581d1eb31e1735969e21dd06"; 9603 - sha256 = "1rar4xvrd42hbi5j738bjjahixy9d2fpcr711la0a3n5csz913fl"; 9602 + rev = "6b081ea63a3711243d11540ce28ccdb6f35ecd33"; 9603 + sha256 = "1ymdx89d7nivjlqzy4ah8jdjk9iffqcl0201l8k0yzxbdkzc4g2b"; 9604 9604 }; 9605 9605 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 9606 9606 }; ··· 9667 9667 9668 9668 nvim-treesitter-textobjects = buildVimPlugin { 9669 9669 pname = "nvim-treesitter-textobjects"; 9670 - version = "2024-10-25"; 9670 + version = "2024-11-22"; 9671 9671 src = fetchFromGitHub { 9672 9672 owner = "nvim-treesitter"; 9673 9673 repo = "nvim-treesitter-textobjects"; 9674 - rev = "3e450cd85243da99dc23ebbf14f9c70e9a0c26a4"; 9675 - sha256 = "1gn4ph0p36psjc9bdlvs9sg4vm3l9f94wisgxgva5qgh37bs6g2m"; 9674 + rev = "ad8f0a472148c3e0ae9851e26a722ee4e29b1595"; 9675 + sha256 = "08vlvi9iwhl5qy924s6dmxaczg1yg096vdchp7za5p7wnb7w3zkg"; 9676 9676 }; 9677 9677 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 9678 9678 }; ··· 9715 9715 9716 9716 nvim-ufo = buildVimPlugin { 9717 9717 pname = "nvim-ufo"; 9718 - version = "2024-11-11"; 9718 + version = "2024-11-22"; 9719 9719 src = fetchFromGitHub { 9720 9720 owner = "kevinhwang91"; 9721 9721 repo = "nvim-ufo"; 9722 - rev = "c070ee849bfedb2ed778f60419a1eae8c8544be8"; 9723 - sha256 = "1z8hcf7svw1xlay8ibimnl919j4vj6cghrqwm9b1i9kmkzfd0wn8"; 9722 + rev = "e9886b2b3381b49cadb11ef62a8c51f662927232"; 9723 + sha256 = "11svvrgal2mv8hidjz3sa1alndq3jq2qf32031f586qlm8j0fmiq"; 9724 9724 }; 9725 9725 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 9726 9726 }; ··· 9739 9739 9740 9740 nvim-various-textobjs = buildVimPlugin { 9741 9741 pname = "nvim-various-textobjs"; 9742 - version = "2024-11-17"; 9742 + version = "2024-11-26"; 9743 9743 src = fetchFromGitHub { 9744 9744 owner = "chrisgrieser"; 9745 9745 repo = "nvim-various-textobjs"; 9746 - rev = "e5f951dd95083939dfded22e7330c97d8c172ed2"; 9747 - sha256 = "1pm2kvg3afxpf097b9d8bg3q52rz7h3vv4p346f9gaf5nn5kg739"; 9746 + rev = "b13c4c56419d6efb85ef14a2c1f380196e743a36"; 9747 + sha256 = "0n0vhg8hs9hwysq5sv6jlljjvkpw8cqy6s8y47r2gf8qv1iapqxz"; 9748 9748 }; 9749 9749 meta.homepage = "https://github.com/chrisgrieser/nvim-various-textobjs/"; 9750 9750 }; 9751 9751 9752 9752 nvim-web-devicons = buildVimPlugin { 9753 9753 pname = "nvim-web-devicons"; 9754 - version = "2024-11-18"; 9754 + version = "2024-11-25"; 9755 9755 src = fetchFromGitHub { 9756 9756 owner = "nvim-tree"; 9757 9757 repo = "nvim-web-devicons"; 9758 - rev = "e87554285f581047b1bf236794b0eb812b444b87"; 9759 - sha256 = "1q6zzdn2q43mx1cmv06nha4ra58jyqdhjli1cjzf4kayq5fn41k7"; 9758 + rev = "edbe0a65cfacbbfff6a4a1e98ddd60c28c560509"; 9759 + sha256 = "1h6bzq94r531brz7xmd1chnbxrql6lam4vip0n9apc5a7pf3jyz5"; 9760 9760 }; 9761 9761 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 9762 9762 }; ··· 9847 9847 9848 9848 nvzone-minty = buildVimPlugin { 9849 9849 pname = "nvzone-minty"; 9850 - version = "2024-11-16"; 9850 + version = "2024-11-19"; 9851 9851 src = fetchFromGitHub { 9852 9852 owner = "nvzone"; 9853 9853 repo = "minty"; 9854 - rev = "a3d69bd63fc98f640815f94b797bf978e9193022"; 9855 - sha256 = "1chq2qqa2yps366rh5gdylvlz09q13ilw2k4cr95a2ivp887qcyz"; 9854 + rev = "b454ca0229f8e22a631fd3c014ec99973fb8cad4"; 9855 + sha256 = "0pj75b8n40pnphz437hl1nc0jkw2bnzk36fa2v3hwlskvbfh4my2"; 9856 9856 }; 9857 9857 meta.homepage = "https://github.com/nvzone/minty/"; 9858 9858 }; 9859 9859 9860 9860 nvzone-volt = buildVimPlugin { 9861 9861 pname = "nvzone-volt"; 9862 - version = "2024-11-17"; 9862 + version = "2024-11-21"; 9863 9863 src = fetchFromGitHub { 9864 9864 owner = "nvzone"; 9865 9865 repo = "volt"; 9866 - rev = "41c03a5d6a0a8a997e774a3482d82e5ef820c6ba"; 9867 - sha256 = "0iw3idylw2g63ndc3fidivwb1230l29bg7scy0p0aqw2ddywknhy"; 9866 + rev = "8d35e03c70490190149a77c59155618ef4370721"; 9867 + sha256 = "17pkafikr10px5a8yalg3p50npb17ia6c17b5rqb93ggyww2kp0y"; 9868 9868 }; 9869 9869 meta.homepage = "https://github.com/nvzone/volt/"; 9870 9870 }; ··· 9919 9919 9920 9920 oil-nvim = buildVimPlugin { 9921 9921 pname = "oil.nvim"; 9922 - version = "2024-11-15"; 9922 + version = "2024-11-25"; 9923 9923 src = fetchFromGitHub { 9924 9924 owner = "stevearc"; 9925 9925 repo = "oil.nvim"; 9926 - rev = "8ea40b5506115b6d355e304dd9ee5089f7d78601"; 9927 - sha256 = "1mvmy64b5hvbilwpiprifx5qiqhysa09aaxiypqfa329h4v7ad29"; 9926 + rev = "3c2de37accead0240fbe812f5ccdedfe0b973557"; 9927 + sha256 = "0jwqazdmcr4s1pdv8jjs2a51g6hjmvbsd9d1gsm3afzini5glbi6"; 9928 9928 fetchSubmodules = true; 9929 9929 }; 9930 9930 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 10160 10160 10161 10161 overseer-nvim = buildVimPlugin { 10162 10162 pname = "overseer.nvim"; 10163 - version = "2024-11-14"; 10163 + version = "2024-11-24"; 10164 10164 src = fetchFromGitHub { 10165 10165 owner = "stevearc"; 10166 10166 repo = "overseer.nvim"; 10167 - rev = "e734140137cdd25b4c31c0fb9bf22faa9c115dcc"; 10168 - sha256 = "02paxcsmgjvy9zi1g5y2hp683v5d9z5bb0hn0f5sn1fzb9ly8sng"; 10167 + rev = "10ee48ff96c8d1049efb278ea4c8cf9f3b0e4326"; 10168 + sha256 = "1rdp4575dwsg6ch4nfgq5721wcdvlgqz68zlsddda7hw1rr05p39"; 10169 10169 fetchSubmodules = true; 10170 10170 }; 10171 10171 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 10462 10462 10463 10463 precognition-nvim = buildVimPlugin { 10464 10464 pname = "precognition.nvim"; 10465 - version = "2024-10-30"; 10465 + version = "2024-11-26"; 10466 10466 src = fetchFromGitHub { 10467 10467 owner = "tris203"; 10468 10468 repo = "precognition.nvim"; 10469 - rev = "0189e8d6f96275a079b2805d68d49414871885cd"; 10470 - sha256 = "1h8i8i66phrqjha3jplrjg6zly29d5lfg6hvq5sv9h4xmw0kaxm2"; 10469 + rev = "531971e6d883e99b1572bf47294e22988d8fbec0"; 10470 + sha256 = "1mm3gzv882kd0kmqj0zfk6hlw5fxbk7jz16g1h7g8xs2mjh4lxwv"; 10471 10471 }; 10472 10472 meta.homepage = "https://github.com/tris203/precognition.nvim/"; 10473 10473 }; ··· 10570 10570 10571 10571 pum-vim = buildVimPlugin { 10572 10572 pname = "pum.vim"; 10573 - version = "2024-11-07"; 10573 + version = "2024-11-25"; 10574 10574 src = fetchFromGitHub { 10575 10575 owner = "Shougo"; 10576 10576 repo = "pum.vim"; 10577 - rev = "d2bc1abbcaf29a3a90b212f9b93c5dd898a2b143"; 10578 - sha256 = "03ifnxkq75zxg96ig75wz7mkf2kxiddy04fsxldbprggnan96sxc"; 10577 + rev = "195bfd8407355c63b1ba55b07031f41b362502df"; 10578 + sha256 = "064jx982b39ab42aancnrq46vzs2j2hk6j0kda24vsrrl3d4wbbg"; 10579 10579 }; 10580 10580 meta.homepage = "https://github.com/Shougo/pum.vim/"; 10581 10581 }; ··· 10727 10727 10728 10728 rainbow-delimiters-nvim = buildVimPlugin { 10729 10729 pname = "rainbow-delimiters.nvim"; 10730 - version = "2024-11-08"; 10730 + version = "2024-11-19"; 10731 10731 src = fetchgit { 10732 10732 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10733 - rev = "f22496dfdd46da4d571f5254c72eff65ff5a1c27"; 10734 - sha256 = "0x9wvzlslzv7pq2ff6jsb1rrp0cgz5hiii2mw9yjl5b73p9n3cpy"; 10733 + rev = "d803ba7668ba390aa4cfd3580183c982cac36fd8"; 10734 + sha256 = "0q4yf2jcc47kqn4a1d1nj6ma93jpzhlrnnjfbz1gaxrcsrg9v0yw"; 10735 10735 }; 10736 10736 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10737 10737 }; ··· 10822 10822 10823 10823 refactoring-nvim = buildVimPlugin { 10824 10824 pname = "refactoring.nvim"; 10825 - version = "2024-10-27"; 10825 + version = "2024-11-20"; 10826 10826 src = fetchFromGitHub { 10827 10827 owner = "theprimeagen"; 10828 10828 repo = "refactoring.nvim"; 10829 - rev = "53ed6854e0bba64d467c58e87084dcf8b1c22d36"; 10830 - sha256 = "0dv1i5lb4byksakwnv91gbzl85kdbrf0rm24rq8s8kqfw2sfaq3g"; 10829 + rev = "2db6d378e873de31d18ade549c2edba64ff1c2e3"; 10830 + sha256 = "1q79i3x21vv8kz0b456w6v5zda6jc6k4z0jbfijls8h4hvkj7j39"; 10831 10831 }; 10832 10832 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 10833 10833 }; ··· 10870 10870 10871 10871 render-markdown-nvim = buildVimPlugin { 10872 10872 pname = "render-markdown.nvim"; 10873 - version = "2024-11-18"; 10873 + version = "2024-11-25"; 10874 10874 src = fetchFromGitHub { 10875 10875 owner = "MeanderingProgrammer"; 10876 10876 repo = "render-markdown.nvim"; 10877 - rev = "430a671655ac84a63f41cd3e940caebdd0a99434"; 10878 - sha256 = "0rbqz78bni4mblbjzhwwl5d619i4hjghi6fd7w4800lnnz832zfb"; 10877 + rev = "6096cf3608b576a38fd1396227dbc0473091714d"; 10878 + sha256 = "1ssfi9lvvfkx7dqmmcz5995kjwy7i71abzi38x0qpp2l3hwxdz3g"; 10879 10879 }; 10880 10880 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 10881 10881 }; ··· 11087 11087 11088 11088 satellite-nvim = buildVimPlugin { 11089 11089 pname = "satellite.nvim"; 11090 - version = "2024-09-30"; 11090 + version = "2024-11-20"; 11091 11091 src = fetchFromGitHub { 11092 11092 owner = "lewis6991"; 11093 11093 repo = "satellite.nvim"; 11094 - rev = "ea0a2e92bbb57981043fca334f5b274c0f279238"; 11095 - sha256 = "1132ribjmg22p270jsb67izqiyf3ngb3xd8p83jf45c4x2i9hlsr"; 11094 + rev = "17a6afc39efb7ee9acfff1f9c719e831a6fd4fa1"; 11095 + sha256 = "19dsbi3phgmx2k1ksraia7af03mmlzzcamxaddc0q41xl9bga5bs"; 11096 11096 }; 11097 11097 meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; 11098 11098 }; ··· 11159 11159 11160 11160 searchbox-nvim = buildVimPlugin { 11161 11161 pname = "searchbox.nvim"; 11162 - version = "2024-09-04"; 11162 + version = "2024-11-26"; 11163 11163 src = fetchFromGitHub { 11164 11164 owner = "VonHeikemen"; 11165 11165 repo = "searchbox.nvim"; 11166 - rev = "8dde416cabb63f6d68c8755365dcd20c65b7b3b0"; 11167 - sha256 = "0q0wv2nlvrk8k46lm096sscljmrsj7ccch7il7dp1l4fs67dl1h4"; 11166 + rev = "c255af511687ab830c8b9d3e7f19aa91bb2f2a1d"; 11167 + sha256 = "1icx9idxnfr3k0sldm8388w68szziwqs59zjk6nmnqsiw9g5r4md"; 11168 11168 }; 11169 11169 meta.homepage = "https://github.com/VonHeikemen/searchbox.nvim/"; 11170 11170 }; ··· 11316 11316 11317 11317 smart-splits-nvim = buildVimPlugin { 11318 11318 pname = "smart-splits.nvim"; 11319 - version = "2024-11-18"; 11319 + version = "2024-11-22"; 11320 11320 src = fetchFromGitHub { 11321 11321 owner = "mrjones2014"; 11322 11322 repo = "smart-splits.nvim"; 11323 - rev = "5910b386aca2ea7adb63812ba43815b1d97b37ad"; 11324 - sha256 = "08dqsjxvpd6l1vq6pyvy4s4k6czy7bgzl1xbi1yp9sncigsgd9wc"; 11323 + rev = "d8b0e772a0244169534b1fd57c1660c9bf323d26"; 11324 + sha256 = "0qrfgml81pfsnk9hn835qdacscqy8m9xbaxikb8ikqwk87s52lqv"; 11325 11325 }; 11326 11326 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 11327 11327 }; ··· 11364 11364 11365 11365 snacks-nvim = buildVimPlugin { 11366 11366 pname = "snacks.nvim"; 11367 - version = "2024-11-18"; 11367 + version = "2024-11-26"; 11368 11368 src = fetchFromGitHub { 11369 11369 owner = "folke"; 11370 11370 repo = "snacks.nvim"; 11371 - rev = "be8feef4ab584f50aaa96b69d50b3f86a35aacff"; 11372 - sha256 = "00xjypnam5mxmvs6x9rjbynwvff2sr9gyzkbpb10c4n6vwgb2xy7"; 11371 + rev = "985be4a759f6fe83e569679da431eeb7d2db5286"; 11372 + sha256 = "0s0mr8s47m99dj9adrrr73kjvb11v5q74dsd89wzmv8v4m1kvg2a"; 11373 11373 }; 11374 11374 meta.homepage = "https://github.com/folke/snacks.nvim/"; 11375 11375 }; ··· 11388 11388 11389 11389 snipe-nvim = buildVimPlugin { 11390 11390 pname = "snipe.nvim"; 11391 - version = "2024-11-18"; 11391 + version = "2024-11-24"; 11392 11392 src = fetchFromGitHub { 11393 11393 owner = "leath-dub"; 11394 11394 repo = "snipe.nvim"; 11395 - rev = "d1c98744b78baf45f933ae04924e88a9846f4e9e"; 11396 - sha256 = "1wjx901x0nxg8r4s9knyhkclzvk7mp6smpfx87rwkm36vmlpvblw"; 11395 + rev = "3d560dcac1cda409f5f6adf17b8003df3ab85eee"; 11396 + sha256 = "1zdfzcwvbkzl0ylvdn1455fa6j2waz455k67qi25bbarfcqs92gz"; 11397 11397 }; 11398 11398 meta.homepage = "https://github.com/leath-dub/snipe.nvim/"; 11399 11399 }; ··· 11424 11424 11425 11425 sonokai = buildVimPlugin { 11426 11426 pname = "sonokai"; 11427 - version = "2024-09-30"; 11427 + version = "2024-11-25"; 11428 11428 src = fetchFromGitHub { 11429 11429 owner = "sainnhe"; 11430 11430 repo = "sonokai"; 11431 - rev = "3dcd97c0c5e4118bc171df6ba33800dfd9524a00"; 11432 - sha256 = "026fksby6v2vl52q1n6pk4v8vrlh71cl8fjqcq4d6arz7lv2fk4j"; 11431 + rev = "fd42b20963c34dfc1744ac31f6a6efe78f4edad2"; 11432 + sha256 = "0yrw2fzyqijmpsdxbg9w2x8apjmc0x87agr3zfzzd0qn56sz2g86"; 11433 11433 }; 11434 11434 meta.homepage = "https://github.com/sainnhe/sonokai/"; 11435 11435 }; ··· 11894 11894 11895 11895 tabby-nvim = buildVimPlugin { 11896 11896 pname = "tabby.nvim"; 11897 - version = "2024-11-16"; 11897 + version = "2024-11-23"; 11898 11898 src = fetchFromGitHub { 11899 11899 owner = "nanozuki"; 11900 11900 repo = "tabby.nvim"; 11901 - rev = "96a392b151a4a7aa5368da3d29f46fe70909cb65"; 11902 - sha256 = "1mdjpvw691q8i65zdral1x49d06n39baad0svk3cmlsr9qwv0y80"; 11901 + rev = "41669e37ab79ab2dce90c4352dacbbc26e938dd7"; 11902 + sha256 = "0qm12d9x2a3wf3a0v0rckakb3z5zsxwyxlnf9hq8ymfwxfjwpjip"; 11903 11903 }; 11904 11904 meta.homepage = "https://github.com/nanozuki/tabby.nvim/"; 11905 11905 }; ··· 12160 12160 12161 12161 telescope-frecency-nvim = buildVimPlugin { 12162 12162 pname = "telescope-frecency.nvim"; 12163 - version = "2024-11-05"; 12163 + version = "2024-11-24"; 12164 12164 src = fetchFromGitHub { 12165 12165 owner = "nvim-telescope"; 12166 12166 repo = "telescope-frecency.nvim"; 12167 - rev = "8622ef42f73cf0eb76bbe049220a812ffe32354d"; 12168 - sha256 = "0vsd07fbk8f01h8sgk8qs8ncrn1sw09hcdfqljjvssyhzh1vrfy6"; 12167 + rev = "872602fad676f735424341bb8e2064a191083423"; 12168 + sha256 = "11akvqpahpdsi7xd3sgzyahqmzsrbr058knckb47s6z6z3ah55xn"; 12169 12169 }; 12170 12170 meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/"; 12171 12171 }; ··· 12257 12257 12258 12258 telescope-manix = buildNeovimPlugin { 12259 12259 pname = "telescope-manix"; 12260 - version = "2024-11-17"; 12260 + version = "2024-11-24"; 12261 12261 src = fetchFromGitHub { 12262 12262 owner = "MrcJkb"; 12263 12263 repo = "telescope-manix"; 12264 - rev = "d7b72b4fef46759150a7a9ab283490c2ca3a9a72"; 12265 - sha256 = "12kgwx7nr22lk0301c61zzq7p9qhs5r6ngw6mgd9hpbfw3842nmc"; 12264 + rev = "4e78ac3207ffe1b047948fb945f550f019691f96"; 12265 + sha256 = "149v5m0gi9q9gi2pnj6vsfz410lqnkn60rskn21liczkgnams6aa"; 12266 12266 }; 12267 12267 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 12268 12268 }; ··· 12293 12293 12294 12294 telescope-project-nvim = buildVimPlugin { 12295 12295 pname = "telescope-project.nvim"; 12296 - version = "2024-09-09"; 12296 + version = "2024-11-19"; 12297 12297 src = fetchFromGitHub { 12298 12298 owner = "nvim-telescope"; 12299 12299 repo = "telescope-project.nvim"; 12300 - rev = "796200876bb0fe8157b8eb1ce03d927d3827a052"; 12301 - sha256 = "1ib4i83x24xg1jmxbzk0h6d24if3pa75zhmz2qhvvm6kjfdxrvy0"; 12300 + rev = "7dea0d37dc59f68cbd74459f74869ff740517a60"; 12301 + sha256 = "15jyram4d520lzvhydz31ifnh3s8dq2d3v8kk6v2234g7ayd4x0r"; 12302 12302 }; 12303 12303 meta.homepage = "https://github.com/nvim-telescope/telescope-project.nvim/"; 12304 12304 }; ··· 12618 12618 12619 12619 tiny-inline-diagnostic-nvim = buildVimPlugin { 12620 12620 pname = "tiny-inline-diagnostic.nvim"; 12621 - version = "2024-11-08"; 12621 + version = "2024-11-24"; 12622 12622 src = fetchFromGitHub { 12623 12623 owner = "rachartier"; 12624 12624 repo = "tiny-inline-diagnostic.nvim"; 12625 - rev = "86050f39a62de48734f1a2876d70d179b75deb7c"; 12626 - sha256 = "1lsd57qr8wn8ckflx57as8f3c2k57dwfq1b69767zf5kkfjzr2q3"; 12625 + rev = "c39c4af4e6500effb17eeaaa2306dd0bb75afd62"; 12626 + sha256 = "0w1bp9x4hryiwf0lrml6iqdbxpr25v080ra05k1cah97b9w6znb3"; 12627 12627 }; 12628 12628 meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; 12629 12629 }; ··· 12727 12727 12728 12728 tokyonight-nvim = buildVimPlugin { 12729 12729 pname = "tokyonight.nvim"; 12730 - version = "2024-11-13"; 12730 + version = "2024-11-19"; 12731 12731 src = fetchFromGitHub { 12732 12732 owner = "folke"; 12733 12733 repo = "tokyonight.nvim"; 12734 - rev = "9758827c3b380ba89da4a2212b6255d01afbcf08"; 12735 - sha256 = "1hdy7fc9qyydhqf232jrg4d3ip63a89mgfsl8swzsa5brw39yjd8"; 12734 + rev = "c2725eb6d086c8c9624456d734bd365194660017"; 12735 + sha256 = "02662k6kxaf19w17fq71zc6hv4yylgzzmrrhhzid0sz0ghafb9dw"; 12736 12736 }; 12737 12737 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 12738 12738 }; ··· 12775 12775 12776 12776 treesj = buildVimPlugin { 12777 12777 pname = "treesj"; 12778 - version = "2024-08-05"; 12778 + version = "2024-11-23"; 12779 12779 src = fetchFromGitHub { 12780 12780 owner = "Wansmer"; 12781 12781 repo = "treesj"; 12782 - rev = "0d81326b5afd36babe7dd480aabbb0b05f33e688"; 12783 - sha256 = "0r2njhwbvia4rw919ncblyf9rgq3n1mqlsyl76jqjwiw6bccvzmr"; 12782 + rev = "03415ac60791d48e120a80d37e080744faf3ac15"; 12783 + sha256 = "005hdv4c1bi1qdbdfsc0qmwbnf98mgi28rkhvqxyf37rq0v1cmai"; 12784 12784 }; 12785 12785 meta.homepage = "https://github.com/Wansmer/treesj/"; 12786 12786 }; ··· 12799 12799 12800 12800 trim-nvim = buildVimPlugin { 12801 12801 pname = "trim.nvim"; 12802 - version = "2024-10-13"; 12802 + version = "2024-11-21"; 12803 12803 src = fetchFromGitHub { 12804 12804 owner = "cappyzawa"; 12805 12805 repo = "trim.nvim"; 12806 - rev = "7dc35b9e61b9f77f475807a2be6fe8115a12d81c"; 12807 - sha256 = "07bi6y2pc7kh02v5497a6wji7qj7si2wjf3khi5bmgqyj9iqlp95"; 12806 + rev = "84a1016c7484943e9fbb961f807c3745342b2462"; 12807 + sha256 = "08w5rkjvqppnhr0xj20bbwc7zw62sbzfng14y85d8y7p0fvfscj7"; 12808 12808 }; 12809 12809 meta.homepage = "https://github.com/cappyzawa/trim.nvim/"; 12810 12810 }; ··· 12944 12944 12945 12945 typescript-tools-nvim = buildVimPlugin { 12946 12946 pname = "typescript-tools.nvim"; 12947 - version = "2024-11-18"; 12947 + version = "2024-11-21"; 12948 12948 src = fetchFromGitHub { 12949 12949 owner = "pmizio"; 12950 12950 repo = "typescript-tools.nvim"; 12951 - rev = "1edc5dcba8cb46e71feddde91c9c3d4bce77bec5"; 12952 - sha256 = "1vwbrnimp1vnvprbvqbwfn5f97saxcni6b049i9zzw0qhfc96vac"; 12951 + rev = "346062e8cd06e82776b60785a040dfbbdcb6de77"; 12952 + sha256 = "1y7fyw9c6jx2mm23s95w8jmyaikpwy1nnhx1jz35yglsc0ckmzr4"; 12953 12953 }; 12954 12954 meta.homepage = "https://github.com/pmizio/typescript-tools.nvim/"; 12955 12955 }; ··· 12980 12980 12981 12981 typst-preview-nvim = buildVimPlugin { 12982 12982 pname = "typst-preview.nvim"; 12983 - version = "2024-10-24"; 12983 + version = "2024-11-25"; 12984 12984 src = fetchFromGitHub { 12985 12985 owner = "chomosuke"; 12986 12986 repo = "typst-preview.nvim"; 12987 - rev = "06778d1b3d4d29c34f1faf80947b586f403689ba"; 12988 - sha256 = "oBJ+G4jTQw6+MF/SMwaTkGlLQuYLbaAFqJkexf45I1g="; 12987 + rev = "051d5b41e7de91e3a2004f14b2526988a33eb2c2"; 12988 + sha256 = "0naxmq4wf30y35465x3ck3ylg19j4x4hqflhl8z9adrccm8y9w3w"; 12989 12989 }; 12990 12990 meta.homepage = "https://github.com/chomosuke/typst-preview.nvim/"; 12991 12991 }; ··· 13064 13064 13065 13065 unison = buildVimPlugin { 13066 13066 pname = "unison"; 13067 - version = "2024-11-16"; 13067 + version = "2024-11-26"; 13068 13068 src = fetchFromGitHub { 13069 13069 owner = "unisonweb"; 13070 13070 repo = "unison"; 13071 - rev = "c289e8b4df755011d5c0d2376b59127a41651e9c"; 13072 - sha256 = "0n0cdwvfv0sq3jx2z7xnbaj6qd52f11awryyx1kh5zdyzx5vrhx5"; 13071 + rev = "d17b1f64fe6c9fe85a9a2b409ae43a54692ca0f4"; 13072 + sha256 = "0kzzfmmbv8z9xx566gq78di464qxxb4sxx4jp76dgfr39y1m5zq4"; 13073 13073 }; 13074 13074 meta.homepage = "https://github.com/unisonweb/unison/"; 13075 13075 }; ··· 13172 13172 13173 13173 vifm-vim = buildVimPlugin { 13174 13174 pname = "vifm.vim"; 13175 - version = "2024-11-15"; 13175 + version = "2024-11-26"; 13176 13176 src = fetchFromGitHub { 13177 13177 owner = "vifm"; 13178 13178 repo = "vifm.vim"; 13179 - rev = "caa5c75554068bfee574fd466219fa333d491e7e"; 13180 - sha256 = "1872317jkcw88b7l7cxd42rrnzbkr0wmpwaj0sdkydgcs4cbvj5n"; 13179 + rev = "6f497cbd4621f9ff679e13648012f33d2fe87840"; 13180 + sha256 = "1270pxb9lidn182ynyaf8vl0r035xvgy1hrwynnrb5c5dqsbf06j"; 13181 13181 }; 13182 13182 meta.homepage = "https://github.com/vifm/vifm.vim/"; 13183 13183 }; ··· 13784 13784 13785 13785 vim-beancount = buildVimPlugin { 13786 13786 pname = "vim-beancount"; 13787 - version = "2023-01-02"; 13787 + version = "2024-11-25"; 13788 13788 src = fetchFromGitHub { 13789 13789 owner = "nathangrigg"; 13790 13790 repo = "vim-beancount"; 13791 - rev = "25bcbc773554b5798d253a1a5fa5de158792f95e"; 13792 - sha256 = "1fa03kjhvii80lf6kv4zrp2gbpr0f75vgq7pr7qcf02pkl85pqqc"; 13791 + rev = "589a4f06f3b2fd7cd2356c2ef1dafadf6b7a97cf"; 13792 + sha256 = "05rfvgwi9a1ppnmm3djaw3sdjwxfbjfhj9q9rqlfix5pngmw3fdm"; 13793 13793 }; 13794 13794 meta.homepage = "https://github.com/nathangrigg/vim-beancount/"; 13795 13795 }; ··· 14276 14276 14277 14277 vim-dadbod-ui = buildVimPlugin { 14278 14278 pname = "vim-dadbod-ui"; 14279 - version = "2024-11-18"; 14279 + version = "2024-11-21"; 14280 14280 src = fetchFromGitHub { 14281 14281 owner = "kristijanhusak"; 14282 14282 repo = "vim-dadbod-ui"; 14283 - rev = "0da912428a69a3b757b29cd77b41964a03ecd50b"; 14284 - sha256 = "1nlxbdm2wvqrlnhlxkyagy0i3x3k3v2cdmm89xf0ambpxsp9qm0v"; 14283 + rev = "28a16902cb2134c934b85da5250033ee43b0dee5"; 14284 + sha256 = "1ykqvskzq8ql22wswrqmz7rlizvkklz35szbi0d7mmm3b4n3xs2c"; 14285 14285 }; 14286 14286 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-ui/"; 14287 14287 }; ··· 14564 14564 14565 14565 vim-endwise = buildVimPlugin { 14566 14566 pname = "vim-endwise"; 14567 - version = "2024-01-16"; 14567 + version = "2024-10-13"; 14568 14568 src = fetchFromGitHub { 14569 14569 owner = "tpope"; 14570 14570 repo = "vim-endwise"; 14571 - rev = "3719ffddb5e42bf67b55b2183d7a6fb8d3e5a2b8"; 14572 - sha256 = "0r888mpcn3fpzxl4dwvdj2khdy27djpdkbldwvqp0z7aqj0lci8v"; 14571 + rev = "1d42c830d8a81958a6703cee8f4caece4b1b8423"; 14572 + sha256 = "1bg42ks9i60g255s3di11asqsywhdm1ag7k9nn16m6nghvbdrflz"; 14573 14573 }; 14574 14574 meta.homepage = "https://github.com/tpope/vim-endwise/"; 14575 14575 }; ··· 14792 14792 14793 14793 vim-flog = buildVimPlugin { 14794 14794 pname = "vim-flog"; 14795 - version = "2024-10-26"; 14795 + version = "2024-11-19"; 14796 14796 src = fetchFromGitHub { 14797 14797 owner = "rbong"; 14798 14798 repo = "vim-flog"; 14799 - rev = "afbbe41355122722a9e6beb23055e2b63187fc1e"; 14800 - sha256 = "0kj2wvfxh4iy3c2fp3n3iifi7xfhnpz8imy6jrv8p76xdvb73gw1"; 14799 + rev = "be061536ed9a426b220562dbaaaf8ce7b990a7bf"; 14800 + sha256 = "1fs2vi8g2hk3pxdjncddd7r8gkylx12yj6dalss5dcgq1n28kc5i"; 14801 14801 }; 14802 14802 meta.homepage = "https://github.com/rbong/vim-flog/"; 14803 14803 }; ··· 14840 14840 14841 14841 vim-fugitive = buildVimPlugin { 14842 14842 pname = "vim-fugitive"; 14843 - version = "2024-09-07"; 14843 + version = "2024-11-19"; 14844 14844 src = fetchFromGitHub { 14845 14845 owner = "tpope"; 14846 14846 repo = "vim-fugitive"; 14847 - rev = "d4877e54cef67f5af4f950935b1ade19ed6b7370"; 14848 - sha256 = "17cf21k77fwsl67m4f1ln17dadz5i5g8fjhsw1cc1y1c3jn1xdh2"; 14847 + rev = "320b18fba2a4f2fe3c8225c778c687e0d2620384"; 14848 + sha256 = "1whwsz6sispx59pcqxv64890rb4gga35nd758kcm7f27md7vcr24"; 14849 14849 }; 14850 14850 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 14851 14851 }; ··· 15634 15634 15635 15635 vim-just = buildVimPlugin { 15636 15636 pname = "vim-just"; 15637 - version = "2024-11-16"; 15637 + version = "2024-11-21"; 15638 15638 src = fetchFromGitHub { 15639 15639 owner = "NoahTheDuke"; 15640 15640 repo = "vim-just"; 15641 - rev = "95f7973010d73bfe87550cd2e21ed9e8c72ee106"; 15642 - sha256 = "03g2db16smykh8cw5kimwnhnhv43njr0mwml2k1cx2rxmnydikgy"; 15641 + rev = "fbe69d1723230e14f245ca34b0c98fa916b36f64"; 15642 + sha256 = "0j1r94v3grd1s4drg18r5ajnwvm4danyrzbaj90xb712bakcjyiw"; 15643 15643 }; 15644 15644 meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; 15645 15645 }; ··· 15898 15898 15899 15899 vim-lsp-settings = buildVimPlugin { 15900 15900 pname = "vim-lsp-settings"; 15901 - version = "2024-11-11"; 15901 + version = "2024-11-26"; 15902 15902 src = fetchFromGitHub { 15903 15903 owner = "mattn"; 15904 15904 repo = "vim-lsp-settings"; 15905 - rev = "ec38220cbcfbd9704294577f94ca80548f8ef57c"; 15906 - sha256 = "1ikqb96qa8dfqy6spzvk5x5v6ra7rxprdly6r4zr6zgfav166a0g"; 15905 + rev = "6e17b4c35e964c2644614d250192721a5aa9e792"; 15906 + sha256 = "1jmvfk6p6wjmjgzlrlykkswyjaibmzpjav3gisinxy3ww3hqpq9d"; 15907 15907 }; 15908 15908 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 15909 15909 }; ··· 17652 17652 17653 17653 vim-test = buildVimPlugin { 17654 17654 pname = "vim-test"; 17655 - version = "2024-10-28"; 17655 + version = "2024-11-19"; 17656 17656 src = fetchFromGitHub { 17657 17657 owner = "vim-test"; 17658 17658 repo = "vim-test"; 17659 - rev = "b0661402277de193a374ae241f0742898cbcb319"; 17660 - sha256 = "0w47jq7k8zg0v44m91gk8wy04i79hszsnif8927dcdaz3ng2id25"; 17659 + rev = "8872ec0f788af934386b2aef0cd28a5c2b923146"; 17660 + sha256 = "1n8s1sjh52hqh6qm72pyf6krhcdlsrr288ybcxf3r43m486jcnfm"; 17661 17661 }; 17662 17662 meta.homepage = "https://github.com/vim-test/vim-test/"; 17663 17663 }; ··· 18288 18288 18289 18289 vimade = buildVimPlugin { 18290 18290 pname = "vimade"; 18291 - version = "2024-11-16"; 18291 + version = "2024-11-26"; 18292 18292 src = fetchFromGitHub { 18293 18293 owner = "TaDaa"; 18294 18294 repo = "vimade"; 18295 - rev = "d9f86974cede3cb6eb9f6562a0e4f40e0216876d"; 18296 - sha256 = "0x4w1112ywn71r33hhfxdbw7d2bd6srj9mgvajgvqwy1gncd7g24"; 18295 + rev = "cde9665d44225d9eb40007780211d1bb9dc2f19f"; 18296 + sha256 = "1c4swfwcy1600slp52h6d395sz2lbr1rbvml77cghfqz1cdxjh60"; 18297 18297 }; 18298 18298 meta.homepage = "https://github.com/TaDaa/vimade/"; 18299 18299 }; ··· 18409 18409 18410 18410 vimtex = buildVimPlugin { 18411 18411 pname = "vimtex"; 18412 - version = "2024-11-11"; 18412 + version = "2024-11-24"; 18413 18413 src = fetchFromGitHub { 18414 18414 owner = "lervag"; 18415 18415 repo = "vimtex"; 18416 - rev = "6ee92c7ed2cdc876f499bd5561a65d04dee10d1f"; 18417 - sha256 = "10lc6n6917cna88j56sz2yar351428qjqcpmaxp2skza42lp3y35"; 18416 + rev = "44a2f1203ce2b6fcf1ff2b03aeca52c45f8a157e"; 18417 + sha256 = "1wzhz2kd75vymy88y6l1mc6w3vkrysil5vfc5jv1809x33g0s6bl"; 18418 18418 }; 18419 18419 meta.homepage = "https://github.com/lervag/vimtex/"; 18420 18420 }; ··· 18553 18553 18554 18554 which-key-nvim = buildVimPlugin { 18555 18555 pname = "which-key.nvim"; 18556 - version = "2024-11-06"; 18556 + version = "2024-11-26"; 18557 18557 src = fetchFromGitHub { 18558 18558 owner = "folke"; 18559 18559 repo = "which-key.nvim"; 18560 - rev = "68e37e12913a66b60073906f5d3f14dee0de19f2"; 18561 - sha256 = "134k8p7d69mg4k1cnb432bxl8sm7kf2y3hlzwz0jby7nwff99pp6"; 18560 + rev = "b9684c6ec54d8a8452bdcf0d613c7ad0223fc3fe"; 18561 + sha256 = "09rlc8m6l49ws10kvz3sfzfy3fmailhq11c4nmxns63962wr7q31"; 18562 18562 }; 18563 18563 meta.homepage = "https://github.com/folke/which-key.nvim/"; 18564 18564 }; ··· 18782 18782 18783 18783 yazi-nvim = buildVimPlugin { 18784 18784 pname = "yazi.nvim"; 18785 - version = "2024-11-17"; 18785 + version = "2024-11-24"; 18786 18786 src = fetchFromGitHub { 18787 18787 owner = "mikavilpas"; 18788 18788 repo = "yazi.nvim"; 18789 - rev = "faa03e9acb894533b91c811d0dafd816b995088f"; 18790 - sha256 = "1k0hxp5hy20mvcbx6cm7fd3akpcawybdwi6rgaj1v6z0r853gj8w"; 18789 + rev = "053867916a9be3cb46f84b6f095ee731bbddd213"; 18790 + sha256 = "133ifr5jkzf38lnvnnm698jrr8gx9ngpd9hx1dhvk5h50qiabg63"; 18791 18791 }; 18792 18792 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 18793 18793 }; ··· 18926 18926 18927 18927 zk-nvim = buildVimPlugin { 18928 18928 pname = "zk-nvim"; 18929 - version = "2024-11-18"; 18929 + version = "2024-11-20"; 18930 18930 src = fetchFromGitHub { 18931 18931 owner = "zk-org"; 18932 18932 repo = "zk-nvim"; 18933 - rev = "5e92a5633c00b6f34628b086f5e7fd4b3234f9e2"; 18934 - sha256 = "0x9d7djg8ikkjlz4g9h91rlrspaiiinghm1gf075h0zyqcy9x0kc"; 18933 + rev = "42dc341d897ac4da3d4a9c5c506a36153473f021"; 18934 + sha256 = "1yrw8841khd4bapmcz5i99kw4xwpvz2kzda1i1n71fnhidjr1fhx"; 18935 18935 }; 18936 18936 meta.homepage = "https://github.com/zk-org/zk-nvim/"; 18937 18937 };
+87 -87
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 50 50 }; 51 51 arduino = buildGrammar { 52 52 language = "arduino"; 53 - version = "0.0.0+rev=415ebc8"; 53 + version = "0.0.0+rev=017696b"; 54 54 src = fetchFromGitHub { 55 55 owner = "ObserverOfTime"; 56 56 repo = "tree-sitter-arduino"; 57 - rev = "415ebc8f75eb02a748faa03f5af199f08ced120f"; 58 - hash = "sha256-cgmlrAeuCnocdjI/zvafMxmXPmOE7GnrC+HlNJcT1Y0="; 57 + rev = "017696bdf47ca2b10948c5a511f9ab387722d0f3"; 58 + hash = "sha256-zIs3ujkxfgCj6VBkNy/mobsAQ2mcxtjDMHxiQEMlWm8="; 59 59 }; 60 60 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-arduino"; 61 61 }; ··· 204 204 }; 205 205 c_sharp = buildGrammar { 206 206 language = "c_sharp"; 207 - version = "0.0.0+rev=362a8a4"; 207 + version = "0.0.0+rev=285c993"; 208 208 src = fetchFromGitHub { 209 209 owner = "tree-sitter"; 210 210 repo = "tree-sitter-c-sharp"; 211 - rev = "362a8a41b265056592a0c3771664a21d23a71392"; 212 - hash = "sha256-weH0nyLpvVK/OpgvOjTuJdH2Hm4a1wVshHmhUdFq3XA="; 211 + rev = "285c993f01d9955932b45a6192055003aa70a570"; 212 + hash = "sha256-sgJw0oeJmj6ZOxBXevLIQ3oE03fRs5guY3ZfE2Xou+c="; 213 213 }; 214 214 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; 215 215 }; ··· 237 237 }; 238 238 chatito = buildGrammar { 239 239 language = "chatito"; 240 - version = "0.0.0+rev=a461f20"; 240 + version = "0.0.0+rev=b4cbe9a"; 241 241 src = fetchFromGitHub { 242 242 owner = "ObserverOfTime"; 243 243 repo = "tree-sitter-chatito"; 244 - rev = "a461f20dedb43905febb12c1635bc7d2e43e96f0"; 245 - hash = "sha256-nAdyG068usqGr9OI/bZXiNfSkIg/+L6KTcylZVNNc+o="; 244 + rev = "b4cbe9ab7672d5106e9550d8413835395a1be362"; 245 + hash = "sha256-te2Eg8J4Zf5H6FKLnCAyyKSjTABESUKzqQWwW/k/Y1c="; 246 246 }; 247 247 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-chatito"; 248 248 }; ··· 414 414 }; 415 415 desktop = buildGrammar { 416 416 language = "desktop"; 417 - version = "0.0.0+rev=d52964c"; 417 + version = "0.0.0+rev=54133af"; 418 418 src = fetchFromGitHub { 419 419 owner = "ValdezFOmar"; 420 420 repo = "tree-sitter-desktop"; 421 - rev = "d52964c67d98eaedabca6ed1ec21ae54a522e8f8"; 422 - hash = "sha256-JF6xSMKj0tZ53t+65pk4P+Mn3ubbVczJGVDGGfqDiO4="; 421 + rev = "54133af61b2a9a75fd42c49ce0c771115f81f50b"; 422 + hash = "sha256-HsAFkM7JX0hFKVMaDypP1i5GOSj2h7cLvbxIJDM0SB8="; 423 423 }; 424 424 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-desktop"; 425 425 }; ··· 548 548 }; 549 549 editorconfig = buildGrammar { 550 550 language = "editorconfig"; 551 - version = "0.0.0+rev=e47638f"; 551 + version = "0.0.0+rev=5f4f84f"; 552 552 src = fetchFromGitHub { 553 553 owner = "ValdezFOmar"; 554 554 repo = "tree-sitter-editorconfig"; 555 - rev = "e47638f125a4d8256f4c45f0570c8918d3a1b237"; 556 - hash = "sha256-9TEob2XBbCzktup168z5dJ9OXrdUm43qXy3khvGDTtw="; 555 + rev = "5f4f84f0e79049e4526c0a1db669378092ecb256"; 556 + hash = "sha256-SjH1g2a7/wc9WNkscDVgffzOc0I2ULBH70CntIAlsuE="; 557 557 }; 558 558 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; 559 559 }; ··· 735 735 }; 736 736 fortran = buildGrammar { 737 737 language = "fortran"; 738 - version = "0.0.0+rev=e9fbb3a"; 738 + version = "0.0.0+rev=4c96c4d"; 739 739 src = fetchFromGitHub { 740 740 owner = "stadelmanma"; 741 741 repo = "tree-sitter-fortran"; 742 - rev = "e9fbb3acbfc62b051616e53b17ab97b9823e8617"; 743 - hash = "sha256-G7tsnI22k7Ndur3fLnfr2xk4fUaJ4kIy3Dw0GuqHSqg="; 742 + rev = "4c96c4d00b5c17b109028e8627407971085034ce"; 743 + hash = "sha256-c/UfQOUfIAL6BVprefuWmCSZJXP90cRN64OgPgWJgN0="; 744 744 }; 745 745 meta.homepage = "https://github.com/stadelmanma/tree-sitter-fortran"; 746 746 }; ··· 890 890 }; 891 891 gleam = buildGrammar { 892 892 language = "gleam"; 893 - version = "0.0.0+rev=2702fe8"; 893 + version = "0.0.0+rev=066704e"; 894 894 src = fetchFromGitHub { 895 895 owner = "gleam-lang"; 896 896 repo = "tree-sitter-gleam"; 897 - rev = "2702fe84b986e4403a071bcb112d48e3dcde0ca4"; 898 - hash = "sha256-DY79MOnZqb145DtmUyhma0WZ5PksDeqVvhwGuvFXGjM="; 897 + rev = "066704e4826699e754d351e3bbe12bf2e51de9d8"; 898 + hash = "sha256-2gNta/JR6FOiidUAbcfcQol5Eb7pa8omDMsIj8TXXAE="; 899 899 }; 900 900 meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; 901 901 }; ··· 967 967 }; 968 968 go = buildGrammar { 969 969 language = "go"; 970 - version = "0.0.0+rev=0942d76"; 970 + version = "0.0.0+rev=12fe553"; 971 971 src = fetchFromGitHub { 972 972 owner = "tree-sitter"; 973 973 repo = "tree-sitter-go"; 974 - rev = "0942d76fc517739b5d29a0e420b5e602d19c724d"; 975 - hash = "sha256-2j5cYuIn2gMFzNixijUcA9Ax2US8PEb/5VK44rjnZs4="; 974 + rev = "12fe553fdaaa7449f764bc876fd777704d4fb752"; 975 + hash = "sha256-E8ieOSkpmdsMrj1m0op0WA5ki4VkodHBMtJRCmYtmGY="; 976 976 }; 977 977 meta.homepage = "https://github.com/tree-sitter/tree-sitter-go"; 978 978 }; ··· 1044 1044 }; 1045 1045 gpg = buildGrammar { 1046 1046 language = "gpg"; 1047 - version = "0.0.0+rev=f99323f"; 1047 + version = "0.0.0+rev=63e80cf"; 1048 1048 src = fetchFromGitHub { 1049 1049 owner = "ObserverOfTime"; 1050 1050 repo = "tree-sitter-gpg-config"; 1051 - rev = "f99323fb8f3f10b6c69db0c2f6d0a14bd7330675"; 1052 - hash = "sha256-VJXXpHVMKUNaslsjoKR6XsaUJ8C+0MyidXtRPRywnpg="; 1051 + rev = "63e80cfe1302da9f9c7ee8d9df295f47d7d181bf"; 1052 + hash = "sha256-W8BglyjX/OytZCACpVi9V/k7A0Q4JaVQV+9NcyqtFsc="; 1053 1053 }; 1054 1054 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-gpg-config"; 1055 1055 }; ··· 1221 1221 }; 1222 1222 hoon = buildGrammar { 1223 1223 language = "hoon"; 1224 - version = "0.0.0+rev=a24c5a3"; 1224 + version = "0.0.0+rev=2ac017d"; 1225 1225 src = fetchFromGitHub { 1226 1226 owner = "urbit-pilled"; 1227 1227 repo = "tree-sitter-hoon"; 1228 - rev = "a24c5a39d1d7e993a8bee913c8e8b6a652ca5ae8"; 1229 - hash = "sha256-jBKgZaZpm81ufN32sRNsCRtZhI5m057J+UY1uQdZK3E="; 1228 + rev = "2ac017d168aca1e75b3df94dbbb6b3083f79cdfe"; 1229 + hash = "sha256-fRaEZGpZWiwhClYZnkkCC8rIamR38PhesY5LY6GFozQ="; 1230 1230 }; 1231 1231 meta.homepage = "https://github.com/urbit-pilled/tree-sitter-hoon"; 1232 1232 }; ··· 1441 1441 }; 1442 1442 just = buildGrammar { 1443 1443 language = "just"; 1444 - version = "0.0.0+rev=11b8c43"; 1444 + version = "0.0.0+rev=f6d2930"; 1445 1445 src = fetchFromGitHub { 1446 1446 owner = "IndianBoy42"; 1447 1447 repo = "tree-sitter-just"; 1448 - rev = "11b8c436bfcadaa22aa6299d9635685045ad97f3"; 1449 - hash = "sha256-duCuKIyfCkxXDk6eXSFwfQ0mHRQP526yWL3TZDjuENY="; 1448 + rev = "f6d29300f9fee15dcd8c2b25ab762001d38da731"; 1449 + hash = "sha256-b42Dt9X0gaHjywb+tahNomGfDx9ZP+roudNuGAhKYPg="; 1450 1450 }; 1451 1451 meta.homepage = "https://github.com/IndianBoy42/tree-sitter-just"; 1452 1452 }; ··· 1530 1530 }; 1531 1531 ledger = buildGrammar { 1532 1532 language = "ledger"; 1533 - version = "0.0.0+rev=a2eff7f"; 1533 + version = "0.0.0+rev=19699bd"; 1534 1534 src = fetchFromGitHub { 1535 1535 owner = "cbarrete"; 1536 1536 repo = "tree-sitter-ledger"; 1537 - rev = "a2eff7fee59ee6adfc4a3646e2f41ba3b340a97d"; 1538 - hash = "sha256-7TM+Y2lDt53mxfeE5XepcdnoUtzv9FzH0klEEl4BOWU="; 1537 + rev = "19699bd9fe0bacf90d464747aab9b6179fc7b1c0"; 1538 + hash = "sha256-5kTLVwakxAph33nWqMvGcHERJaSzvUGImxv7obLGz1E="; 1539 1539 }; 1540 1540 meta.homepage = "https://github.com/cbarrete/tree-sitter-ledger"; 1541 1541 }; ··· 1730 1730 }; 1731 1731 mlir = buildGrammar { 1732 1732 language = "mlir"; 1733 - version = "0.0.0+rev=5b8867f"; 1733 + version = "0.0.0+rev=3362ba5"; 1734 1734 src = fetchFromGitHub { 1735 1735 owner = "artagnon"; 1736 1736 repo = "tree-sitter-mlir"; 1737 - rev = "5b8867f59954c9cae76f2aa1ac88ae513de412bd"; 1738 - hash = "sha256-gbqXyIGlj7XnafqlGUaG0iPHRBabcni3pJxlehO70jg="; 1737 + rev = "3362ba5caab4de11f42b4a736a0e2bcdc9343480"; 1738 + hash = "sha256-LyjGD0aND/ErSDc80zvA89TbWvvMcJGd+r43aEw3BZk="; 1739 1739 }; 1740 1740 generate = true; 1741 1741 meta.homepage = "https://github.com/artagnon/tree-sitter-mlir"; ··· 1753 1753 }; 1754 1754 nasm = buildGrammar { 1755 1755 language = "nasm"; 1756 - version = "0.0.0+rev=570f3d7"; 1756 + version = "0.0.0+rev=d1b3638"; 1757 1757 src = fetchFromGitHub { 1758 1758 owner = "naclsn"; 1759 1759 repo = "tree-sitter-nasm"; 1760 - rev = "570f3d7be01fffc751237f4cfcf52d04e20532d1"; 1761 - hash = "sha256-205joaeq4ZSyfgxagPQTsx0zpZwSEpq1VCQoHJ77OL8="; 1760 + rev = "d1b3638d017f2a8585e26dcfc66fe1df94185e30"; 1761 + hash = "sha256-38yRvaSkHZ7iRmHlXdCssJtd/RQRfBB437HzBwWv2mg="; 1762 1762 }; 1763 1763 meta.homepage = "https://github.com/naclsn/tree-sitter-nasm"; 1764 1764 }; ··· 1852 1852 }; 1853 1853 nu = buildGrammar { 1854 1854 language = "nu"; 1855 - version = "0.0.0+rev=45f9e51"; 1855 + version = "0.0.0+rev=74e6037"; 1856 1856 src = fetchFromGitHub { 1857 1857 owner = "nushell"; 1858 1858 repo = "tree-sitter-nu"; 1859 - rev = "45f9e51e5ee296dc0965a80f3d00178d985dffbd"; 1860 - hash = "sha256-G4m2cSouRvMaxoNCKuzGK3+V+rAiaGSwVYA1DYwHwpk="; 1859 + rev = "74e6037383ce3a77ed6fdb8281bbd69316c723a4"; 1860 + hash = "sha256-gkHPhTy/GxsYekMwVKTbSPpN6zyU0QWuhAdqOeF3u5M="; 1861 1861 }; 1862 1862 meta.homepage = "https://github.com/nushell/tree-sitter-nu"; 1863 1863 }; ··· 1965 1965 }; 1966 1966 pem = buildGrammar { 1967 1967 language = "pem"; 1968 - version = "0.0.0+rev=217ff2a"; 1968 + version = "0.0.0+rev=1d16b8e"; 1969 1969 src = fetchFromGitHub { 1970 1970 owner = "ObserverOfTime"; 1971 1971 repo = "tree-sitter-pem"; 1972 - rev = "217ff2af3f2db15a79ab7e3d21ea1e0c17e71a1a"; 1973 - hash = "sha256-KGJ9ulGi3gKUJxNXil5Zai4v5/5ImUSMVP3/19ra3A0="; 1972 + rev = "1d16b8e063fdf4385e389096c4bc4999eaaef05f"; 1973 + hash = "sha256-NhiSqaLjzEJHj8JimFdcZBVAR00lKf9O5JLtwIUCKhw="; 1974 1974 }; 1975 1975 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-pem"; 1976 1976 }; 1977 1977 perl = buildGrammar { 1978 1978 language = "perl"; 1979 - version = "0.0.0+rev=089c124"; 1979 + version = "0.0.0+rev=7120632"; 1980 1980 src = fetchFromGitHub { 1981 1981 owner = "tree-sitter-perl"; 1982 1982 repo = "tree-sitter-perl"; 1983 - rev = "089c124d3c0c406cc01e0936c0b3941618a1f45d"; 1984 - hash = "sha256-4hm76cRm+w0sFWXq1AxdagcXHfnwGVxxwHkLvuXmqxE="; 1983 + rev = "71206326a8bcbdc2032f852bab8698e315bf5910"; 1984 + hash = "sha256-EySvg8EcCrRS7QfiainRgsCYg8Kvn5DROLxrnyD3rkU="; 1985 1985 }; 1986 1986 meta.homepage = "https://github.com/tree-sitter-perl/tree-sitter-perl"; 1987 1987 }; 1988 1988 php = buildGrammar { 1989 1989 language = "php"; 1990 - version = "0.0.0+rev=6918e69"; 1990 + version = "0.0.0+rev=43aad2b"; 1991 1991 src = fetchFromGitHub { 1992 1992 owner = "tree-sitter"; 1993 1993 repo = "tree-sitter-php"; 1994 - rev = "6918e6908d78780ddd996b9fcbaa835b42782d5b"; 1995 - hash = "sha256-U9OQNyjTKQVMLeiB/tNNA2hl7wug4q/pK22X4QRskk0="; 1994 + rev = "43aad2b9a98aa8e603ea0cf5bb630728a5591ad8"; 1995 + hash = "sha256-+CnUnrNRaD+CejyYjqelMYA1K3GN/WPeZBJoP2y5cmI="; 1996 1996 }; 1997 1997 location = "php"; 1998 1998 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1999 1999 }; 2000 2000 php_only = buildGrammar { 2001 2001 language = "php_only"; 2002 - version = "0.0.0+rev=6918e69"; 2002 + version = "0.0.0+rev=43aad2b"; 2003 2003 src = fetchFromGitHub { 2004 2004 owner = "tree-sitter"; 2005 2005 repo = "tree-sitter-php"; 2006 - rev = "6918e6908d78780ddd996b9fcbaa835b42782d5b"; 2007 - hash = "sha256-U9OQNyjTKQVMLeiB/tNNA2hl7wug4q/pK22X4QRskk0="; 2006 + rev = "43aad2b9a98aa8e603ea0cf5bb630728a5591ad8"; 2007 + hash = "sha256-+CnUnrNRaD+CejyYjqelMYA1K3GN/WPeZBJoP2y5cmI="; 2008 2008 }; 2009 2009 location = "php_only"; 2010 2010 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; ··· 2055 2055 }; 2056 2056 poe_filter = buildGrammar { 2057 2057 language = "poe_filter"; 2058 - version = "0.0.0+rev=592476d"; 2058 + version = "0.0.0+rev=908ba6a"; 2059 2059 src = fetchFromGitHub { 2060 2060 owner = "ObserverOfTime"; 2061 2061 repo = "tree-sitter-poe-filter"; 2062 - rev = "592476d81f95d2451f2ca107dc872224c76fecdf"; 2063 - hash = "sha256-dmo/t8gCT7UTlhBvxH4xmliR3Evazv3qsz9EWz7h/gU="; 2062 + rev = "908ba6accbd9cd3fdf0a208fdc186b9ca3db123c"; 2063 + hash = "sha256-WeDnIGTr3H5kqgGcMe9zEXdErg1FETNWuY0Pf4G3gAY="; 2064 2064 }; 2065 2065 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-poe-filter"; 2066 2066 }; ··· 2289 2289 }; 2290 2290 r = buildGrammar { 2291 2291 language = "r"; 2292 - version = "0.0.0+rev=c094bd5"; 2292 + version = "0.0.0+rev=a0d3e33"; 2293 2293 src = fetchFromGitHub { 2294 2294 owner = "r-lib"; 2295 2295 repo = "tree-sitter-r"; 2296 - rev = "c094bd57652f8a08edc31d79a31222268fe798ee"; 2297 - hash = "sha256-gF1sarYoI+6pjww1++eEu0sUDlH2cOddP1k/SjFozFg="; 2296 + rev = "a0d3e3307489c3ca54da8c7b5b4e0c5f5fd6953a"; 2297 + hash = "sha256-ryKgJ+3dv/O2AN5zIGtQnKml0zU0/s4Io8Tumpm62Gc="; 2298 2298 }; 2299 2299 meta.homepage = "https://github.com/r-lib/tree-sitter-r"; 2300 2300 }; ··· 2421 2421 }; 2422 2422 robot = buildGrammar { 2423 2423 language = "robot"; 2424 - version = "0.0.0+rev=322e4cc"; 2424 + version = "0.0.0+rev=17c2300"; 2425 2425 src = fetchFromGitHub { 2426 2426 owner = "Hubro"; 2427 2427 repo = "tree-sitter-robot"; 2428 - rev = "322e4cc65754d2b3fdef4f2f8a71e0762e3d13af"; 2429 - hash = "sha256-VxWZWFPYkD3odM3TpEgLKsFnN8wB6xoIiXUYqBbpDqw="; 2428 + rev = "17c2300e91fc9da4ba14c16558bf4292941dc074"; 2429 + hash = "sha256-9f0xFmhEQnETvV2SAZW+jRtsVdl0ZT3CDmGkcd3Fn88="; 2430 2430 }; 2431 2431 meta.homepage = "https://github.com/Hubro/tree-sitter-robot"; 2432 2432 }; ··· 2498 2498 }; 2499 2499 rust = buildGrammar { 2500 2500 language = "rust"; 2501 - version = "0.0.0+rev=32c17ce"; 2501 + version = "0.0.0+rev=cad8a20"; 2502 2502 src = fetchFromGitHub { 2503 2503 owner = "tree-sitter"; 2504 2504 repo = "tree-sitter-rust"; 2505 - rev = "32c17ce5463818032a9c252a849b910315b6e485"; 2506 - hash = "sha256-ThsMUVCql0Z9ztMQDeLXR7gTWYY+uMGWuPvr3P8A/Hk="; 2505 + rev = "cad8a206f2e4194676b9699f26f6560d07130d3f"; 2506 + hash = "sha256-aT+tlrEKMgWqTEq/NHh8Vj92h6i1aU6uPikDyaP2vfc="; 2507 2507 }; 2508 2508 meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; 2509 2509 }; 2510 2510 scala = buildGrammar { 2511 2511 language = "scala"; 2512 - version = "0.0.0+rev=28c3be0"; 2512 + version = "0.0.0+rev=5f44942"; 2513 2513 src = fetchFromGitHub { 2514 2514 owner = "tree-sitter"; 2515 2515 repo = "tree-sitter-scala"; 2516 - rev = "28c3be045afe1e293b5ba1a74e759601e74050c3"; 2517 - hash = "sha256-xJeimj4OJ2Fdqu2rA+FnCVvBo56qC9vreo7EOY4w3kc="; 2516 + rev = "5f44942205c2364ce2ced14a40687d1e09685034"; 2517 + hash = "sha256-qe2ozmVxjeTIZyhnDegJj9nBccD4mpevVcF5wIsJSbI="; 2518 2518 }; 2519 2519 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 2520 2520 }; ··· 2678 2678 }; 2679 2679 sql = buildGrammar { 2680 2680 language = "sql"; 2681 - version = "0.0.0+rev=cf6e016"; 2681 + version = "0.0.0+rev=3d516e6"; 2682 2682 src = fetchFromGitHub { 2683 2683 owner = "derekstride"; 2684 2684 repo = "tree-sitter-sql"; 2685 - rev = "cf6e016eef607e909761d2c5170cc58b4da2bc6a"; 2686 - hash = "sha256-MZ0t5XrzKBrv5g8ReG+1F839xxRwp2xZKkGSJPTluhQ="; 2685 + rev = "3d516e6ae778bd41f9d5178823798ff6af96da60"; 2686 + hash = "sha256-5lmnH4ro4+M5dCpW8GnnOHEuSCCQMCqhlK3bnzEr518="; 2687 2687 }; 2688 2688 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 2689 2689 }; ··· 2878 2878 }; 2879 2879 teal = buildGrammar { 2880 2880 language = "teal"; 2881 - version = "0.0.0+rev=a8901ac"; 2881 + version = "0.0.0+rev=635e616"; 2882 2882 src = fetchFromGitHub { 2883 2883 owner = "euclidianAce"; 2884 2884 repo = "tree-sitter-teal"; 2885 - rev = "a8901ac8a60a11784e73542ed7a7887e206764e5"; 2886 - hash = "sha256-VxFSKK7kG3hjcmCXXqi8FQZlG+aS/pjobuaCxKe8hOo="; 2885 + rev = "635e61625949a0711f63b52cfaaac1c75769885c"; 2886 + hash = "sha256-LOUASVnU0KSyqcLUFbrwvqWeotX6FzoqKJAkSEapvyk="; 2887 2887 }; 2888 2888 generate = true; 2889 2889 meta.homepage = "https://github.com/euclidianAce/tree-sitter-teal"; 2890 2890 }; 2891 2891 templ = buildGrammar { 2892 2892 language = "templ"; 2893 - version = "0.0.0+rev=c926ed7"; 2893 + version = "0.0.0+rev=dc41c08"; 2894 2894 src = fetchFromGitHub { 2895 2895 owner = "vrischmann"; 2896 2896 repo = "tree-sitter-templ"; 2897 - rev = "c926ed73e101bbdef3f54eaa05b8fa30d2676dfe"; 2898 - hash = "sha256-mXZij3BFmekuQN+I1NXUyIXpf7C3xxO47KKt2w/G0QQ="; 2897 + rev = "dc41c080783c6305d66471672a9c9147561126e4"; 2898 + hash = "sha256-zOjHKBOFOLDji8U+4ZNrpqprw/7eGwJU9w+q8i4Neno="; 2899 2899 }; 2900 2900 meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; 2901 2901 }; ··· 3137 3137 }; 3138 3138 v = buildGrammar { 3139 3139 language = "v"; 3140 - version = "0.0.0+rev=bb0a1bd"; 3140 + version = "0.0.0+rev=bbba20d"; 3141 3141 src = fetchFromGitHub { 3142 3142 owner = "vlang"; 3143 3143 repo = "v-analyzer"; 3144 - rev = "bb0a1bd4c2a56f6b191b7d051ea3f2976c3bcb11"; 3145 - hash = "sha256-I92i27S6d8VH1DFVfqVCH8ZxvVfSu86DcPIu/lxKIh4="; 3144 + rev = "bbba20d654a764c2d2de272fd5f45a2433870640"; 3145 + hash = "sha256-icEa8TeoF/MZILYwS/ZqTUaiBEqoHKVV7etUPwyuIkw="; 3146 3146 }; 3147 3147 location = "tree_sitter_v"; 3148 3148 meta.homepage = "https://github.com/vlang/v-analyzer"; ··· 3315 3315 }; 3316 3316 xresources = buildGrammar { 3317 3317 language = "xresources"; 3318 - version = "0.0.0+rev=0e315b8"; 3318 + version = "0.0.0+rev=ce8129b"; 3319 3319 src = fetchFromGitHub { 3320 3320 owner = "ValdezFOmar"; 3321 3321 repo = "tree-sitter-xresources"; 3322 - rev = "0e315b84aaf018533bbf3fb15360cf74eaa0305b"; 3323 - hash = "sha256-MVraqKJardqS3jtWKmRRDN8KOY6H1jv3OlxI80LprLk="; 3322 + rev = "ce8129b03f03413f18f8cd989f88c05c59151bb5"; 3323 + hash = "sha256-r/3aFqq6e8LYUOQ5HggqL84jlovixBdUzTzWXYjFN0E="; 3324 3324 }; 3325 3325 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-xresources"; 3326 3326 };
+1 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 175 175 pname = "avante-nvim-lib"; 176 176 inherit (oldAttrs) version src; 177 177 178 - cargoHash = "sha256-M58LL50uddn2siS3j8WovWSymdPmbJyZg1y6pGudgEo="; 178 + cargoHash = "sha256-aB+KhqSTGTiZKml6G+cte94EAWNWo1dP8igfFOIfHXA="; 179 179 180 180 nativeBuildInputs = [ 181 181 pkg-config
+2 -2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 234 234 https://github.com/ms-jpq/coq.thirdparty/,HEAD, 235 235 https://github.com/jvoorhis/coq.vim/,, 236 236 https://github.com/ms-jpq/coq_nvim/,, 237 - https://github.com/isovector/cornelis/,HEAD, 237 + https://github.com/agda/cornelis/,HEAD, 238 238 https://github.com/lfilho/cosco.vim/,, 239 239 https://github.com/nixprime/cpsm/,, 240 240 https://github.com/saecki/crates.nvim/,, ··· 722 722 https://github.com/hrsh7th/nvim-cmp/,, 723 723 https://github.com/weilbith/nvim-code-action-menu/,, 724 724 https://github.com/willothy/nvim-cokeline/,HEAD, 725 - https://github.com/nvchad/nvim-colorizer.lua/,, 725 + https://github.com/catgoose/nvim-colorizer.lua/,, 726 726 https://github.com/terrortylor/nvim-comment/,, 727 727 https://github.com/roxma/nvim-completion-manager/,, 728 728 https://github.com/klen/nvim-config-local/,,
+2 -1
pkgs/applications/misc/lutris/fhsenv.nix
··· 23 23 ]; 24 24 25 25 in buildFHSEnv { 26 - name = "lutris"; 26 + pname = "lutris"; 27 + inherit (lutris-unwrapped) version; 27 28 28 29 runScript = "lutris"; 29 30
+11
pkgs/applications/misc/prusa-slicer/default.nix
··· 90 90 rev = "version_${finalAttrs.version}"; 91 91 }; 92 92 93 + # required for GCC 14 94 + postPatch = '' 95 + substituteInPlace src/libslic3r/Arrange/Core/DataStoreTraits.hpp \ 96 + --replace-fail \ 97 + "WritableDataStoreTraits<ArrItem>::template set" \ 98 + "WritableDataStoreTraits<ArrItem>::set" 99 + ''; 100 + 93 101 nativeBuildInputs = [ 94 102 cmake 95 103 pkg-config 96 104 wrapGAppsHook3 105 + wxGTK-override' 97 106 ]; 98 107 99 108 buildInputs = [ ··· 131 140 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 132 141 darwin.apple_sdk_11_0.frameworks.CoreWLAN 133 142 ]; 143 + 144 + strictDeps = true; 134 145 135 146 separateDebugInfo = true; 136 147
+2 -10
pkgs/applications/networking/browsers/floorp/default.nix
··· 9 9 ( 10 10 (buildMozillaMach rec { 11 11 pname = "floorp"; 12 - packageVersion = "11.20.0"; 12 + packageVersion = "11.21.0"; 13 13 applicationName = "Floorp"; 14 14 binaryName = "floorp"; 15 15 branding = "browser/branding/official"; ··· 24 24 repo = "Floorp"; 25 25 fetchSubmodules = true; 26 26 rev = "v${packageVersion}"; 27 - hash = "sha256-+FVnG8CKEQdFN9bO8rUZadp+d8keCB98T7qt9OBfLDA="; 27 + hash = "sha256-gb190h7BAt0biE/RQayyzwSFCDEMe4F8YT6Re2mK9r4="; 28 28 }; 29 29 30 30 extraConfigureFlags = [ ··· 74 74 (prev: { 75 75 MOZ_DATA_REPORTING = ""; 76 76 MOZ_TELEMETRY_REPORTING = ""; 77 - 78 - # Upstream already includes some of the bugfix patches that are applied by 79 - # `buildMozillaMach`. Pick out only the relevant ones for Floorp and override 80 - # the list here. 81 - patches = [ 82 - ../firefox/env_var_for_system_dir-ff111.patch 83 - ../firefox/no-buildconfig-ffx121.patch 84 - ]; 85 77 })
-4
pkgs/build-support/vm/default.nix
··· 176 176 fi 177 177 source $stdenv/setup 178 178 179 - # Set the system time from the hardware clock. Works around an 180 - # apparent KVM > 1.5.2 bug. 181 - ${util-linux}/bin/hwclock -s 182 - 183 179 export NIX_STORE=${storeDir} 184 180 export NIX_BUILD_TOP=/tmp 185 181 export TMPDIR=/tmp
+2 -2
pkgs/by-name/bf/bfg-repo-cleaner/package.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bfg-repo-cleaner"; 5 - version = "1.13.0"; 5 + version = "1.14.0"; 6 6 7 7 jarName = "bfg-${version}.jar"; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://maven/com/madgag/bfg/${version}/${jarName}"; 11 - sha256 = "1kn84rsvms1v5l1j2xgrk7dc7mnsmxkc6sqd94mnim22vnwvl8mz"; 11 + hash = "sha256-GnXpOQVB9LVdnAElazYbgVweCiY+L7PQcrVcKRHq0Lc="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+1394
pkgs/by-name/bi/binwalk/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "adler" 7 + version = "1.0.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 + 11 + [[package]] 12 + name = "adler2" 13 + version = "2.0.0" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 16 + 17 + [[package]] 18 + name = "aho-corasick" 19 + version = "1.1.3" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 22 + dependencies = [ 23 + "memchr", 24 + ] 25 + 26 + [[package]] 27 + name = "android-tzdata" 28 + version = "0.1.1" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 31 + 32 + [[package]] 33 + name = "android_system_properties" 34 + version = "0.1.5" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 37 + dependencies = [ 38 + "libc", 39 + ] 40 + 41 + [[package]] 42 + name = "anstream" 43 + version = "0.6.15" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 46 + dependencies = [ 47 + "anstyle", 48 + "anstyle-parse", 49 + "anstyle-query", 50 + "anstyle-wincon", 51 + "colorchoice", 52 + "is_terminal_polyfill", 53 + "utf8parse", 54 + ] 55 + 56 + [[package]] 57 + name = "anstyle" 58 + version = "1.0.8" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 61 + 62 + [[package]] 63 + name = "anstyle-parse" 64 + version = "0.2.5" 65 + source = "registry+https://github.com/rust-lang/crates.io-index" 66 + checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 67 + dependencies = [ 68 + "utf8parse", 69 + ] 70 + 71 + [[package]] 72 + name = "anstyle-query" 73 + version = "1.1.1" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 76 + dependencies = [ 77 + "windows-sys 0.52.0", 78 + ] 79 + 80 + [[package]] 81 + name = "anstyle-wincon" 82 + version = "3.0.4" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 85 + dependencies = [ 86 + "anstyle", 87 + "windows-sys 0.52.0", 88 + ] 89 + 90 + [[package]] 91 + name = "autocfg" 92 + version = "1.3.0" 93 + source = "registry+https://github.com/rust-lang/crates.io-index" 94 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 95 + 96 + [[package]] 97 + name = "base64" 98 + version = "0.22.1" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 101 + 102 + [[package]] 103 + name = "binwalk" 104 + version = "3.1.0" 105 + dependencies = [ 106 + "aho-corasick", 107 + "base64", 108 + "bzip2", 109 + "chrono", 110 + "clap", 111 + "colored", 112 + "crc32-v2", 113 + "crc32c", 114 + "entropy", 115 + "env_logger", 116 + "flate2", 117 + "log", 118 + "plotters", 119 + "serde", 120 + "serde_json", 121 + "termsize", 122 + "threadpool", 123 + "uuid", 124 + "walkdir", 125 + "xxhash-rust", 126 + "xz2", 127 + ] 128 + 129 + [[package]] 130 + name = "bitflags" 131 + version = "1.3.2" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 134 + 135 + [[package]] 136 + name = "bitflags" 137 + version = "2.6.0" 138 + source = "registry+https://github.com/rust-lang/crates.io-index" 139 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 140 + 141 + [[package]] 142 + name = "bumpalo" 143 + version = "3.16.0" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 146 + 147 + [[package]] 148 + name = "bytemuck" 149 + version = "1.18.0" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" 152 + 153 + [[package]] 154 + name = "byteorder" 155 + version = "1.5.0" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 158 + 159 + [[package]] 160 + name = "bzip2" 161 + version = "0.4.4" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 164 + dependencies = [ 165 + "bzip2-sys", 166 + "libc", 167 + ] 168 + 169 + [[package]] 170 + name = "bzip2-sys" 171 + version = "0.1.11+1.0.8" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 174 + dependencies = [ 175 + "cc", 176 + "libc", 177 + "pkg-config", 178 + ] 179 + 180 + [[package]] 181 + name = "cc" 182 + version = "1.1.21" 183 + source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" 185 + dependencies = [ 186 + "shlex", 187 + ] 188 + 189 + [[package]] 190 + name = "cfg-if" 191 + version = "1.0.0" 192 + source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 194 + 195 + [[package]] 196 + name = "chrono" 197 + version = "0.4.38" 198 + source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 200 + dependencies = [ 201 + "android-tzdata", 202 + "iana-time-zone", 203 + "js-sys", 204 + "num-traits", 205 + "wasm-bindgen", 206 + "windows-targets 0.52.6", 207 + ] 208 + 209 + [[package]] 210 + name = "clap" 211 + version = "4.5.18" 212 + source = "registry+https://github.com/rust-lang/crates.io-index" 213 + checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" 214 + dependencies = [ 215 + "clap_builder", 216 + "clap_derive", 217 + ] 218 + 219 + [[package]] 220 + name = "clap_builder" 221 + version = "4.5.18" 222 + source = "registry+https://github.com/rust-lang/crates.io-index" 223 + checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" 224 + dependencies = [ 225 + "anstream", 226 + "anstyle", 227 + "clap_lex", 228 + "strsim", 229 + ] 230 + 231 + [[package]] 232 + name = "clap_derive" 233 + version = "4.5.18" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 236 + dependencies = [ 237 + "heck", 238 + "proc-macro2", 239 + "quote", 240 + "syn", 241 + ] 242 + 243 + [[package]] 244 + name = "clap_lex" 245 + version = "0.7.2" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 248 + 249 + [[package]] 250 + name = "color_quant" 251 + version = "1.1.0" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 254 + 255 + [[package]] 256 + name = "colorchoice" 257 + version = "1.0.2" 258 + source = "registry+https://github.com/rust-lang/crates.io-index" 259 + checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 260 + 261 + [[package]] 262 + name = "colored" 263 + version = "2.1.0" 264 + source = "registry+https://github.com/rust-lang/crates.io-index" 265 + checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 266 + dependencies = [ 267 + "lazy_static", 268 + "windows-sys 0.48.0", 269 + ] 270 + 271 + [[package]] 272 + name = "core-foundation" 273 + version = "0.9.4" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 276 + dependencies = [ 277 + "core-foundation-sys", 278 + "libc", 279 + ] 280 + 281 + [[package]] 282 + name = "core-foundation-sys" 283 + version = "0.8.7" 284 + source = "registry+https://github.com/rust-lang/crates.io-index" 285 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 286 + 287 + [[package]] 288 + name = "core-graphics" 289 + version = "0.23.2" 290 + source = "registry+https://github.com/rust-lang/crates.io-index" 291 + checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 292 + dependencies = [ 293 + "bitflags 1.3.2", 294 + "core-foundation", 295 + "core-graphics-types", 296 + "foreign-types", 297 + "libc", 298 + ] 299 + 300 + [[package]] 301 + name = "core-graphics-types" 302 + version = "0.1.3" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 305 + dependencies = [ 306 + "bitflags 1.3.2", 307 + "core-foundation", 308 + "libc", 309 + ] 310 + 311 + [[package]] 312 + name = "core-text" 313 + version = "20.1.0" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "c9d2790b5c08465d49f8dc05c8bcae9fea467855947db39b0f8145c091aaced5" 316 + dependencies = [ 317 + "core-foundation", 318 + "core-graphics", 319 + "foreign-types", 320 + "libc", 321 + ] 322 + 323 + [[package]] 324 + name = "crc32-v2" 325 + version = "0.0.4" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "7f546fcecc3490696c3bea070d8949208279bbc220a5a7738573a10f584cda51" 328 + 329 + [[package]] 330 + name = "crc32c" 331 + version = "0.6.8" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" 334 + dependencies = [ 335 + "rustc_version", 336 + ] 337 + 338 + [[package]] 339 + name = "crc32fast" 340 + version = "1.4.2" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 343 + dependencies = [ 344 + "cfg-if", 345 + ] 346 + 347 + [[package]] 348 + name = "dirs" 349 + version = "5.0.1" 350 + source = "registry+https://github.com/rust-lang/crates.io-index" 351 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 352 + dependencies = [ 353 + "dirs-sys", 354 + ] 355 + 356 + [[package]] 357 + name = "dirs-sys" 358 + version = "0.4.1" 359 + source = "registry+https://github.com/rust-lang/crates.io-index" 360 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 361 + dependencies = [ 362 + "libc", 363 + "option-ext", 364 + "redox_users", 365 + "windows-sys 0.48.0", 366 + ] 367 + 368 + [[package]] 369 + name = "dlib" 370 + version = "0.5.2" 371 + source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 373 + dependencies = [ 374 + "libloading", 375 + ] 376 + 377 + [[package]] 378 + name = "dwrote" 379 + version = "0.11.1" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "2da3498378ed373237bdef1eddcc64e7be2d3ba4841f4c22a998e81cadeea83c" 382 + dependencies = [ 383 + "lazy_static", 384 + "libc", 385 + "winapi", 386 + "wio", 387 + ] 388 + 389 + [[package]] 390 + name = "entropy" 391 + version = "0.4.2" 392 + source = "registry+https://github.com/rust-lang/crates.io-index" 393 + checksum = "d68716e45ef572f351be6fad93a7bbf35242b4289a2ff75434032e5d73d74cc2" 394 + 395 + [[package]] 396 + name = "env_filter" 397 + version = "0.1.2" 398 + source = "registry+https://github.com/rust-lang/crates.io-index" 399 + checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" 400 + dependencies = [ 401 + "log", 402 + "regex", 403 + ] 404 + 405 + [[package]] 406 + name = "env_logger" 407 + version = "0.11.5" 408 + source = "registry+https://github.com/rust-lang/crates.io-index" 409 + checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 410 + dependencies = [ 411 + "anstream", 412 + "anstyle", 413 + "env_filter", 414 + "humantime", 415 + "log", 416 + ] 417 + 418 + [[package]] 419 + name = "fdeflate" 420 + version = "0.3.4" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 423 + dependencies = [ 424 + "simd-adler32", 425 + ] 426 + 427 + [[package]] 428 + name = "flate2" 429 + version = "1.0.34" 430 + source = "registry+https://github.com/rust-lang/crates.io-index" 431 + checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 432 + dependencies = [ 433 + "crc32fast", 434 + "miniz_oxide 0.8.0", 435 + ] 436 + 437 + [[package]] 438 + name = "float-ord" 439 + version = "0.3.2" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "8ce81f49ae8a0482e4c55ea62ebbd7e5a686af544c00b9d090bba3ff9be97b3d" 442 + 443 + [[package]] 444 + name = "font-kit" 445 + version = "0.14.2" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "b64b34f4efd515f905952d91bc185039863705592c0c53ae6d979805dd154520" 448 + dependencies = [ 449 + "bitflags 2.6.0", 450 + "byteorder", 451 + "core-foundation", 452 + "core-graphics", 453 + "core-text", 454 + "dirs", 455 + "dwrote", 456 + "float-ord", 457 + "freetype-sys", 458 + "lazy_static", 459 + "libc", 460 + "log", 461 + "pathfinder_geometry", 462 + "pathfinder_simd", 463 + "walkdir", 464 + "winapi", 465 + "yeslogic-fontconfig-sys", 466 + ] 467 + 468 + [[package]] 469 + name = "foreign-types" 470 + version = "0.5.0" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 473 + dependencies = [ 474 + "foreign-types-macros", 475 + "foreign-types-shared", 476 + ] 477 + 478 + [[package]] 479 + name = "foreign-types-macros" 480 + version = "0.2.3" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 483 + dependencies = [ 484 + "proc-macro2", 485 + "quote", 486 + "syn", 487 + ] 488 + 489 + [[package]] 490 + name = "foreign-types-shared" 491 + version = "0.3.1" 492 + source = "registry+https://github.com/rust-lang/crates.io-index" 493 + checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 494 + 495 + [[package]] 496 + name = "freetype-sys" 497 + version = "0.20.1" 498 + source = "registry+https://github.com/rust-lang/crates.io-index" 499 + checksum = "0e7edc5b9669349acfda99533e9e0bcf26a51862ab43b08ee7745c55d28eb134" 500 + dependencies = [ 501 + "cc", 502 + "libc", 503 + "pkg-config", 504 + ] 505 + 506 + [[package]] 507 + name = "getrandom" 508 + version = "0.2.15" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 511 + dependencies = [ 512 + "cfg-if", 513 + "libc", 514 + "wasi", 515 + ] 516 + 517 + [[package]] 518 + name = "gif" 519 + version = "0.12.0" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 522 + dependencies = [ 523 + "color_quant", 524 + "weezl", 525 + ] 526 + 527 + [[package]] 528 + name = "heck" 529 + version = "0.5.0" 530 + source = "registry+https://github.com/rust-lang/crates.io-index" 531 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 532 + 533 + [[package]] 534 + name = "hermit-abi" 535 + version = "0.3.9" 536 + source = "registry+https://github.com/rust-lang/crates.io-index" 537 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 538 + 539 + [[package]] 540 + name = "humantime" 541 + version = "2.1.0" 542 + source = "registry+https://github.com/rust-lang/crates.io-index" 543 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 544 + 545 + [[package]] 546 + name = "iana-time-zone" 547 + version = "0.1.61" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 550 + dependencies = [ 551 + "android_system_properties", 552 + "core-foundation-sys", 553 + "iana-time-zone-haiku", 554 + "js-sys", 555 + "wasm-bindgen", 556 + "windows-core", 557 + ] 558 + 559 + [[package]] 560 + name = "iana-time-zone-haiku" 561 + version = "0.1.2" 562 + source = "registry+https://github.com/rust-lang/crates.io-index" 563 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 564 + dependencies = [ 565 + "cc", 566 + ] 567 + 568 + [[package]] 569 + name = "image" 570 + version = "0.24.9" 571 + source = "registry+https://github.com/rust-lang/crates.io-index" 572 + checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 573 + dependencies = [ 574 + "bytemuck", 575 + "byteorder", 576 + "color_quant", 577 + "jpeg-decoder", 578 + "num-traits", 579 + "png", 580 + ] 581 + 582 + [[package]] 583 + name = "is_terminal_polyfill" 584 + version = "1.70.1" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 587 + 588 + [[package]] 589 + name = "itoa" 590 + version = "1.0.11" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 593 + 594 + [[package]] 595 + name = "jpeg-decoder" 596 + version = "0.3.1" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 599 + 600 + [[package]] 601 + name = "js-sys" 602 + version = "0.3.70" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" 605 + dependencies = [ 606 + "wasm-bindgen", 607 + ] 608 + 609 + [[package]] 610 + name = "lazy_static" 611 + version = "1.5.0" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 614 + 615 + [[package]] 616 + name = "libc" 617 + version = "0.2.158" 618 + source = "registry+https://github.com/rust-lang/crates.io-index" 619 + checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" 620 + 621 + [[package]] 622 + name = "libloading" 623 + version = "0.8.5" 624 + source = "registry+https://github.com/rust-lang/crates.io-index" 625 + checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 626 + dependencies = [ 627 + "cfg-if", 628 + "windows-targets 0.52.6", 629 + ] 630 + 631 + [[package]] 632 + name = "libredox" 633 + version = "0.1.3" 634 + source = "registry+https://github.com/rust-lang/crates.io-index" 635 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 636 + dependencies = [ 637 + "bitflags 2.6.0", 638 + "libc", 639 + ] 640 + 641 + [[package]] 642 + name = "log" 643 + version = "0.4.22" 644 + source = "registry+https://github.com/rust-lang/crates.io-index" 645 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 646 + 647 + [[package]] 648 + name = "lzma-sys" 649 + version = "0.1.20" 650 + source = "registry+https://github.com/rust-lang/crates.io-index" 651 + checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 652 + dependencies = [ 653 + "cc", 654 + "libc", 655 + "pkg-config", 656 + ] 657 + 658 + [[package]] 659 + name = "memchr" 660 + version = "2.7.4" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 663 + 664 + [[package]] 665 + name = "miniz_oxide" 666 + version = "0.7.4" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 669 + dependencies = [ 670 + "adler", 671 + "simd-adler32", 672 + ] 673 + 674 + [[package]] 675 + name = "miniz_oxide" 676 + version = "0.8.0" 677 + source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 679 + dependencies = [ 680 + "adler2", 681 + ] 682 + 683 + [[package]] 684 + name = "num-traits" 685 + version = "0.2.19" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 688 + dependencies = [ 689 + "autocfg", 690 + ] 691 + 692 + [[package]] 693 + name = "num_cpus" 694 + version = "1.16.0" 695 + source = "registry+https://github.com/rust-lang/crates.io-index" 696 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 697 + dependencies = [ 698 + "hermit-abi", 699 + "libc", 700 + ] 701 + 702 + [[package]] 703 + name = "once_cell" 704 + version = "1.19.0" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 707 + 708 + [[package]] 709 + name = "option-ext" 710 + version = "0.2.0" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 713 + 714 + [[package]] 715 + name = "pathfinder_geometry" 716 + version = "0.5.1" 717 + source = "registry+https://github.com/rust-lang/crates.io-index" 718 + checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3" 719 + dependencies = [ 720 + "log", 721 + "pathfinder_simd", 722 + ] 723 + 724 + [[package]] 725 + name = "pathfinder_simd" 726 + version = "0.5.4" 727 + source = "registry+https://github.com/rust-lang/crates.io-index" 728 + checksum = "5cf07ef4804cfa9aea3b04a7bbdd5a40031dbb6b4f2cbaf2b011666c80c5b4f2" 729 + dependencies = [ 730 + "rustc_version", 731 + ] 732 + 733 + [[package]] 734 + name = "pkg-config" 735 + version = "0.3.30" 736 + source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 738 + 739 + [[package]] 740 + name = "plotters" 741 + version = "0.3.7" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" 744 + dependencies = [ 745 + "chrono", 746 + "font-kit", 747 + "image", 748 + "lazy_static", 749 + "num-traits", 750 + "pathfinder_geometry", 751 + "plotters-backend", 752 + "plotters-bitmap", 753 + "plotters-svg", 754 + "ttf-parser", 755 + "wasm-bindgen", 756 + "web-sys", 757 + ] 758 + 759 + [[package]] 760 + name = "plotters-backend" 761 + version = "0.3.7" 762 + source = "registry+https://github.com/rust-lang/crates.io-index" 763 + checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" 764 + 765 + [[package]] 766 + name = "plotters-bitmap" 767 + version = "0.3.7" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "72ce181e3f6bf82d6c1dc569103ca7b1bd964c60ba03d7e6cdfbb3e3eb7f7405" 770 + dependencies = [ 771 + "gif", 772 + "image", 773 + "plotters-backend", 774 + ] 775 + 776 + [[package]] 777 + name = "plotters-svg" 778 + version = "0.3.7" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" 781 + dependencies = [ 782 + "plotters-backend", 783 + ] 784 + 785 + [[package]] 786 + name = "png" 787 + version = "0.17.13" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 790 + dependencies = [ 791 + "bitflags 1.3.2", 792 + "crc32fast", 793 + "fdeflate", 794 + "flate2", 795 + "miniz_oxide 0.7.4", 796 + ] 797 + 798 + [[package]] 799 + name = "ppv-lite86" 800 + version = "0.2.20" 801 + source = "registry+https://github.com/rust-lang/crates.io-index" 802 + checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 803 + dependencies = [ 804 + "zerocopy", 805 + ] 806 + 807 + [[package]] 808 + name = "proc-macro2" 809 + version = "1.0.86" 810 + source = "registry+https://github.com/rust-lang/crates.io-index" 811 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 812 + dependencies = [ 813 + "unicode-ident", 814 + ] 815 + 816 + [[package]] 817 + name = "quote" 818 + version = "1.0.37" 819 + source = "registry+https://github.com/rust-lang/crates.io-index" 820 + checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 821 + dependencies = [ 822 + "proc-macro2", 823 + ] 824 + 825 + [[package]] 826 + name = "rand" 827 + version = "0.8.5" 828 + source = "registry+https://github.com/rust-lang/crates.io-index" 829 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 830 + dependencies = [ 831 + "libc", 832 + "rand_chacha", 833 + "rand_core", 834 + ] 835 + 836 + [[package]] 837 + name = "rand_chacha" 838 + version = "0.3.1" 839 + source = "registry+https://github.com/rust-lang/crates.io-index" 840 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 841 + dependencies = [ 842 + "ppv-lite86", 843 + "rand_core", 844 + ] 845 + 846 + [[package]] 847 + name = "rand_core" 848 + version = "0.6.4" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 851 + dependencies = [ 852 + "getrandom", 853 + ] 854 + 855 + [[package]] 856 + name = "redox_users" 857 + version = "0.4.6" 858 + source = "registry+https://github.com/rust-lang/crates.io-index" 859 + checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 860 + dependencies = [ 861 + "getrandom", 862 + "libredox", 863 + "thiserror", 864 + ] 865 + 866 + [[package]] 867 + name = "regex" 868 + version = "1.10.6" 869 + source = "registry+https://github.com/rust-lang/crates.io-index" 870 + checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 871 + dependencies = [ 872 + "aho-corasick", 873 + "memchr", 874 + "regex-automata", 875 + "regex-syntax", 876 + ] 877 + 878 + [[package]] 879 + name = "regex-automata" 880 + version = "0.4.7" 881 + source = "registry+https://github.com/rust-lang/crates.io-index" 882 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 883 + dependencies = [ 884 + "aho-corasick", 885 + "memchr", 886 + "regex-syntax", 887 + ] 888 + 889 + [[package]] 890 + name = "regex-syntax" 891 + version = "0.8.4" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 894 + 895 + [[package]] 896 + name = "rustc_version" 897 + version = "0.4.1" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 900 + dependencies = [ 901 + "semver", 902 + ] 903 + 904 + [[package]] 905 + name = "ryu" 906 + version = "1.0.18" 907 + source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 909 + 910 + [[package]] 911 + name = "same-file" 912 + version = "1.0.6" 913 + source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 915 + dependencies = [ 916 + "winapi-util", 917 + ] 918 + 919 + [[package]] 920 + name = "semver" 921 + version = "1.0.23" 922 + source = "registry+https://github.com/rust-lang/crates.io-index" 923 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 924 + 925 + [[package]] 926 + name = "serde" 927 + version = "1.0.210" 928 + source = "registry+https://github.com/rust-lang/crates.io-index" 929 + checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 930 + dependencies = [ 931 + "serde_derive", 932 + ] 933 + 934 + [[package]] 935 + name = "serde_derive" 936 + version = "1.0.210" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 939 + dependencies = [ 940 + "proc-macro2", 941 + "quote", 942 + "syn", 943 + ] 944 + 945 + [[package]] 946 + name = "serde_json" 947 + version = "1.0.128" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 950 + dependencies = [ 951 + "itoa", 952 + "memchr", 953 + "ryu", 954 + "serde", 955 + ] 956 + 957 + [[package]] 958 + name = "shlex" 959 + version = "1.3.0" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 962 + 963 + [[package]] 964 + name = "simd-adler32" 965 + version = "0.3.7" 966 + source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 968 + 969 + [[package]] 970 + name = "strsim" 971 + version = "0.11.1" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 974 + 975 + [[package]] 976 + name = "syn" 977 + version = "2.0.77" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" 980 + dependencies = [ 981 + "proc-macro2", 982 + "quote", 983 + "unicode-ident", 984 + ] 985 + 986 + [[package]] 987 + name = "termsize" 988 + version = "0.1.9" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "6f11ff5c25c172608d5b85e2fb43ee9a6d683a7f4ab7f96ae07b3d8b590368fd" 991 + dependencies = [ 992 + "libc", 993 + "winapi", 994 + ] 995 + 996 + [[package]] 997 + name = "thiserror" 998 + version = "1.0.63" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 1001 + dependencies = [ 1002 + "thiserror-impl", 1003 + ] 1004 + 1005 + [[package]] 1006 + name = "thiserror-impl" 1007 + version = "1.0.63" 1008 + source = "registry+https://github.com/rust-lang/crates.io-index" 1009 + checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 1010 + dependencies = [ 1011 + "proc-macro2", 1012 + "quote", 1013 + "syn", 1014 + ] 1015 + 1016 + [[package]] 1017 + name = "threadpool" 1018 + version = "1.8.1" 1019 + source = "registry+https://github.com/rust-lang/crates.io-index" 1020 + checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 1021 + dependencies = [ 1022 + "num_cpus", 1023 + ] 1024 + 1025 + [[package]] 1026 + name = "ttf-parser" 1027 + version = "0.20.0" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4" 1030 + 1031 + [[package]] 1032 + name = "unicode-ident" 1033 + version = "1.0.13" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 1036 + 1037 + [[package]] 1038 + name = "utf8parse" 1039 + version = "0.2.2" 1040 + source = "registry+https://github.com/rust-lang/crates.io-index" 1041 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1042 + 1043 + [[package]] 1044 + name = "uuid" 1045 + version = "1.10.0" 1046 + source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 1048 + dependencies = [ 1049 + "getrandom", 1050 + "rand", 1051 + "uuid-macro-internal", 1052 + ] 1053 + 1054 + [[package]] 1055 + name = "uuid-macro-internal" 1056 + version = "1.10.0" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "ee1cd046f83ea2c4e920d6ee9f7c3537ef928d75dce5d84a87c2c5d6b3999a3a" 1059 + dependencies = [ 1060 + "proc-macro2", 1061 + "quote", 1062 + "syn", 1063 + ] 1064 + 1065 + [[package]] 1066 + name = "walkdir" 1067 + version = "2.5.0" 1068 + source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1070 + dependencies = [ 1071 + "same-file", 1072 + "winapi-util", 1073 + ] 1074 + 1075 + [[package]] 1076 + name = "wasi" 1077 + version = "0.11.0+wasi-snapshot-preview1" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1080 + 1081 + [[package]] 1082 + name = "wasm-bindgen" 1083 + version = "0.2.93" 1084 + source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 1086 + dependencies = [ 1087 + "cfg-if", 1088 + "once_cell", 1089 + "wasm-bindgen-macro", 1090 + ] 1091 + 1092 + [[package]] 1093 + name = "wasm-bindgen-backend" 1094 + version = "0.2.93" 1095 + source = "registry+https://github.com/rust-lang/crates.io-index" 1096 + checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 1097 + dependencies = [ 1098 + "bumpalo", 1099 + "log", 1100 + "once_cell", 1101 + "proc-macro2", 1102 + "quote", 1103 + "syn", 1104 + "wasm-bindgen-shared", 1105 + ] 1106 + 1107 + [[package]] 1108 + name = "wasm-bindgen-macro" 1109 + version = "0.2.93" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 1112 + dependencies = [ 1113 + "quote", 1114 + "wasm-bindgen-macro-support", 1115 + ] 1116 + 1117 + [[package]] 1118 + name = "wasm-bindgen-macro-support" 1119 + version = "0.2.93" 1120 + source = "registry+https://github.com/rust-lang/crates.io-index" 1121 + checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 1122 + dependencies = [ 1123 + "proc-macro2", 1124 + "quote", 1125 + "syn", 1126 + "wasm-bindgen-backend", 1127 + "wasm-bindgen-shared", 1128 + ] 1129 + 1130 + [[package]] 1131 + name = "wasm-bindgen-shared" 1132 + version = "0.2.93" 1133 + source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 1135 + 1136 + [[package]] 1137 + name = "web-sys" 1138 + version = "0.3.70" 1139 + source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" 1141 + dependencies = [ 1142 + "js-sys", 1143 + "wasm-bindgen", 1144 + ] 1145 + 1146 + [[package]] 1147 + name = "weezl" 1148 + version = "0.1.8" 1149 + source = "registry+https://github.com/rust-lang/crates.io-index" 1150 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 1151 + 1152 + [[package]] 1153 + name = "winapi" 1154 + version = "0.3.9" 1155 + source = "registry+https://github.com/rust-lang/crates.io-index" 1156 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1157 + dependencies = [ 1158 + "winapi-i686-pc-windows-gnu", 1159 + "winapi-x86_64-pc-windows-gnu", 1160 + ] 1161 + 1162 + [[package]] 1163 + name = "winapi-i686-pc-windows-gnu" 1164 + version = "0.4.0" 1165 + source = "registry+https://github.com/rust-lang/crates.io-index" 1166 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1167 + 1168 + [[package]] 1169 + name = "winapi-util" 1170 + version = "0.1.9" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 1173 + dependencies = [ 1174 + "windows-sys 0.59.0", 1175 + ] 1176 + 1177 + [[package]] 1178 + name = "winapi-x86_64-pc-windows-gnu" 1179 + version = "0.4.0" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1182 + 1183 + [[package]] 1184 + name = "windows-core" 1185 + version = "0.52.0" 1186 + source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1188 + dependencies = [ 1189 + "windows-targets 0.52.6", 1190 + ] 1191 + 1192 + [[package]] 1193 + name = "windows-sys" 1194 + version = "0.48.0" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1197 + dependencies = [ 1198 + "windows-targets 0.48.5", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "windows-sys" 1203 + version = "0.52.0" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1206 + dependencies = [ 1207 + "windows-targets 0.52.6", 1208 + ] 1209 + 1210 + [[package]] 1211 + name = "windows-sys" 1212 + version = "0.59.0" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1215 + dependencies = [ 1216 + "windows-targets 0.52.6", 1217 + ] 1218 + 1219 + [[package]] 1220 + name = "windows-targets" 1221 + version = "0.48.5" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1224 + dependencies = [ 1225 + "windows_aarch64_gnullvm 0.48.5", 1226 + "windows_aarch64_msvc 0.48.5", 1227 + "windows_i686_gnu 0.48.5", 1228 + "windows_i686_msvc 0.48.5", 1229 + "windows_x86_64_gnu 0.48.5", 1230 + "windows_x86_64_gnullvm 0.48.5", 1231 + "windows_x86_64_msvc 0.48.5", 1232 + ] 1233 + 1234 + [[package]] 1235 + name = "windows-targets" 1236 + version = "0.52.6" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1239 + dependencies = [ 1240 + "windows_aarch64_gnullvm 0.52.6", 1241 + "windows_aarch64_msvc 0.52.6", 1242 + "windows_i686_gnu 0.52.6", 1243 + "windows_i686_gnullvm", 1244 + "windows_i686_msvc 0.52.6", 1245 + "windows_x86_64_gnu 0.52.6", 1246 + "windows_x86_64_gnullvm 0.52.6", 1247 + "windows_x86_64_msvc 0.52.6", 1248 + ] 1249 + 1250 + [[package]] 1251 + name = "windows_aarch64_gnullvm" 1252 + version = "0.48.5" 1253 + source = "registry+https://github.com/rust-lang/crates.io-index" 1254 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1255 + 1256 + [[package]] 1257 + name = "windows_aarch64_gnullvm" 1258 + version = "0.52.6" 1259 + source = "registry+https://github.com/rust-lang/crates.io-index" 1260 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1261 + 1262 + [[package]] 1263 + name = "windows_aarch64_msvc" 1264 + version = "0.48.5" 1265 + source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1267 + 1268 + [[package]] 1269 + name = "windows_aarch64_msvc" 1270 + version = "0.52.6" 1271 + source = "registry+https://github.com/rust-lang/crates.io-index" 1272 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1273 + 1274 + [[package]] 1275 + name = "windows_i686_gnu" 1276 + version = "0.48.5" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1279 + 1280 + [[package]] 1281 + name = "windows_i686_gnu" 1282 + version = "0.52.6" 1283 + source = "registry+https://github.com/rust-lang/crates.io-index" 1284 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1285 + 1286 + [[package]] 1287 + name = "windows_i686_gnullvm" 1288 + version = "0.52.6" 1289 + source = "registry+https://github.com/rust-lang/crates.io-index" 1290 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1291 + 1292 + [[package]] 1293 + name = "windows_i686_msvc" 1294 + version = "0.48.5" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1297 + 1298 + [[package]] 1299 + name = "windows_i686_msvc" 1300 + version = "0.52.6" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1303 + 1304 + [[package]] 1305 + name = "windows_x86_64_gnu" 1306 + version = "0.48.5" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1309 + 1310 + [[package]] 1311 + name = "windows_x86_64_gnu" 1312 + version = "0.52.6" 1313 + source = "registry+https://github.com/rust-lang/crates.io-index" 1314 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1315 + 1316 + [[package]] 1317 + name = "windows_x86_64_gnullvm" 1318 + version = "0.48.5" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1321 + 1322 + [[package]] 1323 + name = "windows_x86_64_gnullvm" 1324 + version = "0.52.6" 1325 + source = "registry+https://github.com/rust-lang/crates.io-index" 1326 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1327 + 1328 + [[package]] 1329 + name = "windows_x86_64_msvc" 1330 + version = "0.48.5" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1333 + 1334 + [[package]] 1335 + name = "windows_x86_64_msvc" 1336 + version = "0.52.6" 1337 + source = "registry+https://github.com/rust-lang/crates.io-index" 1338 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1339 + 1340 + [[package]] 1341 + name = "wio" 1342 + version = "0.2.2" 1343 + source = "registry+https://github.com/rust-lang/crates.io-index" 1344 + checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5" 1345 + dependencies = [ 1346 + "winapi", 1347 + ] 1348 + 1349 + [[package]] 1350 + name = "xxhash-rust" 1351 + version = "0.8.12" 1352 + source = "registry+https://github.com/rust-lang/crates.io-index" 1353 + checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984" 1354 + 1355 + [[package]] 1356 + name = "xz2" 1357 + version = "0.1.7" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 1360 + dependencies = [ 1361 + "lzma-sys", 1362 + ] 1363 + 1364 + [[package]] 1365 + name = "yeslogic-fontconfig-sys" 1366 + version = "6.0.0" 1367 + source = "registry+https://github.com/rust-lang/crates.io-index" 1368 + checksum = "503a066b4c037c440169d995b869046827dbc71263f6e8f3be6d77d4f3229dbd" 1369 + dependencies = [ 1370 + "dlib", 1371 + "once_cell", 1372 + "pkg-config", 1373 + ] 1374 + 1375 + [[package]] 1376 + name = "zerocopy" 1377 + version = "0.7.35" 1378 + source = "registry+https://github.com/rust-lang/crates.io-index" 1379 + checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1380 + dependencies = [ 1381 + "byteorder", 1382 + "zerocopy-derive", 1383 + ] 1384 + 1385 + [[package]] 1386 + name = "zerocopy-derive" 1387 + version = "0.7.35" 1388 + source = "registry+https://github.com/rust-lang/crates.io-index" 1389 + checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1390 + dependencies = [ 1391 + "proc-macro2", 1392 + "quote", 1393 + "syn", 1394 + ]
+50
pkgs/by-name/bi/binwalk/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + fontconfig, 7 + bzip2, 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "binwalk"; 12 + version = "3.1.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "ReFirmLabs"; 16 + repo = "binwalk"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-em+jOnhCZH5EEJrhXTHmxiwpMcBr5oNU1+5IJ1H/oco="; 19 + }; 20 + 21 + cargoLock = { 22 + lockFile = ./Cargo.lock; 23 + }; 24 + 25 + nativeBuildInputs = [ pkg-config ]; 26 + 27 + buildInputs = [ 28 + fontconfig 29 + bzip2 30 + ]; 31 + 32 + # skip broken tests 33 + checkFlags = [ 34 + "--skip=binwalk::Binwalk" 35 + "--skip=binwalk::Binwalk::analyze" 36 + "--skip=binwalk::Binwalk::extract" 37 + "--skip=binwalk::Binwalk::scan" 38 + ]; 39 + 40 + meta = { 41 + description = "Firmware Analysis Tool"; 42 + homepage = "https://github.com/ReFirmLabs/binwalk"; 43 + changelog = "https://github.com/ReFirmLabs/binwalk/releases/tag/${src.rev}"; 44 + license = lib.licenses.mit; 45 + maintainers = with lib.maintainers; [ 46 + koral 47 + felbinger 48 + ]; 49 + }; 50 + }
+6 -16
pkgs/by-name/bi/bitwarden-cli/package.nix
··· 3 3 , buildNpmPackage 4 4 , nodejs_20 5 5 , fetchFromGitHub 6 - , python3 7 6 , cctools 8 7 , nix-update-script 9 8 , nixosTests 9 + , perl 10 10 , xcbuild 11 11 }: 12 12 13 13 buildNpmPackage rec { 14 14 pname = "bitwarden-cli"; 15 - version = "2024.9.0"; 15 + version = "2024.11.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "bitwarden"; 19 19 repo = "clients"; 20 20 rev = "cli-v${version}"; 21 - hash = "sha256-o5nRG2j73qheDOyeFfSga64D8HbTn1EUrCiN0W+Xn0w="; 21 + hash = "sha256-4QTQgW8k3EMf07Xqs2B+VXQOUPzoOgaNvoC02x4zvu8="; 22 22 }; 23 23 24 24 postPatch = '' ··· 28 28 29 29 nodejs = nodejs_20; 30 30 31 - npmDepsHash = "sha256-L7/frKCNlq0xr6T+aSqyEQ44yrIXwcpdU/djrhCJNNk="; 31 + npmDepsHash = "sha256-YzhCyNMvfXGmgOpl3qWj1Pqd1hY8CJ9QLwQds5ZMnqg="; 32 32 33 - nativeBuildInputs = [ 34 - (python3.withPackages (ps: with ps; [ setuptools ])) 35 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 33 + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 36 34 cctools 35 + perl 37 36 xcbuild.xcrun 38 37 ]; 39 38 ··· 43 42 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 44 43 npm_config_build_from_source = "true"; 45 44 }; 46 - 47 - # node-argon2 builds with LTO, but that causes missing symbols. So disable it 48 - # and rebuild. See https://github.com/ranisalt/node-argon2/pull/415 49 - preConfigure = '' 50 - pushd node_modules/argon2 51 - substituteInPlace binding.gyp --replace-fail '"-flto", ' "" 52 - "$npm_config_node_gyp" rebuild 53 - popd 54 - ''; 55 45 56 46 npmBuildScript = "build:oss:prod"; 57 47
+3 -2
pkgs/by-name/bo/bottles/package.nix
··· 8 8 9 9 let 10 10 fhsEnv = { 11 + inherit (bottles-unwrapped) version; 11 12 # Many WINE games need 32bit 12 13 multiArch = true; 13 14 ··· 113 114 (buildFHSEnv ( 114 115 fhsEnv 115 116 // { 116 - name = "bottles"; 117 + pname = "bottles"; 117 118 runScript = "bottles"; 118 119 } 119 120 )) 120 121 (buildFHSEnv ( 121 122 fhsEnv 122 123 // { 123 - name = "bottles-cli"; 124 + pname = "bottles-cli"; 124 125 runScript = "bottles-cli"; 125 126 } 126 127 ))
+2 -2
pkgs/by-name/cl/clang-uml/package.nix
··· 17 17 }: 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "clang-uml"; 20 - version = "0.5.5"; 20 + version = "0.5.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "bkryza"; 24 24 repo = "clang-uml"; 25 25 rev = finalAttrs.version; 26 - hash = "sha256-YzHlauVuFLT2PmfqJBNwqQ/P7d7tyl3brk7Vo/kTOF4="; 26 + hash = "sha256-fsN9l5sgQ9NIjS0Tn/tAUK/p2mdP7/R7a9BFb+9I0UU="; 27 27 }; 28 28 29 29 nativeBuildInputs =
+3 -3
pkgs/by-name/cl/cloudflare-warp/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "cloudflare-warp"; 19 - version = "2024.9.346"; 19 + version = "2024.11.309"; 20 20 21 21 suffix = { 22 22 aarch64-linux = "arm64"; ··· 26 26 src = fetchurl { 27 27 url = "https://pkg.cloudflareclient.com/pool/noble/main/c/cloudflare-warp/cloudflare-warp_${version}.0_${suffix}.deb"; 28 28 hash = { 29 - aarch64-linux = "sha256-dgu/OiQPT7bkPnhrDArQg2lDAcOyhzZ5nJrjS2dqpFo="; 30 - x86_64-linux = "sha256-KwxLF7LWB49M+kZPJ9M4OcDSF1f3MX4S0dTtTkzQVRQ="; 29 + aarch64-linux = "sha256-pdCPN4NxaQqWNRPZY1CN03KnTdzl62vJ3JNfxGozI4k="; 30 + x86_64-linux = "sha256-THxXETyy08rBmvghrc8HIQ2cBSLeNVl8SkD43CVY/tE="; 31 31 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 32 32 }; 33 33
+2 -1
pkgs/by-name/en/envision/package.nix
··· 4 4 }: 5 5 6 6 buildFHSEnv { 7 - name = "envision"; 7 + pname = "envision"; 8 + inherit (envision-unwrapped) version; 8 9 9 10 extraOutputsToInstall = [ "dev" ]; 10 11
+8 -28
pkgs/by-name/fw/fwupd/installed-tests-path.patch
··· 1 - commit 27ddb6910ec9027f8f502f5240fb33cddd9fd16b 1 + commit 2fa1d39bb54d448ffe59bf6a8358c01f786a1cce 2 2 Author: r-vdp <ramses@well-founded.dev> 3 3 Date: Tue Oct 15 14:49:53 2024 +0200 4 4 5 5 Add output for installed tests 6 6 7 - diff --git a/data/device-tests/meson.build b/data/device-tests/meson.build 8 - index 4f3a5f2da..b0d21c8bd 100644 9 - --- a/data/device-tests/meson.build 10 - +++ b/data/device-tests/meson.build 11 - @@ -67,5 +67,5 @@ install_data([ 12 - 'wacom-intuos-bt-s.json', 13 - 'wistron-dock-40b7.json', 14 - ], 15 - - install_dir: join_paths(datadir, 'fwupd', 'device-tests'), 16 - + install_dir: join_paths(get_option('installed_test_prefix'), 'etc', 'fwupd', 'device-tests'), 17 - ) 18 7 diff --git a/data/tests/meson.build b/data/tests/meson.build 19 - index 3da184010..8606c9280 100644 8 + index a22a989f3..cbd135cfa 100644 20 9 --- a/data/tests/meson.build 21 10 +++ b/data/tests/meson.build 22 - @@ -2,7 +2,7 @@ con2 = configuration_data() 23 - con2.set('installedtestsdir', installed_test_datadir) 24 - con2.set('installedtestsbindir', installed_test_bindir) 25 - con2.set('installedtestsdatadir', installed_test_datadir) 26 - -con2.set('devicetestdir', join_paths(datadir, 'fwupd', 'device-tests')) 27 - +con2.set('devicetestdir', join_paths(installed_test_datadir, 'fwupd', 'device-tests')) 28 - con2.set('bindir', bindir) 29 - con2.set('libexecdir', libexecdir) 30 - 31 11 @@ -105,7 +105,7 @@ configure_file( 32 12 output: 'fwupd-tests.conf', 33 13 configuration: con2, ··· 38 18 39 19 if umockdev_integration_tests.allowed() 40 20 diff --git a/meson.build b/meson.build 41 - index 62c127c35..2ceaf531c 100644 21 + index 5a35cfda1..40ef142f0 100644 42 22 --- a/meson.build 43 23 +++ b/meson.build 44 24 @@ -194,8 +194,8 @@ else ··· 52 32 daemon_dir = join_paths(libexecdir, 'fwupd') 53 33 endif 54 34 mandir = join_paths(prefix, get_option('mandir')) 55 - @@ -541,6 +541,7 @@ gnome = import('gnome') 35 + @@ -545,6 +545,7 @@ gnome = import('gnome') 56 36 i18n = import('i18n') 57 37 58 38 conf.set_quoted('FWUPD_PREFIX', prefix) ··· 61 41 conf.set_quoted('FWUPD_LIBDIR', libdir) 62 42 conf.set_quoted('FWUPD_LIBEXECDIR', libexecdir) 63 43 diff --git a/meson_options.txt b/meson_options.txt 64 - index 769a5b655..a4a211fbb 100644 44 + index e04bb37c9..b1060ddb8 100644 65 45 --- a/meson_options.txt 66 46 +++ b/meson_options.txt 67 - @@ -328,6 +328,10 @@ option('systemd_unit_user', 68 - value: 'fwupd-refresh', 69 - description: 'User account to use for fwupd-refresh.service (empty for DynamicUser)', 47 + @@ -333,6 +333,10 @@ option('systemd_syscall_filter', 48 + value: 'true', 49 + description: 'Enable systemd syscall filter', 70 50 ) 71 51 +option('installed_test_prefix', 72 52 + type: 'string',
+2 -7
pkgs/by-name/fw/fwupd/package.nix
··· 124 124 in 125 125 stdenv.mkDerivation (finalAttrs: { 126 126 pname = "fwupd"; 127 - version = "2.0.1"; 127 + version = "2.0.2"; 128 128 129 129 # libfwupd goes to lib 130 130 # daemon, plug-ins and libfwupdplugin go to out ··· 142 142 owner = "fwupd"; 143 143 repo = "fwupd"; 144 144 rev = finalAttrs.version; 145 - hash = "sha256-cIkbYoSqVZtEEIh0iTr+Ovu5BWGh6d2NfImTJoc69QU="; 145 + hash = "sha256-rmMb109SJVWDGT4z5GOA4V9O0cDMptTpwx0TXdGWjvk="; 146 146 }; 147 147 148 148 patches = [ ··· 163 163 164 164 # EFI capsule is located in fwupd-efi now. 165 165 ./efi-app-path.patch 166 - 167 - (fetchpatch { 168 - url = "https://github.com/fwupd/fwupd/pull/7994.diff?full_index=1"; 169 - hash = "sha256-fRM033aCoj11Q5u9Yfi3BSD/zpm2kIqf5qabs60nEoM="; 170 - }) 171 166 ]; 172 167 173 168 nativeBuildInputs = [
+2 -2
pkgs/by-name/gh/gh-f/package.nix
··· 22 22 in 23 23 stdenvNoCC.mkDerivation rec { 24 24 pname = "gh-f"; 25 - version = "1.1.6"; 25 + version = "1.2.0"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "gennaro-tedesco"; 29 29 repo = "gh-f"; 30 30 rev = "v${version}"; 31 - hash = "sha256-F98CqsSRymL/8s8u7P2Pqt6+ipLoG9Z9Q8bB+IWZTpI="; 31 + hash = "sha256-rdHQIhrU0nzIURnmPGyzSkew6FVn4Z6J1rn3HvyDpJI="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+3 -3
pkgs/by-name/li/libdeltachat/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "libdeltachat"; 23 - version = "1.150.0"; 23 + version = "1.151.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "deltachat"; 27 27 repo = "deltachat-core-rust"; 28 28 rev = "v${version}"; 29 - hash = "sha256-lVMXW2fnpoa/iiypLhHl7WXLqouHfrRapEbXL37X7B8="; 29 + hash = "sha256-sQPJ1IQicHzgjc2l1JYG7ieC+GKvp8cqhwZbL1yU29M="; 30 30 }; 31 31 32 32 patches = [ ··· 36 36 cargoDeps = rustPlatform.fetchCargoVendor { 37 37 pname = "deltachat-core-rust"; 38 38 inherit version src; 39 - hash = "sha256-nzAQEaTHkKjDmKDmwZEznpvVh1KfxTM83/82hjV/Cpw="; 39 + hash = "sha256-EyOT88XEjIVTFv7XGUEsUIu4NcDdD89W5Hbl4xa/urc="; 40 40 }; 41 41 42 42 nativeBuildInputs = [
+3 -3
pkgs/by-name/ma/magnetic-catppuccin-gtk/package.nix
··· 25 25 26 26 stdenv.mkDerivation { 27 27 pname = "magnetic-${lib.toLower pname}"; 28 - version = "0-unstable-2024-06-27"; 28 + version = "0-unstable-2024-11-06"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Fausto-Korpsvart"; 32 32 repo = "Catppuccin-GTK-Theme"; 33 - rev = "0bd2869e7f0fdb36c720a4fb873d4fed361b0606"; 34 - hash = "sha256-oFVsYrJ27hYGY+x9+Z4SxVCp3w6PiLYTZaxmGhnpVHQ="; 33 + rev = "be79b8289200aa1a17620f84dde3fe4c3b9c5998"; 34 + hash = "sha256-QItHmYZpe7BiPC+2CtFwiRXyMTG7+ex0sJTs63xmkAo="; 35 35 }; 36 36 37 37 nativeBuildInputs = [jdupes sassc];
+4 -3
pkgs/by-name/op/open-webui/package.nix
··· 7 7 }: 8 8 let 9 9 pname = "open-webui"; 10 - version = "0.4.4"; 10 + version = "0.4.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "open-webui"; 14 14 repo = "open-webui"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-KbU8g9iqz7ow2Yxl5EizcYckMOHGGsEK5HkkchSXxQo="; 16 + hash = "sha256-XbH6tAmwIZzCasuL6e0Su56ZAlSBBZsq3iBytOthEZM="; 17 17 }; 18 18 19 19 frontend = buildNpmPackage { 20 20 inherit pname version src; 21 21 22 - npmDepsHash = "sha256-MdftLgmFL5zkScC4XFfjKooQa4PX3il65P9BjfU5mXk="; 22 + npmDepsHash = "sha256-bEmShvxHzDHiliA3IGN5A6Xf3cKf1PhULTueioDT7js="; 23 23 24 24 # Disabling `pyodide:fetch` as it downloads packages during `buildPhase` 25 25 # Until this is solved, running python packages from the browser will not work. ··· 63 63 64 64 dependencies = with python312.pkgs; [ 65 65 aiocache 66 + aiofiles 66 67 aiohttp 67 68 alembic 68 69 anthropic
+21 -14
pkgs/by-name/pa/patroni/package.nix
··· 1 - { lib 2 - , python3Packages 3 - , fetchFromGitHub 4 - , nixosTests 5 - , nix-update-script 1 + { 2 + lib, 3 + python3Packages, 4 + fetchFromGitHub, 5 + versionCheckHook, 6 + nixosTests, 7 + nix-update-script, 6 8 }: 7 9 8 10 python3Packages.buildPythonApplication rec { 9 11 pname = "patroni"; 10 - version = "4.0.3"; 12 + version = "4.0.4"; 11 13 12 14 src = fetchFromGitHub { 13 15 owner = "zalando"; 14 - repo = pname; 16 + repo = "patroni"; 15 17 rev = "refs/tags/v${version}"; 16 - sha256 = "sha256-urNTxaipM4wD+1fp7EFdT7/FGLq86O1nOfst7JyX0fc="; 18 + sha256 = "sha256-if3azfBb6/OegahZYAM2RMxmWRDsCX5DNkUATTcAUrw="; 17 19 }; 18 20 19 - propagatedBuildInputs = with python3Packages; [ 21 + dependencies = with python3Packages; [ 20 22 boto3 21 23 click 22 24 consul ··· 35 37 ydiff 36 38 ]; 37 39 40 + pythonImportsCheck = [ "patroni" ]; 41 + 38 42 nativeCheckInputs = with python3Packages; [ 39 43 flake8 40 44 mock 41 45 pytestCheckHook 42 46 pytest-cov 43 47 requests 48 + versionCheckHook 44 49 ]; 50 + versionCheckProgramArg = [ "--version" ]; 45 51 46 52 # Fix tests by preventing them from writing to /homeless-shelter. 47 53 preCheck = "export HOME=$(mktemp -d)"; 48 54 49 - pythonImportsCheck = [ "patroni" ]; 55 + __darwinAllowLocalNetworking = true; 50 56 51 57 passthru = { 52 58 tests.patroni = nixosTests.patroni; ··· 54 60 updateScript = nix-update-script { }; 55 61 }; 56 62 57 - meta = with lib; { 63 + meta = { 58 64 homepage = "https://patroni.readthedocs.io/en/latest/"; 59 65 description = "Template for PostgreSQL HA with ZooKeeper, etcd or Consul"; 60 - license = licenses.mit; 61 - platforms = platforms.unix; 62 - maintainers = teams.deshaw.members; 66 + changelog = "https://github.com/patroni/patroni/blob/v${version}/docs/releases.rst"; 67 + license = lib.licenses.mit; 68 + platforms = lib.platforms.unix; 69 + maintainers = lib.teams.deshaw.members; 63 70 }; 64 71 }
+3 -3
pkgs/by-name/po/pocketbase/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "pocketbase"; 9 - version = "0.22.22"; 9 + version = "0.23.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pocketbase"; 13 13 repo = "pocketbase"; 14 14 rev = "v${version}"; 15 - hash = "sha256-X2m7BBAF91wcWlzYYhAw9PuBzMQHtRsCrgh08VaITGg="; 15 + hash = "sha256-he4lvlIqbIozbtMizZEjfnBbXXd6+LfZqKD95UE8sPI="; 16 16 }; 17 17 18 - vendorHash = "sha256-ItuwB3Dk89fazRZL0l5EPMJ8VGC3p2jwECYVquV7xsc="; 18 + vendorHash = "sha256-zMHEArUS4/r7nkZfDK8BwGMLrpkBihxhkBoO/p6auTk="; 19 19 20 20 # This is the released subpackage from upstream repo 21 21 subPackages = [ "examples/base" ];
+3 -3
pkgs/by-name/po/poutine/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "poutine"; 11 - version = "0.13.0"; 11 + version = "0.15.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "boostsecurityio"; 15 15 repo = "poutine"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-9vbK2tc57e/YNfhSVbCMxnzOmmahr9T3x5Tt7GQjVnc="; 17 + hash = "sha256-YBoGsexYT2/lAWEajMVa/xNRBv1R1i0hB6pTAlk43E0="; 18 18 }; 19 19 20 - vendorHash = "sha256-HYuyGSatUOch73IKc7/9imhwz0Oz6Mrccs2HKVQtaVE="; 20 + vendorHash = "sha256-CZLzIGu6jj4JXmKJaWmyeRvcRNjBYecblW47kcsg5Nw="; 21 21 22 22 ldflags = [ 23 23 "-s"
+5 -6
pkgs/by-name/pr/prometheus/package.nix
··· 31 31 }: 32 32 33 33 let 34 - version = "2.55.0"; 34 + version = "3.0.0"; 35 35 webUiStatic = fetchurl { 36 36 url = "https://github.com/prometheus/prometheus/releases/download/v${version}/prometheus-web-ui-${version}.tar.gz"; 37 - hash = "sha256-iSiK6JKm78AMANfBydfCQu+aUpw6B1sZ5fGPa0KL7Fs="; 37 + hash = "sha256-a3xyStDsutLjYIEm7t3WilmvO36eMHvd4pOtZYYsJCM="; 38 38 }; 39 39 in 40 40 buildGoModule rec { ··· 47 47 owner = "prometheus"; 48 48 repo = "prometheus"; 49 49 rev = "v${version}"; 50 - hash = "sha256-yzAp/YxLCWlpkj5z2aUdsokDaFvRwVnT6ViwL3hivdI="; 50 + hash = "sha256-IMYDtAb2ojzZLBqRJkMcB8yFpmmJPwbbyAxFfbCikkA="; 51 51 }; 52 52 53 - vendorHash = "sha256-p2PjhFT8KOido+MMmKc7eHPkE175my3VfTp1G8bBZcA="; 53 + vendorHash = "sha256-c96YnWPLH/tbGRb2Zlqrl3PXSZvI+NeYTGlef6REAOw="; 54 54 55 - excludedPackages = [ "documentation/prometheus-mixin" ]; 55 + excludedPackages = [ "documentation/prometheus-mixin" "web/ui/mantine-ui/src/promql/tools" ]; 56 56 57 57 postPatch = '' 58 58 tar -C web/ui -xzf ${webUiStatic} ··· 112 112 preInstall = '' 113 113 mkdir -p "$out/share/doc/prometheus" "$out/etc/prometheus" 114 114 cp -a $src/documentation/* $out/share/doc/prometheus 115 - cp -a $src/console_libraries $src/consoles $out/etc/prometheus 116 115 ''; 117 116 118 117 postInstall = ''
+3 -3
pkgs/by-name/r2/r2modman/package.nix
··· 14 14 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "r2modman"; 17 - version = "3.1.50"; 17 + version = "3.1.54"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "ebkr"; 21 21 repo = "r2modmanPlus"; 22 22 rev = "v${finalAttrs.version}"; 23 - hash = "sha256-WmF7tH5PiaggyvP/klWwNgaLKVhIoApxDtwwLpug52A="; 23 + hash = "sha256-hsaFtQW/awhnBFS6xqDtRvzkzr/afzojYecgglsc3K8="; 24 24 }; 25 25 26 26 offlineCache = fetchYarnDeps { 27 27 yarnLock = "${finalAttrs.src}/yarn.lock"; 28 - hash = "sha256-ntXZ4gRXRqiPQxdwXDsLxGdBqUV5eboy9ntTlJsz9FA="; 28 + hash = "sha256-VXlFB7hT+aL3yufJ/Ar7FMdrk2Iptf5rdvagAop00lk="; 29 29 }; 30 30 31 31 patches = [
+3 -5
pkgs/by-name/r2/r2modman/steam-launch-fix.patch
··· 1 - diff --git a/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts b/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts 2 - index ddee0e9..fc9ffca 100644 3 1 --- a/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts 4 2 +++ b/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts 5 - @@ -61,15 +61,9 @@ export default class SteamGameRunner_Linux extends GameRunnerProvider { 3 + @@ -64,15 +64,8 @@ 6 4 async start(game: Game, args: string): Promise<void | R2Error> { 7 5 8 6 const settings = await ManagerSettings.getSingleton(game); ··· 11 9 - return steamDir; 12 10 - } 13 11 - 14 - - LoggerProvider.instance.Log(LogSeverity.INFO, `Steam directory is: ${steamDir}`); 15 - 12 + - LoggerProvider.instance.Log(LogSeverity.INFO, `Steam folder is: ${steamDir}`); 13 + - 16 14 try { 17 15 - const cmd = `"${steamDir}/steam.sh" -applaunch ${game.activePlatform.storeIdentifier} ${args} ${settings.getContext().gameSpecific.launchParameters}`; 18 16 + const cmd = `steam -applaunch ${game.activePlatform.storeIdentifier} ${args} ${settings.getContext().gameSpecific.launchParameters}`;
+2 -2
pkgs/by-name/re/reposilite/package.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "Reposilite"; 5 - version = "3.5.18"; 5 + version = "3.5.19"; 6 6 7 7 src = fetchurl { 8 8 url = "https://maven.reposilite.com/releases/com/reposilite/reposilite/${finalAttrs.version}/reposilite-${finalAttrs.version}-all.jar"; 9 - hash = "sha256-Wc7VAUkM6c1BJLTg5GXY6nNtjDxi6I2ym14Tpc667Tw="; 9 + hash = "sha256-EA8YCJy7iQKG4FuGfmWx0NkEb5+UqklCcPEsO6DvSf4="; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -1
pkgs/by-name/sh/shticker-book-unwritten/package.nix
··· 4 4 shticker-book-unwritten-unwrapped = callPackage ./unwrapped.nix { }; 5 5 6 6 in buildFHSEnv { 7 - name = "shticker_book_unwritten"; 7 + pname = "shticker_book_unwritten"; 8 + inherit (shticker-book-unwritten-unwrapped) version; 8 9 targetPkgs = pkgs: with pkgs; [ 9 10 alsa-lib 10 11 libglvnd
+1 -2
pkgs/by-name/su/sunvox/package.nix
··· 30 30 urls = [ 31 31 "https://www.warmplace.ru/soft/sunvox/sunvox-${finalAttrs.version}.zip" 32 32 # Upstream removes downloads of older versions, please save bumped versions to archive.org 33 - # FIXME At the time of writing, archive.org is still recovering from the recent attacks and has not yet re-opened the page saving functionality 34 - # https://blog.archive.org/2024/10/21/internet-archive-services-update-2024-10-21/ 33 + "https://web.archive.org/web/20241121002213/https://www.warmplace.ru/soft/sunvox/sunvox-${finalAttrs.version}.zip" 35 34 ]; 36 35 hash = "sha256-7DZyoOz3jDYsuGqbs0PRs6jdWCxBhSDUKk8KVJQm/3o="; 37 36 };
+2 -2
pkgs/by-name/ta/tana/package.nix
··· 55 55 ]; 56 56 buildInputs = glLibs ++ libs; 57 57 runpathPackages = glLibs ++ [ stdenv.cc.cc stdenv.cc.libc ]; 58 - version = "1.0.16"; 58 + version = "1.0.17"; 59 59 in 60 60 stdenv.mkDerivation { 61 61 pname = "tana"; ··· 63 63 64 64 src = fetchurl { 65 65 url = "https://github.com/tanainc/tana-desktop-releases/releases/download/v${version}/tana_${version}_amd64.deb"; 66 - hash = "sha256-XLjzvMai5HyxEGK02DfBAKy5jva9wEGcf5A/38jzu+s="; 66 + hash = "sha256-IgF4VWCp3M6tQBfFAPR9u9UgGFs6f7qU3s94nGYEKkY="; 67 67 }; 68 68 69 69 nativeBuildInputs = [
+31 -14
pkgs/by-name/tr/tracexec/package.nix
··· 5 5 rustPlatform, 6 6 cargo-about, 7 7 nix-update-script, 8 + pkg-config, 9 + libbpf, 10 + elfutils, 11 + libseccomp, 12 + zlib, 13 + clang, 8 14 }: 9 15 let 10 16 pname = "tracexec"; 11 - version = "0.5.2"; 17 + version = "0.8.0"; 12 18 in 13 19 rustPlatform.buildRustPackage { 14 20 inherit pname version; ··· 17 23 owner = "kxxt"; 18 24 repo = "tracexec"; 19 25 rev = "refs/tags/v${version}"; 20 - hash = "sha256-PLUB0t9eDR0mYUI6TiUxafo6yMymwdTux7ykF8rTGGc="; 26 + hash = "sha256-ZoYqmjqY9eAHGDIbFX9FY1yGF210C60UWcHi0lxzL7g="; 21 27 }; 22 28 23 - cargoHash = "sha256-PJclGjQTAOvnl8LJTxlDyEuzdWE1R7A2gJe1I1sKde0="; 29 + cargoHash = "sha256-mZSj45im5b25mt8mGYLq03blvFCyS02kVK7yV3bIlUg="; 30 + 31 + hardeningDisable = [ "zerocallusedregs" ]; 24 32 25 - nativeBuildInputs = [ cargo-about ]; 33 + nativeBuildInputs = [ 34 + cargo-about 35 + pkg-config 36 + clang 37 + ]; 38 + buildInputs = [ 39 + libbpf 40 + elfutils 41 + libseccomp 42 + zlib 43 + ]; 26 44 27 - # Remove RiscV64 specialisation when this is fixed: 28 - # * https://github.com/NixOS/nixpkgs/pull/310158#pullrequestreview-2046944158 29 - # * https://github.com/rust-vmm/seccompiler/pull/72 30 - cargoBuildFlags = lib.optional stdenv.hostPlatform.isRiscV64 "--no-default-features"; 45 + cargoBuildFlags = 46 + [ 47 + "--no-default-features" 48 + "--features=recommended" 49 + ] 50 + # Remove RiscV64 specialisation when this is fixed: 51 + # * https://github.com/NixOS/nixpkgs/pull/310158#pullrequestreview-2046944158 52 + # * https://github.com/rust-vmm/seccompiler/pull/72 53 + ++ lib.optional stdenv.hostPlatform.isRiscV64 "--no-default-features"; 31 54 32 55 preBuild = '' 33 56 sed -i '1ino-clearly-defined = true' about.toml # disable network requests 34 57 cargo about generate --config about.toml -o THIRD_PARTY_LICENSES.HTML about.hbs 35 58 ''; 36 59 37 - # Tests don't work for native non-x86 compilation 38 - # because upstream overrides the name of the linker executables, 39 - # see https://github.com/NixOS/nixpkgs/pull/310158#issuecomment-2118845043 40 - doCheck = stdenv.hostPlatform.isx86_64; 41 - 42 60 checkFlags = [ 43 61 "--skip=cli::test::log_mode_without_args_works" # `Permission denied` (needs `CAP_SYS_PTRACE`) 44 - "--skip=tracer::test::tracer_emits_exec_event" # needs `/bin/true` 45 62 ]; 46 63 47 64 postInstall = ''
+2 -2
pkgs/by-name/ug/ugrep/package.nix
··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "ugrep"; 18 - version = "7.0.3"; 18 + version = "7.1.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "Genivia"; 22 22 repo = "ugrep"; 23 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-C/Nb5wxZtMzYBJmqOj8UwCU5yrQIrHCHsstuIiKMMq0="; 24 + hash = "sha256-H2c2PpdgjzPwR2aOFgQSLTeyxCBg4Ngibf0t1aT3xl8="; 25 25 }; 26 26 27 27 buildInputs = [
+3 -3
pkgs/by-name/vi/vieb/package.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "vieb"; 5 - version = "12.0.0"; 5 + version = "12.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Jelmerro"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-/gMAGmTsaS9B0qHXHq2Z/77LgcAMKjF6Mt7OiJ9l4wU="; 11 + hash = "sha256-Gx2O5KJ0N/rSTwYcA10bRjXacIUdXETd18dkGBVv8wM="; 12 12 }; 13 13 14 14 postPatch = '' 15 15 sed -i '/"electron"/d' package.json 16 16 ''; 17 17 18 - npmDepsHash = "sha256-sGDygjb9+tIBHykMUb3UGZrCF8btkFVObTdyx4Y3Q2c="; 18 + npmDepsHash = "sha256-eajM2YysFhp3eiWeJwkfpZPpte31UHrtg9rfMexefsg="; 19 19 makeCacheWritable = true; 20 20 dontNpmBuild = true; 21 21 env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1;
+2 -1
pkgs/development/embedded/platformio/chrootenv.nix
··· 21 21 22 22 in 23 23 buildFHSEnv { 24 - name = "platformio"; 24 + pname = "platformio"; 25 + inherit (platformio-core) version; 25 26 26 27 targetPkgs = pio-pkgs; 27 28 # disabled temporarily because fastdiff no longer support 32bit
+2 -22
pkgs/development/libraries/vtk/generic.nix
··· 4 4 , enableQt ? false, qtx11extras, qttools, qtdeclarative, qtEnv 5 5 , enablePython ? false, python ? throw "vtk: Python support requested, but no python interpreter was given." 6 6 , enableEgl ? false 7 - # Darwin support 8 - , AGL, Cocoa, CoreServices, DiskArbitration, IOKit, CFNetwork, Security, GLUT, OpenGL 9 - , ApplicationServices, CoreText, IOSurface, ImageIO, xpc, libobjc 10 7 }: 11 8 12 9 let 13 - inherit (lib) optionalString optionals optional; 10 + inherit (lib) optionalString optionals; 14 11 15 12 version = "${majorVersion}.${minorVersion}"; 16 13 pythonMajor = lib.substring 0 1 python.pythonVersion; ··· 34 31 libGLU 35 32 xorgproto 36 33 libXt 37 - ] ++ optionals stdenv.hostPlatform.isDarwin [ 38 - xpc 39 - AGL 40 - Cocoa 41 - CoreServices 42 - DiskArbitration 43 - IOKit 44 - CFNetwork 45 - Security 46 - ApplicationServices 47 - CoreText 48 - IOSurface 49 - ImageIO 50 - OpenGL 51 - GLUT 52 34 ] ++ optionals enablePython [ 53 35 python 54 36 ]; 55 - propagatedBuildInputs = optionals stdenv.hostPlatform.isDarwin [ libobjc ] 56 - ++ optionals stdenv.hostPlatform.isLinux [ libX11 libGL ]; 37 + propagatedBuildInputs = optionals stdenv.hostPlatform.isLinux [ libX11 libGL ]; 57 38 # see https://github.com/NixOS/nixpkgs/pull/178367#issuecomment-1238827254 58 39 59 40 patches = map fetchpatch patchesToFetch; ··· 94 75 ] ++ optionals enableQt [ 95 76 "-DVTK_GROUP_ENABLE_Qt:STRING=YES" 96 77 ] 97 - ++ optionals stdenv.hostPlatform.isDarwin [ "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks" ] 98 78 ++ optionals enablePython [ 99 79 "-DVTK_WRAP_PYTHON:BOOL=ON" 100 80 "-DVTK_PYTHON_VERSION:STRING=${pythonMajor}"
+76 -76
pkgs/development/lua-modules/generated-packages.nix
··· 250 250 commons-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 251 251 buildLuarocksPackage { 252 252 pname = "commons.nvim"; 253 - version = "19.0.0-1"; 253 + version = "21.1.0-1"; 254 254 knownRockspec = (fetchurl { 255 - url = "mirror://luarocks/commons.nvim-19.0.0-1.rockspec"; 256 - sha256 = "0ispimmwx2zh8jpdhdqk0r837y6959l9r2y8iri6l67dnfy7j4ky"; 255 + url = "mirror://luarocks/commons.nvim-21.1.0-1.rockspec"; 256 + sha256 = "00gq8ca65s01ay5c577dqbrya1vkqanf147wi25z6k1jlan33la1"; 257 257 }).outPath; 258 258 src = fetchzip { 259 - url = "https://github.com/linrongbin16/commons.nvim/archive/ab59d5ab57d02bcb2b29234637c79ff74d7693b6.zip"; 260 - sha256 = "0n7dpwhs1f6rmxvjhqj1vs29apmmcbdwcifjjxi13vdxmx1zn2dq"; 259 + url = "https://github.com/linrongbin16/commons.nvim/archive/ff4a221ac0007f9a47c2f5479a5e6180cc743ed1.zip"; 260 + sha256 = "1f7964rdmzsp3a7av4in7biki32l5mv4y3jahjpr7sxh10ly6slh"; 261 261 }; 262 262 263 263 disabled = luaOlder "5.1"; ··· 555 555 fzf-lua = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 556 556 buildLuarocksPackage { 557 557 pname = "fzf-lua"; 558 - version = "0.0.1483-1"; 558 + version = "0.0.1494-1"; 559 559 knownRockspec = (fetchurl { 560 - url = "mirror://luarocks/fzf-lua-0.0.1483-1.rockspec"; 561 - sha256 = "07ryrmv1s9kcv06kzg37cdzl4gshiq214zcsrn9a7mcb0823vfns"; 560 + url = "mirror://luarocks/fzf-lua-0.0.1494-1.rockspec"; 561 + sha256 = "0k6igz74ah84a91wbasqdjs44fcc91mijgi3ks0g6is9xkdvscy8"; 562 562 }).outPath; 563 563 src = fetchzip { 564 - url = "https://github.com/ibhagwan/fzf-lua/archive/2a7eb32871a131e24021dd1756865e475fe7e274.zip"; 565 - sha256 = "0cll709szckarz4d1847vm12c3v9japb90rnzmh0xfwbdknbz7cn"; 564 + url = "https://github.com/ibhagwan/fzf-lua/archive/ce978474e406f4faacd2e66ec35d93b9e8ae069e.zip"; 565 + sha256 = "078i9f5n2iphghjxrz42gra5hnfcwqhprp5wj9rwlsq4ws6ks4d6"; 566 566 }; 567 567 568 568 disabled = luaOlder "5.1"; ··· 606 606 src = fetchFromGitHub { 607 607 owner = "lewis6991"; 608 608 repo = "gitsigns.nvim"; 609 - rev = "ac5aba6dce8c06ea22bea2c9016f51a2dbf90dc7"; 610 - hash = "sha256-8vWilpsVw22+nAEAjhGOvZniRRj5r1UITcW9YeuDH8o="; 609 + rev = "5f808b5e4fef30bd8aca1b803b4e555da07fc412"; 610 + hash = "sha256-H7A+AxioiedSuC+jqRwP4c7DjZR/0j4o/fTUasT2urc="; 611 611 }; 612 612 613 613 disabled = lua.luaversion != "5.1"; ··· 1678 1678 luadbi = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder }: 1679 1679 buildLuarocksPackage { 1680 1680 pname = "luadbi"; 1681 - version = "0.7.3-1"; 1681 + version = "0.7.4-1"; 1682 1682 knownRockspec = (fetchurl { 1683 - url = "mirror://luarocks/luadbi-0.7.3-1.rockspec"; 1684 - sha256 = "0lyiwyg6qnnj7d5rxim6b9p68nbszmwhg57xjlvalbcgwgipk1ns"; 1683 + url = "mirror://luarocks/luadbi-0.7.4-1.rockspec"; 1684 + sha256 = "12nqbl2zmwyz7k0x1y5h235di3jb0xwf27p1rh8lcgg4cqx6izr7"; 1685 1685 }).outPath; 1686 1686 src = fetchFromGitHub { 1687 1687 owner = "mwild1"; 1688 1688 repo = "luadbi"; 1689 - rev = "v0.7.3"; 1690 - hash = "sha256-L2i/e44HvPRhGKH4pUE/6QzO8pHYymHdj2SpHf6YO/I="; 1689 + rev = "v0.7.4"; 1690 + hash = "sha256-N4I8zVTodS01QUIncwAts/vxh2aFY2nYCnVmpN+2HwM="; 1691 1691 }; 1692 1692 1693 1693 disabled = luaOlder "5.1" || luaAtLeast "5.5"; ··· 1702 1702 luadbi-mysql = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder, luadbi }: 1703 1703 buildLuarocksPackage { 1704 1704 pname = "luadbi-mysql"; 1705 - version = "0.7.3-1"; 1705 + version = "0.7.4-1"; 1706 1706 knownRockspec = (fetchurl { 1707 - url = "mirror://luarocks/luadbi-mysql-0.7.3-1.rockspec"; 1708 - sha256 = "1x0pl6qpdi4vmhxs2076kkxmikbv0asndh8lp34r47lym37hcrr3"; 1707 + url = "mirror://luarocks/luadbi-mysql-0.7.4-1.rockspec"; 1708 + sha256 = "0ngpml0mw272pp03kabl1q3jj4fd5hmdlgvw9a2hgl0051358i6c"; 1709 1709 }).outPath; 1710 1710 src = fetchFromGitHub { 1711 1711 owner = "mwild1"; 1712 1712 repo = "luadbi"; 1713 - rev = "v0.7.3"; 1714 - hash = "sha256-L2i/e44HvPRhGKH4pUE/6QzO8pHYymHdj2SpHf6YO/I="; 1713 + rev = "v0.7.4"; 1714 + hash = "sha256-N4I8zVTodS01QUIncwAts/vxh2aFY2nYCnVmpN+2HwM="; 1715 1715 }; 1716 1716 1717 1717 disabled = luaOlder "5.1" || luaAtLeast "5.5"; ··· 1727 1727 luadbi-postgresql = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder, luadbi }: 1728 1728 buildLuarocksPackage { 1729 1729 pname = "luadbi-postgresql"; 1730 - version = "0.7.3-1"; 1730 + version = "0.7.4-1"; 1731 1731 knownRockspec = (fetchurl { 1732 - url = "mirror://luarocks/luadbi-postgresql-0.7.3-1.rockspec"; 1733 - sha256 = "1bnjsgk7cl6wmfhmn8b0av49yabf8flhdi1jhczksvvpf32p77bw"; 1732 + url = "mirror://luarocks/luadbi-postgresql-0.7.4-1.rockspec"; 1733 + sha256 = "0wybfngdz8hw4sgmz8rmym1frz6fwrvpx1l5gh0j68m7q4l25crg"; 1734 1734 }).outPath; 1735 1735 src = fetchFromGitHub { 1736 1736 owner = "mwild1"; 1737 1737 repo = "luadbi"; 1738 - rev = "v0.7.3"; 1739 - hash = "sha256-L2i/e44HvPRhGKH4pUE/6QzO8pHYymHdj2SpHf6YO/I="; 1738 + rev = "v0.7.4"; 1739 + hash = "sha256-N4I8zVTodS01QUIncwAts/vxh2aFY2nYCnVmpN+2HwM="; 1740 1740 }; 1741 1741 1742 1742 disabled = luaOlder "5.1" || luaAtLeast "5.5"; ··· 1752 1752 luadbi-sqlite3 = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder, luadbi }: 1753 1753 buildLuarocksPackage { 1754 1754 pname = "luadbi-sqlite3"; 1755 - version = "0.7.3-1"; 1755 + version = "0.7.4-1"; 1756 1756 knownRockspec = (fetchurl { 1757 - url = "mirror://luarocks/luadbi-sqlite3-0.7.3-1.rockspec"; 1758 - sha256 = "0ppkk1jkxw2fhc4x26h7h2bks51shl3am552phn7all5h3k7h3by"; 1757 + url = "mirror://luarocks/luadbi-sqlite3-0.7.4-1.rockspec"; 1758 + sha256 = "05kjihy5a8hyhn286gi2q1qyyiy8ajnyqp90wv41zjvhxjhg8ymx"; 1759 1759 }).outPath; 1760 1760 src = fetchFromGitHub { 1761 1761 owner = "mwild1"; 1762 1762 repo = "luadbi"; 1763 - rev = "v0.7.3"; 1764 - hash = "sha256-L2i/e44HvPRhGKH4pUE/6QzO8pHYymHdj2SpHf6YO/I="; 1763 + rev = "v0.7.4"; 1764 + hash = "sha256-N4I8zVTodS01QUIncwAts/vxh2aFY2nYCnVmpN+2HwM="; 1765 1765 }; 1766 1766 1767 1767 disabled = luaOlder "5.1" || luaAtLeast "5.5"; ··· 2396 2396 }; 2397 2397 }) {}; 2398 2398 2399 + lusc_luv = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder, luv }: 2400 + buildLuarocksPackage { 2401 + pname = "lusc_luv"; 2402 + version = "4.0.1-1"; 2403 + knownRockspec = (fetchurl { 2404 + url = "mirror://luarocks/lusc_luv-4.0.1-1.rockspec"; 2405 + sha256 = "1bgk481ljfy8q7r3w9z1x5ix0dm6v444c7mf9nahlpyrz9skxakp"; 2406 + }).outPath; 2407 + src = fetchFromGitHub { 2408 + owner = "svermeulen"; 2409 + repo = "lusc_luv"; 2410 + rev = "main"; 2411 + hash = "sha256-xT3so0QHtzzLRNRb7yqfaRMwkl2bt1MP1xh8BkHKqqo="; 2412 + }; 2413 + 2414 + disabled = luaOlder "5.1"; 2415 + propagatedBuildInputs = [ luv ]; 2416 + 2417 + meta = { 2418 + homepage = "https://github.com/svermeulen/lusc_luv"; 2419 + description = "Structured Async/Concurrency for Lua using Luv"; 2420 + license.fullName = "MIT"; 2421 + }; 2422 + }) {}; 2423 + 2399 2424 lush-nvim = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder }: 2400 2425 buildLuarocksPackage { 2401 2426 pname = "lush.nvim"; ··· 2440 2465 homepage = "http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#luuid"; 2441 2466 description = "A library for UUID generation"; 2442 2467 license.fullName = "Public domain"; 2443 - }; 2444 - }) {}; 2445 - 2446 - lusc_luv = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder, luv }: 2447 - buildLuarocksPackage { 2448 - pname = "lusc_luv"; 2449 - version = "4.0.1-1"; 2450 - knownRockspec = (fetchurl { 2451 - url = "mirror://luarocks/lusc_luv-4.0.1-1.rockspec"; 2452 - sha256 = "1bgk481ljfy8q7r3w9z1x5ix0dm6v444c7mf9nahlpyrz9skxakp"; 2453 - }).outPath; 2454 - src = fetchFromGitHub { 2455 - owner = "svermeulen"; 2456 - repo = "lusc_luv"; 2457 - rev = "838b8f647911b1fcfe160ddce881409ea9b35acf"; 2458 - hash = "sha256-xT3so0QHtzzLRNRb7yqfaRMwkl2bt1MP1xh8BkHKqqo="; 2459 - }; 2460 - 2461 - disabled = luaOlder "5.1"; 2462 - propagatedBuildInputs = [ luv ]; 2463 - 2464 - meta = { 2465 - homepage = "https://github.com/svermeulen/lusc_luv"; 2466 - description = "Structured Async/Concurrency for Lua using Luv"; 2467 - license.fullName = "MIT"; 2468 2468 }; 2469 2469 }) {}; 2470 2470 ··· 2707 2707 src = fetchFromGitHub { 2708 2708 owner = "leafo"; 2709 2709 repo = "moonscript"; 2710 - rev = "d5341c9093c49d3724072b209cde28b5cb0f47c9"; 2711 - hash = "sha256-sVMhqCzGhfEGoFueVINx9hnnE5vNN61S6t3CXGBnxcA="; 2710 + rev = "60094ca0be870462678925413b6528ae5bf4690a"; 2711 + hash = "sha256-xYKn/A1mX1h4LdLcV/2Vww1YJCfhlkXy8fEcqeofYPk="; 2712 2712 }; 2713 2713 2714 2714 disabled = luaOlder "5.1"; ··· 2846 2846 src = fetchFromGitHub { 2847 2847 owner = "hrsh7th"; 2848 2848 repo = "nvim-cmp"; 2849 - rev = "f17d9b4394027ff4442b298398dfcaab97e40c4f"; 2850 - hash = "sha256-iNEoMl/X0nh2sAio1h+dkuobeOXRBXKFJCcElUyyW54="; 2849 + rev = "ed31156aa2cc14e3bc066c59357cc91536a2bc01"; 2850 + hash = "sha256-Rpb1rPYFQs74XzNQfj83o/l7bfM3GnYk+EqoDnz2JyM="; 2851 2851 }; 2852 2852 2853 2853 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 3025 3025 rocks-config-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, rocks-nvim }: 3026 3026 buildLuarocksPackage { 3027 3027 pname = "rocks-config.nvim"; 3028 - version = "3.0.0-1"; 3028 + version = "3.1.0-1"; 3029 3029 knownRockspec = (fetchurl { 3030 - url = "mirror://luarocks/rocks-config.nvim-3.0.0-1.rockspec"; 3031 - sha256 = "08jg5v1jnmg0ig395d6lmsdpa2vw8m9w3barvar0s77a7lkxgywg"; 3030 + url = "mirror://luarocks/rocks-config.nvim-3.1.0-1.rockspec"; 3031 + sha256 = "0165jyp21hxaaimn166r3r5rrjzx9q8ci1s2w54kiijz79i7kpg3"; 3032 3032 }).outPath; 3033 3033 src = fetchzip { 3034 - url = "https://github.com/nvim-neorocks/rocks-config.nvim/archive/v3.0.0.zip"; 3035 - sha256 = "16836pxg0bq6f8qj6kn73v75kbwlr533pmv9dal4h53qldqjn9hh"; 3034 + url = "https://github.com/nvim-neorocks/rocks-config.nvim/archive/v3.1.0.zip"; 3035 + sha256 = "1r5g3f039b41c0c55i6vqph4hslc0706s6blrz15yxhgyj4ksi8p"; 3036 3036 }; 3037 3037 3038 3038 disabled = luaOlder "5.1"; ··· 3144 3144 rustaceanvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 3145 3145 buildLuarocksPackage { 3146 3146 pname = "rustaceanvim"; 3147 - version = "5.14.1-1"; 3147 + version = "5.15.2-1"; 3148 3148 knownRockspec = (fetchurl { 3149 - url = "mirror://luarocks/rustaceanvim-5.14.1-1.rockspec"; 3150 - sha256 = "1xr2vvcsd525h304w1hf6ij1qfwlklyczk1bh5jd6s2hnrkwyy5b"; 3149 + url = "mirror://luarocks/rustaceanvim-5.15.2-1.rockspec"; 3150 + sha256 = "146wgs02qvlhpvq4vkn3kyjqa7305lc8741rqd46rw7y4cmnxmrn"; 3151 3151 }).outPath; 3152 3152 src = fetchzip { 3153 - url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.14.1.zip"; 3154 - sha256 = "1p0pqv0a415k0ndgdjy0k0p58sdvn4ngm9zymd5hn3ny9441b22v"; 3153 + url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.15.2.zip"; 3154 + sha256 = "0kflz9n5kzyfjix8gmy8a7rqdzwwp77m2ffx54a82rbb9ddqs5jr"; 3155 3155 }; 3156 3156 3157 3157 disabled = luaOlder "5.1"; ··· 3501 3501 vusted = callPackage({ buildLuarocksPackage, busted, fetchFromGitHub, fetchurl, luasystem }: 3502 3502 buildLuarocksPackage { 3503 3503 pname = "vusted"; 3504 - version = "2.5.0-1"; 3504 + version = "2.5.1-1"; 3505 3505 knownRockspec = (fetchurl { 3506 - url = "mirror://luarocks/vusted-2.5.0-1.rockspec"; 3507 - sha256 = "05jv8kl0hy3pyrknafmynifrqyrcc5q9qkd4ly1vmxgmmbm30nqz"; 3506 + url = "mirror://luarocks/vusted-2.5.1-1.rockspec"; 3507 + sha256 = "14h1vbms6ygqpdfsms1prvp29ld8kk1w2qa2c9b6i02h3dg45dv6"; 3508 3508 }).outPath; 3509 3509 src = fetchFromGitHub { 3510 3510 owner = "notomo"; 3511 3511 repo = "vusted"; 3512 - rev = "v2.5.0"; 3513 - hash = "sha256-1/fZ8OAw9NZoY1YDN6OhOJRqwRDWps5JJDIsvWg1Nr4="; 3512 + rev = "v2.5.1"; 3513 + hash = "sha256-XHAPgLNGVdqyeukqimLqRlDhuiMEhOhBO0vUIFDAPjM="; 3514 3514 }; 3515 3515 3516 3516 propagatedBuildInputs = [ busted luasystem ];
+2 -3
pkgs/development/lua-modules/overrides.nix
··· 349 349 350 350 luarocksConfig = lib.recursiveUpdate oa.luarocksConfig { 351 351 variables = { 352 - # Can't just be /include and /lib, unfortunately needs the trailing 'mysql' 353 - MYSQL_INCDIR = "${libmysqlclient.dev}/include/mysql"; 354 - MYSQL_LIBDIR = "${libmysqlclient}/lib/mysql"; 352 + MYSQL_INCDIR = "${lib.getDev libmysqlclient}/include/"; 353 + MYSQL_LIBDIR = "${lib.getLib libmysqlclient}/lib/"; 355 354 }; 356 355 }; 357 356 buildInputs = oa.buildInputs ++ [
+2 -2
pkgs/development/python-modules/asyncstdlib/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "asyncstdlib"; 12 - version = "3.12.5"; 12 + version = "3.13.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.9"; ··· 18 18 owner = "maxfischer2781"; 19 19 repo = "asyncstdlib"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-RQoq+Okzan4/Q51mlL1EPyZuBSr3+xGWEPSAnZYJGyA="; 21 + hash = "sha256-0VEJ26MP6gIgPvjan7LgCEtSLpg4wXhmFNPGZGntPD8="; 22 22 }; 23 23 24 24 build-system = [ flit-core ];
-87
pkgs/development/python-modules/binwalk/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchFromGitHub, 5 - stdenv, 6 - zlib, 7 - xz, 8 - gzip, 9 - bzip2, 10 - gnutar, 11 - p7zip, 12 - cabextract, 13 - cramfsprogs, 14 - cramfsswap, 15 - sasquatch, 16 - setuptools, 17 - squashfsTools, 18 - matplotlib, 19 - pycrypto, 20 - pyqtgraph, 21 - pyqt5, 22 - pytestCheckHook, 23 - yaffshiv, 24 - visualizationSupport ? false, 25 - }: 26 - 27 - buildPythonPackage rec { 28 - pname = "binwalk${lib.optionalString visualizationSupport "-full"}"; 29 - version = "2.4.3"; 30 - pyproject = true; 31 - 32 - src = fetchFromGitHub { 33 - owner = "OSPG"; 34 - repo = "binwalk"; 35 - rev = "refs/tags/v${version}"; 36 - hash = "sha256-kabibUMh5HyAJCXOyZo3QSNIVz8fER4Xivuv9E3CfEE="; 37 - }; 38 - 39 - build-system = [ setuptools ]; 40 - 41 - propagatedBuildInputs = 42 - [ 43 - zlib 44 - xz 45 - gzip 46 - bzip2 47 - gnutar 48 - p7zip 49 - cabextract 50 - squashfsTools 51 - xz 52 - pycrypto 53 - yaffshiv 54 - ] 55 - ++ lib.optionals visualizationSupport [ 56 - matplotlib 57 - pyqtgraph 58 - pyqt5 59 - ] 60 - ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 61 - cramfsprogs 62 - cramfsswap 63 - sasquatch 64 - ]; 65 - 66 - # setup.py only installs version.py during install, not test 67 - postPatch = '' 68 - echo '__version__ = "${version}"' > src/binwalk/core/version.py 69 - ''; 70 - 71 - # binwalk wants to access ~/.config/binwalk/magic 72 - preCheck = '' 73 - HOME=$(mktemp -d) 74 - ''; 75 - 76 - nativeCheckInputs = [ pytestCheckHook ]; 77 - 78 - pythonImportsCheck = [ "binwalk" ]; 79 - 80 - meta = with lib; { 81 - homepage = "https://github.com/OSPG/binwalk"; 82 - description = "Tool for searching a given binary image for embedded files"; 83 - mainProgram = "binwalk"; 84 - maintainers = [ maintainers.koral ]; 85 - license = licenses.mit; 86 - }; 87 - }
+4 -3
pkgs/development/python-modules/deltachat-rpc-client/default.nix
··· 21 21 22 22 build-system = [ setuptools ]; 23 23 24 - dependencies = [ imap-tools ]; 25 - 26 24 pythonImportsCheck = [ "deltachat_rpc_client" ]; 27 25 28 - nativeCheckInputs = [ pytestCheckHook ]; 26 + nativeCheckInputs = [ 27 + imap-tools 28 + pytestCheckHook 29 + ]; 29 30 30 31 # requires a chatmail server 31 32 doCheck = false;
+2 -2
pkgs/development/python-modules/dnachisel/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "dnachisel"; 20 - version = "3.2.11"; 20 + version = "3.2.12"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "Edinburgh-Genome-Foundry"; 27 27 repo = "DnaChisel"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-rcZq/HhU1xIyQ1jM8+gO9ONDLBAxiUIByoWk2nMwuGA="; 29 + hash = "sha256-zoKaeK0b4EoxEQMODfrzDpI7xIKQ/w6Dmot+dw92fuw="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [
+11 -15
pkgs/development/python-modules/fastapi-mail/default.nix
··· 1 1 { 2 2 lib, 3 - aioredis, 4 3 aiosmtplib, 5 4 blinker, 6 5 buildPythonPackage, 7 6 email-validator, 8 7 fakeredis, 9 - fastapi, 10 8 fetchFromGitHub, 11 9 httpx, 12 10 jinja2, 13 11 poetry-core, 14 - pydantic, 15 12 pydantic-settings, 13 + pydantic, 16 14 pytest-asyncio, 17 15 pytestCheckHook, 18 - python-multipart, 19 16 pythonOlder, 17 + redis, 18 + starlette, 20 19 }: 21 20 22 21 buildPythonPackage rec { 23 22 pname = "fastapi-mail"; 24 - version = "1.4.1"; 23 + version = "1.4.2"; 25 24 pyproject = true; 26 25 27 26 disabled = pythonOlder "3.8"; ··· 30 29 owner = "sabuhish"; 31 30 repo = "fastapi-mail"; 32 31 rev = "refs/tags/${version}"; 33 - hash = "sha256-2iTZqZIxlt1GKhElasTcnys18UbNNDwHoZziHBOIGBo="; 32 + hash = "sha256-QypW7yE5jBkS1Q4XPIOktWnCmCXGoUzZF/SdWmFsPX8="; 34 33 }; 35 34 36 35 pythonRelaxDeps = [ ··· 38 37 "pydantic" 39 38 ]; 40 39 41 - postPatch = '' 42 - substituteInPlace pyproject.toml \ 43 - --replace-fail 'version = "1.2.5"' 'version = "${version}"' 44 - ''; 45 - 46 40 build-system = [ poetry-core ]; 47 41 48 42 dependencies = [ 49 - aioredis 50 43 aiosmtplib 51 44 blinker 52 45 email-validator 53 46 fakeredis 54 - fastapi 55 - httpx 56 47 jinja2 57 48 pydantic 58 49 pydantic-settings 59 - python-multipart 50 + starlette 60 51 ]; 52 + 53 + optional-dependencies = { 54 + httpx = [ httpx ]; 55 + redis = [ redis ]; 56 + }; 61 57 62 58 nativeCheckInputs = [ 63 59 pytest-asyncio
+53
pkgs/development/python-modules/geoarrow-c/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pythonOlder, 6 + pytestCheckHook, 7 + pyarrow, 8 + cython, 9 + numpy, 10 + setuptools, 11 + setuptools-scm, 12 + }: 13 + buildPythonPackage rec { 14 + pname = "geoarrow-c"; 15 + version = "0.1.3"; 16 + pyproject = true; 17 + 18 + disabled = pythonOlder "3.8"; 19 + 20 + src = fetchFromGitHub { 21 + repo = "geoarrow-c"; 22 + owner = "geoarrow"; 23 + rev = "refs/tags/geoarrow-c-python-${version}"; 24 + hash = "sha256-kQCD3Vptl7GtRFigr4darvdtwnaHRLZWvBBpZ0xHMgM="; 25 + }; 26 + 27 + sourceRoot = "${src.name}/python/geoarrow-c"; 28 + 29 + build-system = [ 30 + cython 31 + setuptools 32 + setuptools-scm 33 + ]; 34 + 35 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 36 + 37 + nativeCheckInputs = [ 38 + pytestCheckHook 39 + pyarrow 40 + numpy 41 + ]; 42 + 43 + pythonImportsCheck = [ "geoarrow.c" ]; 44 + 45 + meta = with lib; { 46 + description = "Experimental C and C++ implementation of the GeoArrow specification"; 47 + homepage = "https://github.com/geoarrow/geoarrow-c"; 48 + license = licenses.asl20; 49 + maintainers = with maintainers; [ 50 + cpcloud 51 + ]; 52 + }; 53 + }
+52
pkgs/development/python-modules/geoarrow-pandas/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pythonOlder, 6 + pytestCheckHook, 7 + pandas, 8 + pyarrow, 9 + geoarrow-pyarrow, 10 + setuptools-scm, 11 + }: 12 + buildPythonPackage rec { 13 + pname = "geoarrow-pandas"; 14 + version = "0.1.2"; 15 + pyproject = true; 16 + 17 + disabled = pythonOlder "3.8"; 18 + 19 + src = fetchFromGitHub { 20 + repo = "geoarrow-python"; 21 + owner = "geoarrow"; 22 + rev = "refs/tags/geoarrow-pandas-${version}"; 23 + hash = "sha256-Ni+GKTRhRDRHip1us3OZPuUhHQCNU7Nap865T/+CU8Y="; 24 + }; 25 + 26 + sourceRoot = "${src.name}/geoarrow-pandas"; 27 + 28 + build-system = [ setuptools-scm ]; 29 + 30 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 + 32 + dependencies = [ 33 + geoarrow-pyarrow 34 + pandas 35 + pyarrow 36 + ]; 37 + 38 + nativeCheckInputs = [ 39 + pytestCheckHook 40 + ]; 41 + 42 + pythonImportsCheck = [ "geoarrow.pandas" ]; 43 + 44 + meta = with lib; { 45 + description = "Python implementation of the GeoArrow specification"; 46 + homepage = "https://github.com/geoarrow/geoarrow-python"; 47 + license = licenses.asl20; 48 + maintainers = with maintainers; [ 49 + cpcloud 50 + ]; 51 + }; 52 + }
+77
pkgs/development/python-modules/geoarrow-pyarrow/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pythonOlder, 6 + pytestCheckHook, 7 + geoarrow-c, 8 + pyarrow, 9 + pyarrow-hotfix, 10 + numpy, 11 + pandas, 12 + geopandas, 13 + pyogrio, 14 + pyproj, 15 + setuptools-scm, 16 + }: 17 + buildPythonPackage rec { 18 + pname = "geoarrow-pyarrow"; 19 + version = "0.1.2"; 20 + pyproject = true; 21 + 22 + disabled = pythonOlder "3.8"; 23 + 24 + src = fetchFromGitHub { 25 + repo = "geoarrow-python"; 26 + owner = "geoarrow"; 27 + rev = "refs/tags/geoarrow-pyarrow-${version}"; 28 + hash = "sha256-Ni+GKTRhRDRHip1us3OZPuUhHQCNU7Nap865T/+CU8Y="; 29 + }; 30 + 31 + sourceRoot = "${src.name}/geoarrow-pyarrow"; 32 + 33 + build-system = [ setuptools-scm ]; 34 + 35 + disabledTests = [ 36 + # these tests are incompatible with arrow 17 37 + "test_make_point" 38 + "test_point_with_offset" 39 + "test_linestring_with_offset" 40 + "test_polygon_with_offset" 41 + "test_multipoint_with_offset" 42 + "test_multilinestring_with_offset" 43 + "test_multipolygon_with_offset" 44 + "test_multipolygon_with_offset_nonempty_inner_lists" 45 + "test_interleaved_multipolygon_with_offset" 46 + "test_readpyogrio_table_gpkg" 47 + "test_geometry_type_basic" 48 + ]; 49 + 50 + dependencies = [ 51 + geoarrow-c 52 + pyarrow 53 + pyarrow-hotfix 54 + ]; 55 + 56 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 57 + 58 + nativeCheckInputs = [ 59 + pytestCheckHook 60 + numpy 61 + pandas 62 + geopandas 63 + pyogrio 64 + pyproj 65 + ]; 66 + 67 + pythonImportsCheck = [ "geoarrow.pyarrow" ]; 68 + 69 + meta = with lib; { 70 + description = "PyArrow implementation of geospatial data types"; 71 + homepage = "https://github.com/geoarrow/geoarrow-python"; 72 + license = licenses.asl20; 73 + maintainers = with maintainers; [ 74 + cpcloud 75 + ]; 76 + }; 77 + }
+45
pkgs/development/python-modules/geoarrow-types/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pythonOlder, 6 + pytestCheckHook, 7 + pyarrow, 8 + setuptools-scm, 9 + }: 10 + buildPythonPackage rec { 11 + pname = "geoarrow-types"; 12 + version = "0.2.0"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 18 + repo = "geoarrow-python"; 19 + owner = "geoarrow"; 20 + rev = "refs/tags/geoarrow-types-${version}"; 21 + hash = "sha256-LySb4AsRuSirDJ73MAPpnMwPM2WFfG6X82areR4Y4lI="; 22 + }; 23 + 24 + sourceRoot = "${src.name}/geoarrow-types"; 25 + 26 + build-system = [ setuptools-scm ]; 27 + 28 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 29 + 30 + nativeCheckInputs = [ 31 + pytestCheckHook 32 + pyarrow 33 + ]; 34 + 35 + pythonImportsCheck = [ "geoarrow.types" ]; 36 + 37 + meta = with lib; { 38 + description = "PyArrow types for geoarrow"; 39 + homepage = "https://github.com/geoarrow/geoarrow-python"; 40 + license = licenses.asl20; 41 + maintainers = with maintainers; [ 42 + cpcloud 43 + ]; 44 + }; 45 + }
+2 -2
pkgs/development/python-modules/jc/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "jc"; 17 - version = "1.25.3"; 17 + version = "1.25.4"; 18 18 format = "setuptools"; 19 19 disabled = pythonOlder "3.6"; 20 20 ··· 22 22 owner = "kellyjonbrazil"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-yp5533CzqJ++G6nHip1281ZkB4JyfLb3inR9BwDkxSs="; 25 + hash = "sha256-9006FoIGUpmb+tC2d6jLsYpKUPM5OEXxK1ztAREwZ1E="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+4 -1
pkgs/development/python-modules/meteoswiss-async/default.nix
··· 26 26 hash = "sha256-xFvfyLZvBfnbzShKN+94piNUVjV1cfi4jWpc/Xw6XG4="; 27 27 }; 28 28 29 - pythonRelaxDeps = [ "aiohttp" ]; 29 + pythonRelaxDeps = [ 30 + "aiohttp" 31 + "asyncstdlib" 32 + ]; 30 33 31 34 build-system = [ setuptools ]; 32 35
+14 -3
pkgs/development/python-modules/python-etcd/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 9 10 etcd_3_4, 10 11 mock, 11 12 pyopenssl, 12 - stdenv, 13 13 }: 14 14 15 15 buildPythonPackage { ··· 48 48 done 49 49 ''; 50 50 51 - meta = with lib; { 51 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 52 + # Seems to be failing because of network restrictions 53 + # AttributeError: Can't get local object 'TestWatch.test_watch_indexed_generator.<locals>.watch_value' 54 + "test_watch" 55 + "test_watch_generator" 56 + "test_watch_indexed" 57 + "test_watch_indexed_generator" 58 + ]; 59 + 60 + __darwinAllowLocalNetworking = true; 61 + 62 + meta = { 52 63 description = "Python client for Etcd"; 53 64 homepage = "https://github.com/jplana/python-etcd"; 54 - license = licenses.mit; 65 + license = lib.licenses.mit; 55 66 }; 56 67 }
+3 -2
pkgs/development/python-modules/pytransportnswv2/default.nix
··· 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 - inherit pname version; 19 + pname = "PyTransportNSWv2"; 20 + inherit version; 20 21 hash = "sha256-hpbq1Krv+DklSXBMJsyRZd8d0yj+vaRjlu2pu6sLV0Y="; 21 22 }; 22 23 ··· 30 31 # Project has no tests 31 32 doCheck = false; 32 33 33 - pythonImportsCheck = [ "TransportNSW" ]; 34 + pythonImportsCheck = [ "TransportNSWv2" ]; 34 35 35 36 meta = with lib; { 36 37 description = "Python module to access Transport NSW information";
+4 -12
pkgs/development/python-modules/radio-beam/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "radio-beam"; 18 - version = "0.3.7"; 18 + version = "0.3.8"; 19 19 pyproject = true; 20 20 21 21 src = fetchPypi { 22 - inherit pname version; 23 - hash = "sha256-7AFkuuYLzibwwgz6zrFw0fBXCnGLzdm4OgT+Chve5jU="; 22 + inherit version; 23 + pname = "radio_beam"; # Tarball was uploaded with an underscore in this version 24 + hash = "sha256-CE/rcYKO3Duz5zwmJ4gEuqOoO3Uy7sjwOi96HP0Y53A="; 24 25 }; 25 - 26 - # Fix distutils deprecation in Python 3.12. See: 27 - # https://github.com/radio-astro-tools/radio-beam/pull/124 28 - patches = [ 29 - (fetchpatch2 { 30 - url = "https://github.com/radio-astro-tools/radio-beam/commit/1eb0216c8d7f5a4494d8d1fe8c79b48425a9c491.patch"; 31 - hash = "sha256-kTJF/cnkJCjJI2psvs+4MWFn/+b8TvUWjdfYu5ot0XU="; 32 - }) 33 - ]; 34 26 35 27 nativeBuildInputs = [ setuptools-scm ]; 36 28
+4 -2
pkgs/development/python-modules/syrupy/default.nix
··· 5 5 python, 6 6 poetry-core, 7 7 pytest, 8 + pytest-xdist, 8 9 invoke, 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "syrupy"; 13 - version = "4.7.2"; 14 + version = "4.8.0"; 14 15 pyproject = true; 15 16 16 17 disabled = lib.versionOlder python.version "3.8.1"; ··· 19 20 owner = "syrupy-project"; 20 21 repo = "syrupy"; 21 22 rev = "refs/tags/v${version}"; 22 - hash = "sha256-akYUsstepkDrRXqp1DY6wEeXMMlLNcCqitnWpjcAurg="; 23 + hash = "sha256-IifGufCUhjbl8Tqvcjm8XF4QPvOsRacPWxI1yT79eNs="; 23 24 }; 24 25 25 26 build-system = [ poetry-core ]; ··· 29 30 nativeCheckInputs = [ 30 31 invoke 31 32 pytest 33 + pytest-xdist 32 34 ]; 33 35 34 36 checkPhase = ''
+4 -4
pkgs/development/python-modules/urwid-readline/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "urwid-readline"; 12 - version = "0.14"; 12 + version = "0.15.1"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "rr-"; 17 17 repo = "urwid_readline"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-ZTg+GZnu7R6Jf2+SIwVo57yHnjwuY92DElTJs8oRErE="; 19 + hash = "sha256-HiMMLzVE/Qw/PR7LXACyfzblxrGYrbMoi3/e/QzqF34="; 20 20 }; 21 21 22 - nativeBuildInputs = [ setuptools ]; 22 + build-system = [ setuptools ]; 23 23 24 - propagatedBuildInputs = [ urwid ]; 24 + dependencies = [ urwid ]; 25 25 26 26 pythonImportsCheck = [ "urwid_readline" ]; 27 27
+3 -3
pkgs/development/tools/build-managers/moon/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "moon"; 12 - version = "1.29.0"; 12 + version = "1.29.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "moonrepo"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-s0JwqEso1Mum+fMTg2rn58oxoSqraQ0iEnsRpgMmtVU="; 18 + hash = "sha256-/EaRryWuH5BPm6bv8KWfLewS/8W6nUspBjvNnFq/sUQ="; 19 19 }; 20 20 21 - cargoHash = "sha256-5WFB2+dWm0q+Ui7rpVlvVrmCHoc4v5x5QNEbDpANkhA="; 21 + cargoHash = "sha256-m5+8WHWpOTF2vIg4ctLPC5m9F+MGRofoEAHGv1ejQXA="; 22 22 23 23 env = { 24 24 RUSTFLAGS = "-C strip=symbols";
+2 -2
pkgs/development/tools/marksman/default.nix
··· 8 8 9 9 buildDotnetModule rec { 10 10 pname = "marksman"; 11 - version = "2024-10-07"; 11 + version = "2024-11-20"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "artempyanykh"; 15 15 repo = "marksman"; 16 16 rev = version; 17 - sha256 = "sha256-BU9ttJsAQ8du9NUs69c7/FxZodUS/BhzKm+P1RocCms="; 17 + sha256 = "sha256-gQ/CncjGBR4cAVRko+u3Zv6QTg8AxmV+9+WbAcp+qX4="; 18 18 }; 19 19 20 20 projectFile = "Marksman/Marksman.fsproj";
+17 -122
pkgs/development/tools/marksman/deps.nix
··· 2 2 # Please dont edit it manually, your changes might get overwritten! 3 3 4 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "coverlet.collector"; version = "6.0.0"; hash = "sha256-IEmweTMapcPhFHpmJsPXfmMhravYOrWupgjeOvMmQ4o="; }) 6 - (fetchNuGet { pname = "dotnet-fsharplint"; version = "0.21.6"; hash = "sha256-iAJ4AAWuDjpQL/ZtxkI4BfgLTHfvdC4xx56jCFKNRk0="; }) 7 - (fetchNuGet { pname = "fantomas"; version = "6.2.3"; hash = "sha256-Aol10o5Q7l8s6SdX0smVdi3ec2IgAx+gMksAMjXhIfU="; }) 5 + (fetchNuGet { pname = "coverlet.collector"; version = "6.0.2"; hash = "sha256-LdSQUrOmjFug47LjtqgtN2MM6BcfG0HR5iL+prVHlDo="; }) 6 + (fetchNuGet { pname = "fantomas"; version = "6.3.16"; hash = "sha256-4tRdYf+/Q1iedx+DDuIKVGlIWQdr6erM51VdKzZkhCs="; }) 8 7 (fetchNuGet { pname = "FSharp.SystemCommandLine"; version = "0.13.0-beta4"; hash = "sha256-QDT7vllfe978acAmSXltWXsnG/LZOEWTb1C85vBDBYI="; }) 9 - (fetchNuGet { pname = "FSharpPlus"; version = "1.5.0"; hash = "sha256-jQUlF3hsi3xpg+AdTnQw2L+lzbvTh5BIyLXCdVT6u6M="; }) 8 + (fetchNuGet { pname = "FSharpPlus"; version = "1.6.1"; hash = "sha256-MGwxfDTg6gJiS88yiqi1OGJk5WmaAFkVniniwF9Ilkc="; }) 10 9 (fetchNuGet { pname = "Glob"; version = "1.1.9"; hash = "sha256-o3igdoWYiatTNlvBA6UrhZVLweh6qcY7CcQtILCC4uA="; }) 11 - (fetchNuGet { pname = "Markdig"; version = "0.37.0"; hash = "sha256-nPox06LraU0xZPGj+rQaBAxpiiLnhM1NduUEidVpgzU="; }) 10 + (fetchNuGet { pname = "Markdig"; version = "0.38.0"; hash = "sha256-5DuDlj+TCDJWP8oJM2WU48ps3HFuUg5P28O/SPcjwGk="; }) 12 11 (fetchNuGet { pname = "MessagePack"; version = "2.5.108"; hash = "sha256-+vMXyEbfutY5WOFuFnNF24uLcKJTTdntVrVlSJH4yjI="; }) 13 12 (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.108"; hash = "sha256-u3Qu8UftNIz3oIzQUMa7Z0G6VzmDLcAnAeNQ3lB3YVk="; }) 14 13 (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "7.0.0"; hash = "sha256-1e031E26iraIqun84ad0fCIR4MJZ1hcQo4yFN+B7UfE="; }) 15 - (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.8.0"; hash = "sha256-cv/wAXfTNS+RWEsHWNKqRDHC7LOQSSdFJ1a9cZuSfJw="; }) 14 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.11.1"; hash = "sha256-1dLlK3NGh88PuFYZiYpT+izA96etxhU3BSgixDgdtGA="; }) 16 15 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; hash = "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8="; }) 17 16 (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.4.0"; hash = "sha256-+9uBaUDZ3roUJwyYJUL30Mz+3C6LE16FzfQKgS0Yveo="; }) 18 - (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.8.0"; hash = "sha256-uz7QvW+NsVRsp8FR1wjnGEOkUaPX4JyieywvCN6g2+s="; }) 17 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.11.1"; hash = "sha256-0JUEucQ2lzaPgkrjm/NFLBTbqU1dfhvhN3Tl3moE6mI="; }) 19 18 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU="; }) 20 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; }) 21 19 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; }) 22 20 (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4="; }) 23 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; }) 24 - (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.8.0"; hash = "sha256-9TwGrjVvbtyetw67Udp3EMK5MX8j0RFRjduxPCs9ESw="; }) 25 - (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.8.0"; hash = "sha256-+CTYFu631uovLCO47RKe86YaAqfoLA4r73vKORJUsjg="; }) 21 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.11.1"; hash = "sha256-5vX+vCzFY3S7xfMVIv8OlMMFtdedW9UIJzc0WEc+vm4="; }) 22 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.11.1"; hash = "sha256-wSkY0H1fQAq0H3LcKT4u7Y5RzhAAPa6yueVN84g8HxU="; }) 26 23 (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.6.40"; hash = "sha256-5HtsgSPV5RdaPREGDvJ7qMOFubb1wMyHwkfTnZs9Zsc="; }) 27 24 (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.6.40"; hash = "sha256-WghLNITEsKTV5pCjogmhfsVD3iO7ghTk0KNrOXzKSS0="; }) 28 25 (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "17.6.11"; hash = "sha256-Lkjp9Ove4+CFP06x/toYpJEiAinuTfn/o+oh0fW3pGM="; }) 29 - (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg="; }) 30 26 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; }) 31 27 (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.10.66"; hash = "sha256-35qyZOVDemtsBYjaZSkzuXGp0mIOSFnCeEHWsUXb5BI="; }) 32 - (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; hash = "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw="; }) 33 28 (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; }) 29 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; }) 34 30 (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; hash = "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU="; }) 35 - (fetchNuGet { pname = "NuGet.Frameworks"; version = "6.5.0"; hash = "sha256-ElqfN4CcKxT3hP2qvxxObb4mnBlYG89IMxO0Sm5oZ2g="; }) 36 - (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; }) 37 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="; }) 38 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="; }) 39 - (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; }) 40 - (fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4="; }) 41 - (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; }) 42 - (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; }) 43 - (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; }) 44 - (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; }) 45 - (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; }) 46 - (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; }) 47 - (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; }) 48 - (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; }) 49 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; }) 50 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="; }) 51 - (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; }) 52 - (fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; hash = "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs="; }) 53 - (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; }) 54 - (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; }) 55 - (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; }) 56 - (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; }) 57 - (fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; hash = "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8="; }) 58 - (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="; }) 59 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="; }) 60 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; }) 61 - (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; }) 62 - (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; }) 63 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="; }) 64 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; }) 65 - (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; }) 66 - (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; }) 67 - (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; }) 68 - (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; }) 69 - (fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg="; }) 70 - (fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; hash = "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190="; }) 71 - (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; }) 72 - (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="; }) 73 - (fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; hash = "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0="; }) 74 - (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; hash = "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4="; }) 75 - (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; }) 76 - (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; }) 77 31 (fetchNuGet { pname = "Serilog"; version = "2.11.0"; hash = "sha256-kI7I/NiH7GuR0MQTZsy+m+8+2qT0xMBrY7SXYCocbds="; }) 78 32 (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "4.0.1"; hash = "sha256-n0LQOEsUg9M/T1aWryiG2690pyGBjHsk6TRZz2aCGyA="; }) 79 - (fetchNuGet { pname = "Snapper"; version = "2.4.0"; hash = "sha256-CBi7AWRL20oVBApWp+819Uky9WPzLzuL5VvGEfiHYbw="; }) 33 + (fetchNuGet { pname = "Snapper"; version = "2.4.1"; hash = "sha256-mgYpGR3MWNQyueF07kDgl8ToyzcISqYTabVYn8Davpo="; }) 80 34 (fetchNuGet { pname = "StreamJsonRpc"; version = "2.16.36"; hash = "sha256-XLCQsY7xu67E8E7WJIvjHtk3iobREPCiljW8jNpfi68="; }) 81 - (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; hash = "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg="; }) 82 - (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="; }) 83 35 (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0="; }) 84 - (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 85 - (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; }) 86 36 (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; hash = "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk="; }) 87 37 (fetchNuGet { pname = "System.CommandLine"; version = "2.0.0-beta4.22272.1"; hash = "sha256-zSO+CYnMH8deBHDI9DHhCPj79Ce3GOzHCyH1/TiHxcc="; }) 88 - (fetchNuGet { pname = "System.Console"; version = "4.3.0"; hash = "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo="; }) 89 38 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; hash = "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4="; }) 90 - (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 91 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; hash = "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw="; }) 92 39 (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "7.0.2"; hash = "sha256-8Uawe7mWOQsDzMSAAP16nuGD1FRSajyS8q+cA++MJ8E="; }) 93 40 (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; hash = "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U="; }) 94 - (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y="; }) 95 - (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; }) 96 41 (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4="; }) 97 42 (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw="; }) 98 - (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 99 - (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; }) 100 - (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; }) 101 43 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw="; }) 102 - (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 103 - (fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; hash = "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA="; }) 104 - (fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; hash = "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs="; }) 105 44 (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0="; }) 106 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; }) 107 45 (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.0.1"; hash = "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg="; }) 108 - (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; }) 109 46 (fetchNuGet { pname = "System.IO.Pipelines"; version = "7.0.0"; hash = "sha256-W2181khfJUTxLqhuAVRhCa52xZ3+ePGOLIPwEN8WisY="; }) 110 47 (fetchNuGet { pname = "System.Linq"; version = "4.1.0"; hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794="; }) 111 - (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 112 48 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4="; }) 113 - (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="; }) 114 49 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 115 - (fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; hash = "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q="; }) 116 - (fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; hash = "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c="; }) 117 - (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="; }) 118 - (fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; hash = "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus="; }) 119 50 (fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s="; }) 120 - (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="; }) 121 - (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; }) 122 51 (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs="; }) 123 - (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 124 52 (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk="; }) 125 - (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="; }) 126 53 (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0="; }) 127 - (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="; }) 128 54 (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g="; }) 129 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="; }) 130 55 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ="; }) 131 - (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; }) 132 56 (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; hash = "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E="; }) 133 57 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0="; }) 134 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 135 58 (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4="; }) 136 - (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="; }) 137 59 (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw="; }) 138 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 139 60 (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo="; }) 140 - (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; }) 141 61 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 142 62 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc="; }) 143 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; }) 144 63 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; hash = "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w="; }) 145 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 146 64 (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.1.0"; hash = "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY="; }) 147 - (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 148 - (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; hash = "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA="; }) 149 - (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; }) 150 65 (fetchNuGet { pname = "System.Runtime.Serialization.Primitives"; version = "4.1.1"; hash = "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA="; }) 151 66 (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; }) 152 - (fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; hash = "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks="; }) 153 - (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="; }) 154 - (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; hash = "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw="; }) 155 - (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; }) 156 - (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; }) 157 - (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="; }) 158 - (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; }) 159 - (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="; }) 160 - (fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; hash = "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk="; }) 161 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; hash = "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE="; }) 162 67 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; }) 163 68 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc="; }) 164 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 165 69 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; hash = "sha256-+kf7J3dEhgCbnCM5vHYlsTm5/R/Ud0Jr6elpHm922iI="; }) 166 - (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="; }) 167 70 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; hash = "sha256-tF8qt9GZh/nPy0mEnj6nKLG4Lldpoi/D8xM5lv2CoYQ="; }) 168 71 (fetchNuGet { pname = "System.Text.Json"; version = "7.0.3"; hash = "sha256-aSJZ17MjqaZNQkprfxm/09LaCoFtpdWmqU9BTROzWX4="; }) 169 72 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; hash = "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c="; }) 170 - (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; hash = "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0="; }) 171 73 (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac="; }) 172 - (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 173 74 (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs="; }) 174 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 175 75 (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "7.0.0"; hash = "sha256-KTeMhCWcyYEwG7EkA0VkVvHwo0B2FBs5FpjW3BFNVUE="; }) 176 76 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.0.0"; hash = "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE="; }) 177 - (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; hash = "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc="; }) 178 77 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; }) 179 - (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; hash = "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg="; }) 180 - (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; hash = "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s="; }) 181 78 (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; hash = "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA="; }) 182 - (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; hash = "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA="; }) 183 79 (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; hash = "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg="; }) 184 - (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; hash = "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI="; }) 185 80 (fetchNuGet { pname = "Tomlyn"; version = "0.17.0"; hash = "sha256-pJHF7w8RJhV23wiI3qzm5el4qPlPlgYTmTKA8yGhzXY="; }) 186 - (fetchNuGet { pname = "xunit"; version = "2.6.2"; hash = "sha256-/2F8w7meblC2/g3miSbnbFo+tHppSRZSz5ylnXkHsjw="; }) 81 + (fetchNuGet { pname = "xunit"; version = "2.9.2"; hash = "sha256-h5+yTTfCmokCPy4lqdEw8RGzQlrlsQAW3Am0Jh0q7oo="; }) 187 82 (fetchNuGet { pname = "xunit.abstractions"; version = "2.0.3"; hash = "sha256-0D1y/C34iARI96gb3bAOG8tcGPMjx+fMabTPpydGlAM="; }) 188 - (fetchNuGet { pname = "xunit.analyzers"; version = "1.6.0"; hash = "sha256-cd3+K0SFphHZz7uTVDkWQg7FiQL5LcV5FhOK2Sv4mds="; }) 189 - (fetchNuGet { pname = "xunit.assert"; version = "2.6.2"; hash = "sha256-FAtAQIeamQMh4vGed0U/2XbYFlLnKhtpigVAiFFNr9s="; }) 190 - (fetchNuGet { pname = "xunit.core"; version = "2.6.2"; hash = "sha256-RsIYhKRUxAWGPKTjpsQ65LZAud03BCrVIrhDsJr8E2A="; }) 191 - (fetchNuGet { pname = "xunit.extensibility.core"; version = "2.6.2"; hash = "sha256-TGAgjPOMd/y7pSyNEdpS2SyRMniVOPfeyJLHK8CzR6g="; }) 192 - (fetchNuGet { pname = "xunit.extensibility.execution"; version = "2.6.2"; hash = "sha256-NtxeWsL8/SgK0wjeJ2+0dBQSvuywodOD4aR9anCmENI="; }) 193 - (fetchNuGet { pname = "xunit.runner.visualstudio"; version = "2.5.4"; hash = "sha256-bT/pr74NTey2iuNzllCgv4BrnIOChBMyTQATWir641Y="; }) 83 + (fetchNuGet { pname = "xunit.analyzers"; version = "1.16.0"; hash = "sha256-P5Bvl9hvHvF8KY1YWLg4tKiYxlfRnmHyL14jfSACDaU="; }) 84 + (fetchNuGet { pname = "xunit.assert"; version = "2.9.2"; hash = "sha256-EE6r526Q4cHn0Ourf1ENpXZ37Lj/P2uNvonHgpdcnq4="; }) 85 + (fetchNuGet { pname = "xunit.core"; version = "2.9.2"; hash = "sha256-zhjV1I5xh0RFckgTEK72tIkLxVl4CPmter2UB++oye8="; }) 86 + (fetchNuGet { pname = "xunit.extensibility.core"; version = "2.9.2"; hash = "sha256-MQAC/4d67Nssu3R+pHPh6vHitBXQYxEEZkVVMGW720c="; }) 87 + (fetchNuGet { pname = "xunit.extensibility.execution"; version = "2.9.2"; hash = "sha256-f+9UfoPyK3JIDhQSW0Yu9c4PGqUqZC96DMINCYi2i80="; }) 88 + (fetchNuGet { pname = "xunit.runner.visualstudio"; version = "2.8.2"; hash = "sha256-UlfK348r8kJuraywfdCtpJJxHkv04wPNzpUaz4UM/60="; }) 194 89 ]
+20
pkgs/misc/tmux-plugins/default.nix
··· 772 772 }; 773 773 }; 774 774 775 + tmux-powerline = mkTmuxPlugin { 776 + pluginName = "powerline"; 777 + version = "3.0.0"; 778 + src = fetchFromGitHub { 779 + owner = "erikw"; 780 + repo = "tmux-powerline"; 781 + rev = "2480e5531e0027e49a90eaf540f973e624443937"; 782 + hash = "sha256-25uG7OI8OHkdZ3GrTxG1ETNeDtW1K+sHu2DfJtVHVbk="; 783 + }; 784 + rtpFilePath = "main.tmux"; 785 + meta = { 786 + homepage = "https://github.com/erikw/tmux-powerline"; 787 + description = "Empowering your tmux (status bar) experience!"; 788 + longDescription = "A tmux plugin giving you a hackable status bar consisting of dynamic & beautiful looking powerline segments, written purely in bash."; 789 + license = lib.licenses.bsd3; 790 + platforms = lib.platforms.unix; 791 + maintainers = with lib.maintainers; [ thomasjm ]; 792 + }; 793 + }; 794 + 775 795 tmux-thumbs = pkgs.callPackage ./tmux-thumbs { 776 796 inherit mkTmuxPlugin; 777 797 };
-2
pkgs/os-specific/bsd/freebsd/pkgs/libelf.nix
··· 23 23 install 24 24 m4 25 25 ]; 26 - 27 - BOOTSTRAPPING = !stdenv.hostPlatform.isFreeBSD; 28 26 }
+20 -23
pkgs/os-specific/bsd/freebsd/pkgs/localedef.nix
··· 9 9 makeMinimal, 10 10 install, 11 11 }: 12 - mkDerivation ( 13 - { 14 - path = "usr.bin/localedef"; 12 + mkDerivation ({ 13 + path = "usr.bin/localedef"; 15 14 16 - extraPaths = [ 17 - "lib/libc/locale" 18 - "lib/libc/stdtime" 19 - ] ++ lib.optionals (!stdenv.hostPlatform.isFreeBSD) [ "." ]; 15 + extraPaths = [ 16 + "lib/libc/locale" 17 + "lib/libc/stdtime" 18 + ] ++ lib.optionals (!stdenv.hostPlatform.isFreeBSD) [ "." ]; 20 19 21 - nativeBuildInputs = [ 22 - bsdSetupHook 23 - byacc 24 - freebsdSetupHook 25 - makeMinimal 26 - install 27 - ]; 20 + nativeBuildInputs = [ 21 + bsdSetupHook 22 + byacc 23 + freebsdSetupHook 24 + makeMinimal 25 + install 26 + ]; 28 27 29 - buildInputs = [ ]; 28 + buildInputs = [ ]; 30 29 31 - preBuild = lib.optionalString (!stdenv.hostPlatform.isFreeBSD) '' 32 - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${compat}/include -D__unused= -D__pure= -Wno-strict-aliasing" 33 - export NIX_LDFLAGS="$NIX_LDFLAGS -L${compat}/lib" 34 - ''; 30 + preBuild = lib.optionalString (!stdenv.hostPlatform.isFreeBSD) '' 31 + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${compat}/include -D__unused= -D__pure= -Wno-strict-aliasing" 32 + export NIX_LDFLAGS="$NIX_LDFLAGS -L${compat}/lib" 33 + ''; 35 34 36 - MK_TESTS = "no"; 37 - } 38 - // lib.optionalAttrs (!stdenv.hostPlatform.isFreeBSD) { BOOTSTRAPPING = 1; } 39 - ) 35 + MK_TESTS = "no"; 36 + })
+28 -23
pkgs/os-specific/bsd/freebsd/pkgs/mkDerivation.nix
··· 56 56 ] ++ attrs.extraNativeBuildInputs or [ ]; 57 57 buildInputs = compatIfNeeded; 58 58 59 - HOST_SH = stdenv'.shell; 60 - 61 59 makeFlags = 62 60 [ 63 61 "STRIP=-s" # flag to install, not command ··· 65 63 ++ lib.optional (!stdenv'.hostPlatform.isFreeBSD) "MK_WERROR=no" 66 64 ++ lib.optional stdenv.hostPlatform.isStatic "SHLIB_NAME="; 67 65 68 - # amd64 not x86_64 for this on unlike NetBSD 69 - MACHINE_ARCH = freebsd-lib.mkBsdArch stdenv'; 66 + env = 67 + { 68 + HOST_SH = stdenv'.shell; 70 69 71 - MACHINE = freebsd-lib.mkBsdMachine stdenv'; 70 + # amd64 not x86_64 for this on unlike NetBSD 71 + MACHINE_ARCH = freebsd-lib.mkBsdArch stdenv'; 72 72 73 - MACHINE_CPUARCH = freebsd-lib.mkBsdCpuArch stdenv'; 73 + MACHINE = freebsd-lib.mkBsdMachine stdenv'; 74 74 75 - COMPONENT_PATH = attrs.path or null; 75 + MACHINE_CPUARCH = freebsd-lib.mkBsdCpuArch stdenv'; 76 + 77 + COMPONENT_PATH = attrs.path or null; 78 + } 79 + // lib.optionalAttrs stdenv'.hasCC { 80 + # TODO should CC wrapper set this? 81 + CPP = "${stdenv'.cc.targetPrefix}cpp"; 82 + 83 + # Since STRIP in `makeFlags` has to be a flag, not the binary itself 84 + STRIPBIN = "${stdenv'.cc.bintools.targetPrefix}strip"; 85 + } 86 + // lib.optionalAttrs (!stdenv.hostPlatform.isFreeBSD) { BOOTSTRAPPING = true; } 87 + // lib.optionalAttrs stdenv'.hostPlatform.isDarwin { MKRELRO = "no"; } 88 + // lib.optionalAttrs (stdenv'.cc.isClang or false) { 89 + HAVE_LLVM = lib.versions.major (lib.getVersion stdenv'.cc.cc); 90 + } 91 + // lib.optionalAttrs (stdenv'.cc.isGNU or false) { 92 + HAVE_GCC = lib.versions.major (lib.getVersion stdenv'.cc.cc); 93 + } 94 + // lib.optionalAttrs (stdenv'.hostPlatform.isx86_32) { USE_SSP = "no"; } 95 + // (attrs.env or { }); 76 96 77 97 strictDeps = true; 78 98 ··· 85 105 license = lib.licenses.bsd2; 86 106 } // attrs.meta or { }; 87 107 } 88 - // lib.optionalAttrs stdenv'.hasCC { 89 - # TODO should CC wrapper set this? 90 - CPP = "${stdenv'.cc.targetPrefix}cpp"; 91 - 92 - # Since STRIP in `makeFlags` has to be a flag, not the binary itself 93 - STRIPBIN = "${stdenv'.cc.bintools.targetPrefix}strip"; 94 - } 95 - // lib.optionalAttrs stdenv'.hostPlatform.isDarwin { MKRELRO = "no"; } 96 - // lib.optionalAttrs (stdenv'.cc.isClang or false) { 97 - HAVE_LLVM = lib.versions.major (lib.getVersion stdenv'.cc.cc); 98 - } 99 - // lib.optionalAttrs (stdenv'.cc.isGNU or false) { 100 - HAVE_GCC = lib.versions.major (lib.getVersion stdenv'.cc.cc); 101 - } 102 - // lib.optionalAttrs (stdenv'.hostPlatform.isx86_32) { USE_SSP = "no"; } 103 108 // lib.optionalAttrs (attrs.headersOnly or false) { 104 109 installPhase = "includesPhase"; 105 110 dontBuild = true; 106 111 } 107 - // attrs 112 + // (builtins.removeAttrs attrs [ "env" ]) 108 113 // lib.optionalAttrs (stdenv'.hasCC && stdenv'.cc.isClang or false && attrs.clangFixup or true) { 109 114 preBuild = 110 115 ''
-2
pkgs/os-specific/bsd/freebsd/pkgs/mkcsmapper.nix
··· 13 13 "lib/libiconv_modules/mapper_std" 14 14 ]; 15 15 16 - BOOTSTRAPPING = !stdenv.hostPlatform.isFreeBSD; 17 - 18 16 extraNativeBuildInputs = [ 19 17 byacc 20 18 flex
-3
pkgs/os-specific/bsd/freebsd/pkgs/mkesdb.nix
··· 1 1 { 2 - stdenv, 3 2 mkDerivation, 4 3 byacc, 5 4 flex, ··· 9 8 path = "usr.bin/mkesdb"; 10 9 11 10 extraPaths = [ "lib/libc/iconv" ]; 12 - 13 - BOOTSTRAPPING = !stdenv.hostPlatform.isFreeBSD; 14 11 15 12 extraNativeBuildInputs = [ 16 13 byacc
+3 -3
pkgs/servers/monitoring/prometheus/redis-exporter.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "redis_exporter"; 5 - version = "1.65.0"; 5 + version = "1.66.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "oliver006"; 9 9 repo = "redis_exporter"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-koUvcWd5AWhkxIfMJc0YOHaurO4evf83xn+bBCbyiPY="; 11 + sha256 = "sha256-y+SZedMYxO0AMSjA5sCz9ynY1N537PCJ8LT3Mx1N4eA="; 12 12 }; 13 13 14 - vendorHash = "sha256-gTxNuqaGpigtRwYIU69woebze0QoLZE+ArROUsQAUwA="; 14 + vendorHash = "sha256-b3rvF91f/JoAAY6vut+NUCbuQAf2XsQn/n5mVLPnIoU="; 15 15 16 16 ldflags = [ 17 17 "-X main.BuildVersion=${version}"
+2 -2
pkgs/servers/monitoring/zabbix/versions.nix
··· 1 1 generic: { 2 2 v70 = generic { 3 - version = "7.0.5"; 4 - hash = "sha256-IVMBtuCJpoWi+rzKF/xl5XZtQtIHkXS2WhvyjfdnlpI="; 3 + version = "7.0.6"; 4 + hash = "sha256-DXfODjhNbTCqc55ZZIBGqtoxqX/NfWJr2a+jfkIKLdA="; 5 5 vendorHash = null; 6 6 }; 7 7 v64 = generic {
+3 -3
pkgs/servers/tautulli/default.nix
··· 2 2 3 3 buildPythonApplication rec { 4 4 pname = "Tautulli"; 5 - version = "2.14.6"; 5 + version = "2.15.0"; 6 6 format = "other"; 7 7 8 8 pythonPath = [ setuptools ]; ··· 11 11 src = fetchFromGitHub { 12 12 owner = "Tautulli"; 13 13 repo = pname; 14 - rev = "v${version}"; 15 - sha256 = "sha256-sZHrEDb3uuogSjG2qKSm6V+nHZq/FdMq9xQgTIerjuE="; 14 + rev = "refs/tags/v${version}"; 15 + sha256 = "sha256-QhJc4Jwxlp3yB0jWa7sRDnIOWLW8CQUupnzbUscJH+c="; 16 16 }; 17 17 18 18 installPhase = ''
+2 -1
pkgs/tools/misc/diffoscope/default.nix
··· 72 72 xz, 73 73 zip, 74 74 zstd, 75 + binwalk, 75 76 # updater only 76 77 writeScript, 77 78 }: ··· 235 236 ubootTools 236 237 wabt 237 238 xmlbeans 239 + binwalk 238 240 ] 239 241 ++ (with python.pkgs; [ 240 242 androguard 241 - binwalk 242 243 guestfs 243 244 h5py 244 245 pdfminer-six
+2 -2
pkgs/tools/typesetting/htmldoc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "htmldoc"; 5 - version = "1.9.18"; 5 + version = "1.9.19"; 6 6 src = fetchFromGitHub { 7 7 owner = "michaelrsweet"; 8 8 repo = "htmldoc"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-fibk58X0YtQ8vh8Lyqp9ZAsC79BjCptiqUA5t5Hiisg="; 10 + sha256 = "sha256-JNZoPAXriaYpeiwO9GaxGPwiGohwIK1skhq/Ot/UUvI="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkg-config ];
+2 -10
pkgs/top-level/all-packages.nix
··· 2029 2029 2030 2030 biliass = with python3.pkgs; toPythonApplication biliass; 2031 2031 2032 - binwalk = with python3Packages; toPythonApplication binwalk; 2033 - 2034 2032 birdtray = libsForQt5.callPackage ../applications/misc/birdtray { }; 2035 2033 2036 2034 charles = charles4; ··· 3814 3812 3815 3813 hpccm = with python3Packages; toPythonApplication hpccm; 3816 3814 3817 - hqplayer-desktop = libsForQt5.callPackage ../applications/audio/hqplayer-desktop { }; 3815 + hqplayer-desktop = qt6Packages.callPackage ../applications/audio/hqplayer-desktop { }; 3818 3816 3819 3817 html-proofer = callPackage ../tools/misc/html-proofer { }; 3820 3818 ··· 11058 11056 gtkVersion = "4"; 11059 11057 }; 11060 11058 11061 - vtk_9 = libsForQt5.callPackage ../development/libraries/vtk/9.x.nix { 11062 - inherit (darwin) libobjc; 11063 - inherit (darwin.apple_sdk.libs) xpc; 11064 - inherit (darwin.apple_sdk.frameworks) AGL Cocoa CoreServices DiskArbitration 11065 - IOKit CFNetwork Security ApplicationServices 11066 - CoreText IOSurface ImageIO OpenGL GLUT; 11067 - }; 11059 + vtk_9 = libsForQt5.callPackage ../development/libraries/vtk/9.x.nix { }; 11068 11060 11069 11061 vtk_9_withQt5 = vtk_9.override { enableQt = true; }; 11070 11062
+3 -3
pkgs/top-level/perl-packages.nix
··· 16612 16612 16613 16613 ModuleScanDeps = buildPerlPackage { 16614 16614 pname = "Module-ScanDeps"; 16615 - version = "1.34"; 16615 + version = "1.37"; 16616 16616 src = fetchurl { 16617 - url = "mirror://cpan/authors/id/R/RS/RSCHUPP/Module-ScanDeps-1.34.tar.gz"; 16618 - hash = "sha256-ysUw5c/EE+BneXx9I3xsXNMpFcPZ+u5dlANcjzqFUOs="; 16617 + url = "mirror://cpan/authors/id/R/RS/RSCHUPP/Module-ScanDeps-1.37.tar.gz"; 16618 + hash = "sha256-H14RnK3hRmw5xx5bw1qNT05nJjXbA9eaWg3PCMTitaM="; 16619 16619 }; 16620 16620 buildInputs = [ TestRequires IPCRun3 ]; 16621 16621 propagatedBuildInputs = [ TextParsewords ];
+8 -4
pkgs/top-level/python-packages.nix
··· 1635 1635 1636 1636 binho-host-adapter = callPackage ../development/python-modules/binho-host-adapter { }; 1637 1637 1638 - binwalk = callPackage ../development/python-modules/binwalk { }; 1639 - 1640 - binwalk-full = self.binwalk.override { visualizationSupport = true; }; 1641 - 1642 1638 biom-format = callPackage ../development/python-modules/biom-format { }; 1643 1639 1644 1640 biopandas = callPackage ../development/python-modules/biopandas { }; ··· 5061 5057 genzshcomp = callPackage ../development/python-modules/genzshcomp { }; 5062 5058 5063 5059 geoalchemy2 = callPackage ../development/python-modules/geoalchemy2 { }; 5060 + 5061 + geoarrow-c = callPackage ../development/python-modules/geoarrow-c { }; 5062 + 5063 + geoarrow-types = callPackage ../development/python-modules/geoarrow-types { }; 5064 + 5065 + geoarrow-pandas = callPackage ../development/python-modules/geoarrow-pandas { }; 5066 + 5067 + geoarrow-pyarrow = callPackage ../development/python-modules/geoarrow-pyarrow { }; 5064 5068 5065 5069 geocachingapi = callPackage ../development/python-modules/geocachingapi { }; 5066 5070