lol

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

+715 -525
+10
nixos/modules/security/acme.nix
··· 192 192 ++ data.extraLegoRenewFlags 193 193 ); 194 194 195 + # We need to collect all the ACME webroots to grant them write 196 + # access in the systemd service. 197 + webroots = 198 + lib.remove null 199 + (lib.unique 200 + (builtins.map 201 + (certAttrs: certAttrs.webroot) 202 + (lib.attrValues config.security.acme.certs))); 195 203 in { 196 204 inherit accountHash cert selfsignedDeps; 197 205 ··· 287 295 "acme/.lego/${cert}/${certDir}" 288 296 "acme/.lego/accounts/${accountHash}" 289 297 ]; 298 + 299 + ReadWritePaths = commonServiceConfig.ReadWritePaths ++ webroots; 290 300 291 301 # Needs to be space separated, but can't use a multiline string because that'll include newlines 292 302 BindPaths = [
+3 -3
pkgs/applications/audio/librespot/default.nix
··· 4 4 5 5 rustPlatform.buildRustPackage rec { 6 6 pname = "librespot"; 7 - version = "0.3.0"; 7 + version = "0.3.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "librespot-org"; 11 11 repo = "librespot"; 12 12 rev = "v${version}"; 13 - sha256 = "0n7h690gplpp47gdj038g6ncgwr7wvwfkg00cbrbvxhv7kzqqa1f"; 13 + sha256 = "1fv2sk89rf1vraq823bxddlxj6b4gqhfpc36xr7ibz2405zickfv"; 14 14 }; 15 15 16 - cargoSha256 = "0qakvpxvn84ppgs3qlsfan4flqkmjcgs698w25jasx9ymiv8wc3s"; 16 + cargoSha256 = "1sal85gsbnrabxi39298w9njdc08csnwl40akd6k9fsc0fmpn1b0"; 17 17 18 18 cargoBuildFlags = with lib; [ 19 19 "--no-default-features"
+5 -5
pkgs/applications/misc/zettlr/default.nix
··· 10 10 # Based on https://gist.github.com/msteen/96cb7df66a359b827497c5269ccbbf94 and joplin-desktop nixpkgs. 11 11 let 12 12 pname = "zettlr"; 13 - version = "2.0.0"; 13 + version = "2.0.1"; 14 14 name = "${pname}-${version}"; 15 15 src = fetchurl { 16 16 url = "https://github.com/Zettlr/Zettlr/releases/download/v${version}/Zettlr-${version}-x86_64.appimage"; 17 - sha256 = "sha256-MIFgNUuuneIIkPRVRarbx6UMoB/3sdJtKvbacUnwHX8="; 17 + sha256 = "sha256-vnkZGxuLvj8Pjmey6NO3mcHuWbtO0bYEfgKwvgumbPA="; 18 18 }; 19 19 appimageContents = appimageTools.extractType2 { 20 20 inherit name src; ··· 31 31 extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ texlive pandoc ]; 32 32 extraInstallCommands = '' 33 33 mv $out/bin/{${name},${pname}} 34 - install -m 444 -D ${appimageContents}/Zettlr.desktop $out/share/applications/zettlr.desktop 35 - install -m 444 -D ${appimageContents}/Zettlr.png $out/share/icons/hicolor/512x512/apps/zettlr.png 36 - substituteInPlace $out/share/applications/zettlr.desktop \ 34 + install -m 444 -D ${appimageContents}/Zettlr.desktop $out/share/applications/Zettlr.desktop 35 + install -m 444 -D ${appimageContents}/Zettlr.png $out/share/icons/hicolor/512x512/apps/Zettlr.png 36 + substituteInPlace $out/share/applications/Zettlr.desktop \ 37 37 --replace 'Exec=AppRun' 'Exec=${pname}' 38 38 ''; 39 39
+10 -13
pkgs/applications/networking/mailreaders/himalaya/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , rustPlatform 4 3 , fetchFromGitHub 5 - , openssl 6 - , pkg-config 4 + , stdenv 5 + , enableCompletions ? stdenv.hostPlatform == stdenv.buildPlatform 7 6 , installShellFiles 8 - , enableCompletions ? stdenv.hostPlatform == stdenv.buildPlatform 7 + , pkg-config 9 8 , Security 10 9 , libiconv 10 + , openssl 11 11 }: 12 + 12 13 rustPlatform.buildRustPackage rec { 13 14 pname = "himalaya"; 14 - version = "0.4.0"; 15 + version = "0.5.1"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "soywod"; 18 19 repo = pname; 19 20 rev = "v${version}"; 20 - sha256 = "sha256-6RgT/SxO4vsk8Yx2AbaNIFvnAvgDmeTXvb/v6nUJxhc="; 21 + sha256 = "sha256-BmV4kekl0QDbX/ueSrWM5jRvqr6WQeZIs7hiXhiHBSI="; 21 22 }; 22 23 23 - cargoSha256 = "sha256-NEuIh7FwIdAWzlChna3+G0VukfV8nYZfVWa+3LxQCIA="; 24 - 25 - # use --lib flag to avoid test with imap server 26 - # https://github.com/soywod/himalaya/issues/145 27 - cargoTestFlags = [ "--lib" ]; 24 + cargoSha256 = "sha256-lu5xVuAw9yTeQr3gpiW5g5bdm7Alf0YXmlbSkPaXhk0="; 28 25 29 - nativeBuildInputs = [ ] 30 - ++ lib.optionals (enableCompletions) [ installShellFiles ] 26 + nativeBuildInputs = lib.optionals enableCompletions [ installShellFiles ] 31 27 ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pkg-config ]; 32 28 33 29 buildInputs = ··· 49 45 meta = with lib; { 50 46 description = "CLI email client written in Rust"; 51 47 homepage = "https://github.com/soywod/himalaya"; 48 + changelog = "https://github.com/soywod/himalaya/blob/v${version}/CHANGELOG.md"; 52 49 license = licenses.bsd3; 53 50 maintainers = with maintainers; [ yanganto ]; 54 51 };
+261 -261
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "91.1.2"; 2 + version = "91.2.1"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/af/thunderbird-91.1.2.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/af/thunderbird-91.2.1.tar.bz2"; 5 5 locale = "af"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "f786ba47061600b2a4fce6dc537e4d5f41ef7e496ddd24e06e5cf2d2bc7ae615"; 7 + sha256 = "953e07d7198b8b13f312ef620caf6e232c361f78dd04ebd69c753f7b75e55f42"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ar/thunderbird-91.1.2.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ar/thunderbird-91.2.1.tar.bz2"; 10 10 locale = "ar"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "70e13fa57939ec35fed7e537c282411e022e2e596af298ff68ed06d29149ad44"; 12 + sha256 = "29f34eac79855c01550a259d3663c662ec9bd259c0b20bf392efb0de1f44af8d"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ast/thunderbird-91.1.2.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ast/thunderbird-91.2.1.tar.bz2"; 15 15 locale = "ast"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "22ac54e15cc8d89412f26906b10d7274a90d86f298948998dabbbb63000fd9bd"; 17 + sha256 = "284d8935a5527b58f84ba9acabc0a67c51a7e1587f843d8b0ec9555e6f6d8f4e"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/be/thunderbird-91.1.2.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/be/thunderbird-91.2.1.tar.bz2"; 20 20 locale = "be"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "bb59b38220fc5a2e429df9bf521610678b7b3c7e47e4a3208c9e0e54860ae098"; 22 + sha256 = "6a535aac3b4eb839a2aca1df28ac8425c142c68bd5c6907f5b9999a45b62c9c3"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/bg/thunderbird-91.1.2.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/bg/thunderbird-91.2.1.tar.bz2"; 25 25 locale = "bg"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "7a0d50876f51664074b6eefd20dc727cea2d4a0feceb721c63fa9e3872ea6d07"; 27 + sha256 = "74dde907aaa3877651e1f2bec43a208ff36bf7d860333eaac6f8cdd20d48dc39"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/br/thunderbird-91.1.2.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/br/thunderbird-91.2.1.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "8a49fe9b26d1a5c5b3c28209cbb6d81e785235f4e1b24e4638cf5a5fa720d68e"; 32 + sha256 = "6b396a289addae8d5ade8355f8c93c285ce6833852149a0fed3f741d9ceea220"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ca/thunderbird-91.1.2.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ca/thunderbird-91.2.1.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "380d655a39c7f20067045cf2ec75e5bca0ba0e8291d187fd87ac42abbbce7dc7"; 37 + sha256 = "0611d49fd90777b3af1bd5b5effd3b4a5b267c7c33e6476ceed906a070a0e675"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/cak/thunderbird-91.1.2.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/cak/thunderbird-91.2.1.tar.bz2"; 40 40 locale = "cak"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "ff12816d6dac6311b2f0a358ee4a30e80d3a346c9a2fc08c9c4d72b2e7421b03"; 42 + sha256 = "032e7034ab5aada649258dfa43cc10d6e00cf5be6f06b8bede06d2ca19625d79"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/cs/thunderbird-91.1.2.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/cs/thunderbird-91.2.1.tar.bz2"; 45 45 locale = "cs"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "fc8ed1c83b76329aecd9b6b7b4c2278b2703dc267ef25ad973deefff01cbb29d"; 47 + sha256 = "b0591e3bdf5e9273269354924fcfa8001579961f089f1011226faf1f4b0ab2e6"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/cy/thunderbird-91.1.2.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/cy/thunderbird-91.2.1.tar.bz2"; 50 50 locale = "cy"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "50e10c11f341b75e4ca464911a7229d22073d72b53731ba92cbd39c52694e0d2"; 52 + sha256 = "4087f5c5609169b6834e2eed3fdaf614826c47f3ca99177292fd379ef5d430b3"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/da/thunderbird-91.1.2.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/da/thunderbird-91.2.1.tar.bz2"; 55 55 locale = "da"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "1c041fb7c71e9d0f07c82652129a6b48f2f633a7781c41a3c439dec1d7fcabee"; 57 + sha256 = "b72f768cc2d9c2bad536e2467d1abfe68671b242fcac801e57297694fd41d231"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/de/thunderbird-91.1.2.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/de/thunderbird-91.2.1.tar.bz2"; 60 60 locale = "de"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "c9ed27ee3f1a631c6a7d7a5a854e48f3285b9f01c81bc9ee3611bbdd9f483cdc"; 62 + sha256 = "48990ead3d84cb023e8c3e6e34113209b49e6ed3e29766fb5374fe577cd5cd94"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/dsb/thunderbird-91.1.2.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/dsb/thunderbird-91.2.1.tar.bz2"; 65 65 locale = "dsb"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "3c00604247dee961915f2aff628bd7d1f53c4f7e48bb848ef6065e41f189495d"; 67 + sha256 = "c7e93ffe9d8ab0bc00db145771e65fec6c589208c28c3e0ecb5bb49471b9ed61"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/el/thunderbird-91.1.2.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/el/thunderbird-91.2.1.tar.bz2"; 70 70 locale = "el"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "b9ad1ab6b7d33f477f51e4337d914f8f8d2f6d7bc1b3b884d8b71b17547c3fa0"; 72 + sha256 = "c35372524d77123bb9827d26efcd29e0fb9de402744b22a3c99563531410e2b3"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/en-CA/thunderbird-91.1.2.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/en-CA/thunderbird-91.2.1.tar.bz2"; 75 75 locale = "en-CA"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "80e6b5785d334bec69455ca5f5039bbd4fbebd663ea91d17d0fbe8e33d747670"; 77 + sha256 = "d20fa4b8c7224f35f06d384b5f37c277c56ac35f2099f59735197a0334c9f3ec"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/en-GB/thunderbird-91.1.2.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/en-GB/thunderbird-91.2.1.tar.bz2"; 80 80 locale = "en-GB"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "da2388577784df3faad7b40566e2e1eab2b95dd9455a1e4e3ee43433f4fb189e"; 82 + sha256 = "af0787957918aee6bb931b30ab92722c3ea8fe1e3fd60602d172a598422f7896"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/en-US/thunderbird-91.1.2.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/en-US/thunderbird-91.2.1.tar.bz2"; 85 85 locale = "en-US"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "1354e3ad2989749fe79b404ccae3002de8b4e269c98388d9abebe456f3de47d2"; 87 + sha256 = "f8968d5ecf27e37bb8204291a9739ab804ef77c082e11b4e82fc7e02c8bf0da4"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/es-AR/thunderbird-91.1.2.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/es-AR/thunderbird-91.2.1.tar.bz2"; 90 90 locale = "es-AR"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "f51d4a1109d30d4857673575aef173026e2c90fc7ece6835a34a0e792672cf8b"; 92 + sha256 = "ec281675876941240ccebe0c48bbb4ae0ed442b795cd7ee1be51ec59c4331220"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/es-ES/thunderbird-91.1.2.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/es-ES/thunderbird-91.2.1.tar.bz2"; 95 95 locale = "es-ES"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "38196b265eeaef2222e624e2fb0cb7742b2171965aa0725b3d524e9199ea4f91"; 97 + sha256 = "6436ab381f1ab7fbcf1289d50300d7238f1095022cf18d6441832a8f61df68ea"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/et/thunderbird-91.1.2.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/et/thunderbird-91.2.1.tar.bz2"; 100 100 locale = "et"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "ab3b04c02b730f92db4f24daac688e1966349cf4c978ed06138285fcb2d72769"; 102 + sha256 = "1e49089b98dcfebdc1465b93d625b6ea1b6fee4642ca915035fabdc97710eb0f"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/eu/thunderbird-91.1.2.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/eu/thunderbird-91.2.1.tar.bz2"; 105 105 locale = "eu"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "4431e16f70b6182b1ec2bed64d149ffc7e46f1b2536268e973eb984439eda400"; 107 + sha256 = "c6a1418f15a019924b459b952330b9851c50907a7c12f3d430a79268ebdb7bac"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/fi/thunderbird-91.1.2.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/fi/thunderbird-91.2.1.tar.bz2"; 110 110 locale = "fi"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "8ee9b2983d1f214f4589d7d99d1ac1a577f92dd3cc73f516dcc050079ed85904"; 112 + sha256 = "588261a4c0e9cfa0c9f506f4fd2e9e14f123d10e96f0cc1724b4ea4607151264"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/fr/thunderbird-91.1.2.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/fr/thunderbird-91.2.1.tar.bz2"; 115 115 locale = "fr"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "b614dadf34774ebf45c88ae0c72c6d8779beb8310a8353aedeca1a493178c376"; 117 + sha256 = "9ca2d54c6f6f04ee887621332cc35aeabd0f9b73db621c41e8925bafb316670a"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/fy-NL/thunderbird-91.1.2.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/fy-NL/thunderbird-91.2.1.tar.bz2"; 120 120 locale = "fy-NL"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "00693bbfda9377d2695fc8c7c242b0e4a3c1b745e8779ebabe5686eca4fc928a"; 122 + sha256 = "df9bae4cc2d3bd2778047d4589ec1a8e23f7b8c7fc760817decb9341b59dc0b9"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ga-IE/thunderbird-91.1.2.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ga-IE/thunderbird-91.2.1.tar.bz2"; 125 125 locale = "ga-IE"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "00d26b39726e2de2e799b3dff97c79a590f712f3347232600d1f2771523d0ab4"; 127 + sha256 = "8d6445032f39152c62e98fe9093cefbaa383d2bff203734ca04a501b44a3a0c2"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/gd/thunderbird-91.1.2.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/gd/thunderbird-91.2.1.tar.bz2"; 130 130 locale = "gd"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "d9a35fbf9f4069c6f4dd796c8f9465053413d806093d1456e643c9bdb081ad45"; 132 + sha256 = "b947847398a8e086d062f8e54f515d53e39afab48ec59ca0aceb956ea0e0917f"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/gl/thunderbird-91.1.2.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/gl/thunderbird-91.2.1.tar.bz2"; 135 135 locale = "gl"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "9e7f237b55f81a44a984be4b4e1001c8ffd7742eb14e654397e80b4e4b765d0c"; 137 + sha256 = "3dddbb5cc78171719ed2e7c3ba854c0a346ca5324a898c698dfb79c7881051c0"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/he/thunderbird-91.1.2.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/he/thunderbird-91.2.1.tar.bz2"; 140 140 locale = "he"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "b86d479dd64ac86d43fbfb54c8ec36ea6b4516ded0383f81b78c11365290f21b"; 142 + sha256 = "e77eb74db9111e54b1e492fb5752fa92ec6eed96a7146392d1ba19d63b5e2ab8"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/hr/thunderbird-91.1.2.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/hr/thunderbird-91.2.1.tar.bz2"; 145 145 locale = "hr"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "cb7e8d0dd04c5883f2ec0f47d81a751b901e0036f151ab1c0f3043ba7ebf4a74"; 147 + sha256 = "3e4d46ecc0ef83a619775d48e4df81295e3e95ad1e9a96efeafa26d7f24b85ee"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/hsb/thunderbird-91.1.2.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/hsb/thunderbird-91.2.1.tar.bz2"; 150 150 locale = "hsb"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "d3141a413d82814067de2791091473e0b44f8939825cc3071b1fbe86e08dd49a"; 152 + sha256 = "36453d6aca463fce338ac4a15c438290bdaa377aff72a56f0acefeba19860986"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/hu/thunderbird-91.1.2.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/hu/thunderbird-91.2.1.tar.bz2"; 155 155 locale = "hu"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "b76860152f68b2dfabef9847c83356af34b8fb1913d0d55a397be3d4e4e08b31"; 157 + sha256 = "dd05c379727762fde0c2456a7bbd67cc45fb7ccfbbf88958b887d6637867e80e"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/hy-AM/thunderbird-91.1.2.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/hy-AM/thunderbird-91.2.1.tar.bz2"; 160 160 locale = "hy-AM"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "5aa35ed5d577befb7a37d5407bc7ff78c54314a7e5ed77bda588bd74111e263b"; 162 + sha256 = "35e4db20ff927cf079607fd0e7d207c155f23c7890cc6347ac069c9d252f6ad3"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/id/thunderbird-91.1.2.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/id/thunderbird-91.2.1.tar.bz2"; 165 165 locale = "id"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "0bb53b2cbed8a9412c6776435381d5c859a9993b4bd2cdf5ecd4145d13776d09"; 167 + sha256 = "9cc7a35aed1e5808a80cade5b77d064f3bd36f08107dbbdd3b92ac11c8c83766"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/is/thunderbird-91.1.2.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/is/thunderbird-91.2.1.tar.bz2"; 170 170 locale = "is"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "566058b39d98a777cb1c333b66cac66851d0c369918e58c592b8e0151b778f6f"; 172 + sha256 = "de645fdf79f33195a7caed9461214f834fb2e52f3da764bde71608fd3783305e"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/it/thunderbird-91.1.2.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/it/thunderbird-91.2.1.tar.bz2"; 175 175 locale = "it"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "b88fb1b473a7b0b1a4af08a09aadf5b7502f03462a1f4661ed2897c2705e5b4d"; 177 + sha256 = "f9a80f01d18cd36ac5c0a18d65908f329bc3d7ec506e0f201b833ed973528dca"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ja/thunderbird-91.1.2.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ja/thunderbird-91.2.1.tar.bz2"; 180 180 locale = "ja"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "6b69cd834280b36182656bd97b117c3f70bbcd947ab25e1936294a85149d3501"; 182 + sha256 = "9345cfdb7e35fc15e94bab52f058dacecd813da210c81770f3037c6f3f982478"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ka/thunderbird-91.1.2.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ka/thunderbird-91.2.1.tar.bz2"; 185 185 locale = "ka"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "87d8bc04c278d8c675665d0211917a854d43a17d24173627703268a785ff2206"; 187 + sha256 = "49e535b7b8322645b81b8137ded607cbe54e70977a07b800114421fb529b045b"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/kab/thunderbird-91.1.2.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/kab/thunderbird-91.2.1.tar.bz2"; 190 190 locale = "kab"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "fad11f653198314683faaa758422506d27706b6dca90a4d5b0d3693810843fba"; 192 + sha256 = "9e66e0654c5ca2d4fec6101bd40a2ab68f17ad4a27ff58db4a1c5d927d76761d"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/kk/thunderbird-91.1.2.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/kk/thunderbird-91.2.1.tar.bz2"; 195 195 locale = "kk"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "67469c2c4e1352db94339687f93c0afefe41244bfc952d77c2e41e31a652f095"; 197 + sha256 = "c929ef91d1ed17db64a36b5c8653e98e1be05b7bef48c062c40c0e37a88f6844"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ko/thunderbird-91.1.2.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ko/thunderbird-91.2.1.tar.bz2"; 200 200 locale = "ko"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "93bb5a6973bbd0eaac721ffd59c19edce400471c08d76aa629b2fe66fc98ddf9"; 202 + sha256 = "758c31e642a796e3c8be2848e9789bf9c3d4f896790c80603491235ba126a195"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/lt/thunderbird-91.1.2.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/lt/thunderbird-91.2.1.tar.bz2"; 205 205 locale = "lt"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "f4dda73c80cee8aaceee0f4ea0956303f9a50aa2431c6eb8a34d7d22b5fe53e9"; 207 + sha256 = "7173cb778a4f1bc625b5dde4eedf59911eb649e29c20f8f2a2eca455696fbdfb"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/lv/thunderbird-91.1.2.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/lv/thunderbird-91.2.1.tar.bz2"; 210 210 locale = "lv"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "65325a804f5aec439501bd70e5423d56ddc5a10636b639e8db85ce8881c1586e"; 212 + sha256 = "ec9ef897898c788521725879906c56593dd08e9b862b1ad32f7133bba7843b94"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ms/thunderbird-91.1.2.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ms/thunderbird-91.2.1.tar.bz2"; 215 215 locale = "ms"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "f2715978bc8e2d7878f8ec47b4a29cccaa42a24bd97f013f6b66aaf47db83359"; 217 + sha256 = "1f95835843d33a80821c077b26ea5e6330ea3d1a818bb122623a6024dc98515c"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/nb-NO/thunderbird-91.1.2.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/nb-NO/thunderbird-91.2.1.tar.bz2"; 220 220 locale = "nb-NO"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "c252fdee3a9d9c43b46786c528bb8ac39203b7d7c746f9c9f04287cb1253ded6"; 222 + sha256 = "f5aff84dd6016a4223df28fc92185cffc1771107bc4f7c442bef0d19ae4cccf5"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/nl/thunderbird-91.1.2.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/nl/thunderbird-91.2.1.tar.bz2"; 225 225 locale = "nl"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "1708531ca0b765292206fa9c533200266f5eb48fbbc74daade404bdcbfdcc750"; 227 + sha256 = "1146a72a68b454abdb3ab19e0a487e0aa46af0fec4c9261459ac20785a66f8ca"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/nn-NO/thunderbird-91.1.2.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/nn-NO/thunderbird-91.2.1.tar.bz2"; 230 230 locale = "nn-NO"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "dc26c1333787accc73624bc5bac820af1743ea30d85e9da9a0c30f6b9b0c3bcf"; 232 + sha256 = "a63d1124b72b4ad1e26f34b26792e576a63ade3aee161965058f6ba2144f4edc"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/pa-IN/thunderbird-91.1.2.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/pa-IN/thunderbird-91.2.1.tar.bz2"; 235 235 locale = "pa-IN"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "fc508dd719c18c250560b5d4fc4672ce83a9f52b6103d3f33034eca89ed2935f"; 237 + sha256 = "245692605721b9610bb730f7164c64daebad372f881842a3e2d92dd27cf2c23c"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/pl/thunderbird-91.1.2.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/pl/thunderbird-91.2.1.tar.bz2"; 240 240 locale = "pl"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "eb54040a841d0da1e84dd2a6ba3c894a57d40fdb0bf99f21b7fbbe3ea8cd755c"; 242 + sha256 = "b3b3f9b4f4e2f310b24b148960dbbada8dedd444968f923e7295ce2e3f561bc0"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/pt-BR/thunderbird-91.1.2.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/pt-BR/thunderbird-91.2.1.tar.bz2"; 245 245 locale = "pt-BR"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "45226857a691f8568c769f652820eb5b86b0928c271b2751014bd6e7ab29ab80"; 247 + sha256 = "dc0a70cb19880a9ea7a076ea03c12150bf2ed6349bee7f7cd64b9ba261366e99"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/pt-PT/thunderbird-91.1.2.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/pt-PT/thunderbird-91.2.1.tar.bz2"; 250 250 locale = "pt-PT"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "532f18bbe7fc09793bd688e5bc48c65658e2a48285b97c611b68611e9f13257d"; 252 + sha256 = "be20940db6d0b0399ea90e97ce4073c698c9caa822535cfdadaf5019aaa283f0"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/rm/thunderbird-91.1.2.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/rm/thunderbird-91.2.1.tar.bz2"; 255 255 locale = "rm"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "8d0f2ec43e6e00118d7c1d5877bfbc5b5c87a8e449a0358acc6e71244a0716b3"; 257 + sha256 = "8e996281032049eeb70c12ecc10dd321b055d917edc3f16c12b073160552a76a"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ro/thunderbird-91.1.2.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ro/thunderbird-91.2.1.tar.bz2"; 260 260 locale = "ro"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "dbfd5500b337132ab14266d2b87224c917086afe3f210127d73848d360299241"; 262 + sha256 = "d015483952516c37169d263660776a572877d6db50b4e4bc42c9d285cc413032"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/ru/thunderbird-91.1.2.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/ru/thunderbird-91.2.1.tar.bz2"; 265 265 locale = "ru"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "06f6077ba98fc2605718266e57b9c5c54c3d7901f2b7233f38d7fd02d6d063a0"; 267 + sha256 = "90404c19d3ab7d5142310ae23699b346ee07ab5704b02f3b89e1972737460448"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/sk/thunderbird-91.1.2.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/sk/thunderbird-91.2.1.tar.bz2"; 270 270 locale = "sk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "af1224613b3e962265d83b154cbf69053906197f2b7f12e5004ad862bef09aaa"; 272 + sha256 = "2ed8cea88291714fe25b3f06777340536e24c1837743e6dd16bf2e66e90ed057"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/sl/thunderbird-91.1.2.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/sl/thunderbird-91.2.1.tar.bz2"; 275 275 locale = "sl"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "597cd2732960eadd0121c4089a703cc86a0d9a361ff024fe047c8c624dc05afc"; 277 + sha256 = "be29a12cd0d52f11f19cff89df0d0a883802328cbe036e9f01c2be7d296d5a4a"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/sq/thunderbird-91.1.2.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/sq/thunderbird-91.2.1.tar.bz2"; 280 280 locale = "sq"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "c107fb5653cb7adfa79aad501e585943159fa9297ef360b193075a9b49e91d54"; 282 + sha256 = "b9f0b22b8004af1e7704048eb7223bda77723f664aab3596a3e2fed538eab39f"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/sr/thunderbird-91.1.2.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/sr/thunderbird-91.2.1.tar.bz2"; 285 285 locale = "sr"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "33964cc6308a8e7ebc154c057f90729a92d2a9127f9d8c4592f884531d094334"; 287 + sha256 = "1edd87244be553d61bd5db1de74068130e9a3ccfa387d21c489f9a777bbae732"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/sv-SE/thunderbird-91.1.2.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/sv-SE/thunderbird-91.2.1.tar.bz2"; 290 290 locale = "sv-SE"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "91fa282c3baee03653ffe5164844e06a9813a40c360ef24e94ff525638f187de"; 292 + sha256 = "e218a20074e50dbe20d2dba7e81d5febdbcad8031e0fd9d88aca469da9cea267"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/th/thunderbird-91.1.2.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/th/thunderbird-91.2.1.tar.bz2"; 295 295 locale = "th"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "99ea8b61e102c3394073f3a817d3eeddc3cedb51436b66303730394f362e91f7"; 297 + sha256 = "fa65b90c1cc903f3e1b743e142736b1c7e897eb6bf9a80cb0bffa60db627aba2"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/tr/thunderbird-91.1.2.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/tr/thunderbird-91.2.1.tar.bz2"; 300 300 locale = "tr"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "bb1d417239c31c6ae9bf62cd545f2fad316915ce6bcb707f2deb65f0cc24425c"; 302 + sha256 = "5af2e6453aa5523169d6922a8a888b757accad60802d7a457a1ee244cd74c3bc"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/uk/thunderbird-91.1.2.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/uk/thunderbird-91.2.1.tar.bz2"; 305 305 locale = "uk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "8464520b025c29dcf3376d7c47d6c7596ff60eeabe63fc5c41082ceb4fbe148c"; 307 + sha256 = "effad7de717f0597447a7559e666ee3cdb0a1270daa01226d662cab0be84a4dc"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/uz/thunderbird-91.1.2.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/uz/thunderbird-91.2.1.tar.bz2"; 310 310 locale = "uz"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "d4ba9eaafed3d475dd0fe3a7df7f9910fe3a95a74b9a83f2a00aa73441ae8a64"; 312 + sha256 = "f3c8d3d4ca4c076eb8bcc8a06df32622b87b4d4ae397ee36f5de27a947d443ee"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/vi/thunderbird-91.1.2.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/vi/thunderbird-91.2.1.tar.bz2"; 315 315 locale = "vi"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "8c7f222e0c65ad2daaf37ab46fbe58e005aa89379a0a87f4b2a5f19528e0e5b2"; 317 + sha256 = "ac464ab32927c822776b1cf873ea9b9a9473c18ac08b18534332050bde7b1dfe"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/zh-CN/thunderbird-91.1.2.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/zh-CN/thunderbird-91.2.1.tar.bz2"; 320 320 locale = "zh-CN"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "1cc053e2e9e751ca14da4a09c276d2c78f61ef4e7d74ac4019849f6ebc044d0d"; 322 + sha256 = "44869c19113316a02518eb19fb5b1a7a85e266fccf7a3172d1938d758a5efa6a"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-x86_64/zh-TW/thunderbird-91.1.2.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-x86_64/zh-TW/thunderbird-91.2.1.tar.bz2"; 325 325 locale = "zh-TW"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "b77a3eb6d1e51388d1b084956b7cc579e1e3c8ed2bc72d7943ac5d6188e43938"; 327 + sha256 = "82d915747e3e5459acba3e17663de422586f27e7bbc3a5698d992f82ee3d0cc1"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/af/thunderbird-91.1.2.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/af/thunderbird-91.2.1.tar.bz2"; 330 330 locale = "af"; 331 331 arch = "linux-i686"; 332 - sha256 = "c2015b0cfa07309ca6afe5fefb24c1393a397b1d592dd80ec8b62bd4ef8a3d35"; 332 + sha256 = "5ccbc3453b76c3e02a05b94905c48cdad99bb15042fb2cfc58c7f619a263da07"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ar/thunderbird-91.1.2.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ar/thunderbird-91.2.1.tar.bz2"; 335 335 locale = "ar"; 336 336 arch = "linux-i686"; 337 - sha256 = "f36b4e7452ae39bd2bf63231ab884356c7b77d6015993e09046b3d6a63443920"; 337 + sha256 = "616fc2f0265f204b8699dd0beafc02220d7ba9b2243350730573824f6fa49462"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ast/thunderbird-91.1.2.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ast/thunderbird-91.2.1.tar.bz2"; 340 340 locale = "ast"; 341 341 arch = "linux-i686"; 342 - sha256 = "600d102bbb18bac81e3d50c9ef9a578820b0fa1ba2a6f6d756da6e391fe0f241"; 342 + sha256 = "046386e67e1b775f1f228e3056660db023093180f1c200f6380b6d3744b8ce4d"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/be/thunderbird-91.1.2.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/be/thunderbird-91.2.1.tar.bz2"; 345 345 locale = "be"; 346 346 arch = "linux-i686"; 347 - sha256 = "46032acc1c16e2c9bd7905799db6253cb16fb6269bb79edf6141b9d2bd5c0b15"; 347 + sha256 = "bf64b91b16bdf4dbdfb88972432f2d2cce002a6ff8c708779511b54a05a7008f"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/bg/thunderbird-91.1.2.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/bg/thunderbird-91.2.1.tar.bz2"; 350 350 locale = "bg"; 351 351 arch = "linux-i686"; 352 - sha256 = "d21bfe3ad0c2c900de1ab9a88d62fc74c4c1767bb41121159c5c0c9bfe270a8c"; 352 + sha256 = "f544fbff341165e8e304a8a643be60c8b742973402861b298171699c45fe622b"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/br/thunderbird-91.1.2.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/br/thunderbird-91.2.1.tar.bz2"; 355 355 locale = "br"; 356 356 arch = "linux-i686"; 357 - sha256 = "8e20c1ce0867bafde00c3e8fc55d5841a14e91fa8039fc7259269da8bfbd4373"; 357 + sha256 = "c76ec7e65fc4980f12e05f863d8babab09d771f9679d21c93d8dab0f76d16898"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ca/thunderbird-91.1.2.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ca/thunderbird-91.2.1.tar.bz2"; 360 360 locale = "ca"; 361 361 arch = "linux-i686"; 362 - sha256 = "175bfb1b0ef94897ecd359c54a2767ca039a259300a5716211fa0c0593b81023"; 362 + sha256 = "6c609f7b5886e7a7c70470d4bb35370284a454b109ca92cff9741bcc3086e9f8"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/cak/thunderbird-91.1.2.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/cak/thunderbird-91.2.1.tar.bz2"; 365 365 locale = "cak"; 366 366 arch = "linux-i686"; 367 - sha256 = "65cf8763200cd10cbc016c9d447703b640c52165c691a604092376de09dc1376"; 367 + sha256 = "f210ac1e0740c7105abd388e9b5e22d9e199ab3deb43842c3a82ecf5e6d15f01"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/cs/thunderbird-91.1.2.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/cs/thunderbird-91.2.1.tar.bz2"; 370 370 locale = "cs"; 371 371 arch = "linux-i686"; 372 - sha256 = "8d019c4f92f60c44f1340f96892c0a4060d4ceb86d188f5f81911d92ff2957f0"; 372 + sha256 = "108d9bfa0b9bef9433f4837517d3d157d46c8578f889b9fb81bc72178f6dfe52"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/cy/thunderbird-91.1.2.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/cy/thunderbird-91.2.1.tar.bz2"; 375 375 locale = "cy"; 376 376 arch = "linux-i686"; 377 - sha256 = "29049a5f4849f7e2bde8ec122de33edb7c86e87eca46b72086e53caedcad7ef1"; 377 + sha256 = "1bd421b89cded34d9a656b4e44b78c7b07557221b87dc99831ea7029ff6eead2"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/da/thunderbird-91.1.2.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/da/thunderbird-91.2.1.tar.bz2"; 380 380 locale = "da"; 381 381 arch = "linux-i686"; 382 - sha256 = "39d9b429b8ee92b045abf48a605e32a577da1f61459b597698f87b1972993f2d"; 382 + sha256 = "4db52d6017baeb8a5f925b7cfcdfb89a3ed8af9d3c1a41c4a63d122e4f214ecd"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/de/thunderbird-91.1.2.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/de/thunderbird-91.2.1.tar.bz2"; 385 385 locale = "de"; 386 386 arch = "linux-i686"; 387 - sha256 = "b8ccae9622a8fa684c48a39a409af461238325d91db5edd8d9ecbeaebf2fa999"; 387 + sha256 = "584c0e8a03b068652f61978af053028ca3793e1679ff0ea214bc6f8a99761f0c"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/dsb/thunderbird-91.1.2.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/dsb/thunderbird-91.2.1.tar.bz2"; 390 390 locale = "dsb"; 391 391 arch = "linux-i686"; 392 - sha256 = "a32e1ec050968c94c2b2c1c175d13629fb5feda14e91a0e6c78a9e1bf4092ebe"; 392 + sha256 = "f838e8b6fdfb09e44771cfe02d22abb63722c65a0e430c77aca9fb5a53a97c4c"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/el/thunderbird-91.1.2.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/el/thunderbird-91.2.1.tar.bz2"; 395 395 locale = "el"; 396 396 arch = "linux-i686"; 397 - sha256 = "7599c18f5c79d6aebb652308fa3fa9b13a4883c0dfc47e8bef6b6c118a2ed909"; 397 + sha256 = "0b0a6cb3c77e0a4f86bd3adbd4bac229d50323a88b355e470184f932b9602e4b"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/en-CA/thunderbird-91.1.2.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/en-CA/thunderbird-91.2.1.tar.bz2"; 400 400 locale = "en-CA"; 401 401 arch = "linux-i686"; 402 - sha256 = "47c49908cf59a8fa6ec1de512cd01907412cfc5b0f56709611b71eb0b3e6cdee"; 402 + sha256 = "7e22ff64aed5187db9621754f1eedb158285c2514f3eca836103833ac6183f7c"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/en-GB/thunderbird-91.1.2.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/en-GB/thunderbird-91.2.1.tar.bz2"; 405 405 locale = "en-GB"; 406 406 arch = "linux-i686"; 407 - sha256 = "9f379c2837dab6ece5306117065ddb1f19d3fa08900d5ed63abc34fff8755dda"; 407 + sha256 = "a3be3dec0ec4789f8370c23e47b7ed0bef6802d28e3985c66d1a531a3aa986cf"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/en-US/thunderbird-91.1.2.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/en-US/thunderbird-91.2.1.tar.bz2"; 410 410 locale = "en-US"; 411 411 arch = "linux-i686"; 412 - sha256 = "97aaf105ff5fd3ac8b2b85ba0de87b1fe6ba01f647d32571b787591ba5f6e1cd"; 412 + sha256 = "31c35df101e8d3f97c3df72b7660086fdf4f6612068fd03558d5f9dca2d23507"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/es-AR/thunderbird-91.1.2.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/es-AR/thunderbird-91.2.1.tar.bz2"; 415 415 locale = "es-AR"; 416 416 arch = "linux-i686"; 417 - sha256 = "4db46b699d6a65fe482dd8f7bde005b5a4cccfbe7ef777f23f1aa57577d33a33"; 417 + sha256 = "70db1a684f76886131214bb0c48dccd75763f041e06428ee6fef54a3a8d524c0"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/es-ES/thunderbird-91.1.2.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/es-ES/thunderbird-91.2.1.tar.bz2"; 420 420 locale = "es-ES"; 421 421 arch = "linux-i686"; 422 - sha256 = "0a63e85f6992ce683f35ecfe6f0e10854fd8cada33f8a2e066d5ab140ef8c401"; 422 + sha256 = "d0b792b494bea690adc6a2eb967a988920ca497db08c539f92349c925ccb7c33"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/et/thunderbird-91.1.2.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/et/thunderbird-91.2.1.tar.bz2"; 425 425 locale = "et"; 426 426 arch = "linux-i686"; 427 - sha256 = "522ec0185345054abf61b84dfdb36ce3dbe01c70f5bae11aa17321d18091d759"; 427 + sha256 = "2e4c3111435cb965972aec73eb181f7e3aac8faa03c8c8f0d7869ace109b433c"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/eu/thunderbird-91.1.2.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/eu/thunderbird-91.2.1.tar.bz2"; 430 430 locale = "eu"; 431 431 arch = "linux-i686"; 432 - sha256 = "c4e28df0193175149303d80617f04df4d229d8eee2a75129b315a0c23b22aba5"; 432 + sha256 = "875e98a6ffcb614b3f062b7d12069eeb9f1c9dcd62916020369ede9ac76b8f92"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/fi/thunderbird-91.1.2.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/fi/thunderbird-91.2.1.tar.bz2"; 435 435 locale = "fi"; 436 436 arch = "linux-i686"; 437 - sha256 = "046b39db1f3f7c4fbe23e93053d43fe81e1b8751bb0558ad1bad3a50ab698673"; 437 + sha256 = "982a28220ed9d6881d83baaf99540e7eb5d689b0b7fca179d4847838f2596a3c"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/fr/thunderbird-91.1.2.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/fr/thunderbird-91.2.1.tar.bz2"; 440 440 locale = "fr"; 441 441 arch = "linux-i686"; 442 - sha256 = "39d15a1aa3f7c3e360e817baeb3747a49ae8f42d1b46208832eccb0107ca1b3b"; 442 + sha256 = "f0421269313849e90eab46698176f1ca425d2bf8136748628a35b0a8baf26c06"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/fy-NL/thunderbird-91.1.2.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/fy-NL/thunderbird-91.2.1.tar.bz2"; 445 445 locale = "fy-NL"; 446 446 arch = "linux-i686"; 447 - sha256 = "17c971a57634050faa9fe747055a671ac1ae0022a9b06a957eb05f7bb64f31cb"; 447 + sha256 = "d49aafc5baebb88b4b2ef7ea5240babe09b16632edebf9a39081aaf183e9ae3b"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ga-IE/thunderbird-91.1.2.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ga-IE/thunderbird-91.2.1.tar.bz2"; 450 450 locale = "ga-IE"; 451 451 arch = "linux-i686"; 452 - sha256 = "58c17ea964de2b60440bb1a078222ab5b6199b83fa5f2854926b9f0c2a6cb3d3"; 452 + sha256 = "665df98e5dd0ab4cff25b530bccfdfe4b44f2a81da9167b37aeedf7f05e1f59e"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/gd/thunderbird-91.1.2.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/gd/thunderbird-91.2.1.tar.bz2"; 455 455 locale = "gd"; 456 456 arch = "linux-i686"; 457 - sha256 = "4ee45ae272d53f523d2855083f27a0ce005d93ca95d13c2037621a87c294413c"; 457 + sha256 = "28acbaec011f0222530d0f8411444fdf0743d05c05c1fc04a0c130208dd5e9f9"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/gl/thunderbird-91.1.2.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/gl/thunderbird-91.2.1.tar.bz2"; 460 460 locale = "gl"; 461 461 arch = "linux-i686"; 462 - sha256 = "68012e665dea95fd4ce4f76dee0b246d2f94890e5a9b3c797e93ae7d450adc58"; 462 + sha256 = "97c23e4eac308b51252c0532770961133f2540b94a9dc095c0351e39f42ab038"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/he/thunderbird-91.1.2.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/he/thunderbird-91.2.1.tar.bz2"; 465 465 locale = "he"; 466 466 arch = "linux-i686"; 467 - sha256 = "57125635f8fe2cb50cfe9aecdfe06502cce9c746b346083b329d5e1123d4956d"; 467 + sha256 = "dfd4f5b4c9f396b4a512b38292b73f5a44146b3b46ab0d4e448067481e940914"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/hr/thunderbird-91.1.2.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/hr/thunderbird-91.2.1.tar.bz2"; 470 470 locale = "hr"; 471 471 arch = "linux-i686"; 472 - sha256 = "f6f28200c32cc2faa4a4e4a49eed5b4343586b52ca123dbce43d32a1c5059835"; 472 + sha256 = "07a1f4a58af9172912237c35c220efbe80fbcd44151dc0bce3e40ede38dff054"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/hsb/thunderbird-91.1.2.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/hsb/thunderbird-91.2.1.tar.bz2"; 475 475 locale = "hsb"; 476 476 arch = "linux-i686"; 477 - sha256 = "6290282252b9a61fc7ffb1e29b14f31c87832bd60a066c73f9966a10f75ac327"; 477 + sha256 = "c1b4e64ebdcc1a06d4428d3507aa1899f3d4c27ae428161f7219ea34302b1946"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/hu/thunderbird-91.1.2.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/hu/thunderbird-91.2.1.tar.bz2"; 480 480 locale = "hu"; 481 481 arch = "linux-i686"; 482 - sha256 = "fbd6be01153d67870565fc7230fba7b4a1f6151eeda54e84008b0943acfc4564"; 482 + sha256 = "c57005f3f10938b8cfc6adef1d5452b3235605b97a23d22da1f4528b1e356d2d"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/hy-AM/thunderbird-91.1.2.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/hy-AM/thunderbird-91.2.1.tar.bz2"; 485 485 locale = "hy-AM"; 486 486 arch = "linux-i686"; 487 - sha256 = "3bfb7979fbfbf0cbdecb8b8030dd209a6e18020ff34a30223ce893c0cfe0a282"; 487 + sha256 = "73525dc142b6762f803ced2b567a23244b22239d355fe89507cbe59ad1130edc"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/id/thunderbird-91.1.2.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/id/thunderbird-91.2.1.tar.bz2"; 490 490 locale = "id"; 491 491 arch = "linux-i686"; 492 - sha256 = "4a8801e97b001c0e30ffc4f4a7c712017c1b1a96bf226ddc341728b22599920d"; 492 + sha256 = "3f79327af36f3174cb303c65b13a0ae164bf24c87e367ba14bb46b1b6e2370b4"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/is/thunderbird-91.1.2.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/is/thunderbird-91.2.1.tar.bz2"; 495 495 locale = "is"; 496 496 arch = "linux-i686"; 497 - sha256 = "871a6393a716c4c8b2255a8903a4584c8ad4a7f5e1423550d3d96b9866929433"; 497 + sha256 = "58f7012723cf4ce6673fed01d038b2517c710585c6f8724181e4a91d717b2351"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/it/thunderbird-91.1.2.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/it/thunderbird-91.2.1.tar.bz2"; 500 500 locale = "it"; 501 501 arch = "linux-i686"; 502 - sha256 = "8919dbd9e7b0155de288322f10bbb664189d03c1442657d07d577b33cfce0929"; 502 + sha256 = "b0e7b9aa39a05148a0ef83d860fd2ab40d2aa1a66a31dd1e9a59d390d56c6e42"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ja/thunderbird-91.1.2.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ja/thunderbird-91.2.1.tar.bz2"; 505 505 locale = "ja"; 506 506 arch = "linux-i686"; 507 - sha256 = "42e1e1a2b55c97b05ec5424f6318d286f7fa497276ff745c6c221ee2b4c072cd"; 507 + sha256 = "e02978eef0fc814ca190bf8bde29ae382fc2e14c61200e78ec1f43809d7cca9a"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ka/thunderbird-91.1.2.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ka/thunderbird-91.2.1.tar.bz2"; 510 510 locale = "ka"; 511 511 arch = "linux-i686"; 512 - sha256 = "4da9353667f109938ebc6740039a915f67d518c109915c1ed42f1552c3be719d"; 512 + sha256 = "b11a6e09556d9f943765badb6145c5db2b7bb54cd3016de686e821aa66308bd5"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/kab/thunderbird-91.1.2.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/kab/thunderbird-91.2.1.tar.bz2"; 515 515 locale = "kab"; 516 516 arch = "linux-i686"; 517 - sha256 = "87c960236895eb1af70d2f50a839e55befc6486c4883d786b14a67e569c396ae"; 517 + sha256 = "604f1c4a21b58b995e72ac48549802c588b0542c352de813aa4dcc02bbc0c686"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/kk/thunderbird-91.1.2.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/kk/thunderbird-91.2.1.tar.bz2"; 520 520 locale = "kk"; 521 521 arch = "linux-i686"; 522 - sha256 = "38fdc0aa8fe98d83e52cf266776ebe7a52d7c80e98bc2372afcdeaf709ee8a06"; 522 + sha256 = "29479a9970a622e23901c6022058d635874b41e24c7f5aef42536abc922dd1ea"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ko/thunderbird-91.1.2.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ko/thunderbird-91.2.1.tar.bz2"; 525 525 locale = "ko"; 526 526 arch = "linux-i686"; 527 - sha256 = "c960038e1764cc3a0203e2cdf8349ecfee951dbeb470cb58b66c66f0542ee790"; 527 + sha256 = "f34050010ff533a1c3949b11ad51c6902d6efec8c92904b2906ab80f95291e6d"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/lt/thunderbird-91.1.2.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/lt/thunderbird-91.2.1.tar.bz2"; 530 530 locale = "lt"; 531 531 arch = "linux-i686"; 532 - sha256 = "6387197f1fa9095d64ef3e7c73272f0e0a4a7b857d4be29899bfe2c7aa88a5ec"; 532 + sha256 = "be3e4c5bff078c2129d6f4e1a6a820efa62cce2750e3e1359dfba0ea93e58b5a"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/lv/thunderbird-91.1.2.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/lv/thunderbird-91.2.1.tar.bz2"; 535 535 locale = "lv"; 536 536 arch = "linux-i686"; 537 - sha256 = "66021a590bb89b9fb50c90bc07788cbbb3d1acaceac5ebf562805d39bb59be3c"; 537 + sha256 = "bd6ec1783bcd5efbf51f963eef3db42f71b50e8826fe4896dc7356d10f4eefce"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ms/thunderbird-91.1.2.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ms/thunderbird-91.2.1.tar.bz2"; 540 540 locale = "ms"; 541 541 arch = "linux-i686"; 542 - sha256 = "a120efceac13b976b77a49dd2883f66a03c13f3243a53b66afbb372b87c15b16"; 542 + sha256 = "6279588bd47020c61250c211849b8fcbc4f480318a725090f316bb9f2099c31f"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/nb-NO/thunderbird-91.1.2.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/nb-NO/thunderbird-91.2.1.tar.bz2"; 545 545 locale = "nb-NO"; 546 546 arch = "linux-i686"; 547 - sha256 = "ac5f404b3635b9b327458eb461148d94b52501621e78f2fafeff09c019651948"; 547 + sha256 = "0f0a0fb9f6556f4207e63a12e846d2917d8e221321b51ba34860094876c3528f"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/nl/thunderbird-91.1.2.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/nl/thunderbird-91.2.1.tar.bz2"; 550 550 locale = "nl"; 551 551 arch = "linux-i686"; 552 - sha256 = "f9dbbb9789a81ee6a40756039afefe542e1369b5de15d4ea728bd5fb5326c728"; 552 + sha256 = "2f3c40fffa081ec62396fc3b715331280603b38b6d5fe5f4b16de1ab6727a713"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/nn-NO/thunderbird-91.1.2.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/nn-NO/thunderbird-91.2.1.tar.bz2"; 555 555 locale = "nn-NO"; 556 556 arch = "linux-i686"; 557 - sha256 = "36d0cf0f3132f5365a9cfe5b2175ac6f42dbe25c41a03fbd177509b2cf13abce"; 557 + sha256 = "da9c9cc55abbd4f0679b53b6635868fb2a5f56165292a82903512058fa57f988"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/pa-IN/thunderbird-91.1.2.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/pa-IN/thunderbird-91.2.1.tar.bz2"; 560 560 locale = "pa-IN"; 561 561 arch = "linux-i686"; 562 - sha256 = "776c3c215fd0e66eb81c2c91855233c4a7476aad534de555a6317b6a4f664b67"; 562 + sha256 = "065db90edaec65fc7cb240d7793afae97110761bca269ffc4e172d0fd5dcbeae"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/pl/thunderbird-91.1.2.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/pl/thunderbird-91.2.1.tar.bz2"; 565 565 locale = "pl"; 566 566 arch = "linux-i686"; 567 - sha256 = "ba2aa2dda6c477f3ecb06d0f1d223928adc9a82e46432055783741064cf1e8f6"; 567 + sha256 = "4e0a43f1633728dbb25dcd60218b31fa45131a8189f94d8ebeff202bc251ac55"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/pt-BR/thunderbird-91.1.2.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/pt-BR/thunderbird-91.2.1.tar.bz2"; 570 570 locale = "pt-BR"; 571 571 arch = "linux-i686"; 572 - sha256 = "314023714b6babde392b8a30d11e67fe5af9f47e2738d63a6231aa72e6e0b792"; 572 + sha256 = "a013acdee4b7e983c71dd39607103f1794b967addc57c538a8ca94437551743c"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/pt-PT/thunderbird-91.1.2.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/pt-PT/thunderbird-91.2.1.tar.bz2"; 575 575 locale = "pt-PT"; 576 576 arch = "linux-i686"; 577 - sha256 = "ea5895b796bbdf9ed5be1277dc0f32c70abb46f37a7d48ecacf39e7b7a5af082"; 577 + sha256 = "4bf7b530490f1fc1d031040790a568bee42206f393f8c13994551e6ff4d1ede2"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/rm/thunderbird-91.1.2.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/rm/thunderbird-91.2.1.tar.bz2"; 580 580 locale = "rm"; 581 581 arch = "linux-i686"; 582 - sha256 = "d295f9390b7dedec8592751142a42bc134ff3fca5a228d084eb176677c15c4bc"; 582 + sha256 = "829ffbd9402f5cf80cdd8b001081d6f67628c842cc3c73f8191b6f6ff1d54d52"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ro/thunderbird-91.1.2.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ro/thunderbird-91.2.1.tar.bz2"; 585 585 locale = "ro"; 586 586 arch = "linux-i686"; 587 - sha256 = "b4504dd29ce68009c78b7194914c20d41024f92420564d6f4f34369717a49a90"; 587 + sha256 = "6bc72633a3b45faf2aa51627caf5674f1b05e16840b952f58f7f86ef6ad483b9"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/ru/thunderbird-91.1.2.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/ru/thunderbird-91.2.1.tar.bz2"; 590 590 locale = "ru"; 591 591 arch = "linux-i686"; 592 - sha256 = "a8ba363a9bee130d05d028a84bfc10e8614ac3e3ee7e747d4987691d25423bb0"; 592 + sha256 = "141787ba7f5aeb0faa2a33e0d84fda8fa8d31681c6fdd0e884a69cc339042048"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/sk/thunderbird-91.1.2.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/sk/thunderbird-91.2.1.tar.bz2"; 595 595 locale = "sk"; 596 596 arch = "linux-i686"; 597 - sha256 = "347a0e3e794bebc570aac65005edef1c311d7685d9b7ee4559121945cec1a40e"; 597 + sha256 = "90363481a491a239e4c3da49bc87ed3ca795e4ce0eaf2239ac5a298e5d7abc10"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/sl/thunderbird-91.1.2.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/sl/thunderbird-91.2.1.tar.bz2"; 600 600 locale = "sl"; 601 601 arch = "linux-i686"; 602 - sha256 = "1ae4c2615d9fc4e6b1ab270988de63ff425779945684811a1c9093940e7a9d0a"; 602 + sha256 = "95e57777da6f9fcb41bb3116771be2e90b023315433d41e21884b34feb6a38e4"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/sq/thunderbird-91.1.2.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/sq/thunderbird-91.2.1.tar.bz2"; 605 605 locale = "sq"; 606 606 arch = "linux-i686"; 607 - sha256 = "207fb12cf9415e5a66bee33ee2f50adb970343b90bdde2c00c5b149e9ec829ad"; 607 + sha256 = "d7e0a12bd5c7edfb130e4defdc25b8776fb71722fb146cd5309d52405ad231bd"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/sr/thunderbird-91.1.2.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/sr/thunderbird-91.2.1.tar.bz2"; 610 610 locale = "sr"; 611 611 arch = "linux-i686"; 612 - sha256 = "45e7cb91506dfe353d86b8c6ae172b4a925f6b9ee631b542bc9a0fc77315d482"; 612 + sha256 = "b17dbc3424ce90c0360a75476d1d25568fb4e7c6e1e90a197ab332e5584cb88e"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/sv-SE/thunderbird-91.1.2.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/sv-SE/thunderbird-91.2.1.tar.bz2"; 615 615 locale = "sv-SE"; 616 616 arch = "linux-i686"; 617 - sha256 = "634b1581237baa140d8711458cff99e979b3e33316b24925c6e5700da9603127"; 617 + sha256 = "027f7f817823e939261c05113b3cc5518b3fff1d061e66e8fcd5703504259f2b"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/th/thunderbird-91.1.2.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/th/thunderbird-91.2.1.tar.bz2"; 620 620 locale = "th"; 621 621 arch = "linux-i686"; 622 - sha256 = "a09336e75d270e9fdfaefd4f9e90cddf1f5135602998bfdd9a198e3f1544838c"; 622 + sha256 = "268473436cc5230bc60b38c0678eaa71c64b5f9c3780120df51c1063790e1855"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/tr/thunderbird-91.1.2.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/tr/thunderbird-91.2.1.tar.bz2"; 625 625 locale = "tr"; 626 626 arch = "linux-i686"; 627 - sha256 = "37874416c7bdd2c2b4303a55d14a82ce55a7d8cc6d51bc3b3d215489be3bc055"; 627 + sha256 = "79bad44e8e9dd7962d67b395d27c046d84c50f3eb66c53bc10de8a9c3d94a059"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/uk/thunderbird-91.1.2.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/uk/thunderbird-91.2.1.tar.bz2"; 630 630 locale = "uk"; 631 631 arch = "linux-i686"; 632 - sha256 = "faa0c411431a9b27a7c58c0c394804d3125e4f4e927387df8580c37738c2db44"; 632 + sha256 = "c363f700537f3a466fb438ec4339b5e83b60c721faa647b4ab77c907ab9b1f21"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/uz/thunderbird-91.1.2.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/uz/thunderbird-91.2.1.tar.bz2"; 635 635 locale = "uz"; 636 636 arch = "linux-i686"; 637 - sha256 = "095e56a0fa0e85bebe9bc0044fc13f5da67c7267461b27fb8024947da3f423ba"; 637 + sha256 = "2de957d36eb6c2b5a7d33d6a06e9f4f1072981fd8530aa18d609a892f963c975"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/vi/thunderbird-91.1.2.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/vi/thunderbird-91.2.1.tar.bz2"; 640 640 locale = "vi"; 641 641 arch = "linux-i686"; 642 - sha256 = "cae3582b504a38497dc63ba25d4be45e450b14cb588a9f52919d0fb4a5a04446"; 642 + sha256 = "5006d6c79aff928e307a92eb3867364f206ee1d872e275d3ebf63b9a4cf286de"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/zh-CN/thunderbird-91.1.2.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/zh-CN/thunderbird-91.2.1.tar.bz2"; 645 645 locale = "zh-CN"; 646 646 arch = "linux-i686"; 647 - sha256 = "58d542c3ceb5e36a83e424250c171477543bcd046f325c89b06f76090410b633"; 647 + sha256 = "4893ea232fa746efc32cb0d84800b46fbdffb49a13fbc244559ca0382561ebca"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.2/linux-i686/zh-TW/thunderbird-91.1.2.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.2.1/linux-i686/zh-TW/thunderbird-91.2.1.tar.bz2"; 650 650 locale = "zh-TW"; 651 651 arch = "linux-i686"; 652 - sha256 = "13dfa3e7a8b5a69ab9072c21eb22373ff36bd54c9c7c39c3480681bd911043c0"; 652 + sha256 = "37ad46134d268639514eeb267a89aeb20fc318bde923b9eb552c281b23ae153e"; 653 653 } 654 654 ]; 655 655 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 10 10 rec { 11 11 thunderbird = common rec { 12 12 pname = "thunderbird"; 13 - version = "91.2.0"; 13 + version = "91.2.1"; 14 14 application = "comm/mail"; 15 15 binaryName = pname; 16 16 src = fetchurl { 17 17 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 18 - sha512 = "1f21f77069490be2de131f6125a498c6ed0a7d10b2ff787891d8dea10019719fea8014a8b2d626a2365f10f6307b616e5f1eef2c601e4da5402c9d5fc7d35049"; 18 + sha512 = "3152f20ad5f0fd3ce2c1672e91f07ab8921ffb5ecf487e6b0d7d7464445c8d8df106eea0bd8d912ffa84ab0ad403dfcfb19be97f50a015150c9091201a0dff6d"; 19 19 }; 20 20 patches = [ 21 21 ];
+12
pkgs/development/compilers/scryer-prolog/cargo.patch
··· 26 26 dependencies = [ 27 27 "libc", 28 28 "winapi 0.3.8", 29 + @@ -485,9 +487,9 @@ dependencies = [ 30 + 31 + [[package]] 32 + name = "lexical-core" 33 + -version = "0.4.6" 34 + +version = "0.4.8" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + -checksum = "2304bccb228c4b020f3a4835d247df0a02a7c4686098d4167762cfbbe4c5cb14" 37 + +checksum = "34449d00c5d4066537f4dc72320b18e3aa421e8e92669250eecd664c618fefce" 38 + dependencies = [ 39 + "arrayvec 0.4.12", 40 + "cfg-if", 29 41 @@ -766,15 +766,6 @@ version = "0.1.2" 30 42 source = "registry+https://github.com/rust-lang/crates.io-index" 31 43 checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
+1 -1
pkgs/development/compilers/scryer-prolog/default.nix
··· 22 22 # Use system openssl, gmp, mpc and mpfr. 23 23 cargoPatches = [ ./cargo.patch ]; 24 24 25 - cargoSha256 = "0gb0l2wwf8079jwggn9zxk8pz8pxg3b7pin1d7dsbd4ij52lzyi2"; 25 + cargoSha256 = "1vf7pfhvpk7ikzibdccw7xgbywv5n4vvshjwsdsf94bhl2knrlg3"; 26 26 27 27 nativeBuildInputs = [ pkg-config ]; 28 28 buildInputs = [ openssl gmp libmpc mpfr ];
+2 -2
pkgs/development/libraries/physics/lhapdf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lhapdf"; 5 - version = "6.3.0"; 5 + version = "6.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.hepforge.org/archive/lhapdf/LHAPDF-${version}.tar.gz"; 9 - sha256 = "0pcvigpjqzfng06n98bshhhpimiqfg416ak8lz8jdgp6nxr8fkgd"; 9 + sha256 = "sha256-fS8CZ+LWWw3e4EhVOzQtfIk6bbq+HjJsrWLeABDdgQw="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+9 -28
pkgs/development/libraries/physics/yoda/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, python, root, makeWrapper, zlib, withRootSupport ? false }: 1 + { lib, stdenv, fetchurl, python, root, makeWrapper, zlib, withRootSupport ? false }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "yoda"; 5 - version = "1.9.0"; 5 + version = "1.9.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2"; 9 - sha256 = "1x7xi6w7lb92x8202kbaxgqg1sly534wana4f38l3gpbzw9dwmcs"; 9 + sha256 = "sha256-xhagWmVlvlsayL0oWTihoxhq0ejejEACCsdQqFN1HUw="; 10 10 }; 11 11 12 - patches = [ 13 - # fix a minor bug 14 - # https://gitlab.com/hepcedar/yoda/-/merge_requests/38 15 - (fetchpatch { 16 - name = "yoda-fix-fuzzy-compare-bin2d.patch"; 17 - url = "https://gitlab.com/hepcedar/yoda/-/commit/a2999d78cb3d9ed874f367bad375dc39a1a11148.diff"; 18 - sha256 = "sha256-BsaVm+4VtCvRoEuN4r6A4bj9XwgMe75UesKzN+b56Qw="; 19 - }) 20 - # fix a regression 21 - # https://gitlab.com/hepcedar/yoda/-/merge_requests/40 22 - (fetchpatch { 23 - name = "yoda-fix-for-yodagz.patch"; 24 - url = "https://gitlab.com/hepcedar/yoda/-/commit/3338ba5a7466599ac6969e4ae462f133d6cf4fd8.diff"; 25 - sha256 = "sha256-MZTOIt468bdPCS7UVfr5hQZUsVy3TpY/TjRrNySIL70="; 26 - excludes = [ "ChangeLog" ]; 27 - }) 28 - # fix a minor bug 29 - # https://gitlab.com/hepcedar/yoda/-/merge_requests/45 30 - (fetchpatch { 31 - name = "yoda-fix-yodascale-for-gz.patch"; 32 - url = "https://gitlab.com/hepcedar/yoda/-/commit/b03162aeaa2c99e38512ba6e4818d2e0a825b757.diff"; 33 - sha256 = "sha256-IMuPalQ/GKcdJOKAlwE/IRWtxDdu0inoj+A9nbRl6Gs="; 34 - }) 35 - ]; 36 - 37 12 nativeBuildInputs = with python.pkgs; [ cython makeWrapper ]; 38 13 buildInputs = [ python ] 39 14 ++ (with python.pkgs; [ numpy matplotlib ]) ··· 57 32 58 33 doInstallCheck = true; 59 34 installCheckTarget = "check"; 35 + 36 + # Workaround for https://gitlab.com/hepcedar/yoda/-/merge_requests/49 37 + preInstallCheck = '' 38 + cp tests/test{1,}.yoda 39 + gzip -c tests/test.yoda > tests/test.yoda.gz 40 + ''; 60 41 61 42 meta = { 62 43 description = "Provides small set of data analysis (specifically histogramming) classes";
+52
pkgs/development/python-modules/aiolookin/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , faker 5 + , fetchFromGitHub 6 + , pytest-aiohttp 7 + , pytest-mock 8 + , pytestCheckHook 9 + , pythonOlder 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "aiolookin"; 14 + version = "0.0.3"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.8"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "ANMalko"; 21 + repo = pname; 22 + rev = "v${version}"; 23 + sha256 = "15mdvrzvqpdvg9zkczzgzzc5v2ri3v5f17000mhxill1nhirxhqx"; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + aiohttp 28 + ]; 29 + 30 + checkInputs = [ 31 + faker 32 + pytest-aiohttp 33 + pytest-mock 34 + pytestCheckHook 35 + ]; 36 + 37 + disabledTests = [ 38 + # Not all tests are ready yet 39 + "test_successful" 40 + ]; 41 + 42 + pythonImportsCheck = [ 43 + "aiolookin" 44 + ]; 45 + 46 + meta = with lib; { 47 + description = "Python client for interacting with LOOKin devices"; 48 + homepage = "https://github.com/ANMalko/aiolookin"; 49 + license = with licenses; [ mit ]; 50 + maintainers = with maintainers; [ fab ]; 51 + }; 52 + }
+2 -2
pkgs/development/python-modules/aiounittest/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aiounittest"; 12 - version = "1.4.0"; 12 + version = "1.4.1"; 13 13 disabled = isPy27; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kwarunek"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-GbGApY4pQoFpP3RTCLdjjTnJbdz9wEXXzZRRYXgtFEM="; 19 + sha256 = "sha256-FixGF1JLJVqTgLaWugbeu8f+SDjpHSdSLoGklYBup4M="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+6 -3
pkgs/development/python-modules/herepy/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "herepy"; 12 - version = "3.5.4"; 12 + version = "3.5.5"; 13 + format = "setuptools"; 13 14 14 15 disabled = pythonOlder "3.5"; 15 16 ··· 17 18 owner = "abdullahselek"; 18 19 repo = "HerePy"; 19 20 rev = version; 20 - sha256 = "0wnkyrzpahxg7yh2qf149fzgs4x2jx3lf458syzz3crm7qix2hsk"; 21 + sha256 = "sha256-nZ+91i+IBdRDN1TsDwmk9pNceFvcV6C155Ds1MQc9z4="; 21 22 }; 22 23 23 24 postPatch = '' ··· 34 35 responses 35 36 ]; 36 37 37 - pythonImportsCheck = [ "herepy" ]; 38 + pythonImportsCheck = [ 39 + "herepy" 40 + ]; 38 41 39 42 meta = with lib; { 40 43 description = "Library that provides a Python interface to the HERE APIs";
+9 -3
pkgs/development/python-modules/pyatv/default.nix
··· 13 13 , pytest-asyncio 14 14 , pytest-timeout 15 15 , pytestCheckHook 16 + , pythonOlder 16 17 , srptools 17 18 , zeroconf 18 19 }: 19 20 20 21 buildPythonPackage rec { 21 22 pname = "pyatv"; 22 - version = "0.9.2"; 23 + version = "0.9.5"; 24 + 25 + format = "setuptools"; 26 + disabled = pythonOlder "3.6"; 23 27 24 28 src = fetchFromGitHub { 25 29 owner = "postlund"; 26 30 repo = pname; 27 31 rev = "v${version}"; 28 - sha256 = "0rpf8qspk433jpj7qy3mv20vf3hbm6msx3mii5kq0dmsh5pqy6h4"; 32 + sha256 = "sha256-7aeXTR0ecrm5+KHRCdW3+HLjU3U7Ja/J6JTU5QscCto="; 29 33 }; 30 34 31 35 postPatch = '' ··· 55 59 56 60 __darwinAllowLocalNetworking = true; 57 61 58 - pythonImportsCheck = [ "pyatv" ]; 62 + pythonImportsCheck = [ 63 + "pyatv" 64 + ]; 59 65 60 66 meta = with lib; { 61 67 description = "Python client library for the Apple TV";
+6 -3
pkgs/development/python-modules/pykodi/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pykodi"; 11 - version = "0.2.6"; 11 + version = "0.2.7"; 12 + format = "setuptools"; 12 13 13 14 src = fetchPypi { 14 15 inherit pname version; 15 - sha256 = "sha256-SDp2S9HeqejRM3cf4x+5RLUQMPhjieQaXoubwf9Q/d4="; 16 + sha256 = "sha256-2fFkbZZ3RXMolaaGpkvvVfSYtNNB1bTsoRCin3GnVKM="; 16 17 }; 17 18 18 19 propagatedBuildInputs = [ ··· 24 25 # has no tests 25 26 doCheck = false; 26 27 27 - pythonImportsCheck = [ "pykodi" ]; 28 + pythonImportsCheck = [ 29 + "pykodi" 30 + ]; 28 31 29 32 meta = with lib; { 30 33 description = "An async python interface for Kodi over JSON-RPC";
+7 -4
pkgs/development/python-modules/pypoint/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pypoint"; 10 - version = "2.2.0"; 10 + version = "2.2.1"; 11 + format = "setuptools"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "fredrike"; 14 15 repo = "pypoint"; 15 16 rev = "v${version}"; 16 - sha256 = "sha256-2PKZtn+l93de4/gPPM2Wdt04Zw+ekDadwNgL6ZKTqhY="; 17 + sha256 = "sha256-Or7A/Br6BgiCF6OHRtN5TAt++Tu1RLS9mYRgD7Aljts="; 17 18 }; 18 19 19 20 propagatedBuildInputs = [ ··· 24 25 # upstream has no tests 25 26 doCheck = false; 26 27 27 - pythonImportsCheck = [ "pypoint" ]; 28 + pythonImportsCheck = [ 29 + "pypoint" 30 + ]; 28 31 29 32 meta = with lib; { 30 - description = "API for Minut Point"; 33 + description = "Python module for communicating with Minut Point"; 31 34 homepage = "https://github.com/fredrike/pypoint"; 32 35 license = licenses.mit; 33 36 maintainers = with maintainers; [ dotlambda ];
+7 -2
pkgs/development/python-modules/rokuecp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "rokuecp"; 14 - version = "0.8.2"; 14 + version = "0.8.4"; 15 + format = "setuptools"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "ctalkington"; 18 19 repo = "python-rokuecp"; 19 20 rev = version; 20 - sha256 = "sha256-2FAnshIxaA52EwwwABBQ0sedAsz561YYxXDQo2Vcp1c="; 21 + sha256 = "sha256-vwXBYwiDQZBxEZDwLX9if6dt7tKQQOLyKL5m0q/3eUw="; 21 22 }; 22 23 23 24 propagatedBuildInputs = [ ··· 30 31 aresponses 31 32 pytestCheckHook 32 33 pytest-asyncio 34 + ]; 35 + 36 + pythonImportsCheck = [ 37 + "rokuecp" 33 38 ]; 34 39 35 40 meta = with lib; {
+6 -3
pkgs/development/python-modules/youless-api/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "youless-api"; 16 - version = "0.14"; 16 + version = "0.15"; 17 + format = "setuptools"; 17 18 18 19 disabled = pythonOlder "3.7"; 19 20 ··· 21 22 owner = "jongsoftdev"; 22 23 repo = "youless-python-bridge"; 23 24 rev = version; 24 - sha256 = "sha256-ZHDQ+4Urv0ZxKFASsgDG12mpfRiCN2DwU6Rgc9ye5qY="; 25 + sha256 = "sha256-77uQUAPDCFQiCpNAI0feOtHq82sE0n70IV1Njn/W29M="; 25 26 }; 26 27 27 28 propagatedBuildInputs = [ ··· 37 38 nose 38 39 ]; 39 40 40 - pythonImportsCheck = [ "youless_api" ]; 41 + pythonImportsCheck = [ 42 + "youless_api" 43 + ]; 41 44 42 45 meta = with lib; { 43 46 description = "Python library for YouLess sensors";
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "zeroconf"; 13 - version = "0.36.8"; 13 + version = "0.36.9"; 14 14 format = "setuptools"; 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 19 19 owner = "jstasiak"; 20 20 repo = "python-zeroconf"; 21 21 rev = version; 22 - sha256 = "sha256-lsvrttfyUtQneUkQlWFpmQ99BSJp/YiVYUKY7AWh0rs="; 22 + sha256 = "sha256-V2AiKmL3laA6Kd2lOXZ7f+7L08zMtDfvhLxayylp1CQ="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sqlfluff"; 8 - version = "0.7.0"; 8 + version = "0.7.1"; 9 9 disabled = python3.pythonOlder "3.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-Cqbo1L3z3bTDIXZ90GXdAulTpGhWLoTc/kYRNghZ/SE="; 15 + sha256 = "sha256-kNoUoelD4EiNWZlXvOrWNPX+wsLCwY3329rJf83l7Wg="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+6 -2
pkgs/development/tools/database/sqlitebrowser/default.nix
··· 1 1 { mkDerivation, lib, fetchFromGitHub, cmake 2 - , qtbase, qttools, sqlite, wrapGAppsHook }: 2 + , qtbase, qttools, sqlcipher, wrapGAppsHook }: 3 3 4 4 mkDerivation rec { 5 5 pname = "sqlitebrowser"; ··· 16 16 # but qscintilla is currently in a bit of a mess as some consumers expect a 17 17 # -qt4 or -qt5 prefix while others do not. 18 18 # We *really* should get that cleaned up. 19 - buildInputs = [ qtbase sqlite ]; 19 + buildInputs = [ qtbase sqlcipher ]; 20 20 21 21 nativeBuildInputs = [ cmake qttools wrapGAppsHook ]; 22 + 23 + cmakeFlags = [ 24 + "-Dsqlcipher=1" 25 + ]; 22 26 23 27 meta = with lib; { 24 28 description = "DB Browser for SQLite";
+28
pkgs/development/tools/graphql-client/default.nix
··· 1 + { lib, stdenv, rustPlatform, fetchCrate, pkg-config, openssl, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "graphql-client"; 5 + version = "0.10.0"; 6 + 7 + src = fetchCrate { 8 + inherit version; 9 + crateName = "graphql_client_cli"; 10 + sha256 = "sha256-OV4kpvciEJOGfhkxPoNf1QmhdytWMhXuQAKOFJvDFA4="; 11 + }; 12 + 13 + cargoSha256 = "sha256-r/pRwDLc/yGMzdZIx8SV46o63eb6qrlTb6MsUBhq97w="; 14 + 15 + nativeBuildInputs = [ 16 + pkg-config 17 + ]; 18 + buildInputs = [ 19 + openssl 20 + ] ++ lib.optionals stdenv.isDarwin [ Security ]; 21 + 22 + meta = with lib; { 23 + description = "A GraphQL tool for Rust projects"; 24 + homepage = "https://github.com/graphql-rust/graphql-client"; 25 + license = with licenses; [ asl20 /* or */ mit ]; 26 + maintainers = with maintainers; [ bbigras ]; 27 + }; 28 + }
+25 -15
pkgs/development/tools/protoc-gen-grpc-web/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, protobuf }: 1 + { lib, stdenv, fetchFromGitHub, protobuf }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "protoc-gen-grpc-web"; 5 - version = "1.2.1"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "grpc"; 9 9 repo = "grpc-web"; 10 10 rev = version; 11 - sha256 = "sha256-NBENyc01O8NPo84z1CeZ7YvFvVGY2GSlcdxacRrQALw="; 11 + sha256 = "sha256-piKpaylzuanhGR+7BzApplv8e/CWPoR9tG3vHrF7WXw="; 12 12 }; 13 13 14 - sourceRoot = "source/javascript/net/grpc/web"; 15 - 16 - # remove once PR merged 17 - # https://github.com/grpc/grpc-web/pull/1107 18 - patches = [ 19 - (fetchpatch { 20 - name = "add-prefix.patch"; 21 - url = "https://github.com/06kellyjac/grpc-web/commit/b0803be1080fc635a8d5b88da971835a888a0c77.patch"; 22 - stripLen = 4; 23 - sha256 = "sha256-Rw9Z7F8cYrc/UIGUN6yXOus4v+Qn9Yf1Nc301TFx85A="; 24 - }) 25 - ]; 14 + sourceRoot = "source/javascript/net/grpc/web/generator"; 26 15 27 16 strictDeps = true; 28 17 nativeBuildInputs = [ protobuf ]; ··· 30 19 31 20 makeFlags = [ "PREFIX=$(out)" ]; 32 21 22 + doCheck = true; 23 + checkInputs = [ protobuf ]; 24 + checkPhase = '' 25 + runHook preCheck 26 + 27 + CHECK_TMPDIR="$TMPDIR/proto" 28 + mkdir -p "$CHECK_TMPDIR" 29 + 30 + protoc \ 31 + --proto_path="${src}/packages/grpc-web/test/protos" \ 32 + --plugin="./protoc-gen-grpc-web" \ 33 + --grpc-web_out="import_style=commonjs,mode=grpcwebtext:$CHECK_TMPDIR" \ 34 + echo.proto 35 + 36 + # check for grpc-web generated file 37 + [ -f "$CHECK_TMPDIR/echo_grpc_web_pb.js" ] 38 + 39 + runHook postCheck 40 + ''; 41 + 33 42 meta = with lib; { 34 43 homepage = "https://github.com/grpc/grpc-web"; 35 44 changelog = "https://github.com/grpc/grpc-web/blob/${version}/CHANGELOG.md"; 36 45 description = "gRPC web support for Google's protocol buffers"; 37 46 license = licenses.asl20; 38 47 maintainers = with maintainers; [ jk ]; 48 + platforms = platforms.unix; 39 49 }; 40 50 }
+3 -3
pkgs/development/web/deno/default.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "deno"; 20 - version = "1.15.2"; 20 + version = "1.15.3"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "denoland"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-ABCItd90mtASpyf+HSQeIcn70Wjvloj7L36WM+FUt0g="; 26 + sha256 = "sha256-IFEo2F3gayR2LmAAJXezZPXpRfZf4re3YPZRcXpqx6o="; 27 27 }; 28 - cargoSha256 = "sha256-crSx122kE7lvV32YnFsZIGRwHMb8z4bEdg5s+6Qeih8="; 28 + cargoSha256 = "sha256-9ZpPiqlqP01B9ETpVqVreivNuSMB1td4LinxXdH7PsM="; 29 29 30 30 # Install completions post-install 31 31 nativeBuildInputs = [ installShellFiles ];
+144 -96
pkgs/misc/vim-plugins/generated.nix
··· 77 77 78 78 ale = buildVimPluginFrom2Nix { 79 79 pname = "ale"; 80 - version = "2021-10-22"; 80 + version = "2021-10-24"; 81 81 src = fetchFromGitHub { 82 82 owner = "dense-analysis"; 83 83 repo = "ale"; 84 - rev = "95ba7898b45c3cbac77463aace447ead4e173556"; 85 - sha256 = "063ks4yf2l9384xi7candw1069j8k465rz2sniliak9r6hy1k100"; 84 + rev = "92f08b5af2f6316312c95c5160c6e02b76370e04"; 85 + sha256 = "17p8bbqqsjw17b50p8pxrv30mf8n6495gwzvlfpj51yz2vvk66wv"; 86 86 }; 87 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 88 }; ··· 101 101 102 102 aniseed = buildVimPluginFrom2Nix { 103 103 pname = "aniseed"; 104 - version = "2021-10-09"; 104 + version = "2021-10-24"; 105 105 src = fetchFromGitHub { 106 106 owner = "Olical"; 107 107 repo = "aniseed"; 108 - rev = "836779b75c332d3063a628fd1050a4b0a6d57882"; 109 - sha256 = "0cv3ki2xhz1rwz9wd2lyyv8zpdyflmjmb51k1kcy16jlp2ahgxi6"; 108 + rev = "4bb3a4c1a1e329ebefa7ff022f7b3947770f7f26"; 109 + sha256 = "0sd81pagrrwsig1fjm4ly866wcpq4xqpf810a8q1p2bygjs95chx"; 110 110 }; 111 111 meta.homepage = "https://github.com/Olical/aniseed/"; 112 112 }; ··· 233 233 234 234 auto-session = buildVimPluginFrom2Nix { 235 235 pname = "auto-session"; 236 - version = "2021-10-14"; 236 + version = "2021-10-24"; 237 237 src = fetchFromGitHub { 238 238 owner = "rmagatti"; 239 239 repo = "auto-session"; 240 - rev = "6f9506c1a8445b902e121a630613b94c8b0cd52a"; 241 - sha256 = "0gxf67a2l1sc5svrs6jkp6rawbjj54dvsqfr0prqindpdivxihic"; 240 + rev = "2d25cc543e828acddaa54ad4129553477e2ed22f"; 241 + sha256 = "0hhq8ajb9biki2kbcc0vdwbgpck0fcaf7xjdi1j8jglsmqk4xw1h"; 242 242 }; 243 243 meta.homepage = "https://github.com/rmagatti/auto-session/"; 244 244 }; ··· 461 461 462 462 chadtree = buildVimPluginFrom2Nix { 463 463 pname = "chadtree"; 464 - version = "2021-10-23"; 464 + version = "2021-10-25"; 465 465 src = fetchFromGitHub { 466 466 owner = "ms-jpq"; 467 467 repo = "chadtree"; 468 - rev = "db05991d79230f8f4a54a186f619bf909731c1b8"; 469 - sha256 = "053p0qfghwj06vg2n5fi30491x8qrl2aih95gw3zk2r6lg384rqg"; 468 + rev = "3693a1aeda4ba419d4a849d1955d6b4c39a3b565"; 469 + sha256 = "0jsjk145y5j83l48fm6n6bvyvnjzm7l50w8b6sy9h06kzs0wh2ic"; 470 470 }; 471 471 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 472 472 }; ··· 651 651 meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lua/"; 652 652 }; 653 653 654 + cmp-omni = buildVimPluginFrom2Nix { 655 + pname = "cmp-omni"; 656 + version = "2021-09-28"; 657 + src = fetchFromGitHub { 658 + owner = "hrsh7th"; 659 + repo = "cmp-omni"; 660 + rev = "3fec8a57d6d230c81d24c03dd80e97c62d4eda63"; 661 + sha256 = "018lzqxdcw78ckqm16jn0wh3pv9pjl6abcj1q2svfalmim0h6a87"; 662 + }; 663 + meta.homepage = "https://github.com/hrsh7th/cmp-omni/"; 664 + }; 665 + 666 + cmp-pandoc-references = buildVimPluginFrom2Nix { 667 + pname = "cmp-pandoc-references"; 668 + version = "2021-10-11"; 669 + src = fetchFromGitHub { 670 + owner = "jc-doyle"; 671 + repo = "cmp-pandoc-references"; 672 + rev = "9f27411d118194fc9ee6e1f86574ad8077de54be"; 673 + sha256 = "02g6rf2pzx1syhhbhrkxzygz27q2i1hsrymjcyj9q5h31wz0qzhq"; 674 + }; 675 + meta.homepage = "https://github.com/jc-doyle/cmp-pandoc-references/"; 676 + }; 677 + 654 678 cmp-path = buildVimPluginFrom2Nix { 655 679 pname = "cmp-path"; 656 680 version = "2021-10-22"; ··· 689 713 690 714 cmp-treesitter = buildVimPluginFrom2Nix { 691 715 pname = "cmp-treesitter"; 692 - version = "2021-09-11"; 716 + version = "2021-10-24"; 693 717 src = fetchFromGitHub { 694 718 owner = "ray-x"; 695 719 repo = "cmp-treesitter"; 696 - rev = "cdc1c4c6170278e119759da0b3c28d73f531a231"; 697 - sha256 = "0h0hr086mdszqjk5417nk2fmnbdkyi29gmqirx15k323y53hnvd1"; 720 + rev = "0ba0a99b43420789740642f85e3fd076f1259418"; 721 + sha256 = "030s5qgl6fg73w16w6p7ss767w2hrsfhq7nf6nsr4hibc07wj9m9"; 698 722 }; 699 723 meta.homepage = "https://github.com/ray-x/cmp-treesitter/"; 700 724 }; 701 725 726 + cmp-under-comparator = buildVimPluginFrom2Nix { 727 + pname = "cmp-under-comparator"; 728 + version = "2021-10-22"; 729 + src = fetchFromGitHub { 730 + owner = "lukas-reineke"; 731 + repo = "cmp-under-comparator"; 732 + rev = "69e88636a3f7a1630a6e1199b4039a5f110caf81"; 733 + sha256 = "1af4l8vf66sz4vhyzlnkrg0hpwx2f7096g9rszralxq0nad1i12d"; 734 + }; 735 + meta.homepage = "https://github.com/lukas-reineke/cmp-under-comparator/"; 736 + }; 737 + 702 738 cmp-vsnip = buildVimPluginFrom2Nix { 703 739 pname = "cmp-vsnip"; 704 740 version = "2021-08-25"; ··· 870 906 871 907 comment-nvim = buildVimPluginFrom2Nix { 872 908 pname = "comment.nvim"; 873 - version = "2021-10-22"; 909 + version = "2021-10-24"; 874 910 src = fetchFromGitHub { 875 911 owner = "numtostr"; 876 912 repo = "comment.nvim"; 877 - rev = "4d6cfc83622bc220891b9abba7ca82e6919fd844"; 878 - sha256 = "1akn9sf753nj2ch2kl3j1w2bxvva3maxsg5wj52mx3mgr81bwshl"; 913 + rev = "1e01f4556be5472ddfbc9d9cb42bd9b958d4a24e"; 914 + sha256 = "1d6w13mw8sb0c5bkg3nn8snjw7vrnjhr5pmgmbx4pv6g8yqr2zj4"; 879 915 }; 880 916 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 881 917 }; ··· 1026 1062 1027 1063 conjure = buildVimPluginFrom2Nix { 1028 1064 pname = "conjure"; 1029 - version = "2021-10-09"; 1065 + version = "2021-10-24"; 1030 1066 src = fetchFromGitHub { 1031 1067 owner = "Olical"; 1032 1068 repo = "conjure"; 1033 - rev = "1a30578ff37e33e8a5687a9488c86d0d880d8893"; 1034 - sha256 = "1phjrz46ahdwg1af2n6x3y6nims4c2hwmx6z3zwi5bb7wmc0jyn8"; 1069 + rev = "a2831ac61c44f9fe98a0fb469b02b761d503bc9a"; 1070 + sha256 = "1r1lz397fga204i4a4g6zbaf457wmvb35kpd9m7n8476iay892j7"; 1035 1071 }; 1036 1072 meta.homepage = "https://github.com/Olical/conjure/"; 1037 1073 }; ··· 1062 1098 1063 1099 Coqtail = buildVimPluginFrom2Nix { 1064 1100 pname = "Coqtail"; 1065 - version = "2021-09-17"; 1101 + version = "2021-10-25"; 1066 1102 src = fetchFromGitHub { 1067 1103 owner = "whonore"; 1068 1104 repo = "Coqtail"; 1069 - rev = "ca2ca0d874670ae78192b465501e9a061f9f8f06"; 1070 - sha256 = "07hg0sf2k1f3n67pj5abvalnd33vr1sdhyh1i7syk201a3kzj57n"; 1105 + rev = "8afb9c8b78fa22913179e35a5711d52ea323e182"; 1106 + sha256 = "1g0zqfvr70bg8i07rpy1bdgyzsm9rgvc4fhyhw8cb5pk9y7m9bpj"; 1071 1107 }; 1072 1108 meta.homepage = "https://github.com/whonore/Coqtail/"; 1073 1109 }; ··· 1098 1134 1099 1135 crates-nvim = buildVimPluginFrom2Nix { 1100 1136 pname = "crates.nvim"; 1101 - version = "2021-10-04"; 1137 + version = "2021-10-25"; 1102 1138 src = fetchFromGitHub { 1103 1139 owner = "saecki"; 1104 1140 repo = "crates.nvim"; 1105 - rev = "ab2c491a941dda7fcec50fe58f472c024fac96e9"; 1106 - sha256 = "0h9d8i525cafxvdqxygfx9mchmcjlaq1kza3d4jiaa8azx9bfpzr"; 1141 + rev = "805a2c5cbb587a2a3f7532b59dc2eb205d6e1832"; 1142 + sha256 = "1rpslni5zvymnq06drjv7w6rap2z8md31r98s8fgvxxymgmzflys"; 1107 1143 }; 1108 1144 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1109 1145 }; ··· 1230 1266 1231 1267 defx-nvim = buildVimPluginFrom2Nix { 1232 1268 pname = "defx.nvim"; 1233 - version = "2021-10-15"; 1269 + version = "2021-10-24"; 1234 1270 src = fetchFromGitHub { 1235 1271 owner = "Shougo"; 1236 1272 repo = "defx.nvim"; 1237 - rev = "701b2a9b04055d056cd2e3e1f6f6fa555b0c4cb6"; 1238 - sha256 = "1q8nqg5dq3m3m884s67yv2i9b8m94myyx56xyw7f3g4b4ivcsyy4"; 1273 + rev = "b9d82e63a2f5f162d84b57d12ba346d8cd5eef5d"; 1274 + sha256 = "1klysn6c8mp8s9aw5x1zxqkdb1kwbirnrm627m9mhlmyms89djzm"; 1239 1275 }; 1240 1276 meta.homepage = "https://github.com/Shougo/defx.nvim/"; 1241 1277 }; ··· 1750 1786 1751 1787 falcon = buildVimPluginFrom2Nix { 1752 1788 pname = "falcon"; 1753 - version = "2021-07-23"; 1789 + version = "2021-10-25"; 1754 1790 src = fetchFromGitHub { 1755 1791 owner = "fenetikm"; 1756 1792 repo = "falcon"; 1757 - rev = "f734d08b7d8c59be372f0364cbdbb2e3b8884574"; 1758 - sha256 = "1gfswql15fpndxmkqgw5l3c15kpv2892bhmcc8hg3wwi6d8c8g3i"; 1793 + rev = "0ecdf0fbeb441d7c4134fb28f9f5f6a3cfc1e837"; 1794 + sha256 = "1nnxps0aa5bv6gkz5gfj7a0yaj9a4f81grfaijvanlw0cxa2f51w"; 1759 1795 }; 1760 1796 meta.homepage = "https://github.com/fenetikm/falcon/"; 1761 1797 }; ··· 1822 1858 1823 1859 fern-vim = buildVimPluginFrom2Nix { 1824 1860 pname = "fern.vim"; 1825 - version = "2021-10-16"; 1861 + version = "2021-10-24"; 1826 1862 src = fetchFromGitHub { 1827 1863 owner = "lambdalisue"; 1828 1864 repo = "fern.vim"; 1829 - rev = "41197d23b2975fb373b0affc090ff4fe52a7429c"; 1830 - sha256 = "0djjik0q4pczw3r6v2xpmww1wv6rw69jxmdpnwfxss2fdpz5a9wl"; 1865 + rev = "338c7190a535cc5cf82e9d7443964b2e4f8bf97f"; 1866 + sha256 = "1d74k0mgf8axsnksq5dh3zlangabwdx7vwfi05wx0q7vkxm545d4"; 1831 1867 }; 1832 1868 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 1833 1869 }; ··· 2531 2567 2532 2568 indent-blankline-nvim = buildVimPluginFrom2Nix { 2533 2569 pname = "indent-blankline.nvim"; 2534 - version = "2021-10-22"; 2570 + version = "2021-10-24"; 2535 2571 src = fetchFromGitHub { 2536 2572 owner = "lukas-reineke"; 2537 2573 repo = "indent-blankline.nvim"; 2538 - rev = "cefd4ab194072ca608c2bc8e51f15882d6f1854e"; 2539 - sha256 = "13ljp3dri9wz1y2l1d1va1qf7bzdcvhanj2bafv06i4mjcp3i73v"; 2574 + rev = "ec24675a055f34ba3fa30e5e2855b2e4480347ca"; 2575 + sha256 = "1k3zj75lz72arx13hm08azdpqlkfjjdpsl2cb5b78bknm3prwnr5"; 2540 2576 }; 2541 2577 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 2542 2578 }; ··· 2820 2856 2821 2857 LeaderF = buildVimPluginFrom2Nix { 2822 2858 pname = "LeaderF"; 2823 - version = "2021-10-08"; 2859 + version = "2021-10-24"; 2824 2860 src = fetchFromGitHub { 2825 2861 owner = "Yggdroot"; 2826 2862 repo = "LeaderF"; 2827 - rev = "869a4005f63eba5a9e6e175bca0c50d73be48e2d"; 2828 - sha256 = "08yf8cqnzbm5cb5s2ynhj15l2lw73xhmfab15jnfyx14jd9pgyk6"; 2863 + rev = "48fbae95f5ba26affb490488eb606ff127ccb0da"; 2864 + sha256 = "0f2m2b8hwpyl74f6zl2n6x4d8yimi1pqy02alkwiwrm5y6x469sc"; 2829 2865 }; 2830 2866 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 2831 2867 }; ··· 2964 3000 2965 3001 lightspeed-nvim = buildVimPluginFrom2Nix { 2966 3002 pname = "lightspeed.nvim"; 2967 - version = "2021-10-23"; 3003 + version = "2021-10-24"; 2968 3004 src = fetchFromGitHub { 2969 3005 owner = "ggandor"; 2970 3006 repo = "lightspeed.nvim"; 2971 - rev = "b2e9a06a84623c3e9dcd81a9ecb3155662f392f6"; 2972 - sha256 = "0x0axm9qbadc4d264synxlfv5gr8zmf2xzs2vcich1zrxavq8bgr"; 3007 + rev = "0a40c82fea060709b95b926cd0fe1bf1229e2900"; 3008 + sha256 = "1wvcd4nix9variddhfpn9mak5m2rskhc4vgfwy4pi3hrrwixjlyh"; 2973 3009 }; 2974 3010 meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; 2975 3011 }; ··· 3060 3096 3061 3097 lsp_signature-nvim = buildVimPluginFrom2Nix { 3062 3098 pname = "lsp_signature.nvim"; 3063 - version = "2021-10-23"; 3099 + version = "2021-10-25"; 3064 3100 src = fetchFromGitHub { 3065 3101 owner = "ray-x"; 3066 3102 repo = "lsp_signature.nvim"; 3067 - rev = "fddd3f958af06c0239a9b019cb2e180a93cb6a9c"; 3068 - sha256 = "19fd5fc3336jlhari9yzm24wkgk7c4ycqzd3s706m9w7d05m004d"; 3103 + rev = "6469c55ce7afc8cdfb6d0b6b3fbfd331bcc26410"; 3104 + sha256 = "05gwpgzxb8swb4x5brwqipbdmc24v1j9zc2x0nv4ivwchlal6n48"; 3069 3105 }; 3070 3106 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3071 3107 }; ··· 3164 3200 sha256 = "0bfkcfjqg2jqm4ss16ks1mfnlnpyg1l4l18g7pagw1dfka14y8fg"; 3165 3201 }; 3166 3202 meta.homepage = "https://github.com/iamcco/markdown-preview.nvim/"; 3203 + }; 3204 + 3205 + marks-nvim = buildVimPluginFrom2Nix { 3206 + pname = "marks.nvim"; 3207 + version = "2021-10-23"; 3208 + src = fetchFromGitHub { 3209 + owner = "chentau"; 3210 + repo = "marks.nvim"; 3211 + rev = "15b6960d0ad9c578fd23b8caa5acfee0d09e4600"; 3212 + sha256 = "0khw541h2x39q4a1cx96019gdfmy1m0xgkbbfqhagr02gkm8dzy4"; 3213 + }; 3214 + meta.homepage = "https://github.com/chentau/marks.nvim/"; 3167 3215 }; 3168 3216 3169 3217 matchit-zip = buildVimPluginFrom2Nix { ··· 3552 3600 3553 3601 neogit = buildVimPluginFrom2Nix { 3554 3602 pname = "neogit"; 3555 - version = "2021-10-21"; 3603 + version = "2021-10-25"; 3556 3604 src = fetchFromGitHub { 3557 3605 owner = "TimUntersberger"; 3558 3606 repo = "neogit"; 3559 - rev = "495ae477caa40b467e8b01aa83b5d240fabf13fa"; 3560 - sha256 = "16kbzqgk3pbwkyyrzg461c7vw9rj7sa8hczv74ai4393cgcil38m"; 3607 + rev = "86f4a4daa278a00a311765eac17fb45e1e5688ae"; 3608 + sha256 = "16xax1gyni7qrrscq2lqsgsd271sb6y667rg395wwqhrgq98zd6j"; 3561 3609 }; 3562 3610 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 3563 3611 }; ··· 3948 3996 3949 3997 nvim-autopairs = buildVimPluginFrom2Nix { 3950 3998 pname = "nvim-autopairs"; 3951 - version = "2021-10-21"; 3999 + version = "2021-10-25"; 3952 4000 src = fetchFromGitHub { 3953 4001 owner = "windwp"; 3954 4002 repo = "nvim-autopairs"; 3955 - rev = "3b1b99028340a3b31c620887b8f5b99f4193157c"; 3956 - sha256 = "0ax5i7jjp1dmcywch8392vma91rk5cmi5201lhspggl8mawkcmbs"; 4003 + rev = "fdeb794ee7c4bbf4ea13b23cea3beb823f6ce88a"; 4004 + sha256 = "1dgm3krnz476lpj96z3sw2lqgpfrfg9hhbbc628nh6w3zsk9npyk"; 3957 4005 }; 3958 4006 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 3959 4007 }; ··· 3972 4020 3973 4021 nvim-bqf = buildVimPluginFrom2Nix { 3974 4022 pname = "nvim-bqf"; 3975 - version = "2021-10-19"; 4023 + version = "2021-10-24"; 3976 4024 src = fetchFromGitHub { 3977 4025 owner = "kevinhwang91"; 3978 4026 repo = "nvim-bqf"; 3979 - rev = "a57e44b31fe65665a29dd44597dbab0801723d61"; 3980 - sha256 = "15cxpx5vdg9lqs9h7w3azg54z1di9hqzy7bkk0kw813mv7n0bcn0"; 4027 + rev = "ead9c8d0e56454475de5b07acdb175d913190940"; 4028 + sha256 = "1zj2gxq5vys5fnp8qnk9w2x0g3s106ml423k931mzad2451n57h9"; 3981 4029 }; 3982 4030 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 3983 4031 }; ··· 4008 4056 4009 4057 nvim-cmp = buildVimPluginFrom2Nix { 4010 4058 pname = "nvim-cmp"; 4011 - version = "2021-10-22"; 4059 + version = "2021-10-25"; 4012 4060 src = fetchFromGitHub { 4013 4061 owner = "hrsh7th"; 4014 4062 repo = "nvim-cmp"; 4015 - rev = "b185e303bd00390325c582d0366f85298cf84299"; 4016 - sha256 = "12ssag1nlg01vy1x8ip8mfclcklmvkysf3mvg6223scawy2kggk7"; 4063 + rev = "ea6dde8081be16b334fa614930a8772d6088ec9b"; 4064 + sha256 = "0ry1iy5d4ij77b9ib4viqqmbs3yi4i92pr8sj9yzd3yn7dwl1hda"; 4017 4065 }; 4018 4066 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 4019 4067 }; ··· 4224 4272 4225 4273 nvim-lspconfig = buildVimPluginFrom2Nix { 4226 4274 pname = "nvim-lspconfig"; 4227 - version = "2021-10-22"; 4275 + version = "2021-10-24"; 4228 4276 src = fetchFromGitHub { 4229 4277 owner = "neovim"; 4230 4278 repo = "nvim-lspconfig"; 4231 - rev = "2fb4b6a2f3188f12bad5196e1978528d8bd1c733"; 4232 - sha256 = "1rcijb0hh85sd0j659yinfiaz49ga5fwpragfsfdib6w12nlyiyx"; 4279 + rev = "7dc04ca9ae28bded22f4c78cb29dce09b6643f38"; 4280 + sha256 = "0bs66idzq4f0infbazr1w1pl9h2chm13lds06znxvfgi30ispd32"; 4233 4281 }; 4234 4282 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 4235 4283 }; ··· 4248 4296 4249 4297 nvim-nonicons = buildVimPluginFrom2Nix { 4250 4298 pname = "nvim-nonicons"; 4251 - version = "2021-09-14"; 4299 + version = "2021-10-25"; 4252 4300 src = fetchFromGitHub { 4253 4301 owner = "yamatsum"; 4254 4302 repo = "nvim-nonicons"; 4255 - rev = "c38ff086e0157b91d0951f83741170bdcf501a9d"; 4256 - sha256 = "1vjh82kjs4ki61r0lnidd8xpj6zvc0j4k76fbs7fy0ndzsbph6gw"; 4303 + rev = "27465e577d7871d4029e01eb7db95ca969c2054c"; 4304 + sha256 = "1kf2093641pyxamhv0dldkm6lml1asbq3vyicgnzxbf3qks3v5xk"; 4257 4305 }; 4258 4306 meta.homepage = "https://github.com/yamatsum/nvim-nonicons/"; 4259 4307 }; ··· 4332 4380 4333 4381 nvim-tree-lua = buildVimPluginFrom2Nix { 4334 4382 pname = "nvim-tree.lua"; 4335 - version = "2021-10-23"; 4383 + version = "2021-10-24"; 4336 4384 src = fetchFromGitHub { 4337 4385 owner = "kyazdani42"; 4338 4386 repo = "nvim-tree.lua"; 4339 - rev = "6cadd3a9d7202524648d5fcbf5e6da9ddd32cd19"; 4340 - sha256 = "0nnyqq969lnzakhj1wnf9llz0www358b4cj2ch6vjaih3zvw9zva"; 4387 + rev = "fd3969ec986d739d9ab01b8ec5de051c45b475d2"; 4388 + sha256 = "05d4d0x2cgls4a9j9r3gxkvyq2l66qfw5yxx9qzvnp06852j2azl"; 4341 4389 }; 4342 4390 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 4343 4391 }; ··· 4536 4584 4537 4585 onedarkpro-nvim = buildVimPluginFrom2Nix { 4538 4586 pname = "onedarkpro.nvim"; 4539 - version = "2021-10-22"; 4587 + version = "2021-10-24"; 4540 4588 src = fetchFromGitHub { 4541 4589 owner = "olimorris"; 4542 4590 repo = "onedarkpro.nvim"; 4543 - rev = "fb655cbeb5f6e3ddf2e810e50fa0f32206f08b13"; 4544 - sha256 = "15fniwdvd5pas27zbivxkph6qcdiar6rw4njn7jblfm07c08wvxc"; 4591 + rev = "7d5dbd596e359e9402fa8f06753458c0fc77342a"; 4592 + sha256 = "0klp9pj75rlka5qizc5jyikffikxcxr5987snapc6ra52f9ik2qi"; 4545 4593 }; 4546 4594 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 4547 4595 }; ··· 4704 4752 4705 4753 plenary-nvim = buildVimPluginFrom2Nix { 4706 4754 pname = "plenary.nvim"; 4707 - version = "2021-10-21"; 4755 + version = "2021-10-24"; 4708 4756 src = fetchFromGitHub { 4709 4757 owner = "nvim-lua"; 4710 4758 repo = "plenary.nvim"; 4711 - rev = "de5acdcb595f0a97bec874693008c94f94b57060"; 4712 - sha256 = "1g0j2nnmnfkmbirpqg751pl1qxrbx6fx39r9ak0f7sl9rm8322s7"; 4759 + rev = "b8c8d23c453b73856a4857da8f35a9219c8b0ba0"; 4760 + sha256 = "1vnlq4xhpl30zmm3qawz21bs2ndn7qfizn9s011yqc76jbnk5w89"; 4713 4761 }; 4714 4762 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 4715 4763 }; ··· 4897 4945 4898 4946 rainbow = buildVimPluginFrom2Nix { 4899 4947 pname = "rainbow"; 4900 - version = "2021-10-18"; 4948 + version = "2021-10-25"; 4901 4949 src = fetchFromGitHub { 4902 4950 owner = "luochen1990"; 4903 4951 repo = "rainbow"; 4904 - rev = "e96f502eb0e88968858a2cb0348c8e2253637bcc"; 4905 - sha256 = "02lj86yrqjpcs83z4qfh3nhiy4nsq1fdrrcy3x56701zsiml511i"; 4952 + rev = "54c79a24725af3a15d3aad20f70a56c7abbd46c3"; 4953 + sha256 = "1bd8nqlcyhxxf02p4a16gayqkdh1010b7mnlfvzy69iaf2xclyx5"; 4906 4954 }; 4907 4955 meta.homepage = "https://github.com/luochen1990/rainbow/"; 4908 4956 }; ··· 5716 5764 5717 5765 taskwiki = buildVimPluginFrom2Nix { 5718 5766 pname = "taskwiki"; 5719 - version = "2021-10-10"; 5767 + version = "2021-10-24"; 5720 5768 src = fetchFromGitHub { 5721 5769 owner = "tools-life"; 5722 5770 repo = "taskwiki"; 5723 - rev = "25d47074a5bd34010648a23923432d2290e32dd7"; 5724 - sha256 = "1f7gprn1xjs2pk9kaixszhqxj5mpvg33vibhlijk830xj7gw9gcx"; 5771 + rev = "925d8ed2f522229d32d4cc39486080c244d20f7a"; 5772 + sha256 = "1vifp4j2rkl6568ax3dsx42djl0gvkxaqgxlwzrnlkygmrwv76vn"; 5725 5773 }; 5726 5774 meta.homepage = "https://github.com/tools-life/taskwiki/"; 5727 5775 }; ··· 5861 5909 5862 5910 telescope-nvim = buildVimPluginFrom2Nix { 5863 5911 pname = "telescope.nvim"; 5864 - version = "2021-10-21"; 5912 + version = "2021-10-24"; 5865 5913 src = fetchFromGitHub { 5866 5914 owner = "nvim-telescope"; 5867 5915 repo = "telescope.nvim"; 5868 - rev = "f56222738b719f5ae94ed85fdf080690371da0b9"; 5869 - sha256 = "0sprnp1636srwa0vs93af3qbrqnhxdmrb6vmagdr66ypk8fpbibg"; 5916 + rev = "782d802d44077e07f80189560f91c86370f11e39"; 5917 + sha256 = "12ycl2mf1k838aj566zrzisvsl5050iwqjnqz002hg5qpvphc48y"; 5870 5918 }; 5871 5919 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 5872 5920 }; ··· 8240 8288 8241 8289 vim-jsdoc = buildVimPluginFrom2Nix { 8242 8290 pname = "vim-jsdoc"; 8243 - version = "2021-10-09"; 8291 + version = "2021-10-25"; 8244 8292 src = fetchFromGitHub { 8245 8293 owner = "heavenshell"; 8246 8294 repo = "vim-jsdoc"; 8247 - rev = "854e51531b3da28ccbd8e853dd947fafa72b035e"; 8248 - sha256 = "09pbg2301xyhpa4wcmw2ki3gmrz5l8f0hj9fsi32rwzfiv3qlkaj"; 8295 + rev = "27af18abfe60990410a10ade1b61b8b6350913d9"; 8296 + sha256 = "0qc12dhp2kfjkmdcxajn0gy9z5vapylmnamd8lyhk2v8hkkzr8y4"; 8249 8297 }; 8250 8298 meta.homepage = "https://github.com/heavenshell/vim-jsdoc/"; 8251 8299 }; ··· 9765 9813 9766 9814 vim-snippets = buildVimPluginFrom2Nix { 9767 9815 pname = "vim-snippets"; 9768 - version = "2021-10-17"; 9816 + version = "2021-10-24"; 9769 9817 src = fetchFromGitHub { 9770 9818 owner = "honza"; 9771 9819 repo = "vim-snippets"; 9772 - rev = "c28bef69fdb26825a93ac1e90ca6f5ba19116d88"; 9773 - sha256 = "1fg60jfm5bw1m20133vl06nb8z9ckrwqq37jz493xi34j5fymi4w"; 9820 + rev = "48863461962c731cc3f701abd558ccad73a30951"; 9821 + sha256 = "1nnn6wzppxxrb72gz1sfj1r9djs69fz5vk95xigk564sp70wn8cl"; 9774 9822 }; 9775 9823 meta.homepage = "https://github.com/honza/vim-snippets/"; 9776 9824 }; ··· 10186 10234 10187 10235 vim-tpipeline = buildVimPluginFrom2Nix { 10188 10236 pname = "vim-tpipeline"; 10189 - version = "2021-10-23"; 10237 + version = "2021-10-24"; 10190 10238 src = fetchFromGitHub { 10191 10239 owner = "vimpostor"; 10192 10240 repo = "vim-tpipeline"; 10193 - rev = "03bc6aa0a81f5239a22b7c1e61280a898f39ab7c"; 10194 - sha256 = "13hfwv3yb1qp4ryqg62yv79zz2pv3sb0ccricbld7kb4a8qi9q7x"; 10241 + rev = "7471de1e3d7db039886a2e6317513e21f9ad482a"; 10242 + sha256 = "0rdn4548za44kzyddh6w0kgjgdxvim0k2s3ap37c5g062vka4dj4"; 10195 10243 }; 10196 10244 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 10197 10245 }; ··· 10679 10727 10680 10728 vimtex = buildVimPluginFrom2Nix { 10681 10729 pname = "vimtex"; 10682 - version = "2021-10-21"; 10730 + version = "2021-10-25"; 10683 10731 src = fetchFromGitHub { 10684 10732 owner = "lervag"; 10685 10733 repo = "vimtex"; 10686 - rev = "60bec44a17f72f9bfbc04d1ea9e6f7752e240502"; 10687 - sha256 = "1h7rp0fsc49af531d7hv8v738s07fv17xx6xlpkixi4rydlsmbv1"; 10734 + rev = "3bbd6ea0c7ecb2b95d6d720a9a2f2e8e5802c5ff"; 10735 + sha256 = "1rr65xh3pb8zgrfdqh1794qk1lj4nq5772v9cj4x3g318lfll55y"; 10688 10736 }; 10689 10737 meta.homepage = "https://github.com/lervag/vimtex/"; 10690 10738 };
+5 -1
pkgs/misc/vim-plugins/vim-plugin-names
··· 59 59 ccarpita/rtorrent-syntax-file 60 60 cespare/vim-toml@main 61 61 chaoren/vim-wordmotion 62 + chentau/marks.nvim 62 63 chikatoike/concealedyank.vim 63 64 chikatoike/sourcemap.vim 64 65 chkno/vim-haskell-module-name ··· 229 230 hrsh7th/cmp-emoji@main 230 231 hrsh7th/cmp-nvim-lsp@main 231 232 hrsh7th/cmp-nvim-lua@main 233 + hrsh7th/cmp-omni@main 232 234 hrsh7th/cmp-path@main 233 235 hrsh7th/cmp-vsnip@main 234 236 hrsh7th/nvim-cmp@main ··· 265 267 jasonccox/vim-wayland-clipboard 266 268 jaxbot/semantic-highlight.vim 267 269 JazzCore/ctrlp-cmatcher 270 + jc-doyle/cmp-pandoc-references 268 271 jceb/vim-hier 269 272 jceb/vim-orgmode 270 273 jeetsukumaran/vim-buffergator ··· 393 396 LucHermitte/lh-vim-lib 394 397 ludovicchabant/vim-gutentags 395 398 ludovicchabant/vim-lawrencium 399 + lukas-reineke/cmp-under-comparator 396 400 lukas-reineke/indent-blankline.nvim 397 401 lukaszkorecki/workflowish 398 402 lumiliet/vim-twig ··· 457 461 mileszs/ack.vim 458 462 milkypostman/vim-togglelist 459 463 mindriot101/vim-yapf 460 - mk12/vim-lean 464 + mk12/vim-lean@main 461 465 mkasa/lushtags 462 466 mlr-msft/vim-loves-dafny 463 467 moll/vim-bbye
+1 -1
pkgs/os-specific/linux/libbpf/default.nix
··· 13 13 owner = "libbpf"; 14 14 repo = "libbpf"; 15 15 rev = "v${version}"; 16 - sha256 = "08mg5agd40qaz1hz5rqqhf0wgfna06f7l01z5v06y995xdmw2v9g"; 16 + sha256 = "sha256-L23Ba+slJW/ALj8AepwByrrHgYMY5/Jh+AoD0p4qryI="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ pkg-config ];
+13 -6
pkgs/tools/audio/yabridge/default.nix
··· 1 1 { lib 2 2 , multiStdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , substituteAll 5 6 , meson 6 7 , ninja ··· 47 48 48 49 # Derived from vst3.wrap 49 50 vst3 = rec { 50 - version = "3.7.2_build_28-patched"; 51 + version = "3.7.3_build_20-patched"; 51 52 src = fetchFromGitHub { 52 53 owner = "robbert-vdh"; 53 54 repo = "vst3sdk"; 54 55 rev = "v${version}"; 55 56 fetchSubmodules = true; 56 - sha256 = "sha256-39pvfcg4fvf7DAbAPzEHA1ja1LFL6r88nEwNYwaDC8w="; 57 + sha256 = "sha256-m2y7No7BNbIjLNgdAqIAEr6UuAZZ/wwM2+iPWKK17gQ="; 57 58 }; 58 59 }; 59 60 in multiStdenv.mkDerivation rec { 60 61 pname = "yabridge"; 61 - version = "3.5.2"; 62 + version = "3.6.0"; 62 63 63 64 # NOTE: Also update yabridgectl's cargoHash when this is updated 64 65 src = fetchFromGitHub { 65 66 owner = "robbert-vdh"; 66 67 repo = pname; 67 68 rev = version; 68 - hash = "sha256-SLiksc8lQo2A5sefKbcaJyhi8vPdp2p2Jbc7bvM0sDw="; 69 + hash = "sha256-lgSkZ0i2DojP6HXJP3cC5FUtfv7R/nsSiHT60bPSyLc="; 69 70 }; 70 71 71 72 # Unpack subproject sources ··· 85 86 src = ./hardcode-wine.patch; 86 87 inherit wine; 87 88 }) 89 + # Remove with next yabridge update 90 + (fetchpatch { 91 + name = "fix-for-wine-6.20.patch"; 92 + url = "https://github.com/robbert-vdh/yabridge/commit/5be149cb525a638f7fc3adf84918c8239ee50ecf.patch"; 93 + sha256 = "sha256-x/gfn4mKZIGQ4M0o/0LlZF8i8wZDx/bkwf8wp0BGDBo="; 94 + }) 88 95 ]; 89 96 90 97 postPatch = '' ··· 121 128 ]; 122 129 123 130 preConfigure = '' 124 - sed -i "214s|xcb.*|xcb_32bit_dep = winegcc.find_library('xcb', dirs: [ '${lib.getLib pkgsi686Linux.xorg.libxcb}/lib', ])|" meson.build 125 - sed -i "192 i '${lib.getLib pkgsi686Linux.boost}/lib'," meson.build 131 + sed -i "221s|xcb.*|xcb_32bit_dep = winegcc.find_library('xcb', dirs: [ '${lib.getLib pkgsi686Linux.xorg.libxcb}/lib', ])|" meson.build 132 + sed -i "199 i '${lib.getLib pkgsi686Linux.boost}/lib'," meson.build 126 133 ''; 127 134 128 135 installPhase = ''
+1 -1
pkgs/tools/audio/yabridgectl/default.nix
··· 11 11 12 12 src = yabridge.src; 13 13 sourceRoot = "source/tools/yabridgectl"; 14 - cargoHash = "sha256-2x3qB0LbCBUZ4zqKIXPtYdWis+4QANTaJdFvoFbccGE="; 14 + cargoHash = "sha256-20sh9yovZHqoUk+3aVs/D8SWY29FdPjX+NeJt35KfWM="; 15 15 16 16 patches = [ 17 17 # By default, yabridgectl locates libyabridge.so by using
+2 -2
pkgs/tools/misc/svtplay-dl/default.nix
··· 9 9 10 10 in stdenv.mkDerivation rec { 11 11 pname = "svtplay-dl"; 12 - version = "4.5"; 12 + version = "4.7"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "spaam"; 16 16 repo = "svtplay-dl"; 17 17 rev = version; 18 - sha256 = "sha256-TiJWy5WU1VsseodfgfemAsUc5/hDwSlM03ITRYTvJbg="; 18 + sha256 = "19ajm4bf7knnchggfbajx0c29q4sj8ffsvqmgizgsjdz48ppx2yf"; 19 19 }; 20 20 21 21 pythonPaths = [ cryptography pyyaml requests ];
+2 -2
pkgs/tools/misc/sysz/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "sysz"; 5 - version = "1.3.0"; 5 + version = "1.4.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "joehillen"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "HNwsYE1Cv90IDi3A5PmRv3uHANR3ya+VOGBQ3+zkBLM="; 11 + sha256 = "sha256-X9vj6ILPUKFo/i50JNehM2GSDWfxTdroWGYJv765Cm4="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+7
pkgs/tools/networking/vde2/default.nix
··· 34 34 35 35 hardeningDisable = [ "format" ]; 36 36 37 + # Disable parallel build as it fails as: 38 + # make: *** No rule to make target '../../src/lib/libvdemgmt.la', 39 + # needed by 'libvdesnmp.la'. Stop. 40 + # Next release should address it with 41 + # https://github.com/virtualsquare/vde-2/commit/7dd9ed46d5dca125ca45d679ac9f3acbfb0f9300.patch 42 + enableParallelBuilding = false; 43 + 37 44 meta = with lib; { 38 45 homepage = "https://github.com/virtualsquare/vde-2"; 39 46 description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.10" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.11"
+20 -20
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 822dd1ef2b1a1171d62803add58ee2afce30ea06 4 - ref: refs/tags/6.1.10 3 + revision: 341b0cd1cdf69fe22345aea6c84ae11ba45e0d98 4 + ref: refs/tags/6.1.11 5 5 specs: 6 - metasploit-framework (6.1.10) 6 + metasploit-framework (6.1.11) 7 7 actionpack (~> 6.0) 8 8 activerecord (~> 6.0) 9 9 activesupport (~> 6.0) ··· 33 33 metasploit-model 34 34 metasploit-payloads (= 2.0.58) 35 35 metasploit_data_models 36 - metasploit_payloads-mettle (= 1.0.13) 36 + metasploit_payloads-mettle (= 1.0.15) 37 37 mqtt 38 38 msgpack 39 39 nessus_rest ··· 128 128 arel-helpers (2.12.1) 129 129 activerecord (>= 3.1.0, < 7) 130 130 aws-eventstream (1.2.0) 131 - aws-partitions (1.516.0) 132 - aws-sdk-core (3.121.1) 131 + aws-partitions (1.518.0) 132 + aws-sdk-core (3.121.3) 133 133 aws-eventstream (~> 1, >= 1.0.2) 134 134 aws-partitions (~> 1, >= 1.239.0) 135 135 aws-sigv4 (~> 1.1) 136 136 jmespath (~> 1.0) 137 - aws-sdk-ec2 (1.270.0) 138 - aws-sdk-core (~> 3, >= 3.120.0) 137 + aws-sdk-ec2 (1.271.0) 138 + aws-sdk-core (~> 3, >= 3.121.2) 139 139 aws-sigv4 (~> 1.1) 140 - aws-sdk-iam (1.61.0) 141 - aws-sdk-core (~> 3, >= 3.120.0) 140 + aws-sdk-iam (1.62.0) 141 + aws-sdk-core (~> 3, >= 3.121.2) 142 142 aws-sigv4 (~> 1.1) 143 - aws-sdk-kms (1.49.0) 144 - aws-sdk-core (~> 3, >= 3.120.0) 143 + aws-sdk-kms (1.50.0) 144 + aws-sdk-core (~> 3, >= 3.121.2) 145 145 aws-sigv4 (~> 1.1) 146 - aws-sdk-s3 (1.103.0) 147 - aws-sdk-core (~> 3, >= 3.120.0) 146 + aws-sdk-s3 (1.104.0) 147 + aws-sdk-core (~> 3, >= 3.121.2) 148 148 aws-sdk-kms (~> 1) 149 149 aws-sigv4 (~> 1.4) 150 150 aws-sigv4 (1.4.0) ··· 220 220 jmespath (1.4.0) 221 221 jsobfu (0.4.2) 222 222 rkelly-remix 223 - json (2.6.0) 223 + json (2.6.1) 224 224 little-plugger (1.1.4) 225 225 logging (2.3.0) 226 226 little-plugger (~> 1.1) ··· 258 258 railties (~> 6.0) 259 259 recog (~> 2.0) 260 260 webrick 261 - metasploit_payloads-mettle (1.0.13) 261 + metasploit_payloads-mettle (1.0.15) 262 262 method_source (1.0.0) 263 263 mini_portile2 (2.6.1) 264 264 minitest (5.14.4) ··· 298 298 public_suffix (4.0.6) 299 299 puma (5.5.2) 300 300 nio4r (~> 2.0) 301 - racc (1.5.2) 301 + racc (1.6.0) 302 302 rack (2.2.3) 303 303 rack-protection (2.1.0) 304 304 rack ··· 349 349 rex-arch 350 350 rex-ole (0.1.7) 351 351 rex-text 352 - rex-powershell (0.1.93) 352 + rex-powershell (0.1.94) 353 353 rex-random_identifier 354 354 rex-text 355 355 ruby-rc4 ··· 405 405 ttfunk (1.7.0) 406 406 tzinfo (2.0.4) 407 407 concurrent-ruby (~> 1.0) 408 - tzinfo-data (1.2021.3) 408 + tzinfo-data (1.2021.5) 409 409 tzinfo (>= 1.0.0) 410 410 unf (0.1.4) 411 411 unf_ext ··· 433 433 activesupport (>= 4.2, < 7.0) 434 434 xmlrpc (0.3.2) 435 435 webrick 436 - zeitwerk (2.4.2) 436 + zeitwerk (2.5.1) 437 437 438 438 PLATFORMS 439 439 ruby
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 14 14 }; 15 15 in stdenv.mkDerivation rec { 16 16 pname = "metasploit-framework"; 17 - version = "6.1.10"; 17 + version = "6.1.11"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "rapid7"; 21 21 repo = "metasploit-framework"; 22 22 rev = version; 23 - sha256 = "sha256-VdnczTauHKYexXZs6U5F5v4DP8lJb8wCDy6yiPdEavI="; 23 + sha256 = "sha256-0C93rxVWHHZha2oRKanTm4S0qig3qZreFV08PLwShSw="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ makeWrapper ];
+27 -27
pkgs/tools/security/metasploit/gemset.nix
··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "1jx44f1hc41712k8fqmzrbpqs2j9yl0msdqcmmfp0pirkbqw6ri0"; 107 + sha256 = "18jjc7sxpdip10iyg0sn89ywvi2iqnhi225df7j6gs0fm25azkfw"; 108 108 type = "gem"; 109 109 }; 110 - version = "1.516.0"; 110 + version = "1.518.0"; 111 111 }; 112 112 aws-sdk-core = { 113 113 groups = ["default"]; 114 114 platforms = []; 115 115 source = { 116 116 remotes = ["https://rubygems.org"]; 117 - sha256 = "0njlpd4w008whz7bd7rrqs3k1m6xbm33hblzwh67pnk1frabv4q6"; 117 + sha256 = "15x3qcmh81hf92x0gcj0h0h7yhnlzdqs6wdml56i3cq0nz9kxhs4"; 118 118 type = "gem"; 119 119 }; 120 - version = "3.121.1"; 120 + version = "3.121.3"; 121 121 }; 122 122 aws-sdk-ec2 = { 123 123 groups = ["default"]; 124 124 platforms = []; 125 125 source = { 126 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "1m46n4fn505l0qqwamc5gk88h6aqvjqc7j0pkrcngxcgh5r7hcvf"; 127 + sha256 = "0k85khm2c53y2sq29c9rg5kmjm1fnw2glgpjsl6hbh8cq3ciaain"; 128 128 type = "gem"; 129 129 }; 130 - version = "1.270.0"; 130 + version = "1.271.0"; 131 131 }; 132 132 aws-sdk-iam = { 133 133 groups = ["default"]; 134 134 platforms = []; 135 135 source = { 136 136 remotes = ["https://rubygems.org"]; 137 - sha256 = "1m5cc26kkh83f6c05y2a07nfz3dsdvkdf7jfrjkrhlkmdq9hha0m"; 137 + sha256 = "0vnhcgr5pjkkplh4z2lbwp4w13kbwp236p0y1b1qiia28ra2isxv"; 138 138 type = "gem"; 139 139 }; 140 - version = "1.61.0"; 140 + version = "1.62.0"; 141 141 }; 142 142 aws-sdk-kms = { 143 143 groups = ["default"]; 144 144 platforms = []; 145 145 source = { 146 146 remotes = ["https://rubygems.org"]; 147 - sha256 = "15iar7b74lnvw1cafacp8vc63xy3zxa8zxmranfssa37mhk53byi"; 147 + sha256 = "0prj048lcbkmxc6k2p7vibn3vw7cy1104dljqjvmwz12h9ds1qlf"; 148 148 type = "gem"; 149 149 }; 150 - version = "1.49.0"; 150 + version = "1.50.0"; 151 151 }; 152 152 aws-sdk-s3 = { 153 153 groups = ["default"]; 154 154 platforms = []; 155 155 source = { 156 156 remotes = ["https://rubygems.org"]; 157 - sha256 = "1xsa6nsdflwkm2wzmsr6kiy4am44f9f9459lbkrwxlcl166g05jq"; 157 + sha256 = "1h8yzrzinckrfs8ahzqg7fs356vs1ksi5bva1bpfp0i65fjh9mw0"; 158 158 type = "gem"; 159 159 }; 160 - version = "1.103.0"; 160 + version = "1.104.0"; 161 161 }; 162 162 aws-sigv4 = { 163 163 groups = ["default"]; ··· 594 594 platforms = []; 595 595 source = { 596 596 remotes = ["https://rubygems.org"]; 597 - sha256 = "0a7p95md8j8lbgxx9dzygysxmrg1s80895f46f1y47k9kq9q56ry"; 597 + sha256 = "1z9grvjyfz16ag55hg522d3q4dh07hf391sf9s96npc0vfi85xkz"; 598 598 type = "gem"; 599 599 }; 600 - version = "2.6.0"; 600 + version = "2.6.1"; 601 601 }; 602 602 little-plugger = { 603 603 groups = ["default"]; ··· 664 664 platforms = []; 665 665 source = { 666 666 fetchSubmodules = false; 667 - rev = "822dd1ef2b1a1171d62803add58ee2afce30ea06"; 668 - sha256 = "1wka8kvqicif1w1cqvs9r4zh7zp68m7fjv3nqlgac75f6v6xrnam"; 667 + rev = "341b0cd1cdf69fe22345aea6c84ae11ba45e0d98"; 668 + sha256 = "0b452ay3qg2x2pg9ma9p52mb914vsfljj4baddhpc72n2nppfbyh"; 669 669 type = "git"; 670 670 url = "https://github.com/rapid7/metasploit-framework"; 671 671 }; 672 - version = "6.1.10"; 672 + version = "6.1.11"; 673 673 }; 674 674 metasploit-model = { 675 675 groups = ["default"]; ··· 706 706 platforms = []; 707 707 source = { 708 708 remotes = ["https://rubygems.org"]; 709 - sha256 = "108jm8nz4xs62k33w5frw15xadd17pbmwpczhvcpzh3bf54sihsr"; 709 + sha256 = "1kl7plipccqgrjlm6aqdnp1xz44f6hnb2qmljhqay8ln2kg9f1aa"; 710 710 type = "gem"; 711 711 }; 712 - version = "1.0.13"; 712 + version = "1.0.15"; 713 713 }; 714 714 method_source = { 715 715 groups = ["default"]; ··· 987 987 platforms = []; 988 988 source = { 989 989 remotes = ["https://rubygems.org"]; 990 - sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g"; 990 + sha256 = "0la56m0z26j3mfn1a9lf2l03qx1xifanndf9p3vx1azf6sqy7v9d"; 991 991 type = "gem"; 992 992 }; 993 - version = "1.5.2"; 993 + version = "1.6.0"; 994 994 }; 995 995 rack = { 996 996 groups = ["default"]; ··· 1197 1197 platforms = []; 1198 1198 source = { 1199 1199 remotes = ["https://rubygems.org"]; 1200 - sha256 = "1qpf4na2c57bypyxna7pqll8ym643cydh347v5zvlxknripjhjyz"; 1200 + sha256 = "0ib75d16j8z0chni7m9v74xpxf13164hh8kr7v7yg93zpsqxw6p5"; 1201 1201 type = "gem"; 1202 1202 }; 1203 - version = "0.1.93"; 1203 + version = "0.1.94"; 1204 1204 }; 1205 1205 rex-random_identifier = { 1206 1206 groups = ["default"]; ··· 1477 1477 platforms = []; 1478 1478 source = { 1479 1479 remotes = ["https://rubygems.org"]; 1480 - sha256 = "1f9wlg8p1p1wa86hcskiy58abbdysdqwr4pv2dmkhkfbi94f1lmr"; 1480 + sha256 = "0w1iyvw0m2xvdr4654jnn1g27jwj84y94dvaj1k2p3lcrvndm698"; 1481 1481 type = "gem"; 1482 1482 }; 1483 - version = "1.2021.3"; 1483 + version = "1.2021.5"; 1484 1484 }; 1485 1485 unf = { 1486 1486 groups = ["default"]; ··· 1607 1607 platforms = []; 1608 1608 source = { 1609 1609 remotes = ["https://rubygems.org"]; 1610 - sha256 = "1746czsjarixq0x05f7p3hpzi38ldg6wxnxxw74kbjzh1sdjgmpl"; 1610 + sha256 = "18l4r6layck0d80ydc692mv1lxak5xbf6w2paj1x7m2ggbggzxgj"; 1611 1611 type = "gem"; 1612 1612 }; 1613 - version = "2.4.2"; 1613 + version = "2.5.1"; 1614 1614 }; 1615 1615 }
+1 -1
pkgs/tools/security/metasploit/update.sh
··· 4 4 set -eu -o pipefail 5 5 cd "$(dirname "$(readlink -f "$0")")" 6 6 7 - latest=$(curl https://github.com/rapid7/metasploit-framework/releases.atom | xmlstarlet sel -N atom="http://www.w3.org/2005/Atom" -t -m /atom:feed/atom:entry -v atom:title -n | head -n1) 7 + latest=$(curl https://github.com/rapid7/metasploit-framework/tags.atom | xmlstarlet sel -N atom="http://www.w3.org/2005/Atom" -t -m /atom:feed/atom:entry -v atom:title -n | head -n1) 8 8 echo "Updating metasploit to $latest" 9 9 10 10 sed -i "s#refs/tags/.*#refs/tags/$latest\"#" Gemfile
+4 -3
pkgs/tools/security/step-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "step-cli"; 8 - version = "0.17.6"; 8 + version = "0.17.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "smallstep"; 12 12 repo = "cli"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-xkdn6e8He/yVvTubi88tVpU8I0XNEeJSzosbkCUZODk="; 14 + sha256 = "sha256-Qg71JcnA+20zme1ltG4J6qht4P46J5sHPjV3w4HCKPc="; 15 15 }; 16 16 17 17 ldflags = [ ··· 25 25 rm command/certificate/remote_test.go 26 26 ''; 27 27 28 - vendorSha256 = "sha256-/aN3lXc3mPk3wIpNVjBXz35NlWNg8tob8q2oJ7Az2Bs="; 28 + vendorSha256 = "sha256-kVvbSTybO23zb1ivCrjZqkM44ljPGD1GdBv76qCpTEQ="; 29 29 30 30 meta = with lib; { 31 31 description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc"; ··· 33 33 license = licenses.asl20; 34 34 maintainers = with maintainers; [ xfix ]; 35 35 platforms = platforms.linux ++ platforms.darwin; 36 + mainProgram = "step"; 36 37 }; 37 38 }
+3 -3
pkgs/tools/text/rust-petname/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rust-petname"; 5 - version = "1.1.1"; 5 + version = "1.1.2"; 6 6 7 7 src = fetchCrate { 8 8 inherit version; 9 9 crateName = "petname"; 10 - sha256 = "sha256-X1p9W+N0Nhh7CSh776ofzHmG0ayi5COLJjBncxmL8CM="; 10 + sha256 = "sha256-DfRWGwnWVJBcbW7aPEzgPd+gfldP+ypZlk8FcPZzp8g="; 11 11 }; 12 12 13 - cargoSha256 = "sha256-jxN2EKLjf9yKkhZ4wsH72sNdk6UYAcCUrg4+qx75bWs="; 13 + cargoSha256 = "sha256-tCVJX8NcbT+6t2kDeCMfcSDaq3O89ycj08bxTmp3JHs="; 14 14 15 15 meta = with lib; { 16 16 description = "Generate human readable random names";
+4
pkgs/top-level/all-packages.nix
··· 13187 13187 mpi = mpich; 13188 13188 }; 13189 13189 13190 + graphql-client = callPackage ../development/tools/graphql-client { 13191 + inherit (darwin.apple_sdk.frameworks) Security; 13192 + }; 13193 + 13190 13194 groovy = callPackage ../development/interpreters/groovy { }; 13191 13195 13192 13196 inherit (callPackages ../applications/networking/cluster/hadoop { })
+2
pkgs/top-level/python-packages.nix
··· 325 325 326 326 aiokef = callPackage ../development/python-modules/aiokef { }; 327 327 328 + aiolookin = callPackage ../development/python-modules/aiolookin { }; 329 + 328 330 aiolifx = callPackage ../development/python-modules/aiolifx { }; 329 331 330 332 aiolifx-effects = callPackage ../development/python-modules/aiolifx-effects { };