nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge master into haskell-updates

authored by

github-actions[bot] and committed by
GitHub
71fdb4ca caa10b0b

+1977 -1529
+1 -1
lib/default.nix
··· 108 108 makeScope makeScopeWithSplicing; 109 109 inherit (self.meta) addMetaAttrs dontDistribute setName updateName 110 110 appendToName mapDerivationAttrset setPrio lowPrio lowPrioSet hiPrio 111 - hiPrioSet getLicenseFromSpdxId; 111 + hiPrioSet getLicenseFromSpdxId getExe; 112 112 inherit (self.sources) pathType pathIsDirectory cleanSourceFilter 113 113 cleanSource sourceByRegex sourceFilesBySuffices 114 114 commitIdFromGitRepo cleanSourceWith pathHasContext
+14
lib/meta.nix
··· 126 126 lib.warn "getLicenseFromSpdxId: No license matches the given SPDX ID: ${licstr}" 127 127 { shortName = licstr; } 128 128 ); 129 + 130 + /* Get the path to the main program of a derivation with either 131 + meta.mainProgram or pname or name 132 + 133 + Type: getExe :: derivation -> string 134 + 135 + Example: 136 + getExe pkgs.hello 137 + => "/nix/store/g124820p9hlv4lj8qplzxw1c44dxaw1k-hello-2.12/bin/hello" 138 + getExe pkgs.mustache-go 139 + => "/nix/store/am9ml4f4ywvivxnkiaqwr0hyxka1xjsf-mustache-go-1.3.0/bin/mustache" 140 + */ 141 + getExe = x: 142 + "${lib.getBin x}/bin/${x.meta.mainProgram or (lib.getName x)}"; 129 143 }
+7 -1
lib/modules.nix
··· 113 113 args ? {} 114 114 , # This would be remove in the future, Prefer _module.check option instead. 115 115 check ? true 116 + # Internal variable to avoid `_key` collisions regardless 117 + # of `extendModules`. Used in `submoduleWith`. 118 + # Test case: lib/tests/modules, "168767" 119 + , extensionOffset ? 0 116 120 }: 117 121 let 118 122 withWarnings = x: ··· 342 338 modules ? [], 343 339 specialArgs ? {}, 344 340 prefix ? [], 341 + extensionOffset ? length modules, 345 342 }: 346 343 evalModules (evalModulesArgs // { 347 344 modules = regularModules ++ modules; 348 345 specialArgs = evalModulesArgs.specialArgs or {} // specialArgs; 349 346 prefix = extendArgs.prefix or evalModulesArgs.prefix; 347 + inherit extensionOffset; 350 348 }); 351 349 352 350 type = lib.types.submoduleWith { 353 - inherit modules specialArgs; 351 + inherit modules specialArgs extensionOffset; 354 352 }; 355 353 356 354 result = withWarnings {
+5 -1
lib/tests/modules.sh
··· 293 293 294 294 # moduleType 295 295 checkConfigOutput '^"a b"$' config.resultFoo ./declare-variants.nix ./define-variant.nix 296 - checkConfigOutput '^"a y z"$' config.resultFooBar ./declare-variants.nix ./define-variant.nix 296 + checkConfigOutput '^"a b y z"$' config.resultFooBar ./declare-variants.nix ./define-variant.nix 297 297 checkConfigOutput '^"a b c"$' config.resultFooFoo ./declare-variants.nix ./define-variant.nix 298 298 299 299 ## emptyValue's ··· 326 326 327 327 # Test that types.optionType leaves types untouched as long as they don't need to be merged 328 328 checkConfigOutput 'ok' config.freeformItems.foo.bar ./adhoc-freeformType-survives-type-merge.nix 329 + 330 + # Anonymous submodules don't get nixed by import resolution/deduplication 331 + # because of an `extendModules` bug, issue 168767. 332 + checkConfigOutput '^1$' config.sub.specialisation.value ./extendModules-168767-imports.nix 329 333 330 334 cat <<EOF 331 335 ====== module tests ======
+41
lib/tests/modules/extendModules-168767-imports.nix
··· 1 + { lib 2 + , extendModules 3 + , ... 4 + }: 5 + with lib; 6 + { 7 + imports = [ 8 + 9 + { 10 + options.sub = mkOption { 11 + default = { }; 12 + type = types.submodule ( 13 + { config 14 + , extendModules 15 + , ... 16 + }: 17 + { 18 + options.value = mkOption { 19 + type = types.int; 20 + }; 21 + 22 + options.specialisation = mkOption { 23 + default = { }; 24 + inherit 25 + (extendModules { 26 + modules = [{ 27 + specialisation = mkOverride 0 { }; 28 + }]; 29 + }) 30 + type; 31 + }; 32 + } 33 + ); 34 + }; 35 + } 36 + 37 + { config.sub.value = 1; } 38 + 39 + 40 + ]; 41 + }
+8 -2
lib/types.nix
··· 568 568 { modules 569 569 , specialArgs ? {} 570 570 , shorthandOnlyDefinesConfig ? false 571 + 572 + # Internal variable to avoid `_key` collisions regardless 573 + # of `extendModules`. Wired through by `evalModules`. 574 + # Test case: lib/tests/modules, "168767" 575 + , extensionOffset ? 0 571 576 }@attrs: 572 577 let 573 578 inherit (lib.modules) evalModules; ··· 584 579 allModules = defs: imap1 (n: { value, file }: 585 580 if isFunction value 586 581 then setFunctionArgs 587 - (args: lib.modules.unifyModuleSyntax file "${toString file}-${toString n}" (value args)) 582 + (args: lib.modules.unifyModuleSyntax file "${toString file}-${toString (n + extensionOffset)}" (value args)) 588 583 (functionArgs value) 589 584 else if isAttrs value 590 585 then 591 - lib.modules.unifyModuleSyntax file "${toString file}-${toString n}" (shorthandToModule value) 586 + lib.modules.unifyModuleSyntax file "${toString file}-${toString (n + extensionOffset)}" (shorthandToModule value) 592 587 else value 593 588 ) defs; 594 589 ··· 625 620 (base.extendModules { 626 621 modules = [ { _module.args.name = last loc; } ] ++ allModules defs; 627 622 prefix = loc; 623 + extensionOffset = extensionOffset + length defs; 628 624 }).config; 629 625 emptyValue = { value = {}; }; 630 626 getSubOptions = prefix: (base.extendModules
+6
maintainers/maintainer-list.nix
··· 11323 11323 githubId = 307899; 11324 11324 name = "Gurkan Gur"; 11325 11325 }; 11326 + serge = { 11327 + email = "sb@canva.com"; 11328 + github = "serge-belov"; 11329 + githubId = 38824235; 11330 + name = "Serge Belov"; 11331 + }; 11326 11332 sersorrel = { 11327 11333 email = "ash@sorrel.sh"; 11328 11334 github = "sersorrel";
+1 -1
nixos/modules/services/misc/sourcehut/default.nix
··· 1018 1018 inherit configIniOfService; 1019 1019 mainService = mkMerge [ baseService { 1020 1020 serviceConfig.StateDirectory = [ "sourcehut/gitsrht" "sourcehut/gitsrht/repos" ]; 1021 - preStart = mkIf (!versionAtLeast config.system.stateVersion "22.05") (mkBefore '' 1021 + preStart = mkIf (versionOlder config.system.stateVersion "22.05") (mkBefore '' 1022 1022 # Fix Git hooks of repositories pre-dating https://github.com/NixOS/nixpkgs/pull/133984 1023 1023 ( 1024 1024 set +f
+2 -2
nixos/modules/tasks/filesystems/xfs.nix
··· 15 15 16 16 boot.initrd.availableKernelModules = mkIf inInitrd [ "xfs" "crc32c" ]; 17 17 18 - boot.initrd.extraUtilsCommands = mkIf (inInitrd && !boot.initrd.systemd.enable) 18 + boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) 19 19 '' 20 20 copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/fsck.xfs 21 21 copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/xfs_repair 22 22 ''; 23 23 24 24 # Trick just to set 'sh' after the extraUtils nuke-refs. 25 - boot.initrd.extraUtilsCommandsTest = mkIf (inInitrd && !boot.initrd.systemd.enable) 25 + boot.initrd.extraUtilsCommandsTest = mkIf (inInitrd && !config.boot.initrd.systemd.enable) 26 26 '' 27 27 sed -i -e 's,^#!.*,#!'$out/bin/sh, $out/bin/fsck.xfs 28 28 '';
+1 -1
pkgs/applications/editors/emacs/28.nix
··· 1 1 import ./generic.nix (rec { 2 2 version = "28.1"; 3 - sha256 = "sha256-KLGz0JkDegiPCkyiUdfnJi6rXqFneqv/psRCaWGtdeE="; 3 + sha256 = "sha256-D33wnlxhx0LyG9WZaQDj2II3tG0HcJdZTC4dSA3lrgY="; 4 4 patches = _: [ ]; 5 5 })
+5 -3
pkgs/applications/editors/emacs/generic.nix
··· 13 13 , sigtool, jansson, harfbuzz, sqlite, nixosTests 14 14 , dontRecurseIntoAttrs, emacsPackagesFor 15 15 , libgccjit, targetPlatform, makeWrapper # native-comp params 16 + , fetchFromSavannah 16 17 , systemd ? null 17 18 , withX ? !stdenv.isDarwin 18 19 , withNS ? stdenv.isDarwin ··· 24 23 , withSQLite3 ? false 25 24 , withCsrc ? true 26 25 , withWebP ? false 27 - , srcRepo ? false, autoreconfHook ? null, texinfo ? null 26 + , srcRepo ? true, autoreconfHook ? null, texinfo ? null 28 27 , siteStart ? ./site-start.el 29 28 , nativeComp ? false 30 29 , withAthena ? false ··· 60 59 61 60 patches = patches fetchpatch; 62 61 63 - src = fetchurl { 64 - url = "mirror://gnu/emacs/${name}.tar.xz"; 62 + src = fetchFromSavannah { 63 + repo = "emacs"; 64 + rev = version; 65 65 inherit sha256; 66 66 }; 67 67
+12
pkgs/applications/editors/vscode/extensions/default.nix
··· 67 67 }; 68 68 }; 69 69 70 + adpyke.codesnap = buildVscodeMarketplaceExtension { 71 + mktplcRef = { 72 + name = "codesnap"; 73 + publisher = "adpyke"; 74 + version = "1.3.4"; 75 + sha256 = "sha256-dR6qODSTK377OJpmUqG9R85l1sf9fvJJACjrYhSRWgQ="; 76 + }; 77 + meta = { 78 + license = lib.licenses.mit; 79 + }; 80 + }; 81 + 70 82 alefragnani.project-manager = buildVscodeMarketplaceExtension { 71 83 mktplcRef = { 72 84 name = "project-manager";
+12 -1
pkgs/applications/misc/barrier/default.nix
··· 1 1 { lib, fetchFromGitHub, cmake, curl, xorg, avahi, qtbase, mkDerivation, 2 2 openssl, wrapGAppsHook, 3 - avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; } 3 + avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; }, 4 + fetchpatch 4 5 }: 5 6 6 7 mkDerivation rec { ··· 15 14 sha256 = "sha256-2tHqLF3zS3C4UnOVIZfpcuzaemC9++nC7lXgFnFSfKU="; 16 15 fetchSubmodules = true; 17 16 }; 17 + 18 + patches = [ 19 + # This patch can be removed when a new version of barrier (greater than 2.4.0) 20 + # is released, which will contain this commit. 21 + (fetchpatch { 22 + name = "add-missing-cstddef-header.patch"; 23 + url = "https://github.com/debauchee/barrier/commit/4b12265ae5d324b942698a3177e1d8b1749414d7.patch"; 24 + sha256 = "sha256-ajMxP7szBFi4h8cMT3qswfa3k/QiJ1FGI3q9fkCFQQk="; 25 + }) 26 + ]; 18 27 19 28 buildInputs = [ curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ]; 20 29 nativeBuildInputs = [ cmake wrapGAppsHook ];
+1 -1
pkgs/applications/misc/evtest/default.nix
··· 10 10 src = fetchgit { 11 11 url = "git://anongit.freedesktop.org/${pname}"; 12 12 rev = "refs/tags/${pname}-${version}"; 13 - sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g"; 13 + sha256 = "sha256-0UGcoGkNF/19aSTWNEFAmZP7seL/yObXsOLlZLiyG2Q="; 14 14 }; 15 15 16 16 meta = with lib; {
+2 -2
pkgs/applications/misc/masterpdfeditor/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "masterpdfeditor"; 5 - version = "5.8.33"; 5 + version = "5.8.46"; 6 6 7 7 src = fetchurl { 8 8 url = "https://code-industry.net/public/master-pdf-editor-${version}-qt5.x86_64.tar.gz"; 9 - sha256 = "sha256-sgLF/NpaNlkL5iA1l7QzMiYKwRcMDu2DHdTIaeHOtfI="; 9 + sha256 = "sha256-xms4aqIxYXR6v226RMf+abrFU1xz2aDIL6iQ+Yfff1k="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ autoPatchelfHook wrapQtAppsHook ];
+3 -2
pkgs/applications/misc/pure-maps/default.nix
··· 6 6 7 7 mkDerivation rec { 8 8 pname = "pure-maps"; 9 - version = "2.9.2"; 9 + version = "3.0.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rinigus"; 13 13 repo = "pure-maps"; 14 14 rev = version; 15 - hash = "sha256-pMPjY6OXR6THiSQZ4mw9Kz+tAXJaOwzJEcpPOyZ+YKI="; 15 + hash = "sha256-r36/Vpt4ZIWV1+VhqRBuo4uT7nmEGiFGIt3QGG3ijjs="; 16 16 fetchSubmodules = true; 17 17 }; 18 18 ··· 37 37 meta = with lib; { 38 38 description = "Display vector and raster maps, places, routes, and provide navigation instructions with a flexible selection of data and service providers"; 39 39 homepage = "https://github.com/rinigus/pure-maps"; 40 + changelog = "https://github.com/rinigus/pure-maps/blob/${src.rev}/NEWS.md"; 40 41 license = licenses.gpl3Only; 41 42 maintainers = [ maintainers.Thra11 ]; 42 43 platforms = platforms.linux;
+13 -4
pkgs/applications/misc/ranger/default.nix
··· 1 - { lib, fetchFromGitHub, python3Packages, file, less, highlight 2 - , imagePreviewSupport ? true, w3m }: 1 + { lib, fetchFromGitHub, python3Packages, file, less, highlight, w3m 2 + , imagePreviewSupport ? true 3 + , neoVimSupport ? true 4 + , improvedEncodingDetection ? true 5 + , rightToLeftTextSupport ? false 6 + }: 3 7 4 8 python3Packages.buildPythonApplication rec { 5 9 pname = "ranger"; ··· 19 15 LC_ALL = "en_US.UTF-8"; 20 16 21 17 checkInputs = with python3Packages; [ pytestCheckHook ]; 22 - propagatedBuildInputs = [ file ] 23 - ++ lib.optionals (imagePreviewSupport) [ python3Packages.pillow ]; 18 + propagatedBuildInputs = [ 19 + less 20 + file 21 + ] ++ lib.optionals imagePreviewSupport [ python3Packages.pillow ] 22 + ++ lib.optionals neoVimSupport [ python3Packages.pynvim ] 23 + ++ lib.optionals improvedEncodingDetection [ python3Packages.chardet ] 24 + ++ lib.optionals rightToLeftTextSupport [ python3Packages.python-bidi ]; 24 25 25 26 preConfigure = '' 26 27 ${lib.optionalString (highlight != null) ''
-22
pkgs/applications/networking/c14/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "c14-cli"; 5 - version = "0.3"; 6 - 7 - goPackagePath = "github.com/online-net/c14-cli"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "online-net"; 11 - repo = "c14-cli"; 12 - rev = version; 13 - sha256 = "0b1piviy6vvdbak8y8bc24rk3c1fi67vv3352pmnzvrhsar2r5yf"; 14 - }; 15 - 16 - meta = with lib; { 17 - description = "C14 is designed for data archiving & long-term backups"; 18 - homepage = "https://www.online.net/en/storage/c14-cold-storage"; 19 - license = licenses.mit; 20 - maintainers = with maintainers; [ apeyroux ]; 21 - }; 22 - }
+3 -3
pkgs/applications/networking/cluster/helm-docs/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helm-docs"; 5 - version = "1.7.0"; 5 + version = "1.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "norwoodj"; 9 9 repo = "helm-docs"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-TXwEVyRYRiVqCDL7IR+DIu1iKqaq81W5xkvz+laxVek="; 11 + sha256 = "sha256-OpS/CYBb2Ll6ktvEhqkw/bWMSrFa4duidK3Glu8EnPw="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-XTV0gyUWe6G5gxucsXOaDOUQoKMCfhrWzlKwUOaA6y4="; 14 + vendorSha256 = "sha256-FpmeOQ8nV+sEVu2+nY9o9aFbCpwSShQUFOmyzwEQ9Pw="; 15 15 16 16 subPackages = [ "cmd/helm-docs" ]; 17 17 ldflags = [
+17 -7
pkgs/applications/networking/cluster/kompose/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, installShellFiles }: 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles, testVersion, kompose }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "kompose"; 5 - version = "1.21.0"; 6 - 7 - goPackagePath = "github.com/kubernetes/kompose"; 5 + version = "1.26.1"; 8 6 9 7 src = fetchFromGitHub { 10 - rev = "v${version}"; 11 8 owner = "kubernetes"; 12 9 repo = "kompose"; 13 - sha256 = "15a1alf6ywwfc4z5kdcnv64fp3cfy3qrcw62ny6xyn1kh1w24vkh"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-NfzqGG5ZwPpmjhvcvXN1AA+kfZG/oujbAEtXkm1mzeU="; 14 12 }; 15 13 14 + vendorSha256 = "sha256-OR5U2PnebO0a+lwU09Dveh0Yxk91cmSRorTxQIO5lHc="; 15 + 16 16 nativeBuildInputs = [ installShellFiles ]; 17 + 18 + ldflags = [ "-s" "-w" ]; 19 + 20 + checkFlags = [ "-short" ]; 21 + 17 22 postInstall = '' 18 23 for shell in bash zsh; do 19 24 $out/bin/kompose completion $shell > kompose.$shell 20 25 installShellCompletion kompose.$shell 21 26 done 22 27 ''; 28 + 29 + passthru.tests.version = testVersion { 30 + package = kompose; 31 + command = "kompose version"; 32 + }; 23 33 24 34 meta = with lib; { 25 35 description = "A tool to help users who are familiar with docker-compose move to Kubernetes";
+9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 162 162 "vendorSha256": "03761vl8xcirmas38q8xivx2r312c07fmg1y80lklmswbd8d0f71", 163 163 "version": "2.2.0" 164 164 }, 165 + "buildkite": { 166 + "owner": "buildkite", 167 + "provider-source-address": "registry.terraform.io/buildkite/buildkite", 168 + "repo": "terraform-provider-buildkite", 169 + "rev": "v0.8.0", 170 + "sha256": "1v4kzsvzkzf0bb6vpyjh0n2kbcfrqa193idvm4jgbcrdb0y3xzn5", 171 + "vendorSha256": "12kqjpyy80pfrasicmdi1f43mr846rad3c6xaa4dvzn7hq640q5j", 172 + "version": "0.8.0" 173 + }, 165 174 "checkly": { 166 175 "owner": "checkly", 167 176 "provider-source-address": "registry.terraform.io/checkly/checkly",
+2 -2
pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "jitsi-meet-electron"; 12 - version = "2022.1.1"; 12 + version = "2022.3.1"; 13 13 14 14 src = fetchurl { 15 15 url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage"; 16 - sha256 = "0x3fdqgjnsd570b7nszfx3h8l5c8x2kg32ig85n2a2g481c7xi6l"; 16 + sha256 = "sha256-/5WpjmTLwQN73m7nHg4DKPbXIbD9WyJ+YBbFMD4ZDfg="; 17 17 name = "${pname}-${version}.AppImage"; 18 18 }; 19 19
+2 -2
pkgs/applications/networking/instant-messengers/session-desktop-appimage/default.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "1.7.9"; 10 + version = "1.8.4"; 11 11 pname = "session-desktop-appimage"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/oxen-io/session-desktop/releases/download/v${version}/session-desktop-linux-x86_64-${version}.AppImage"; 15 - sha256 = "ca7754e59146633b71e66b02a90cff87e4f2574e57ff831ca4a5f983b7e2fbef"; 15 + sha256 = "Az9NEsqU4ZcmuSno38zflT4M4lI6/4ShEh3FVTcyRJg="; 16 16 }; 17 17 appimage = appimageTools.wrapType2 { 18 18 inherit version pname src;
+1
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/default.nix
··· 98 98 }; 99 99 100 100 patches = [ 101 + ./kf594.patch 101 102 ./shortcuts-binary-path.patch 102 103 # let it build with nixpkgs 10.12 sdk 103 104 ./kotato-10.12-sdk.patch
+57
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/kf594.patch
··· 1 + diff --git a/Telegram/SourceFiles/platform/linux/linux_wayland_integration.cpp b/Telegram/SourceFiles/platform/linux/linux_wayland_integration.cpp 2 + index 7641579aa..3c195e397 100644 3 + --- a/Telegram/SourceFiles/platform/linux/linux_wayland_integration.cpp 4 + +++ b/Telegram/SourceFiles/platform/linux/linux_wayland_integration.cpp 5 + @@ -9,10 +9,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL 6 + 7 + #include "base/platform/base_platform_info.h" 8 + 9 + -#include <connection_thread.h> 10 + -#include <registry.h> 11 + -#include <surface.h> 12 + -#include <plasmashell.h> 13 + +#include <KWayland/Client/connection_thread.h> 14 + +#include <KWayland/Client/registry.h> 15 + +#include <KWayland/Client/surface.h> 16 + +#include <KWayland/Client/plasmashell.h> 17 + 18 + using namespace KWayland::Client; 19 + 20 + Submodule Telegram/lib_base contains modified content 21 + diff --git a/Telegram/lib_base/base/platform/linux/base_linux_wayland_integration.cpp b/Telegram/lib_base/base/platform/linux/base_linux_wayland_integration.cpp 22 + index 32f0de6..30a087f 100644 23 + --- a/Telegram/lib_base/base/platform/linux/base_linux_wayland_integration.cpp 24 + +++ b/Telegram/lib_base/base/platform/linux/base_linux_wayland_integration.cpp 25 + @@ -13,11 +13,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL 26 + #include <QtCore/QPointer> 27 + #include <QtGui/QWindow> 28 + 29 + -#include <connection_thread.h> 30 + -#include <registry.h> 31 + -#include <surface.h> 32 + -#include <xdgforeign.h> 33 + -#include <idleinhibit.h> 34 + +#include <KWayland/Client/connection_thread.h> 35 + +#include <KWayland/Client/registry.h> 36 + +#include <KWayland/Client/surface.h> 37 + +#include <KWayland/Client/xdgforeign.h> 38 + +#include <KWayland/Client/idleinhibit.h> 39 + 40 + using namespace KWayland::Client; 41 + 42 + Submodule Telegram/lib_ui contains modified content 43 + diff --git a/Telegram/lib_ui/ui/platform/linux/ui_linux_wayland_integration.cpp b/Telegram/lib_ui/ui/platform/linux/ui_linux_wayland_integration.cpp 44 + index 01f1e80..163cb6a 100644 45 + --- a/Telegram/lib_ui/ui/platform/linux/ui_linux_wayland_integration.cpp 46 + +++ b/Telegram/lib_ui/ui/platform/linux/ui_linux_wayland_integration.cpp 47 + @@ -24,8 +24,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL 48 + #include <private/qwaylandwindow_p.h> 49 + #include <private/qwaylandshellsurface_p.h> 50 + 51 + -#include <connection_thread.h> 52 + -#include <registry.h> 53 + +#include <KWayland/Client/connection_thread.h> 54 + +#include <KWayland/Client/registry.h> 55 + 56 + Q_DECLARE_METATYPE(QMargins); 57 +
+3 -6
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/tg_owt.nix
··· 63 63 64 64 postPatch = lib.optionalString stdenv.isLinux '' 65 65 substituteInPlace src/modules/desktop_capture/linux/egl_dmabuf.cc \ 66 - --replace '"libEGL.so.1"' '"${libGL}/lib/libEGL.so.1"' 67 - substituteInPlace src/modules/desktop_capture/linux/egl_dmabuf.cc \ 68 - --replace '"libGL.so.1"' '"${libGL}/lib/libGL.so.1"' 69 - substituteInPlace src/modules/desktop_capture/linux/egl_dmabuf.cc \ 70 - --replace '"libgbm.so.1"' '"${mesa}/lib/libgbm.so.1"' 71 - substituteInPlace src/modules/desktop_capture/linux/egl_dmabuf.cc \ 66 + --replace '"libEGL.so.1"' '"${libGL}/lib/libEGL.so.1"' \ 67 + --replace '"libGL.so.1"' '"${libGL}/lib/libGL.so.1"' \ 68 + --replace '"libgbm.so.1"' '"${mesa}/lib/libgbm.so.1"' \ 72 69 --replace '"libdrm.so.2"' '"${libdrm}/lib/libdrm.so.2"' 73 70 ''; 74 71
+46 -7
pkgs/applications/networking/instant-messengers/zoom-us/default.nix
··· 2 2 , lib 3 3 , fetchurl 4 4 , makeWrapper 5 + , xar 6 + , cpio 5 7 # Dynamic libraries 6 8 , alsa-lib 7 9 , atk ··· 30 28 }: 31 29 32 30 let 33 - version = "5.9.6.2225"; 31 + inherit (stdenv.hostPlatform) system; 32 + throwSystem = throw "Unsupported system: ${system}"; 33 + 34 + # Zoom versions are released at different times for each platform and linux 35 + # is stuck on 5.9.6 until https://github.com/NixOS/nixpkgs/pull/166085 is 36 + # resolved 37 + version = { 38 + aarch64-darwin = "5.10.4.6592"; 39 + x86_64-darwin = "5.10.4.6592"; 40 + x86_64-linux = "5.9.6.2225"; 41 + }.${system} or throwSystem; 42 + 34 43 srcs = { 44 + aarch64-darwin = fetchurl { 45 + url = "https://zoom.us/client/${version}/Zoom.pkg?archType=arm64"; 46 + sha256 = "0jg5f9hvb67hhfnifpx5fzz65fcijldy1znlia6pqflxwci3m5rq"; 47 + }; 48 + x86_64-darwin = fetchurl { 49 + url = "https://zoom.us/client/${version}/Zoom.pkg"; 50 + sha256 = "1p83691bid8kz5mw09x6l9zvjglfszi5vbhfmbbpiqhiqcxlfz83"; 51 + }; 35 52 x86_64-linux = fetchurl { 36 53 url = "https://zoom.us/client/${version}/zoom_x86_64.pkg.tar.xz"; 37 54 sha256 = "0rynpw2fjn9j75f34rk0rgqn9wzyzgzmwh1a3xcx7hqingv45k53"; ··· 90 69 pname = "zoom"; 91 70 inherit version; 92 71 93 - src = srcs.${stdenv.hostPlatform.system}; 72 + src = srcs.${system} or throwSystem; 94 73 95 - dontUnpack = true; 74 + dontUnpack = stdenv.isLinux; 75 + unpackPhase = lib.optionalString stdenv.isDarwin '' 76 + xar -xf $src 77 + zcat < zoomus.pkg/Payload | cpio -i 78 + ''; 96 79 97 80 nativeBuildInputs = [ 98 81 makeWrapper 82 + ] 83 + ++ lib.optionals stdenv.isDarwin [ 84 + xar 85 + cpio 99 86 ]; 100 87 101 88 installPhase = '' 102 89 runHook preInstall 103 - mkdir $out 104 - tar -C $out -xf $src 105 - mv $out/usr/* $out/ 90 + ${rec { 91 + aarch64-darwin = '' 92 + mkdir -p $out/Applications/zoom.us.app 93 + cp -R . $out/Applications/zoom.us.app 94 + ''; 95 + # darwin steps same on both architectures 96 + x86_64-darwin = aarch64-darwin; 97 + x86_64-linux = '' 98 + mkdir $out 99 + tar -C $out -xf $src 100 + mv $out/usr/* $out/ 101 + ''; 102 + }.${system} or throwSystem} 106 103 runHook postInstall 107 104 ''; 108 105 109 - postFixup = '' 106 + postFixup = lib.optionalString stdenv.isLinux '' 110 107 # Desktop File 111 108 substituteInPlace $out/share/applications/Zoom.desktop \ 112 109 --replace "Exec=/usr/bin/zoom" "Exec=$out/bin/zoom"
+2 -2
pkgs/applications/networking/mailreaders/evolution/evolution/default.nix
··· 46 46 47 47 stdenv.mkDerivation rec { 48 48 pname = "evolution"; 49 - version = "3.44.0"; 49 + version = "3.44.1"; 50 50 51 51 src = fetchurl { 52 52 url = "mirror://gnome/sources/evolution/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 53 - sha256 = "3yHT31Ik36hC6ikO/82QKv1LFBhgik37aQejt9TZlPk="; 53 + sha256 = "dEx+CK0R4bYQPO60u/2Jo7Yo4SbOOGe7AI80F8wEnqk="; 54 54 }; 55 55 56 56 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/remote/freerdp/default.nix
··· 52 52 in 53 53 stdenv.mkDerivation rec { 54 54 pname = "freerdp"; 55 - version = "2.6.1"; 55 + version = "2.7.0"; 56 56 57 57 src = fetchFromGitHub { 58 58 owner = "FreeRDP"; 59 59 repo = "FreeRDP"; 60 60 rev = version; 61 - sha256 = "sha256-+yKdB/glNf74drv9EvBwVMWrqr5ADBkSJVVDH+UKb2U="; 61 + sha256 = "sha256-XBYRhbwknVa8eXxk31b7n9gMWBcTjCecDN+j2FGcpw0="; 62 62 }; 63 63 64 64 postPatch = ''
+1 -1
pkgs/applications/office/paperwork/paperwork-gtk.nix
··· 138 138 passthru.updateScript = writeScript "update.sh" '' 139 139 #!/usr/bin/env nix-shell 140 140 #!nix-shell -i bash -p curl common-updater-scripts 141 - version=$(list-git-tags https://gitlab.gnome.org/World/OpenPaperwork/paperwork.git | sed 's/^v//' | sort -V | tail -n1) 141 + version=$(list-git-tags | sed 's/^v//' | sort -V | tail -n1) 142 142 update-source-version paperwork "$version" --file=pkgs/applications/office/paperwork/src.nix 143 143 docs_version="$(curl https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/raw/$version/paperwork-gtk/src/paperwork_gtk/model/help/screenshot.sh | grep TEST_DOCS_TAG= | cut -d'"' -f2)" 144 144 update-source-version paperwork.sample_docs "$docs_version" --file=pkgs/applications/office/paperwork/src.nix --version-key=rev
+2 -2
pkgs/applications/science/astronomy/stellarium/default.nix
··· 6 6 7 7 mkDerivation rec { 8 8 pname = "stellarium"; 9 - version = "0.22.0"; 9 + version = "0.22.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Stellarium"; 13 13 repo = "stellarium"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-scG/SS9emEmrZunv6n3Vzcchoh0Cf9rDOkuxAMnxNk4="; 15 + sha256 = "sha256-zDYZBV/76BDWWfiug0fFvMe3pdE4xfKgSmVJJd3Qu9Y="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
+14 -14
pkgs/applications/science/logic/coq/default.nix
··· 56 56 args.version; 57 57 version = fetched.version; 58 58 coq-version = args.coq-version or (if version != "dev" then versions.majorMinor version else "dev"); 59 - versionAtLeast = v: (coq-version == "dev") || (lib.versionAtLeast coq-version v); 60 - ideFlags = optionalString (buildIde && !versionAtLeast "8.10") 59 + coqAtLeast = v: coq-version == "dev" || versionAtLeast coq-version v; 60 + ideFlags = optionalString (buildIde && !coqAtLeast "8.10") 61 61 "-lablgtkdir ${ocamlPackages.lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt"; 62 62 csdpPatch = if csdp != null then '' 63 63 substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp" ··· 71 71 { case = range "8.5" "8.6"; out = ocamlPackages_4_05; } 72 72 ] ocamlPackages_4_12; 73 73 ocamlNativeBuildInputs = [ ocamlPackages.ocaml ocamlPackages.findlib ] 74 - ++ optional (versionAtLeast "8.14") ocamlPackages.dune_2; 74 + ++ optional (coqAtLeast "8.14") ocamlPackages.dune_2; 75 75 ocamlBuildInputs = [] 76 - ++ optional (!versionAtLeast "8.10") ocamlPackages.camlp5 77 - ++ optional (!versionAtLeast "8.13") ocamlPackages.num 78 - ++ optional (versionAtLeast "8.13") ocamlPackages.zarith; 76 + ++ optional (!coqAtLeast "8.10") ocamlPackages.camlp5 77 + ++ optional (!coqAtLeast "8.13") ocamlPackages.num 78 + ++ optional (coqAtLeast "8.13") ocamlPackages.zarith; 79 79 self = stdenv.mkDerivation { 80 80 pname = "coq"; 81 81 inherit (fetched) version src; ··· 134 134 nativeBuildInputs = [ pkg-config ] 135 135 ++ ocamlNativeBuildInputs 136 136 ++ optional buildIde copyDesktopItems 137 - ++ optional (buildIde && versionAtLeast "8.10") wrapGAppsHook 138 - ++ optional (!versionAtLeast "8.6") gnumake42; 137 + ++ optional (buildIde && coqAtLeast "8.10") wrapGAppsHook 138 + ++ optional (!coqAtLeast "8.6") gnumake42; 139 139 buildInputs = [ ncurses ] ++ ocamlBuildInputs 140 140 ++ optionals buildIde 141 - (if versionAtLeast "8.10" 141 + (if coqAtLeast "8.10" 142 142 then [ ocamlPackages.lablgtk3-sourceview3 glib gnome.adwaita-icon-theme ] 143 143 else [ ocamlPackages.lablgtk ]) 144 144 ; ··· 147 147 UNAME=$(type -tp uname) 148 148 RM=$(type -tp rm) 149 149 substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM" 150 - ${if !versionAtLeast "8.7" then "substituteInPlace configure.ml --replace \"md5 -q\" \"md5sum\"" else ""} 150 + ${if !coqAtLeast "8.7" then "substituteInPlace configure.ml --replace \"md5 -q\" \"md5sum\"" else ""} 151 151 ${csdpPatch} 152 152 ''; 153 153 ··· 161 161 addEnvHooks "$targetOffset" addCoqPath 162 162 ''; 163 163 164 - preConfigure = if versionAtLeast "8.10" then '' 164 + preConfigure = if coqAtLeast "8.10" then '' 165 165 patchShebangs dev/tools/ 166 166 '' else '' 167 167 configureFlagsArray=( ··· 171 171 172 172 prefixKey = "-prefix "; 173 173 174 - buildFlags = [ "revision" "coq" ] ++ optional buildIde "coqide" ++ optional (!versionAtLeast "8.14") "bin/votour"; 174 + buildFlags = [ "revision" "coq" ] ++ optional buildIde "coqide" ++ optional (!coqAtLeast "8.14") "bin/votour"; 175 175 enableParallelBuilding = true; 176 176 177 177 createFindlibDestdir = true; ··· 185 185 categories = [ "Development" "Science" "Math" "IDE" "GTK" ]; 186 186 }); 187 187 188 - postInstall = let suffix = if versionAtLeast "8.14" then "-core" else ""; in '' 188 + postInstall = let suffix = if coqAtLeast "8.14" then "-core" else ""; in '' 189 189 cp bin/votour $out/bin/ 190 190 ln -s $out/lib/coq${suffix} $OCAMLFIND_DESTDIR/coq${suffix} 191 - '' + optionalString (versionAtLeast "8.14") '' 191 + '' + optionalString (coqAtLeast "8.14") '' 192 192 ln -s $out/lib/coqide-server $OCAMLFIND_DESTDIR/coqide-server 193 193 '' + optionalString buildIde '' 194 194 mkdir -p "$out/share/pixmaps"
+2 -2
pkgs/applications/science/robotics/mavproxy/default.nix
··· 3 3 4 4 buildPythonApplication rec { 5 5 pname = "MAVProxy"; 6 - version = "1.8.48"; 6 + version = "1.8.49"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-BigJdAz52D8hg2bQs7tngFqnITut/wENGZ0+gLlAeoY="; 10 + sha256 = "sha256-eJ/QxtMUq7DN/cH9qUHNIJv48r0NJrbZfML74DpYamQ="; 11 11 }; 12 12 13 13 postPatch = ''
+2 -2
pkgs/applications/version-management/git-and-tools/gh/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gh"; 5 - version = "2.8.0"; 5 + version = "2.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cli"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-oPLnc3Fv8oGbfQMujcVIwKJrQ3vCV9yIB4rUtjeVOV0="; 11 + sha256 = "sha256-k8td9YKtlkit3YzpAncocZE7+Cl8v9ZNyPD4ZysCFRI="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-YLkNua0Pz0gVIYnWOzOlV5RuLBaoZ4l7l1Pf4QIfUVQ=";
+2 -4
pkgs/applications/video/epgstation/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , common-updater-scripts 5 - , genericUpdater 4 + , gitUpdater 6 5 , writers 7 6 , makeWrapper 8 7 , bash ··· 129 130 inherit 130 131 pname 131 132 version 132 - common-updater-scripts 133 - genericUpdater 133 + gitUpdater 134 134 writers 135 135 jq 136 136 yq;
+2 -4
pkgs/applications/video/epgstation/update.nix
··· 2 2 , version 3 3 , homepage 4 4 , lib 5 - , common-updater-scripts 6 - , genericUpdater 5 + , gitUpdater 7 6 , writers 8 7 , jq 9 8 , yq 10 9 }: 11 10 12 11 let 13 - updater = genericUpdater { 12 + updater = gitUpdater { 14 13 inherit pname version; 15 14 attrPath = lib.toLower pname; 16 15 rev-prefix = "v"; 17 - versionLister = "${common-updater-scripts}/bin/list-git-tags --url=${homepage}"; 18 16 }; 19 17 updateScript = builtins.elemAt updater 0; 20 18 updateArgs = map (lib.escapeShellArg) (builtins.tail updater);
+2 -4
pkgs/applications/video/mirakurun/default.nix
··· 6 6 { lib 7 7 , stdenvNoCC 8 8 , bash 9 - , common-updater-scripts 10 9 , fetchFromGitHub 11 - , genericUpdater 10 + , gitUpdater 12 11 , jq 13 12 , makeWrapper 14 13 , mkYarnPackage ··· 79 80 inherit 80 81 pname 81 82 version 82 - common-updater-scripts 83 - genericUpdater 83 + gitUpdater 84 84 writers 85 85 jq 86 86 yarn
+3 -7
pkgs/applications/video/mirakurun/update.nix
··· 2 2 , version 3 3 , homepage 4 4 , lib 5 - , common-updater-scripts 6 - , genericUpdater 5 + , gitUpdater 7 6 , writers 8 7 , jq 9 8 , yarn ··· 10 11 }: 11 12 12 13 let 13 - updater = genericUpdater { 14 + updater = gitUpdater { 14 15 inherit pname version; 15 16 attrPath = lib.toLower pname; 16 17 17 18 # exclude prerelease versions 18 - versionLister = writers.writeBash "list-mirakurun-versions" '' 19 - ${common-updater-scripts}/bin/list-git-tags --url=${homepage} \ 20 - | grep '^[0-9]\+\.[0-9]\+\.[0-9]\+$' 21 - ''; 19 + ignoredVersions = "-"; 22 20 }; 23 21 updateScript = builtins.elemAt updater 0; 24 22 updateArgs = map (lib.escapeShellArg) (builtins.tail updater);
-46
pkgs/applications/window-managers/wmii-hg/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, pkg-config, libixp_hg, txt2tags, dash, python2, which 2 - , libX11 , libXrender, libXext, libXinerama, libXrandr, libXft }: 3 - 4 - stdenv.mkDerivation rec { 5 - rev = "2823"; 6 - version = "hg-2012-12-09"; 7 - pname = "wmii"; 8 - 9 - src = fetchurl { 10 - url = "https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/wmii/source-archive.zip"; 11 - sha256 = "1wmkq14zvmfrmydl8752xz852cy7agrx3qp4fy2cc5asb2r9abaz"; 12 - }; 13 - 14 - # for dlopen-ing 15 - patchPhase = '' 16 - substituteInPlace lib/libstuff/x11/xft.c --replace "libXft.so" "$(pkg-config --variable=libdir xft)/libXft.so.2" 17 - substituteInPlace cmd/wmii.sh.sh --replace "\$(which which)" "${which}/bin/which" 18 - ''; 19 - 20 - configurePhase = '' 21 - for file in $(grep -lr '#!.*sh'); do 22 - sed -i 's|#!.*sh|#!${dash}/bin/dash|' $file 23 - done 24 - 25 - cat <<EOF >> config.mk 26 - PREFIX = $out 27 - LIBIXP = ${libixp_hg}/lib/libixp.a 28 - BINSH = ${dash}/bin/dash 29 - EOF 30 - ''; 31 - 32 - nativeBuildInputs = [ pkg-config unzip ]; 33 - buildInputs = [ libixp_hg txt2tags dash python2 which 34 - libX11 libXrender libXext libXinerama libXrandr libXft ]; 35 - 36 - # For some reason including mercurial in buildInputs did not help 37 - makeFlags = [ "WMII_HGVERSION=hg${rev}" ]; 38 - 39 - meta = { 40 - homepage = "https://suckless.org/"; # https://wmii.suckless.org/ does not exist anymore 41 - description = "A small window manager controlled by a 9P filesystem"; 42 - maintainers = with lib.maintainers; [ kovirobi ]; 43 - license = lib.licenses.mit; 44 - platforms = with lib.platforms; linux; 45 - }; 46 - }
+72
pkgs/applications/window-managers/wmii/default.nix
··· 1 + { lib, stdenv 2 + , fetchFromGitHub 3 + , dash 4 + , libX11 5 + , libXext 6 + , libXft 7 + , libXinerama 8 + , libXrandr 9 + , libXrender 10 + , libixp 11 + , pkg-config 12 + , txt2tags 13 + , unzip 14 + , which 15 + }: 16 + 17 + stdenv.mkDerivation rec { 18 + pname = "wmii"; 19 + version = "unstable-2022-04-04"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "0intro"; 23 + repo = "wmii"; 24 + rev = "ff120c7fee6e1b3a30a4a800074394327fb1da9d"; 25 + hash = "sha256-KEmWnobpT/5TdgT2HGPCpG1duz9Q6Z6PFSEBs2Ce+7g="; 26 + }; 27 + 28 + # for dlopen-ing 29 + postPatch = '' 30 + substituteInPlace lib/libstuff/x11/xft.c --replace "libXft.so" "$(pkg-config --variable=libdir xft)/libXft.so.2" 31 + substituteInPlace cmd/wmii.sh.sh --replace "\$(which which)" "${which}/bin/which" 32 + ''; 33 + 34 + postConfigure = '' 35 + for file in $(grep -lr '#!.*sh'); do 36 + sed -i 's|#!.*sh|#!${dash}/bin/dash|' $file 37 + done 38 + 39 + cat <<EOF >> config.mk 40 + PREFIX = $out 41 + LIBIXP = ${libixp}/lib/libixp.a 42 + BINSH = ${dash}/bin/dash 43 + EOF 44 + ''; 45 + 46 + # Remove optional python2 functionality 47 + postInstall = '' 48 + rm -rf $out/lib/python* $out/etc/wmii-hg/python 49 + ''; 50 + 51 + nativeBuildInputs = [ pkg-config unzip ]; 52 + buildInputs = [ 53 + dash 54 + libX11 55 + libXext 56 + libXft 57 + libXinerama 58 + libXrandr 59 + libXrender 60 + libixp 61 + txt2tags 62 + which 63 + ]; 64 + 65 + meta = { 66 + homepage = "https://github.com/0intro/wmii"; 67 + description = "A small, scriptable window manager, with a 9P filesystem interface and an acme-like layout"; 68 + maintainers = with lib.maintainers; [ kovirobi ]; 69 + license = lib.licenses.mit; 70 + platforms = with lib.platforms; linux; 71 + }; 72 + }
+2 -2
pkgs/build-support/ocaml/dune.nix
··· 7 7 { "1" = dune_1; "2" = dune_2; "3" = dune_3; }."${dune-version}" 8 8 ; in 9 9 10 - if (args ? minimumOCamlVersion && ! lib.versionAtLeast ocaml.version args.minimumOCamlVersion) || 11 - (args ? minimalOCamlVersion && ! lib.versionAtLeast ocaml.version args.minimalOCamlVersion) 10 + if (args ? minimumOCamlVersion && lib.versionOlder ocaml.version args.minimumOCamlVersion) || 11 + (args ? minimalOCamlVersion && lib.versionOlder ocaml.version args.minimalOCamlVersion) 12 12 then throw "${pname}-${version} is not available for OCaml ${ocaml.version}" 13 13 else 14 14
+1 -1
pkgs/build-support/ocaml/oasis.nix
··· 8 8 }@args: 9 9 10 10 if args ? minimumOCamlVersion && 11 - ! lib.versionAtLeast ocaml.version args.minimumOCamlVersion 11 + lib.versionOlder ocaml.version args.minimumOCamlVersion 12 12 then throw "${pname}-${version} is not available for OCaml ${ocaml.version}" 13 13 else 14 14
+2 -2
pkgs/common-updater/git-updater.nix
··· 10 10 , rev-prefix ? "" 11 11 , odd-unstable ? false 12 12 , patchlevel-unstable ? false 13 - # explicit url is useful when git protocol is used only for tags listing 14 - # while actual release is referred by tarball 13 + # an explicit url is needed when src.meta.homepage or src.url don't 14 + # point to a git repo (eg. when using fetchurl, fetchzip, ...) 15 15 , url ? null 16 16 }: 17 17
+1 -1
pkgs/common-updater/scripts/list-git-tags
··· 31 31 # By default we set url to src.url or src.meta.homepage 32 32 if [[ -z "$url" ]]; then 33 33 url="$(nix-instantiate $systemArg --eval -E \ 34 - "with import ./. {}; $UPDATE_NIX_ATTR_PATH.src.url or $UPDATE_NIX_ATTR_PATH.src.meta.homepage" \ 34 + "with import ./. {}; $UPDATE_NIX_ATTR_PATH.src.meta.homepage or $UPDATE_NIX_ATTR_PATH.src.url" \ 35 35 | tr -d '"')" 36 36 fi 37 37
+22
pkgs/data/fonts/kacst/default.nix
··· 1 + { fetchzip, lib }: 2 + 3 + let 4 + version = "2.01"; 5 + in 6 + fetchzip { 7 + name = "kacst-${version}"; 8 + url = "mirror://debian/pool/main/f/fonts-kacst/fonts-kacst_${version}+mry.orig.tar.bz2"; 9 + sha256 = "sha256-pIO58CXfmKYRKYJ1oI+tjTwlKBRnkZ/CpIM2Xa0CDA4="; 10 + 11 + postFetch = '' 12 + mkdir -p $out/share/fonts 13 + tar xjf $downloadedFile --strip-components=1 -C $out/share/fonts 14 + ''; 15 + 16 + meta = with lib; { 17 + description = "KACST Latin-Arabic TrueType fonts"; 18 + license = licenses.gpl2Only; 19 + maintainers = with lib.maintainers; [ serge ]; 20 + platforms = platforms.all; 21 + }; 22 + }
+1 -1
pkgs/development/beam-modules/elvis-erlang/default.nix
··· 24 24 25 25 set -euo pipefail 26 26 27 - latest=$(list-git-tags --url=https://github.com/${owner}/${repo}.git | sort -V | tail -1) 27 + latest=$(list-git-tags | sort -V | tail -1) 28 28 if [ "$latest" != "${version}" ]; then 29 29 nixpkgs="$(git rev-parse --show-toplevel)" 30 30 nix_path="$nixpkgs/pkgs/development/beam-modules/elvis-erlang"
+1 -1
pkgs/development/beam-modules/erlang-ls/default.nix
··· 51 51 #! nix-shell -i bash -p common-updater-scripts coreutils git gnused gnutar gzip "rebar3WithPlugins { globalPlugins = [ beamPackages.rebar3-nix ]; }" 52 52 53 53 set -ox errexit 54 - latest=$(list-git-tags --url=https://github.com/${owner}/${repo}.git | sed -n '/[\d\.]\+/p' | sort -V | tail -1) 54 + latest=$(list-git-tags | sed -n '/[\d\.]\+/p' | sort -V | tail -1) 55 55 if [[ "$latest" != "${version}" ]]; then 56 56 nixpkgs="$(git rev-parse --show-toplevel)" 57 57 nix_path="$nixpkgs/pkgs/development/beam-modules/erlang-ls"
+5 -5
pkgs/development/compilers/ocaml/generic.nix
··· 7 7 in 8 8 9 9 { lib, stdenv, fetchurl, ncurses, buildEnv, libunwind, fetchpatch 10 - , libX11, xorgproto, useX11 ? safeX11 stdenv && !lib.versionAtLeast version "4.09" 10 + , libX11, xorgproto, useX11 ? safeX11 stdenv && lib.versionOlder version "4.09" 11 11 , aflSupport ? false 12 12 , flambdaSupport ? false 13 13 , spaceTimeSupport ? false ··· 87 87 buildFlags = if useNativeCompilers 88 88 then ["nixpkgs_world_bootstrap_world_opt"] 89 89 else ["nixpkgs_world"]; 90 - buildInputs = optional (!lib.versionAtLeast version "4.07") ncurses 90 + buildInputs = optional (lib.versionOlder version "4.07") ncurses 91 91 ++ optionals useX11 [ libX11 xorgproto ]; 92 92 propagatedBuildInputs = optional spaceTimeSupport libunwind; 93 93 installTargets = [ "install" ] ++ optional useNativeCompilers "installopt"; 94 - preConfigure = optionalString (!lib.versionAtLeast version "4.04") '' 94 + preConfigure = optionalString (lib.versionOlder version "4.04") '' 95 95 CAT=$(type -tp cat) 96 96 sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang 97 - '' + optionalString (stdenv.isDarwin && !lib.versionAtLeast version "4.13") '' 97 + '' + optionalString (stdenv.isDarwin && lib.versionOlder version "4.13") '' 98 98 # Do what upstream does by default now: https://github.com/ocaml/ocaml/pull/10176 99 99 # This is required for aarch64-darwin, everything else works as is. 100 100 AS="${stdenv.cc}/bin/cc -c" ASPP="${stdenv.cc}/bin/cc -c" ··· 137 137 ''; 138 138 139 139 platforms = with platforms; linux ++ darwin; 140 - broken = stdenv.isAarch64 && !lib.versionAtLeast version "4.06"; 140 + broken = stdenv.isAarch64 && lib.versionOlder version "4.06"; 141 141 }; 142 142 143 143 })
+8 -5
pkgs/development/compilers/openjdk/11.nix
··· 11 11 let 12 12 major = "11"; 13 13 minor = "0"; 14 - update = "12"; 15 - build = "7"; 14 + update = "15"; 15 + build = "10"; 16 16 17 17 openjdk = stdenv.mkDerivation rec { 18 18 pname = "openjdk" + lib.optionalString headless "-headless"; ··· 22 22 owner = "openjdk"; 23 23 repo = "jdk${major}u"; 24 24 rev = "jdk-${version}"; 25 - sha256 = "0s8g6gj5vhm7hbp05cqaxasjrkwr41fm634qim8q6slklm4pkkli"; 25 + sha256 = "le2JDxPJPSuga4JxLJNRZwCaodptSb2kh4TsJXumTXs="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ pkg-config autoconf unzip ]; ··· 40 40 ./currency-date-range-jdk10.patch 41 41 ./increase-javadoc-heap.patch 42 42 ./fix-library-path-jdk11.patch 43 - ./fix-glibc-2.34.patch 44 43 ] ++ lib.optionals (!headless && enableGnome2) [ 45 44 ./swing-use-gtk-jdk10.patch 46 45 ]; ··· 60 61 "--with-zlib=system" 61 62 "--with-lcms=system" 62 63 "--with-stdc++lib=dynamic" 64 + "--disable-warnings-as-errors" 63 65 ] ++ lib.optional stdenv.isx86_64 "--with-jvm-features=zgc" 64 66 ++ lib.optional headless "--enable-headless-only" 65 67 ++ lib.optional (!headless && enableJavaFX) "--with-import-modules=${openjfx}"; 66 68 67 69 separateDebugInfo = true; 68 70 69 - NIX_CFLAGS_COMPILE = "-Wno-error"; 71 + # Workaround for 72 + # `cc1plus: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]` 73 + # when building jtreg 74 + NIX_CFLAGS_COMPILE = "-Wformat"; 70 75 71 76 NIX_LDFLAGS = toString (lib.optionals (!headless) [ 72 77 "-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
+3 -3
pkgs/development/compilers/openjdk/17.nix
··· 11 11 let 12 12 version = { 13 13 feature = "17"; 14 - interim = ".0.1"; 15 - build = "12"; 14 + interim = ".0.3"; 15 + build = "7"; 16 16 }; 17 17 18 18 openjdk = stdenv.mkDerivation { ··· 23 23 owner = "openjdk"; 24 24 repo = "jdk${version.feature}u"; 25 25 rev = "jdk-${version.feature}${version.interim}+${version.build}"; 26 - sha256 = "1l1jgbz8q7zq66npfg88r0l5xga427vrz35iys09j44b6qllrldd"; 26 + sha256 = "qxiKz8HCNZXFdfgfiA16q5z0S65cZE/u7e+QxLlplWo="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ pkg-config autoconf unzip ];
+21 -3
pkgs/development/compilers/openjdk/fix-library-path-jdk11.patch
··· 1 + From 83f97773ea99fe2191a49e551ea43d51c9a765cd Mon Sep 17 00:00:00 2001 2 + Subject: [PATCH] strip some hard-coded default paths for libs and extensions 3 + 4 + --- 5 + src/hotspot/os/linux/os_linux.cpp | 12 ++++++------ 6 + 1 file changed, 6 insertions(+), 6 deletions(-) 7 + 1 8 diff --git a/src/hotspot/os/linux/os_linux.cpp b/src/hotspot/os/linux/os_linux.cpp 2 - index 0dbe03349e..847d56778d 100644 9 + index 476b1c2175..2695ed2301 100644 3 10 --- a/src/hotspot/os/linux/os_linux.cpp 4 11 +++ b/src/hotspot/os/linux/os_linux.cpp 5 - @@ -326,13 +326,13 @@ void os::init_system_properties_values() { 12 + @@ -417,20 +417,20 @@ void os::init_system_properties_values() { 6 13 // ... 7 14 // 7: The default directories, normally /lib and /usr/lib. 8 15 #if defined(AMD64) || (defined(_LP64) && defined(SPARC)) || defined(PPC64) || defined(S390) 9 16 - #define DEFAULT_LIBPATH "/usr/lib64:/lib64:/lib:/usr/lib" 10 17 + #define DEFAULT_LIBPATH "" 11 18 #else 19 + #if defined(AARCH64) 20 + // Use 32-bit locations first for AARCH64 (a 64-bit architecture), since some systems 21 + // might not adhere to the FHS and it would be a change in behaviour if we used 22 + // DEFAULT_LIBPATH of other 64-bit architectures which prefer the 64-bit paths. 23 + - #define DEFAULT_LIBPATH "/lib:/usr/lib:/usr/lib64:/lib64" 24 + + #define DEFAULT_LIBPATH "" 25 + #else 12 26 - #define DEFAULT_LIBPATH "/lib:/usr/lib" 13 27 + #define DEFAULT_LIBPATH "" 28 + #endif // AARCH64 14 29 #endif 15 30 16 31 // Base path of extensions installed on the system. ··· 34 19 #define EXTENSIONS_DIR "/lib/ext" 35 20 36 21 // Buffer that fits several sprintfs. 37 - @@ -392,13 +392,13 @@ void os::init_system_properties_values() { 22 + @@ -490,13 +490,13 @@ void os::init_system_properties_values() { 38 23 strlen(v) + 1 + 39 24 sizeof(SYS_EXT_DIR) + sizeof("/lib/") + sizeof(DEFAULT_LIBPATH) + 1, 40 25 mtInternal); ··· 50 35 Arguments::set_ext_dirs(buf); 51 36 52 37 FREE_C_HEAP_ARRAY(char, buf); 38 + -- 39 + 2.35.1 40 +
+2 -1
pkgs/development/coq-modules/mathcomp-word/default.nix
··· 10 10 11 11 releaseRev = v: "v${v}"; 12 12 13 + release."1.1".sha256 = "sha256:0jb28vgkr4xpg9d6k85rq7abpx5ch612iw9ps5w8q80q1jpjlc4z"; 13 14 release."1.0".sha256 = "sha256:0703m97rnivcbc7vvbd9rl2dxs6l8n52cbykynw61c6w9rhxspcg"; 14 15 15 16 inherit version; 16 17 defaultVersion = with versions; switch [ coq.version mathcomp.version ] [ 17 - { cases = [ (range "8.12" "8.14") (isGe "1.12") ]; out = "1.0"; } 18 + { cases = [ (range "8.12" "8.15") (isGe "1.12") ]; out = "1.1"; } 18 19 ] null; 19 20 20 21 propagatedBuildInputs = [ mathcomp.algebra mathcomp.ssreflect mathcomp.fingroup ];
+2 -2
pkgs/development/interpreters/joker/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "joker"; 5 - version = "0.18.0"; 5 + version = "1.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "candid82"; 10 10 repo = "joker"; 11 - sha256 = "sha256-Iia4sl8lRTpek5aZvQW/yy+TnMq5KNJH+pBnksqL/G0="; 11 + sha256 = "sha256-SlkhxALJwrZ/DOuBbqjb+wHEfT5mhd3lSD6E0geFP4Y="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-AYoespfzFLP/jIIxbw5K653wc7sSfLY8K7di8GZ64wA=";
+1 -1
pkgs/development/interpreters/php/generic.nix
··· 272 272 export EXTENSION_DIR=$out/lib/php/extensions 273 273 '' 274 274 # PKG_CONFIG need not be a relative path 275 - + lib.optionalString (!lib.versionAtLeast version "7.4") '' 275 + + lib.optionalString (lib.versionOlder version "7.4") '' 276 276 for i in $(find . -type f -name "*.m4"); do 277 277 substituteInPlace $i \ 278 278 --replace 'test -x "$PKG_CONFIG"' 'type -P "$PKG_CONFIG" >/dev/null'
+2 -2
pkgs/development/libraries/boost/generic.nix
··· 32 32 assert enableNumpy -> enablePython; 33 33 34 34 # Boost <1.69 can't be built on linux with clang >8, because pth was removed 35 - assert with lib; ((stdenv.isLinux && toolset == "clang" && !(versionOlder stdenv.cc.version "8.0.0")) -> !(versionOlder version "1.69")); 35 + assert with lib; (stdenv.isLinux && toolset == "clang" && versionAtLeast stdenv.cc.version "8.0.0") -> versionAtLeast version "1.69"; 36 36 37 37 with lib; 38 38 let ··· 143 143 stripLen = 1; 144 144 extraPrefix = "libs/context/"; 145 145 }) 146 - ++ optional (and (versionAtLeast version "1.70") (!versionAtLeast version "1.73")) ./cmake-paths.patch 146 + ++ optional (versionAtLeast version "1.70" && versionOlder version "1.73") ./cmake-paths.patch 147 147 ++ optional (versionAtLeast version "1.73") ./cmake-paths-173.patch 148 148 ++ optional (version == "1.77.0") (fetchpatch { 149 149 url = "https://github.com/boostorg/math/commit/7d482f6ebc356e6ec455ccb5f51a23971bf6ce5b.patch";
+4 -1
pkgs/development/libraries/clucene-core/2.x.nix
··· 20 20 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 21 21 "-D_CL_HAVE_GCC_ATOMIC_FUNCTIONS=0" 22 22 "-D_CL_HAVE_NAMESPACES_EXITCODE=0" 23 + "-D_CL_HAVE_NAMESPACES_EXITCODE__TRYRUN_OUTPUT=" 23 24 "-D_CL_HAVE_NO_SNPRINTF_BUG_EXITCODE=0" 24 - "-D_CL_HAVE_NO_SNWPRINTF_BUG_EXITCODE=0" 25 + "-D_CL_HAVE_NO_SNPRINTF_BUG_EXITCODE__TRYRUN_OUTPUT=" 25 26 "-D_CL_HAVE_TRY_BLOCKS_EXITCODE=0" 27 + "-D_CL_HAVE_TRY_BLOCKS_EXITCODE__TRYRUN_OUTPUT=" 26 28 "-D_CL_HAVE_PTHREAD_MUTEX_RECURSIVE=0" 27 29 "-DLUCENE_STATIC_CONSTANT_SYNTAX_EXITCODE=0" 30 + "-DLUCENE_STATIC_CONSTANT_SYNTAX_EXITCODE__TRYRUN_OUTPUT=" 28 31 ]; 29 32 30 33 patches = # From debian
+41
pkgs/development/libraries/jarowinkler-cpp/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , catch2 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "jarowinkler-cpp"; 10 + version = "1.0.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "maxbachmann"; 14 + repo = "jarowinkler-cpp"; 15 + rev = "v${version}"; 16 + hash = "sha256-6dIyCyoPs/2wHyGqlE+NC0pwz5ggS5edhN4Jbltx0jg="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + ]; 22 + 23 + cmakeFlags = lib.optionals doCheck [ 24 + "-DRAPIDFUZZ_BUILD_TESTING=ON" 25 + ]; 26 + 27 + checkInputs = [ 28 + catch2 29 + ]; 30 + 31 + # uses unreleased Catch2 version 3 32 + doCheck = false; 33 + 34 + meta = { 35 + description = "Fast Jaro and Jaro-Winkler distance"; 36 + homepage = "https://github.com/maxbachmann/jarowinkler-cpp"; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ dotlambda ]; 39 + platforms = lib.platforms.unix; 40 + }; 41 + }
-27
pkgs/development/libraries/libixp-hg/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, txt2tags }: 2 - 3 - stdenv.mkDerivation rec { 4 - rev = "148"; 5 - version = "hg-2012-12-02"; 6 - pname = "libixp"; 7 - 8 - src = fetchurl { 9 - url = "https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/libixp/source-archive.zip"; 10 - sha256 = "0kcdvdcrkw6q39v563ncis6d7ini64xbgn5fd3b4aa95fp9sj3is"; 11 - }; 12 - 13 - configurePhase = '' 14 - sed -i -e "s|^PREFIX.*=.*$|PREFIX = $out|" config.mk 15 - ''; 16 - 17 - nativeBuildInputs = [ unzip ]; 18 - buildInputs = [ txt2tags ]; 19 - 20 - meta = { 21 - homepage = "http://repo.cat-v.org/libixp/"; # see also https://libs.suckless.org/deprecated/libixp 22 - description = "Portable, simple C-language 9P client and server libary"; 23 - maintainers = with lib.maintainers; [ kovirobi ]; 24 - license = lib.licenses.mit; 25 - platforms = with lib.platforms; unix; 26 - }; 27 - }
+28
pkgs/development/libraries/libixp/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, unzip, txt2tags }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libixp"; 5 + version = "unstable-2022-04-04"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "0intro"; 9 + repo = "libixp"; 10 + rev = "ca2acb2988e4f040022f0e2094c69ab65fa6ec53"; 11 + hash = "sha256-S25DmXJ7fN0gXLV0IzUdz8hXPTYEHmaSG7Mnli6GQVc="; 12 + }; 13 + 14 + postConfigure = '' 15 + sed -i -e "s|^PREFIX.*=.*$|PREFIX = $out|" config.mk 16 + ''; 17 + 18 + nativeBuildInputs = [ unzip ]; 19 + buildInputs = [ txt2tags ]; 20 + 21 + meta = { 22 + homepage = "https://github.com/0intro/libixp"; 23 + description = "Portable, simple C-language 9P client and server libary"; 24 + maintainers = with lib.maintainers; [ kovirobi ]; 25 + license = lib.licenses.mit; 26 + platforms = with lib.platforms; unix; 27 + }; 28 + }
+4 -7
pkgs/development/libraries/mapbox-gl-qml/default.nix
··· 6 6 , curl 7 7 , qtbase 8 8 , qtlocation 9 - , mapbox-gl-native 9 + , maplibre-gl-native 10 10 }: 11 11 12 12 mkDerivation rec { 13 13 pname = "mapbox-gl-qml"; 14 - version = "1.7.7.1"; 14 + version = "2.0.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "rinigus"; 18 18 repo = "mapbox-gl-qml"; 19 19 rev = version; 20 - hash = "sha256-lmL9nawMY8rNNBV4zNF4N1gn9XZzIZ9Cw2ZRs9bjBaI="; 20 + hash = "sha256-EVZbQXV8pI0QTqFDTTynVglsqX1O5oK0Pl5Y/wp+/q0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ cmake pkg-config ]; 24 - buildInputs = [ curl qtlocation mapbox-gl-native ]; 24 + buildInputs = [ curl qtlocation maplibre-gl-native ]; 25 25 26 26 postPatch = '' 27 27 substituteInPlace src/CMakeLists.txt \ 28 28 --replace ' ''${QT_INSTALL_QML}' " $out/${qtbase.qtQmlPrefix}" 29 29 ''; 30 - 31 - # Package expects qt5 subdirectory of mapbox-gl-native to be in the include path 32 - NIX_CFLAGS_COMPILE = "-I${mapbox-gl-native}/include/qt5"; 33 30 34 31 meta = with lib; { 35 32 description = "Unofficial Mapbox GL Native bindings for Qt QML";
+66
pkgs/development/libraries/maplibre-gl-native/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , cmake 6 + , pkg-config 7 + , qtbase 8 + , curl 9 + , libuv 10 + , glfw3 11 + , rapidjson 12 + }: 13 + 14 + mkDerivation rec { 15 + pname = "maplibre-gl-native"; 16 + version = "unstable-2022-04-07"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "maplibre"; 20 + repo = "maplibre-gl-native"; 21 + rev = "225f8a4bfe7ad30fd59d693c1fb3ca0ba70d2806"; 22 + fetchSubmodules = true; 23 + hash = "sha256-NLtpi+bDLTHlnzMZ4YFQyF5B1xt9lzHyZPvEQLlBAnY="; 24 + }; 25 + 26 + patches = [ 27 + (fetchpatch { 28 + name = "skip-license-check.patch"; 29 + url = "https://git.alpinelinux.org/aports/plain/testing/mapbox-gl-native/0002-skip-license-check.patch?id=6751a93dca26b0b3ceec9eb151272253a2fe497e"; 30 + sha256 = "1yybwzxbvn0lqb1br1fyg7763p2h117s6mkmywkl4l7qg9daa7ba"; 31 + }) 32 + ]; 33 + 34 + postPatch = '' 35 + # don't use vendored rapidjson 36 + rm -r vendor/mapbox-base/extras/rapidjson 37 + ''; 38 + 39 + nativeBuildInputs = [ 40 + cmake 41 + pkg-config 42 + ]; 43 + 44 + buildInputs = [ 45 + curl 46 + libuv 47 + glfw3 48 + qtbase 49 + rapidjson 50 + ]; 51 + 52 + cmakeFlags = [ 53 + "-DMBGL_WITH_QT=ON" 54 + "-DMBGL_WITH_QT_LIB_ONLY=ON" 55 + "-DMBGL_WITH_QT_HEADLESS=OFF" 56 + ]; 57 + 58 + meta = with lib; { 59 + description = "Open-source alternative to Mapbox GL Native"; 60 + homepage = "https://maplibre.org/"; 61 + license = licenses.bsd2; 62 + maintainers = with maintainers; [ dotlambda ]; 63 + platforms = platforms.linux; 64 + broken = lib.versionOlder qtbase.version "5.15"; 65 + }; 66 + }
+1
pkgs/development/libraries/mlt/qt-5.nix
··· 71 71 72 72 passthru.updateScript = gitUpdater { 73 73 inherit pname version; 74 + attrPath = "libsForQt5.mlt"; 74 75 rev-prefix = "v"; 75 76 }; 76 77
+2 -2
pkgs/development/libraries/openfst/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "openfst"; 5 - version = "1.8.1"; 5 + version = "1.8.2"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-JPtTtyu2h+P6julscqMf8pINmbmAoKj2HdpCb8pnE/A="; 9 + sha256 = "sha256-3ph782JHIcXVujIa+VdRiY5PS7Qcijbi1k8GJ2Vti0I="; 10 10 }; 11 11 12 12 configureFlags = [
-2
pkgs/development/libraries/protolock/default.nix
··· 13 13 14 14 vendorSha256 = "sha256-kgSJUSjY8kgrGCNDPgw1WA8KwAqI5koJQ0IcE+tC5nk="; 15 15 16 - doCheck = false; 17 - 18 16 postInstall = '' 19 17 rm $out/bin/plugin* 20 18 '';
+41
pkgs/development/libraries/rapidfuzz-cpp/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , catch2 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "rapidfuzz-cpp"; 10 + version = "1.0.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "maxbachmann"; 14 + repo = "rapidfuzz-cpp"; 15 + rev = "v${version}"; 16 + hash = "sha256-331iW0nu5MlxuKNTgMkRSASnglxn+hEWBhRMnw0lY2Y="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + ]; 22 + 23 + cmakeFlags = lib.optionals doCheck [ 24 + "-DRAPIDFUZZ_BUILD_TESTING=ON" 25 + ]; 26 + 27 + checkInputs = [ 28 + catch2 29 + ]; 30 + 31 + # uses unreleased Catch2 version 3 32 + doCheck = false; 33 + 34 + meta = { 35 + description = "Rapid fuzzy string matching in C++ using the Levenshtein Distance"; 36 + homepage = "https://github.com/maxbachmann/rapidfuzz-cpp"; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ dotlambda ]; 39 + platforms = lib.platforms.unix; 40 + }; 41 + }
+10 -18
pkgs/development/libraries/science/math/fenics/default.nix pkgs/development/python-modules/fenics/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 3 , fetchpatch 4 + , blas 4 5 , boost 5 6 , cmake 6 7 , doxygen 7 8 , eigen 9 + , gtest 10 + , hdf5 11 + , lapack 12 + , mpi 8 13 , mpi4py 9 14 , numpy 10 15 , pkg-config 16 + , ply 11 17 , pybind11 12 18 , pytest 13 - , pythonPackages 14 - , six 15 - , sympy 16 - , gtest 17 - , hdf5 18 - , mpi 19 - , ply 20 19 , python 20 + , pythonPackages 21 21 , scotch 22 22 , setuptools 23 + , six 23 24 , sphinx 24 25 , suitesparse 25 26 , swig 27 + , sympy 26 28 , zlib 27 - , blas 28 - , lapack 29 29 , nixosTests 30 30 }: 31 + 31 32 let 32 33 version = "2019.1.0"; 33 - 34 - # TODO: test with newer pytest 35 - pytest = pythonPackages.callPackage 36 - ../../../../python2-modules/pytest { 37 - # hypothesis tests require pytest that causes dependency cycle 38 - hypothesis = pythonPackages.hypothesis.override { 39 - doCheck = false; 40 - }; 41 - }; 42 34 43 35 dijitso = pythonPackages.buildPythonPackage { 44 36 pname = "dijitso";
+2
pkgs/development/libraries/simpleitk/default.nix
··· 4 4 pname = "simpleitk"; 5 5 version = "2.1.1"; 6 6 7 + outputs = [ "out" "dev" ]; 8 + 7 9 src = fetchFromGitHub { 8 10 owner = "SimpleITK"; 9 11 repo = "SimpleITK";
+50
pkgs/development/libraries/taskflow/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , substituteAll 5 + , doctest 6 + , cmake 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "taskflow"; 11 + version = "3.3.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "taskflow"; 15 + repo = "taskflow"; 16 + rev = "v${version}"; 17 + hash = "sha256-UfXGupxgtowIt3BnIVWwim3rTE57TT1C9TCx9LVyN34="; 18 + }; 19 + 20 + patches = [ 21 + (substituteAll { 22 + src = ./unvendor-doctest.patch; 23 + inherit doctest; 24 + }) 25 + ]; 26 + 27 + postPatch = '' 28 + rm -r 3rd-party 29 + 30 + # tries to use x86 intrinsics on aarch64-darwin 31 + sed -i '/^#if __has_include (<immintrin\.h>)/,/^#endif/d' taskflow/utility/os.hpp 32 + ''; 33 + 34 + nativeBuildInputs = [ 35 + cmake 36 + ]; 37 + 38 + doCheck = true; 39 + 40 + meta = { 41 + description = "General-purpose Parallel and Heterogeneous Task Programming System"; 42 + homepage = "https://taskflow.github.io/"; 43 + changelog = let 44 + release = lib.replaceStrings ["."] ["-"] version; 45 + in "https://taskflow.github.io/taskflow/release-${release}.html"; 46 + license = lib.licenses.mit; 47 + platforms = lib.platforms.unix; 48 + maintainers = with lib.maintainers; [ dotlambda ]; 49 + }; 50 + }
+21
pkgs/development/libraries/taskflow/unvendor-doctest.patch
··· 1 + diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt 2 + index 3397d798..8277191e 100644 3 + --- a/unittests/CMakeLists.txt 4 + +++ b/unittests/CMakeLists.txt 5 + @@ -1,6 +1,6 @@ 6 + enable_testing() 7 + 8 + -include(${TF_3RD_PARTY_DIR}/doctest/doctest.cmake) 9 + +include(@doctest@/lib/cmake/doctest/doctest.cmake) 10 + 11 + list(APPEND TF_UNITTESTS 12 + utility 13 + @@ -24,7 +24,7 @@ list(APPEND TF_UNITTESTS 14 + foreach(unittest IN LISTS TF_UNITTESTS) 15 + add_executable(${unittest} ${unittest}.cpp) 16 + target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings) 17 + - target_include_directories(${unittest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest) 18 + + target_include_directories(${unittest} PRIVATE @doctest@/include/doctest) 19 + doctest_discover_tests(${unittest}) 20 + endforeach() 21 +
+3 -6
pkgs/development/libraries/vapoursynth/default.nix
··· 4 4 , ApplicationServices 5 5 }: 6 6 7 - with lib; 8 - 9 7 stdenv.mkDerivation rec { 10 8 pname = "vapoursynth"; 11 - version = "R58"; 9 + version = "58"; 12 10 13 11 src = fetchFromGitHub { 14 12 owner = "vapoursynth"; 15 13 repo = "vapoursynth"; 16 - rev = version; 14 + rev = "R${version}"; 17 15 sha256 = "sha256-LIjNfyfpyvE+Ec6f4aGzRA4ZGoWPFhjtUw4yrenDsUQ="; 18 16 }; 19 17 ··· 23 25 buildInputs = [ 24 26 zimg libass 25 27 (python3.withPackages (ps: with ps; [ sphinx cython ])) 26 - ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ]; 28 + ] ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ]; 27 29 28 30 enableParallelBuilding = true; 29 31 ··· 56 58 platforms = platforms.x86_64; 57 59 maintainers = with maintainers; [ rnhmjoj sbruder tadeokondrak ]; 58 60 }; 59 - 60 61 }
+1 -1
pkgs/development/ocaml-modules/bap/default.nix
··· 10 10 , z3 11 11 }: 12 12 13 - if !lib.versionAtLeast ocaml.version "4.08" 13 + if lib.versionOlder ocaml.version "4.08" 14 14 then throw "BAP is not available for OCaml ${ocaml.version}" 15 15 else 16 16
+1 -1
pkgs/development/ocaml-modules/batteries/default.nix
··· 2 2 , doCheck ? lib.versionAtLeast ocaml.version "4.08" && !stdenv.isAarch64 3 3 }: 4 4 5 - if !lib.versionAtLeast ocaml.version "4.02" 5 + if lib.versionOlder ocaml.version "4.02" 6 6 then throw "batteries is not available for OCaml ${ocaml.version}" 7 7 else 8 8
+1 -1
pkgs/development/ocaml-modules/bitstring/ppx.nix
··· 3 3 , ounit 4 4 }: 5 5 6 - if !lib.versionAtLeast ppxlib.version "0.18.0" 6 + if lib.versionOlder ppxlib.version "0.18.0" 7 7 then throw "ppx_bitstring is not available with ppxlib-${ppxlib.version}" 8 8 else 9 9
+1 -1
pkgs/development/ocaml-modules/bitv/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, autoreconfHook, which, ocaml, findlib }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "bitv is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/bz2/default.nix
··· 1 1 { lib, stdenv, fetchFromGitLab, ocaml, findlib, bzip2, autoreconfHook }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "bz2 is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/camlpdf/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, which, ocaml, findlib }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.10" 3 + if lib.versionOlder ocaml.version "4.10" 4 4 then throw "camlpdf is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/cpdf/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ocaml, findlib, camlpdf, ncurses }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.10" 3 + if lib.versionOlder ocaml.version "4.10" 4 4 then throw "cpdf is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/cstruct/lwt.nix
··· 1 1 { lib, buildDunePackage, cstruct, lwt }: 2 2 3 - if !lib.versionAtLeast (cstruct.version or "1") "3" 3 + if lib.versionOlder (cstruct.version or "1") "3" 4 4 then cstruct 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/cstruct/ppx.nix
··· 2 2 , ounit, cppo, ppx_sexp_conv, cstruct-unix, cstruct-sexp 3 3 }: 4 4 5 - if !lib.versionAtLeast (cstruct.version or "1") "3" 5 + if lib.versionOlder (cstruct.version or "1") "3" 6 6 then cstruct 7 7 else 8 8
+1 -1
pkgs/development/ocaml-modules/cstruct/sexp.nix
··· 1 1 { lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }: 2 2 3 - if !lib.versionAtLeast (cstruct.version or "1") "3" 3 + if lib.versionOlder (cstruct.version or "1") "3" 4 4 then cstruct 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/cstruct/unix.nix
··· 1 1 { lib, buildDunePackage, cstruct }: 2 2 3 - if !lib.versionAtLeast (cstruct.version or "1") "3" 3 + if lib.versionOlder (cstruct.version or "1") "3" 4 4 then cstruct 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/csv/lwt.nix
··· 1 1 { lib, buildDunePackage, ocaml, csv, ocaml_lwt }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "csv-lwt is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/ctypes/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ocaml, findlib, libffi, pkg-config, ncurses, integers, bigarray-compat }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "ctypes is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/erm_xml/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "erm_xml is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/expat/default.nix
··· 20 20 21 21 strictDeps = true; 22 22 23 - doCheck = !lib.versionAtLeast ocaml.version "4.06"; 23 + doCheck = lib.versionOlder ocaml.version "4.06"; 24 24 checkTarget = "testall"; 25 25 26 26 createFindlibDestdir = true;
+1 -1
pkgs/development/ocaml-modules/farfadet/default.nix
··· 2 2 , faraday 3 3 }: 4 4 5 - if !lib.versionAtLeast ocaml.version "4.3" 5 + if lib.versionOlder ocaml.version "4.3" 6 6 then throw "farfadet is not available for OCaml ${ocaml.version}" 7 7 else 8 8
+1 -1
pkgs/development/ocaml-modules/fmt/default.nix
··· 1 1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, cmdliner, seq, stdlib-shims }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.05" 3 + if lib.versionOlder ocaml.version "4.05" 4 4 then throw "fmt is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/fpath/default.nix
··· 1 1 { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, astring }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.03" 3 + if lib.versionOlder ocaml.version "4.03" 4 4 then throw "fpath is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/javalib/default.nix
··· 8 8 , extlib 9 9 }: 10 10 11 - if !lib.versionAtLeast ocaml.version "4.04" 11 + if lib.versionOlder ocaml.version "4.04" 12 12 then throw "javalib is not available for OCaml ${ocaml.version}" 13 13 else 14 14
+1 -1
pkgs/development/ocaml-modules/lablgl/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ocaml, findlib, libGLU, libGL, freeglut } : 2 2 3 - if !lib.versionAtLeast ocaml.version "4.03" 3 + if lib.versionOlder ocaml.version "4.03" 4 4 then throw "lablgl is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/lablgtk-extras/default.nix
··· 1 1 { stdenv, lib, fetchFromGitLab, ocaml, findlib, camlp4, config-file, lablgtk, xmlm }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 || lib.versionAtLeast ocaml.version "4.13" 5 5 then throw "lablgtk-extras is not available for OCaml ${ocaml.version}" 6 6 else
+1 -1
pkgs/development/ocaml-modules/logs/default.nix
··· 8 8 webpage = "https://erratique.ch/software/${pname}"; 9 9 in 10 10 11 - if !lib.versionAtLeast ocaml.version "4.03" 11 + if lib.versionOlder ocaml.version "4.03" 12 12 then throw "logs is not available for OCaml ${ocaml.version}" 13 13 else 14 14
+1 -1
pkgs/development/ocaml-modules/lua-ml/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, opaline }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.07" 3 + if lib.versionOlder ocaml.version "4.07" 4 4 then throw "lua-ml is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+3 -3
pkgs/development/ocaml-modules/lwt/default.nix
··· 4 4 , ocaml-syntax-shims 5 5 }: 6 6 7 - let inherit (lib) optional versionAtLeast; in 7 + let inherit (lib) optional versionOlder; in 8 8 9 9 buildDunePackage rec { 10 10 pname = "lwt"; ··· 22 22 strictDeps = true; 23 23 24 24 nativeBuildInputs = [ pkg-config cppo ] 25 - ++ optional (!versionAtLeast ocaml.version "4.08") ocaml-syntax-shims; 25 + ++ optional (versionOlder ocaml.version "4.08") ocaml-syntax-shims; 26 26 buildInputs = [ dune-configurator ] 27 - ++ optional (!versionAtLeast ocaml.version "4.07") ncurses; 27 + ++ optional (versionOlder ocaml.version "4.07") ncurses; 28 28 propagatedBuildInputs = [ libev mmap ocplib-endian seq result ]; 29 29 30 30 meta = {
+1 -1
pkgs/development/ocaml-modules/nocrypto/default.nix
··· 15 15 ''; 16 16 in 17 17 18 - if !versionAtLeast ocaml.version "4.08" 18 + if versionOlder ocaml.version "4.08" 19 19 then throw "nocrypto is not available for OCaml ${ocaml.version}" 20 20 else 21 21
+1 -1
pkgs/development/ocaml-modules/notty/default.nix
··· 4 4 5 5 with lib; 6 6 7 - if !versionAtLeast ocaml.version "4.05" 7 + if versionOlder ocaml.version "4.05" 8 8 then throw "notty is not available for OCaml ${ocaml.version}" 9 9 else 10 10
+1 -1
pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, astring, pprint }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "ocp-ocamlres is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/ocsigen-deriving/default.nix
··· 9 9 , num 10 10 }: 11 11 12 - if !lib.versionAtLeast ocaml.version "4.03" 12 + if lib.versionOlder ocaml.version "4.03" 13 13 then throw "ocsigen-deriving is not available of OCaml ${ocaml.version}" 14 14 else 15 15
+1 -1
pkgs/development/ocaml-modules/ppxlib/default.nix
··· 49 49 }."${version}"; in 50 50 51 51 if param ? max_version && lib.versionAtLeast ocaml.version param.max_version 52 - || param ? min_version && !lib.versionAtLeast ocaml.version param.min_version 52 + || param ? min_version && lib.versionOlder ocaml.version param.min_version 53 53 then throw "ppxlib-${version} is not available for OCaml ${ocaml.version}" 54 54 else 55 55
+1 -1
pkgs/development/ocaml-modules/reactivedata/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, react, opaline }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.04" 3 + if lib.versionOlder ocaml.version "4.04" 4 4 then throw "reactiveData is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/sawja/default.nix
··· 5 5 version = "1.5.11"; 6 6 in 7 7 8 - if !lib.versionAtLeast ocaml.version "4.07" 8 + if lib.versionOlder ocaml.version "4.07" 9 9 then throw "${pname} is not available for OCaml ${ocaml.version}" 10 10 else 11 11
+1 -1
pkgs/development/ocaml-modules/sedlex/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, gen, ppx_tools_versioned, ocaml-migrate-parsetree }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 then throw "sedlex is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/sosa/default.nix
··· 2 2 , findlib, ocaml, ocamlbuild 3 3 }: 4 4 5 - if !lib.versionAtLeast ocaml.version "4.02" 5 + if lib.versionOlder ocaml.version "4.02" 6 6 then throw "sosa is not available for OCaml ${ocaml.version}" 7 7 else 8 8
+1 -1
pkgs/development/ocaml-modules/tsdl/default.nix
··· 1 1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, ctypes, result, SDL2, pkg-config, ocb-stubblr }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.03" 3 + if lib.versionOlder ocaml.version "4.03" 4 4 then throw "tsdl is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/uri/sexp.nix
··· 1 1 { lib, ocaml, buildDunePackage, uri, ounit, ppx_sexp_conv, sexplib0 }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.04" 3 + if lib.versionOlder ocaml.version "4.04" 4 4 then throw "uri-sexp is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/uucp/default.nix
··· 8 8 doCheck = true; 9 9 in 10 10 11 - if !(lib.versionAtLeast ocaml.version minimumOCamlVersion) 11 + if lib.versionOlder ocaml.version minimumOCamlVersion 12 12 then builtins.throw "${pname} needs at least OCaml ${minimumOCamlVersion}" 13 13 else 14 14
+1 -1
pkgs/development/ocaml-modules/uunf/default.nix
··· 5 5 version = "14.0.0"; 6 6 in 7 7 8 - if !lib.versionAtLeast ocaml.version "4.03" 8 + if lib.versionOlder ocaml.version "4.03" 9 9 then throw "${pname} is not available for OCaml ${ocaml.version}" 10 10 else 11 11
+2 -2
pkgs/development/ocaml-modules/vg/default.nix
··· 8 8 with lib; 9 9 10 10 let 11 - inherit (lib) optionals versionAtLeast; 11 + inherit (lib) optionals versionOlder; 12 12 13 13 pname = "vg"; 14 14 version = "0.9.4"; 15 15 webpage = "https://erratique.ch/software/${pname}"; 16 16 in 17 17 18 - if !versionAtLeast ocaml.version "4.03" 18 + if versionOlder ocaml.version "4.03" 19 19 then throw "vg is not available for OCaml ${ocaml.version}" 20 20 else 21 21
+1 -1
pkgs/development/ocaml-modules/wasm/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.03" 3 + if lib.versionOlder ocaml.version "4.03" 4 4 || lib.versionOlder "4.13" ocaml.version 5 5 then throw "wasm is not available for OCaml ${ocaml.version}" 6 6 else
+1 -1
pkgs/development/ocaml-modules/xmlm/default.nix
··· 4 4 webpage = "https://erratique.ch/software/${pname}"; 5 5 in 6 6 7 - if !lib.versionAtLeast ocaml.version "4.02" 7 + if lib.versionOlder ocaml.version "4.02" 8 8 then throw "xmlm is not available for OCaml ${ocaml.version}" 9 9 else 10 10
+1 -1
pkgs/development/ocaml-modules/z3/default.nix
··· 1 1 { stdenv, lib, ocaml, findlib, zarith, z3 }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.07" 3 + if lib.versionOlder ocaml.version "4.07" 4 4 then throw "z3 is not available for OCaml ${ocaml.version}" 5 5 else 6 6
+1 -1
pkgs/development/ocaml-modules/zarith/default.nix
··· 3 3 , gmp 4 4 }: 5 5 6 - if !lib.versionAtLeast ocaml.version "4.04" 6 + if lib.versionOlder ocaml.version "4.04" 7 7 then throw "zarith is not available for OCaml ${ocaml.version}" 8 8 else 9 9
+2 -2
pkgs/development/python-modules/ansible-compat/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , ansible 4 + , ansible-core 5 5 , flaky 6 6 , pytest-mock 7 7 , pytestCheckHook ··· 35 35 ''; 36 36 37 37 checkInputs = [ 38 - ansible 38 + ansible-core 39 39 flaky 40 40 pytest-mock 41 41 pytestCheckHook
+3 -3
pkgs/development/python-modules/ansible-later/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "ansible-later"; 24 - version = "2.0.10"; 24 + version = "2.0.11"; 25 25 format = "pyproject"; 26 26 27 27 disabled = pythonOlder "3.8"; ··· 29 29 src = fetchFromGitHub { 30 30 owner = "thegeeklab"; 31 31 repo = pname; 32 - rev = "v${version}"; 33 - hash = "sha256-EwWoRLTA1vm8Su3VpXTrRVtmtneEsO/+SuuY1k1yeMQ="; 32 + rev = "refs/tags/v${version}"; 33 + hash = "sha256-K4GResTKKWXQ0OHpBwqTLnptQ8ipuQ9iaGZDlPqRUaI="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/ansible-runner/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , ansible 3 + , ansible-core 4 4 , buildPythonPackage 5 5 , fetchPypi 6 6 , mock ··· 32 32 ]; 33 33 34 34 propagatedBuildInputs = [ 35 - ansible 35 + ansible-core 36 36 psutil 37 37 pexpect 38 38 python-daemon ··· 41 41 ]; 42 42 43 43 checkInputs = [ 44 - ansible # required to place ansible CLI onto the PATH in tests 44 + ansible-core # required to place ansible CLI onto the PATH in tests 45 45 pytestCheckHook 46 46 pytest-mock 47 47 pytest-timeout
-88
pkgs/development/python-modules/ansible/base.nix
··· 1 - { lib 2 - , callPackage 3 - , buildPythonPackage 4 - , fetchPypi 5 - , installShellFiles 6 - , cryptography 7 - , jinja2 8 - , junit-xml 9 - , lxml 10 - , ncclient 11 - , packaging 12 - , paramiko 13 - , pexpect 14 - , psutil 15 - , pycrypto 16 - , pyyaml 17 - , requests 18 - , scp 19 - , windowsSupport ? false, pywinrm 20 - , xmltodict 21 - }: 22 - 23 - let 24 - ansible-collections = callPackage ./collections.nix { 25 - version = "3.4.0"; # must be < 4.0 26 - sha256 = "096rbgz730njk0pg8qnc27mmz110wqrw354ca9gasb7rqg0f4d6a"; 27 - }; 28 - in 29 - buildPythonPackage rec { 30 - pname = "ansible-base"; 31 - version = "2.10.17"; 32 - 33 - src = fetchPypi { 34 - inherit pname version; 35 - sha256 = "sha256-75JYgsqNTDwszQkc3hmeDIaQJMytDQejN9zyB7/zLzQ="; 36 - }; 37 - 38 - # ansible_connection is already wrapped, so don't pass it through 39 - # the python interpreter again, as it would break execution of 40 - # connection plugins. 41 - postPatch = '' 42 - substituteInPlace lib/ansible/executor/task_executor.py \ 43 - --replace "[python," "[" 44 - ''; 45 - 46 - nativeBuildInputs = [ 47 - installShellFiles 48 - ]; 49 - 50 - propagatedBuildInputs = [ 51 - # depend on ansible-collections instead of the other way around 52 - ansible-collections 53 - # from requirements.txt 54 - cryptography 55 - jinja2 56 - packaging 57 - pyyaml 58 - # optional dependencies 59 - junit-xml 60 - lxml 61 - ncclient 62 - paramiko 63 - pexpect 64 - psutil 65 - pycrypto 66 - requests 67 - scp 68 - xmltodict 69 - ] ++ lib.optional windowsSupport pywinrm; 70 - 71 - postInstall = '' 72 - installManPage docs/man/man1/*.1 73 - ''; 74 - 75 - # internal import errors, missing dependencies 76 - doCheck = false; 77 - 78 - passthru = { 79 - collections = ansible-collections; 80 - }; 81 - 82 - meta = with lib; { 83 - description = "Radically simple IT automation"; 84 - homepage = "https://www.ansible.com"; 85 - license = licenses.gpl3Plus; 86 - maintainers = with maintainers; [ hexa ]; 87 - }; 88 - }
+14 -8
pkgs/development/python-modules/ansible/collections.nix pkgs/development/python-modules/ansible/default.nix
··· 1 1 { lib 2 + , pythonOlder 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , jsonschema ··· 12 11 , textfsm 13 12 , ttp 14 13 , xmltodict 14 + 15 + # optionals 15 16 , withJunos ? false 16 17 , withNetbox ? false 17 - 18 - , version 19 - , sha256 20 18 }: 21 19 22 - buildPythonPackage rec { 20 + let 23 21 pname = "ansible"; 24 - inherit version; 22 + version = "5.6.0"; 23 + in 24 + buildPythonPackage { 25 + inherit pname version; 25 26 format = "setuptools"; 26 27 28 + disabled = pythonOlder "3.8"; 29 + 27 30 src = fetchPypi { 28 - inherit pname version sha256; 31 + inherit pname version; 32 + sha256 = "sha256-rNMHMUNBVNo3bO7rQW7hVBzfuOo8ZIAjpVo0yz7K+fM="; 29 33 }; 30 34 31 35 postPatch = '' 32 - # make ansible-base depend on ansible-collection, not the other way around 33 - sed -Ei '/ansible-(base|core)/d' setup.py 36 + # we make ansible-core depend on ansible, not the other way around 37 + sed -Ei '/ansible-core/d' setup.py 34 38 ''; 35 39 36 40 propagatedBuildInputs = lib.unique ([
+5 -14
pkgs/development/python-modules/ansible/core.nix
··· 3 3 , buildPythonPackage 4 4 , fetchPypi 5 5 , installShellFiles 6 + , ansible 6 7 , cryptography 7 8 , jinja2 8 9 , junit-xml ··· 22 21 , xmltodict 23 22 }: 24 23 25 - let 26 - ansible-collections = callPackage ./collections.nix { 27 - version = "5.5.0"; 28 - sha256 = "sha256-uKdtc3iJyb/Q5rDyJ23PjYNtpmcGejVXdvNQTXpm1Rg="; 29 - }; 30 - in 31 24 buildPythonPackage rec { 32 25 pname = "ansible-core"; 33 - version = "2.12.3"; 26 + version = "2.12.5"; 34 27 35 28 src = fetchPypi { 36 29 inherit pname version; 37 - sha256 = "sha256-ihNan3TJfKtndZKTdErTQ1D3GVI+i9m7kAjfTPlTryA="; 30 + sha256 = "sha256-HMyZRPEBMxra0e1A1axmqBSRMwUq402wJnp0qnO+67M="; 38 31 }; 39 32 40 33 # ansible_connection is already wrapped, so don't pass it through ··· 44 49 ]; 45 50 46 51 propagatedBuildInputs = [ 47 - # depend on ansible-collections instead of the other way around 48 - ansible-collections 52 + # depend on ansible instead of the other way around 53 + ansible 49 54 # from requirements.txt 50 55 cryptography 51 56 jinja2 ··· 71 76 72 77 # internal import errors, missing dependencies 73 78 doCheck = false; 74 - 75 - passthru = { 76 - collections = ansible-collections; 77 - }; 78 79 79 80 meta = with lib; { 80 81 description = "Radically simple IT automation";
-55
pkgs/development/python-modules/ansible/legacy.nix
··· 1 - { lib 2 - , fetchPypi 3 - , buildPythonPackage 4 - , pycrypto 5 - , paramiko 6 - , jinja2 7 - , pyyaml 8 - , httplib2 9 - , six 10 - , netaddr 11 - , dnspython 12 - , jmespath 13 - , dopy 14 - , ncclient 15 - , windowsSupport ? false 16 - , pywinrm 17 - }: 18 - 19 - buildPythonPackage rec { 20 - pname = "ansible"; 21 - version = "2.9.27"; 22 - 23 - src = fetchPypi { 24 - inherit pname version; 25 - sha256 = "sha256-R5FZ5Qs72Qkg0GvFlBDDpR0/m+m04QKeEdHkotBwVzY="; 26 - }; 27 - 28 - prePatch = '' 29 - # ansible-connection is wrapped, so make sure it's not passed 30 - # through the python interpreter. 31 - sed -i "s/\[python, /[/" lib/ansible/executor/task_executor.py 32 - ''; 33 - 34 - postInstall = '' 35 - for m in docs/man/man1/*; do 36 - install -vD $m -t $out/share/man/man1 37 - done 38 - ''; 39 - 40 - propagatedBuildInputs = [ 41 - pycrypto paramiko jinja2 pyyaml httplib2 42 - six netaddr dnspython jmespath dopy ncclient 43 - ] ++ lib.optional windowsSupport pywinrm; 44 - 45 - # dificult to test 46 - doCheck = false; 47 - 48 - meta = with lib; { 49 - homepage = "https://www.ansible.com"; 50 - description = "Radically simple IT automation"; 51 - license = [ licenses.gpl3 ] ; 52 - maintainers = with maintainers; [ joamaki costrouc hexa ]; 53 - platforms = platforms.linux ++ platforms.darwin; 54 - }; 55 - }
+2 -2
pkgs/development/python-modules/aprslib/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aprslib"; 10 - version = "0.7.0"; 10 + version = "0.7.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rossengeorgiev"; 14 14 repo = "aprs-python"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-QasyF0Ch4zdPoAgcqRavEENVGA/02/AgeWAgXYcSUjk="; 16 + hash = "sha256-wWlzOFhWJ7hJeM3RWsPTEsLjRzN4SMXsb2Cd612HB4w="; 17 17 }; 18 18 19 19 checkInputs = [
+11 -4
pkgs/development/python-modules/boxx/default.nix
··· 13 13 , pyopengl 14 14 , seaborn 15 15 , pytorch 16 + , pythonOlder 16 17 , torchvision 17 18 }: 18 19 19 20 buildPythonPackage rec { 20 21 pname = "boxx"; 21 - version = "0.9.11"; 22 + version = "0.10.0"; 23 + format = "setuptools"; 24 + 25 + disabled = pythonOlder "3.7"; 22 26 23 27 src = fetchPypi { 24 28 inherit pname version; 25 - sha256 = "sha256-xB/bCSIzT0JF5ZPWqSn3P8soBJnzDTfCyan+iOrfWzw="; 29 + hash = "sha256-1Q6wCloOCfyDmvC8VbK6GgfnxuliJ6Ze7UEvsNFBVa0="; 26 30 }; 27 31 28 32 propagatedBuildInputs = [ ··· 41 37 seaborn 42 38 ]; 43 39 44 - pythonImportsCheck = [ "boxx" ]; 45 40 checkInputs = [ 46 41 xvfb-run 47 42 pytorch 48 43 torchvision 44 + ]; 45 + 46 + pythonImportsCheck = [ 47 + "boxx" 49 48 ]; 50 49 51 50 checkPhase = '' ··· 56 49 ''; 57 50 58 51 meta = with lib; { 59 - description = "Tool-box for efficient build and debug in Python. Especially for Scientific Computing and Computer Vision."; 52 + description = "Tool-box for efficient build and debug for Scientific Computing and Computer Vision"; 60 53 homepage = "https://github.com/DIYer22/boxx"; 61 54 license = licenses.mit; 62 55 maintainers = with maintainers; [ lucasew ];
+3 -3
pkgs/development/python-modules/caldav/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "caldav"; 17 - version = "0.8.2"; 17 + version = "0.9.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "python-caldav"; 21 21 repo = pname; 22 - rev = "v${version}"; 23 - hash = "sha256-2mpE1aLipps4X/3EF0oKHXDcrgUh78/fxY6y1B1V2IU="; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-1pYbL9k2cfjIw9AFiItlDCidxZIuOAoUcgFmSibkphA="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/denonavr/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "denonavr"; 18 - version = "0.10.10"; 18 + version = "0.10.11"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.6"; ··· 24 24 owner = "scarface-4711"; 25 25 repo = pname; 26 26 rev = version; 27 - sha256 = "sha256-ZL04JJZStOr6egoki85qCQrXoSTTO43RlLVbNBVz3QA="; 27 + hash = "sha256-RY1XRGuwSFL429foEjEN93fBucUyyYc6cmpzYmYRorc="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/ffcv/default.nix
··· 5 5 , numba 6 6 , opencv4 7 7 , pandas 8 - , pkgconfig 8 + , pkg-config 9 9 , pytorch-pfn-extras 10 10 , terminaltables 11 11 , tqdm ··· 35 35 --replace "'webdataset'," "" 36 36 ''; 37 37 38 - nativeBuildInputs = [ pkgconfig ]; 38 + nativeBuildInputs = [ pkg-config ]; 39 39 buildInputs = [ libjpeg ]; 40 40 propagatedBuildInputs = [ opencv4 numba pandas pytorch-pfn-extras terminaltables tqdm ]; 41 41
+2 -2
pkgs/development/python-modules/fuse-python/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "fuse-python"; 5 - version = "1.0.4"; 5 + version = "1.0.5"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "b9a69c38b3909ffd35d77cb1a73ebfdc3a103a6d4cdd20c86c70ed1141771580"; 9 + sha256 = "sha256-dOX/szaCu6mlrypaBI9Ht+e0ZOv4QpG/WiWL+60Do6o="; 10 10 }; 11 11 12 12 buildInputs = [ fuse ];
+3 -3
pkgs/development/python-modules/glcontext/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "glcontext"; 11 - version = "2.3.5"; 11 + version = "2.3.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "moderngl"; 15 15 repo = pname; 16 - rev = version; 17 - sha256 = "sha256-wvoIfwd0UBooqbJGshADjf96Xqx2k9G1nN3Dy6v3GIY="; 16 + rev = "refs/tags/${version}"; 17 + sha256 = "sha256-fE1fyoKQz1jmTBcAz2CbkLjRfgN5QedpMOLMU8keIZs="; 18 18 }; 19 19 20 20 disabled = !isPy3k;
+3 -3
pkgs/development/python-modules/hahomematic/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "hahomematic"; 17 - version = "1.1.4"; 18 - format = "setuptools"; 17 + version = "1.2.0"; 18 + format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; 21 21 ··· 23 23 owner = "danielperna84"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - sha256 = "sha256-it3Hku0k+o2v+KeykCO3W5CxOpkWbGXT055Kq6cSDzo="; 26 + sha256 = "sha256-qHJld5vn2UNb9xBIn0gHteJ9Yn1EBoKhnNflWLaZI8I="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+10 -3
pkgs/development/python-modules/jeepney/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 + , flit-core 5 6 , async-timeout 6 7 , dbus 7 8 , pytest ··· 14 13 15 14 buildPythonPackage rec { 16 15 pname = "jeepney"; 17 - version = "0.7.1"; 16 + version = "0.8.0"; 18 17 19 - disabled = pythonOlder "3.6"; 18 + disabled = pythonOlder "3.7"; 19 + 20 + format = "pyproject"; 20 21 21 22 src = fetchPypi { 22 23 inherit pname version; 23 - sha256 = "fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"; 24 + sha256 = "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"; 24 25 }; 26 + 27 + nativeBuildInputs = [ 28 + flit-core 29 + ]; 25 30 26 31 checkInputs = [ 27 32 async-timeout
+5 -3
pkgs/development/python-modules/jupyterlab_server/default.nix
··· 25 25 }; 26 26 27 27 postPatch = '' 28 - sed -i "/^addopts/d" pyproject.toml 28 + substituteInPlace pyproject.toml \ 29 + --replace "--cov jupyterlab_server --cov-report term-missing --cov-report term:skip-covered" "" 30 + 31 + # translation tests try to install additional packages into read only paths 32 + rm -r tests/translations/ 29 33 ''; 30 34 31 35 propagatedBuildInputs = [ requests jsonschema pyjson5 Babel jupyter_server ]; ··· 40 36 pytest-tornasync 41 37 ruamel-yaml 42 38 ]; 43 - 44 - pytestFlagsArray = [ "--pyargs" "jupyterlab_server" ]; 45 39 46 40 __darwinAllowLocalNetworking = true; 47 41
+2
pkgs/development/python-modules/labgrid/default.nix
··· 6 6 , jinja2 7 7 , lib 8 8 , mock 9 + , packaging 9 10 , pexpect 10 11 , psutil 11 12 , pyserial ··· 45 44 attrs 46 45 autobahn 47 46 jinja2 47 + packaging 48 48 pexpect 49 49 pyserial 50 50 pyudev
+7 -5
pkgs/development/python-modules/libtmux/default.nix
··· 3 3 , buildPythonPackage 4 4 , poetry-core 5 5 , pytestCheckHook 6 - , pkgs 6 + , procps 7 + , tmux 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "libtmux"; 11 - version = "0.10.3"; 12 + version = "0.11.0"; 12 13 format = "pyproject"; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "tmux-python"; 16 17 repo = pname; 17 18 rev = "v${version}"; 18 - hash = "sha256:0syj8m4x2mcq96b76b7h75dsmcai22m15pfgkk90rpg7rp6sn772"; 19 + hash = "sha256-QbKqS40la6UGZENyGEw5kXigzexp3q7ff43fKlQ9GqE="; 19 20 }; 20 21 21 22 nativeBuildInputs = [ ··· 24 23 ]; 25 24 26 25 checkInputs = [ 27 - pkgs.procps 28 - pkgs.tmux 26 + procps 27 + tmux 28 + 29 29 pytestCheckHook 30 30 ]; 31 31
+2 -2
pkgs/development/python-modules/mailchecker/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "mailchecker"; 9 - version = "4.1.15"; 9 + version = "4.1.16"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-DOtLJKNvmj5dlveZX9sScfJZa3SY7GH7xfZHhIsybVQ="; 16 + hash = "sha256-A+lh+BggMSJ/PIcYMfX3u/YlKVqhG5IxbrHPb1U6Ll4="; 17 17 }; 18 18 19 19 # Module has no tests
+2 -2
pkgs/development/python-modules/marshmallow-dataclass/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "marshmallow-dataclass"; 15 - version = "8.5.5"; 15 + version = "8.5.6"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 21 21 owner = "lovasoa"; 22 22 repo = "marshmallow_dataclass"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-sozq+L3pa9iprAWtQd/L+LCfTWfDue04WzQ/fbM0mps="; 24 + sha256 = "sha256-wUjgIjpN+c26yhlz3XzMOcKwTt/MDCiCLh7yGdy42jk="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+14 -5
pkgs/development/python-modules/mkdocs-material/default.nix
··· 1 - { lib, callPackage, buildPythonApplication, fetchFromGitHub 1 + { lib 2 + , callPackage 3 + , buildPythonApplication 4 + , fetchFromGitHub 2 5 , jinja2 3 6 , markdown 4 7 , mkdocs 5 8 , mkdocs-material-extensions 6 9 , pygments 7 10 , pymdown-extensions 11 + , pythonOlder 8 12 }: 9 13 10 14 buildPythonApplication rec { 11 15 pname = "mkdocs-material"; 12 - version = "8.2.9"; 16 + version = "8.2.11"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.6"; 13 20 14 21 src = fetchFromGitHub { 15 22 owner = "squidfunk"; 16 23 repo = pname; 17 - rev = version; 18 - sha256 = "sha256-lrklTQWWsP1rjixqu5/S7XMN+K095NRGv3JkjRQ4brM="; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-YAXdIA36QWwdQxTux6Sy/F0j8lprSO+5/VezFcsGQYg="; 19 26 }; 20 27 21 28 propagatedBuildInputs = [ ··· 37 30 # No tests for python 38 31 doCheck = false; 39 32 40 - pythonImportsCheck = [ "mkdocs" ]; 33 + pythonImportsCheck = [ 34 + "mkdocs" 35 + ]; 41 36 42 37 meta = with lib; { 43 38 description = "Material for mkdocs";
+2 -2
pkgs/development/python-modules/mocket/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "mocket"; 22 - version = "3.10.4"; 22 + version = "3.10.5"; 23 23 disabled = !isPy3k; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "831c23bf891c525828b7da49a358c6e0698481e4c8b3a61a69e87f36d06ef969"; 27 + sha256 = "sha256-rF6ol5T6wH0nNmaP+lHQL8H+XZz1kl7OEe7NNO4MCtw="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/mypy-boto3-s3/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "mypy-boto3-s3"; 11 - version = "1.21.34"; 11 + version = "1.22.0.post1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-gXvMC+GZknL+jYG9ZQD1/dqRhMwXrZvXG8CvCFYxdco="; 18 + hash = "sha256-lOpsygYi1iCZ9DgqOjfJ4HL9PvRmLqMpEWqgeOyFCI4="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+5
pkgs/development/python-modules/onnx/default.nix
··· 55 55 export MAX_JOBS=$NIX_BUILD_CORES 56 56 ''; 57 57 58 + disabledTestPaths = [ 59 + # Unexpected output fields from running code: {'stderr'} 60 + "onnx/examples/np_array_tensorproto.ipynb" 61 + ]; 62 + 58 63 # The executables are just utility scripts that aren't too important 59 64 postInstall = '' 60 65 rm -r $out/bin
+40
pkgs/development/python-modules/peaqevcore/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "peaqevcore"; 9 + version = "0.0.16"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-VYJzypRiVOF4FrvglAp2NWMUNxZx2Fq1Pw7lx0xbVFw="; 17 + }; 18 + 19 + postPatch = '' 20 + substituteInPlace setup.py \ 21 + --replace "datetime" "" \ 22 + --replace "statistics" "" \ 23 + --replace "pytest" "" 24 + ''; 25 + 26 + # Tests are not shipped and source is not tagged 27 + # https://github.com/elden1337/peaqev-core/issues/4 28 + doCheck = false; 29 + 30 + pythonImportsCheck = [ 31 + "peaqevcore" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "Library for interacting with Peaqev car charging"; 36 + homepage = "https://github.com/elden1337/peaqev-core"; 37 + license = with licenses; [ mit ]; 38 + maintainers = with maintainers; [ fab ]; 39 + }; 40 + }
+2 -2
pkgs/development/python-modules/pg8000/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pg8000"; 11 - version = "1.26.0"; 11 + version = "1.26.1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-niXqE6W3/Mg7AmBR18bk3NUiHpUOvlOT3nFaP+oVJ9M="; 18 + sha256 = "sha256-zNK2/hkK3ddMCTpivgcwuemfPqA6oO96uV7Rt/9p0lc="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -6
pkgs/development/python-modules/pikepdf/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "pikepdf"; 28 - version = "5.1.1"; 28 + version = "5.1.2"; 29 29 format = "setuptools"; 30 30 31 31 disabled = pythonOlder "3.7"; ··· 40 40 extraPostFetch = '' 41 41 rm "$out/.git_archival.txt" 42 42 ''; 43 - hash = "sha256-LgF46DGVWNuUN2KGdfOGSokf4reDx55ay3gP2LO+4dY="; 43 + hash = "sha256-VR2/+XCQb62FdkGZBxP2XTqatdFYZO1ngb8gvoJEvzs="; 44 44 }; 45 45 46 46 patches = [ ··· 79 79 packaging 80 80 pillow 81 81 setuptools 82 - ]; 83 - 84 - disabledTests = [ 85 - "test_image_palette" # https://github.com/pikepdf/pikepdf/issues/328 86 82 ]; 87 83 88 84 pythonImportsCheck = [ "pikepdf" ];
+2 -2
pkgs/development/python-modules/policyuniverse/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "policyuniverse"; 9 - version = "1.5.0.20220421"; 9 + version = "1.5.0.20220426"; 10 10 disabled = pythonOlder "3.7"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-1rY77cIxqVcde+AYE6qfRgZzB8vb3yiQ3Bj+P0o1zFM="; 14 + sha256 = "sha256-lOis0JE0XI43KsuGgpG20iBRPttVJvRS225PInu7EUM="; 15 15 }; 16 16 17 17 # Tests are not shipped and there are no GitHub tags
+2 -2
pkgs/development/python-modules/pycoolmasternet-async/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "pycoolmasternet-async"; 9 - version = "0.1.2"; 9 + version = "0.1.3"; 10 10 11 11 disabled = pythonOlder "3.7"; 12 12 ··· 14 14 owner = "OnFreund"; 15 15 repo = "pycoolmasternet-async"; 16 16 rev = "v${version}"; 17 - sha256 = "0qzdk18iqrvin8p8zrydf69d6pii3j47j11h7ymmsx08gh7c176g"; 17 + hash = "sha256-1Xd8OdN8d3g23kQZqihZrNLKoqLCbu5BvAMNitg8aDA="; 18 18 }; 19 19 20 20 # no tests implemented
+3 -3
pkgs/development/python-modules/pyfritzhome/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyfritzhome"; 12 - version = "0.6.4"; 12 + version = "0.6.5"; 13 13 format = "setuptools"; 14 14 15 - disabled = pythonOlder "3.5"; 15 + disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "hthiery"; 19 19 repo = "python-fritzhome"; 20 20 rev = version; 21 - sha256 = "sha256-JCaB3E8KCfncwnTKIb0shB2qYpsKwBkrPZdC5lAJ1KQ="; 21 + hash = "sha256-0wfC4lQeTghN2uDUO8Rn2+G8BYOh2UfCZBDJmTw6Lb0="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+5 -5
pkgs/development/python-modules/pylast/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , certifi 4 3 , fetchPypi 5 4 , flaky 5 + , httpx 6 6 , importlib-metadata 7 7 , pytestCheckHook 8 8 , pythonOlder ··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pylast"; 14 - version = "4.5.0"; 14 + version = "5.0.0"; 15 15 format = "setuptools"; 16 16 17 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "sha256-YoALculx2trEDD1vU4xhiCGdb1OFPdxI1p2fwlZZAY8="; 21 + hash = "sha256-UBi2bCtGMtcavYEDtz5m5N0UxmCaj3un5aomxzbfLfg="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 26 26 ]; 27 27 28 28 propagatedBuildInputs = [ 29 - certifi 29 + httpx 30 30 ] ++ lib.optionals (pythonOlder "3.8") [ 31 31 importlib-metadata 32 32 ];
+2 -2
pkgs/development/python-modules/pyoppleio/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pyoppleio"; 10 - version = "1.0.6"; 10 + version = "1.0.7"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-q//uJ+2m9S0r+Jsa5Eye90YSw4cKzd04vPHMm89j8kg="; 17 + hash = "sha256-S1w3pPqhX903kkXUq9ALz0+zRvNGOimLughRRVKjV8E="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pypykatz/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pypykatz"; 16 - version = "0.5.6"; 16 + version = "0.5.7"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-iuLQfdRNxy6Z+7sYGG+dSHlxicOPtNOdB/VNLyZjRsY="; 23 + hash = "sha256-G+dbP+xtRH8dIU70HbimRJV+e/yYlo2ds5OAIzUcydY="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+11 -13
pkgs/development/python-modules/pytest-aiohttp/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , fetchpatch 5 4 , setuptools-scm 6 5 , aiohttp 7 6 , pytest ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "pytest-aiohttp"; 13 - version = "1.0.3"; 14 + version = "1.0.4"; 15 + 16 + format = "setuptools"; 14 17 15 18 src = fetchPypi { 16 19 inherit pname version; 17 - hash = "sha256-DI/rSNyOuAhw4rFTrK9iu7zCB5d+vLdDZf/P4WrcnxU="; 20 + sha256 = "39ff3a0d15484c01d1436cbedad575c6eafbf0f57cdf76fb94994c97b5b8c5a4"; 18 21 }; 19 - 20 - patches = [ 21 - # https://github.com/aio-libs/pytest-aiohttp/pull/26 22 - (fetchpatch { 23 - name = "fix-tests-with-pytest-asyncio-0.18.0.patch"; 24 - url = "https://github.com/aio-libs/pytest-aiohttp/commit/97152c2dfdd368f799ec6bcb5fc315736a726f53.patch"; 25 - hash = "sha256-g7MTyCKUHnufOfrbhVV58WtfbGt1uXx8F7U9U+EaXfg="; 26 - }) 27 - ]; 28 22 29 23 nativeBuildInputs = [ 30 24 setuptools-scm 31 25 ]; 32 26 27 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 28 + 29 + buildInputs = [ 30 + pytest 31 + ]; 32 + 33 33 propagatedBuildInputs = [ 34 34 aiohttp 35 - pytest 36 35 pytest-asyncio 37 36 ]; 38 37 ··· 40 43 41 44 meta = with lib; { 42 45 homepage = "https://github.com/aio-libs/pytest-aiohttp/"; 46 + changelog = "https://github.com/aio-libs/pytest-aiohttp/blob/v${version}/CHANGES.rst"; 43 47 description = "Pytest plugin for aiohttp support"; 44 48 license = licenses.asl20; 45 49 maintainers = with maintainers; [ dotlambda ];
+2
pkgs/development/python-modules/pytest-ansible/default.nix
··· 40 40 description = "Plugin for py.test to simplify calling ansible modules from tests or fixtures"; 41 41 license = licenses.mit; 42 42 maintainers = [ maintainers.costrouc ]; 43 + # https://github.com/ansible-community/pytest-ansible/blob/v2.2.4/setup.py#L124 44 + broken = lib.versionAtLeast ansible.version "2.10"; 43 45 }; 44 46 }
+1
pkgs/development/python-modules/pytorch-metric-learning/default.nix
··· 59 59 changelog = "https://github.com/KevinMusgrave/pytorch-metric-learning/releases/tag/v${version}"; 60 60 license = lib.licenses.mit; 61 61 maintainers = with lib.maintainers; [ bcdarwin ]; 62 + broken = true; # requires faiss which is unpackaged 62 63 }; 63 64 }
+18 -2
pkgs/development/python-modules/pytorch-pfn-extras/default.nix
··· 3 3 , lib 4 4 , numpy 5 5 , onnx 6 + , packaging 6 7 , pytestCheckHook 7 8 , pytorch 9 + , torchvision 8 10 , typing-extensions 9 11 }: 10 12 ··· 21 19 sha256 = "sha256-gB575ZKXZRAy5K5CkBtfG6KG1yQ9WDREIobsy43CEOc="; 22 20 }; 23 21 24 - propagatedBuildInputs = [ numpy pytorch typing-extensions ]; 22 + propagatedBuildInputs = [ numpy packaging pytorch typing-extensions ]; 25 23 26 - checkInputs = [ onnx pytestCheckHook ]; 24 + checkInputs = [ onnx pytestCheckHook torchvision ]; 25 + 26 + # ignore all pytest warnings 27 + preCheck = '' 28 + rm pytest.ini 29 + ''; 27 30 28 31 pythonImportsCheck = [ "pytorch_pfn_extras" ]; 29 32 30 33 disabledTestPaths = [ 31 34 # Requires optuna which is currently (2022-02-16) marked as broken. 32 35 "tests/pytorch_pfn_extras_tests/test_config_types.py" 36 + 37 + # requires onnxruntime which was removed because of poor maintainability 38 + # See https://github.com/NixOS/nixpkgs/pull/105951 https://github.com/NixOS/nixpkgs/pull/155058 39 + "tests/pytorch_pfn_extras_tests/onnx_tests/test_export.py" 40 + "tests/pytorch_pfn_extras_tests/onnx_tests/test_torchvision.py" 41 + "tests/pytorch_pfn_extras_tests/onnx_tests/utils.py" 42 + 43 + # RuntimeError: No Op registered for Gradient with domain_version of 9 44 + "tests/pytorch_pfn_extras_tests/onnx_tests/test_grad.py" 33 45 34 46 # Requires CUDA access which is not possible in the nix environment. 35 47 "tests/pytorch_pfn_extras_tests/cuda_tests/test_allocator.py"
+11 -3
pkgs/development/python-modules/rapidfuzz/default.nix
··· 9 9 , jarowinkler 10 10 , numpy 11 11 , hypothesis 12 + , jarowinkler-cpp 12 13 , pandas 13 14 , pytestCheckHook 15 + , rapidfuzz-cpp 16 + , taskflow 14 17 }: 15 18 16 19 buildPythonPackage rec { 17 20 pname = "rapidfuzz"; 18 - version = "2.0.8"; 21 + version = "2.0.11"; 19 22 20 23 disabled = pythonOlder "3.6"; 21 24 ··· 26 23 owner = "maxbachmann"; 27 24 repo = "RapidFuzz"; 28 25 rev = "v${version}"; 29 - fetchSubmodules = true; 30 - hash = "sha256-LA4UpP3jFcVZTYKuq8aBvfGgEhyOLeCUsUXEgSnwb94="; 26 + hash = "sha256-npmdnUMrmbHgUgqMxKBytgtL1weWw6BjVNmBkYSKNMw="; 31 27 }; 32 28 33 29 nativeBuildInputs = [ ··· 37 35 ]; 38 36 39 37 dontUseCmakeConfigure = true; 38 + 39 + buildInputs = [ 40 + jarowinkler-cpp 41 + rapidfuzz-cpp 42 + taskflow 43 + ]; 40 44 41 45 propagatedBuildInputs = [ 42 46 jarowinkler
+12 -6
pkgs/development/python-modules/ripser/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , fetchpatch 3 4 , fetchPypi 4 5 , pythonOlder 5 6 , cython ··· 8 7 , scipy 9 8 , scikit-learn 10 9 , persim 11 - , pytest 10 + , pytestCheckHook 12 11 }: 13 12 14 13 buildPythonPackage rec { ··· 21 20 sha256 = "335112a0f94532ccbe686db7826ee8d0714b32f65891abf92c0a02f3cb0fc5fd"; 22 21 }; 23 22 24 - checkInputs = [ 25 - pytest 23 + patches = [ 24 + (fetchpatch { 25 + url = "https://github.com/scikit-tda/ripser.py/commit/4baa248994cee9a65d710fac91809bad8ed4e5f1.patch"; 26 + sha256 = "sha256-J/nxMOGOUiBueojJrUlAaXwktHDploYG/XL8/siF2kY="; 27 + }) 26 28 ]; 27 29 28 30 propagatedBuildInputs = [ ··· 36 32 persim 37 33 ]; 38 34 39 - checkPhase = '' 35 + checkInputs = [ 36 + pytestCheckHook 37 + ]; 38 + 39 + preCheck = '' 40 40 # specifically needed for darwin 41 41 export HOME=$(mktemp -d) 42 42 mkdir -p $HOME/.matplotlib 43 43 echo "backend: ps" > $HOME/.matplotlib/matplotlibrc 44 - 45 - pytest 46 44 ''; 47 45 48 46 meta = with lib; {
+9 -11
pkgs/development/python-modules/svdtools/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "svdtools"; 14 - version = "0.1.21"; 14 + version = "0.1.22"; 15 + format = "setuptools"; 15 16 16 17 disabled = pythonOlder "3.8"; 17 18 18 19 src = fetchPypi { 19 20 inherit version pname; 20 - sha256 = "0qc94haqkj4dbhify1l3x0ji1dx34m79nfnsk1c7l1kl2zjvz6bz"; 21 + hash = "sha256-5zMuCFCvh7BXr9BbyyDhWw1Lt/Fomv0SALiPJQbxJNQ="; 21 22 }; 22 - 23 - # remove upon next release 24 - # see: https://github.com/stm32-rs/svdtools/pull/96 25 - prePatch = '' 26 - substituteInPlace setup.py \ 27 - --replace 'PyYAML ~= 5.3' 'PyYAML >= 5.3' 28 - ''; 29 23 30 24 propagatedBuildInputs = [ 31 25 braceexpand ··· 28 34 lxml 29 35 ]; 30 36 31 - checkInputs = [ pytestCheckHook ]; 37 + checkInputs = [ 38 + pytestCheckHook 39 + ]; 32 40 33 - pythonImportsCheck = [ "svdtools" ]; 41 + pythonImportsCheck = [ 42 + "svdtools" 43 + ]; 34 44 35 45 meta = with lib; { 36 46 description = "Python package to handle vendor-supplied, often buggy SVD files";
+38 -17
pkgs/development/python-modules/tpm2-pytss/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder 2 - , pkg-config, swig 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , asn1crypto 6 + , cffi 7 + , cryptography 8 + , ibm-sw-tpm2 9 + , pkg-config 10 + , pkgconfig 11 + , pycparser 12 + , pytestCheckHook 13 + , python 14 + , setuptools-scm 3 15 , tpm2-tss 4 - , cryptography, ibm-sw-tpm2 5 16 }: 6 17 7 18 buildPythonPackage rec { 8 19 pname = "tpm2-pytss"; 9 - 10 - # Last version on github is 0.2.4, but it looks 11 - # like a mistake (it's missing commits from 0.1.9) 12 20 version = "1.1.0"; 13 - disabled = pythonOlder "3.5"; 21 + disabled = pythonOlder "3.7"; 14 22 15 23 src = fetchPypi { 16 24 inherit pname version; 17 25 sha256 = "sha256-O0d1b99/V8b3embg8veerTrJGSVb/prlPVb7qSHErdQ="; 18 26 }; 19 - postPatch = '' 20 - substituteInPlace tpm2_pytss/config.py --replace \ 21 - 'SYSCONFDIR = CONFIG.get("sysconfdir", "/etc")' \ 22 - 'SYSCONFDIR = "${tpm2-tss}/etc"' 23 - ''; 24 27 25 - nativeBuildInputs = [ pkg-config swig ]; 26 - # The TCTI is dynamically loaded from tpm2-tss, we have to provide the library to the end-user 27 - propagatedBuildInputs = [ tpm2-tss ]; 28 + nativeBuildInputs = [ 29 + cffi 30 + pkgconfig 31 + # somehow propagating from pkgconfig does not work 32 + pkg-config 33 + setuptools-scm 34 + ]; 35 + 36 + buildInputs = [ 37 + tpm2-tss 38 + ]; 39 + 40 + propagatedBuildInputs = [ 41 + cffi 42 + asn1crypto 43 + cryptography 44 + ]; 45 + 46 + # https://github.com/tpm2-software/tpm2-pytss/issues/341 47 + doCheck = false; 28 48 29 49 checkInputs = [ 30 - cryptography 31 - # provide tpm_server used as simulator for the tests 32 50 ibm-sw-tpm2 51 + pytestCheckHook 33 52 ]; 53 + 54 + pythonImportsCheck = [ "tpm2_pytss" ]; 34 55 35 56 meta = with lib; { 36 57 homepage = "https://github.com/tpm2-software/tpm2-pytss";
+42 -3
pkgs/development/python-modules/update-dotdee/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }: 1 + { lib 2 + , buildPythonPackage 3 + , coloredlogs 4 + , executor 5 + , fetchFromGitHub 6 + , humanfriendly 7 + , naturalsort 8 + , property-manager 9 + , pytestCheckHook 10 + , pythonOlder 11 + , six 12 + }: 2 13 3 14 buildPythonPackage rec { 4 15 pname = "update-dotdee"; 5 16 version = "6.0"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 6 20 7 21 src = fetchFromGitHub { 8 22 owner = "xolox"; 9 23 repo = "python-update-dotdee"; 10 24 rev = version; 11 - sha256 = "sha256-2k7FdgWM0ESHQb2za87yhXGaR/rbMYLVcv10QexUH1A="; 25 + hash = "sha256-2k7FdgWM0ESHQb2za87yhXGaR/rbMYLVcv10QexUH1A="; 12 26 }; 13 27 14 - propagatedBuildInputs = [ executor naturalsort ]; 28 + propagatedBuildInputs = [ 29 + coloredlogs 30 + executor 31 + humanfriendly 32 + naturalsort 33 + property-manager 34 + six 35 + ]; 36 + 37 + checkInputs = [ 38 + pytestCheckHook 39 + ]; 40 + 41 + postPatch = '' 42 + substituteInPlace tox.ini \ 43 + --replace " --cov --showlocals --verbose" "" 44 + ''; 45 + 46 + pythonImportsCheck = [ 47 + "update_dotdee" 48 + ]; 49 + 50 + disabledTests = [ 51 + # TypeError: %o format: an integer is required, not str 52 + "test_executable" 53 + ]; 15 54 16 55 meta = with lib; { 17 56 description = "Generic modularized configuration file manager";
+2 -2
pkgs/development/python-modules/weconnect-mqtt/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "weconnect-mqtt"; 13 - version = "0.32.0"; 13 + version = "0.33.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "tillsteinbach"; 20 20 repo = "WeConnect-mqtt"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-XuWiWL3cszC8aM+CJcAk359VaBCZNUOu4mAfmbdpoGg="; 22 + sha256 = "sha256-m8T1ngTcqwrel4EW8jvXg7RH+TtYyZRvIR33kzgda7E="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/weconnect/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "weconnect"; 15 - version = "0.38.1"; 15 + version = "0.39.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "tillsteinbach"; 22 22 repo = "WeConnect-python"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-n9MqJ+npdHYpQJ8m6V8Oop+VuQ3EOCRrfIlU5qAc/Y8="; 24 + sha256 = "sha256-O5Dh0RWvSXCIF0savyNG5XDhGqCTJZHQpJM4VEX+S9w="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+15 -5
pkgs/development/python-modules/winsspi/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , minikerberos 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "winsspi"; 9 - version = "0.0.9"; 10 + version = "0.0.10"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 10 14 11 15 src = fetchPypi { 12 16 inherit pname version; 13 - sha256 = "1q8hr8l8d9jxyp55qsrlkyhdhqjc0n18ajzms7hf1xkhdl7rrbd2"; 17 + hash = "sha256-L1qNLEufRZFEQmkJ4mp05VBRLiO2z5r1LCoAADx8P9s="; 14 18 }; 15 - propagatedBuildInputs = [ minikerberos ]; 16 19 17 - # Project doesn't have tests 20 + propagatedBuildInputs = [ 21 + minikerberos 22 + ]; 23 + 24 + # Module doesn't have tests 18 25 doCheck = false; 19 - pythonImportsCheck = [ "winsspi" ]; 26 + 27 + pythonImportsCheck = [ 28 + "winsspi" 29 + ]; 20 30 21 31 meta = with lib; { 22 32 description = "Python module for ACL/ACE/Security descriptor manipulation";
+2 -2
pkgs/development/quickemu/default.nix
··· 43 43 44 44 stdenv.mkDerivation rec { 45 45 pname = "quickemu"; 46 - version = "3.14"; 46 + version = "3.15"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "quickemu-project"; 50 50 repo = "quickemu"; 51 51 rev = version; 52 - sha256="sha256-7zaXazGzb36Nwk/meJ3lGD+l+fylWZYnhttDL1CXN9s="; 52 + sha256="sha256-ako/eh8cMWKvdrgm9VTgSH67nA2igKUlJZtBeH1bu4Y="; 53 53 }; 54 54 55 55 patches = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 32 32 33 33 buildPythonApplication rec { 34 34 pname = "checkov"; 35 - version = "2.0.1077"; 35 + version = "2.0.1084"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "bridgecrewio"; 39 39 repo = pname; 40 40 rev = version; 41 - hash = "sha256-Jrwgm5diBSJGY0DFG6r6iv1VQwwawKy04K8/y8yokYI="; 41 + hash = "sha256-bzmXLqjtl742UcjBpYQdtiTKO6Oe/x7lGoJZh+uJzUo="; 42 42 }; 43 43 44 44 nativeBuildInputs = with py.pkgs; [
+1 -1
pkgs/development/tools/build-managers/rebar3/default.nix
··· 81 81 (rebar3WithPlugins { globalPlugins = [rebar3-nix]; }) 82 82 ] 83 83 } 84 - latest=$(list-git-tags --url=https://github.com/${owner}/${pname}.git | sed -n '/[\d\.]\+/p' | sort -V | tail -1) 84 + latest=$(list-git-tags | sed -n '/[\d\.]\+/p' | sort -V | tail -1) 85 85 if [ "$latest" != "${version}" ]; then 86 86 nixpkgs="$(git rev-parse --show-toplevel)" 87 87 nix_path="$nixpkgs/pkgs/development/tools/build-managers/rebar3"
+2 -2
pkgs/development/tools/doctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "doctl"; 5 - version = "1.71.1"; 5 + version = "1.72.0"; 6 6 7 7 vendorSha256 = null; 8 8 ··· 31 31 owner = "digitalocean"; 32 32 repo = "doctl"; 33 33 rev = "v${version}"; 34 - sha256 = "sha256-Y6YabrpM1WcNGp5ksvq3SBuAS6KEUVzEfxsPmBDS+Io="; 34 + sha256 = "sha256-+8uGh7cvNndBBLdTfbYDxfn7Z+4LPPgqeseLcR1P468="; 35 35 }; 36 36 37 37 meta = with lib; {
+5 -5
pkgs/development/tools/electron/generic.nix
··· 62 62 63 63 electronLibPath = with lib; makeLibraryPath ( 64 64 [ libuuid at-spi2-atk at-spi2-core libappindicator-gtk3 ] 65 - ++ optionals (! versionOlder version "9.0.0") [ libdrm mesa ] 66 - ++ optionals (! versionOlder version "11.0.0") [ libxkbcommon ] 67 - ++ optionals (! versionOlder version "12.0.0") [ libxshmfence ] 68 - ++ optionals (! versionOlder version "17.0.0") [ libglvnd ] 65 + ++ optionals (versionAtLeast version "9.0.0") [ libdrm mesa ] 66 + ++ optionals (versionAtLeast version "11.0.0") [ libxkbcommon ] 67 + ++ optionals (versionAtLeast version "12.0.0") [ libxshmfence ] 68 + ++ optionals (versionAtLeast version "17.0.0") [ libglvnd ] 69 69 ); 70 70 71 71 linux = { ··· 93 93 --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 94 94 --set-rpath "${atomEnv.libPath}:${electronLibPath}:$out/lib/electron" \ 95 95 $out/lib/electron/electron \ 96 - ${lib.optionalString (! lib.versionOlder version "15.0.0") "$out/lib/electron/chrome_crashpad_handler" } 96 + ${lib.optionalString (lib.versionAtLeast version "15.0.0") "$out/lib/electron/chrome_crashpad_handler" } 97 97 98 98 wrapProgram $out/lib/electron/electron \ 99 99 --prefix LD_PRELOAD : ${lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1 \
+3 -3
pkgs/development/tools/evans/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "evans"; 5 - version = "0.10.3"; 5 + version = "0.10.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ktr0731"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4KHJodqmx03uQ+HJBWmKbIBvkLh80N4fHnYL4GLciNc="; 11 + sha256 = "sha256-3gl4m0zTe8y4KLMAy3I7YD4Q7gLrRf3QsJap2IGX9Tk="; 12 12 }; 13 13 14 14 subPackages = [ "." ]; 15 15 16 - vendorSha256 = "sha256-to75gON3Kl0GHgVhhrW8I6GWOg9/KrUts3rwDLAfFnM="; 16 + vendorSha256 = "sha256-BYOrby7tlQJ0ZjZHCeDWzsCv7jBfwX9RX1weLfEz+cU="; 17 17 18 18 meta = with lib; { 19 19 description = "More expressive universal gRPC client";
-2
pkgs/development/tools/gofumpt/default.nix
··· 13 13 14 14 vendorSha256 = "sha256-Il1E1yOejLEdKRRMqelGeJbHRjx4qFymf7N98BEdFzg="; 15 15 16 - doCheck = false; 17 - 18 16 meta = with lib; { 19 17 description = "A stricter gofmt"; 20 18 homepage = "https://github.com/mvdan/gofumpt";
+9 -8
pkgs/development/tools/hcloud/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hcloud"; 5 - version = "1.29.0"; 5 + version = "1.29.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hetznercloud"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-B5L4vK5JkcYHqdyxAsP+tBcA6PtM2Gd4JwtW5nMuIXQ="; 11 + sha256 = "sha256-a+AXWr/60VFdNk+UkDYRXo5ib8LvaCVpjNi1GFrRVho="; 12 12 }; 13 13 14 + vendorSha256 = "sha256-iJnjmfP9BcT+OXotbS2+OSWGxQaMXwdlR1WTi04FesM="; 15 + 16 + ldflags = [ 17 + "-s" "-w" 18 + "-X github.com/hetznercloud/cli/internal/version.Version=${version}" 19 + ]; 20 + 14 21 nativeBuildInputs = [ installShellFiles ]; 15 - 16 - vendorSha256 = "sha256-3YU6vAIzTzkEwyMPH4QSUuQ1PQlrWnfRRCA1fHMny48="; 17 - 18 - doCheck = false; 19 - 20 - ldflags = [ "-s" "-w" "-X github.com/hetznercloud/cli/cli.Version=${version}" ]; 21 22 22 23 postInstall = '' 23 24 for shell in bash zsh; do
+1 -1
pkgs/development/tools/ocaml/cppo/ocamlbuild.nix
··· 1 1 { lib, buildDunePackage, cppo, ocamlbuild }: 2 2 3 - if !lib.versionAtLeast (lib.getVersion cppo) "1.6" 3 + if lib.versionOlder (lib.getVersion cppo) "1.6" 4 4 then cppo 5 5 else 6 6
+1 -1
pkgs/development/tools/ocaml/dune/1.nix
··· 1 1 { stdenv, lib, fetchurl, ocaml, findlib, ncurses }: 2 2 3 - if !lib.versionAtLeast ocaml.version "4.02" 3 + if lib.versionOlder ocaml.version "4.02" 4 4 || lib.versionAtLeast ocaml.version "4.12" 5 5 then throw "dune 1 is not available for OCaml ${ocaml.version}" 6 6 else
+1 -1
pkgs/development/tools/ocaml/merlin/4.x.nix
··· 48 48 dot_merlin_reader = "${dot-merlin-reader}/bin/dot-merlin-reader"; 49 49 dune = "${dune_2}/bin/dune"; 50 50 }) 51 - ] ++ lib.optional (!lib.versionAtLeast ocaml.version "4.12") 51 + ] ++ lib.optional (lib.versionOlder ocaml.version "4.12") 52 52 # This fixes the test-suite on macOS 53 53 # See https://github.com/ocaml/merlin/pull/1399 54 54 # Fixed in 4.4 for OCaml ≥ 4.12
+5
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 95 95 installPhase = '' 96 96 mkdir -p $out/bin 97 97 cp -r bin/Release/OmniSharp.Stdio.Driver/net6.0 $out/src 98 + 99 + # Delete files to mimick hacks in https://github.com/OmniSharp/omnisharp-roslyn/blob/bdc14ca/build.cake#L594 100 + rm $out/src/NuGet.*.dll 101 + rm $out/src/System.Configuration.ConfigurationManager.dll 102 + 98 103 makeWrapper $out/src/OmniSharp $out/bin/omnisharp \ 99 104 --prefix DOTNET_ROOT : ${dotnet-sdk} \ 100 105 --suffix PATH : ${dotnet-sdk}/bin
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c-sharp.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-c-sharp", 3 - "rev": "352a4630c81a7a5cbd3bc67327743bd8d38f2dd2", 4 - "date": "2022-01-03T12:31:17+00:00", 5 - "path": "/nix/store/c7k10h98vzqag0rsywm0p71jaz57880x-tree-sitter-c-sharp", 6 - "sha256": "198n5i9bvks0mmbqgzjgrhv6hy1afnx806jnap10241iyd817jbf", 3 + "rev": "5b6ae1f88e741b9ed738891ad1362fb9f2041671", 4 + "date": "2022-03-23T15:50:46-04:00", 5 + "path": "/nix/store/n5kjbimssqrwz7h99gq83935432dpm5s-tree-sitter-c-sharp", 6 + "sha256": "1yp1lyzay7hxlgca2r5yigpdy80vli4f48k2bm3h2rpa99fczmrb", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-clojure.json
··· 1 1 { 2 2 "url": "https://github.com/sogaiu/tree-sitter-clojure", 3 - "rev": "1b24766fe9feacb8f5006233fe5c2ebd0ba31eff", 4 - "date": "2022-02-19T08:24:15+09:00", 5 - "path": "/nix/store/1vxhbw0dxg95z8rbs1b96nrcjvhrhb52-tree-sitter-clojure", 6 - "sha256": "0sqi825gyjndn3v00kvk9scw6s5q0lr3ig6v49sccqc2addnr6di", 3 + "rev": "879f0e726295807d917d576fcf9e1e432c4c20fc", 4 + "date": "2022-04-11T22:46:47+09:00", 5 + "path": "/nix/store/19bcj8f61w958njvksnqzm5r5s8szzz2-tree-sitter-clojure", 6 + "sha256": "16g7s819gjgdc4wlp7rnvyv5i5dqa1yawxs8l4ggnz8n8acqza9n", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-comment.json
··· 1 1 { 2 2 "url": "https://github.com/stsewd/tree-sitter-comment", 3 - "rev": "6975eb268f42df2afc313f96c0693e284685dba7", 4 - "date": "2022-01-22T20:58:19-05:00", 5 - "path": "/nix/store/nl4whdipy7a4g3ds2yv3c0qr7z4pifwn-tree-sitter-comment", 6 - "sha256": "009krarzs9qykd8fas67gychjzcbgj8j0jm9h0963dlxs4hyay73", 3 + "rev": "a37ca370310ac6f89b6e0ebf2b86b2219780494e", 4 + "date": "2022-03-28T20:21:33-05:00", 5 + "path": "/nix/store/nbf4bgxb7a15mwbi6lsfn7gbq8x1s3c1-tree-sitter-comment", 6 + "sha256": "0y0wqzgrwwg09ipfs6i3bcxm5hbvs938g2ksnygcbgqdwgd5h8f2", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-devicetree.json
··· 1 1 { 2 2 "url": "https://github.com/joelspadin/tree-sitter-devicetree", 3 - "rev": "fa70098cd70393f84785f85cdc6a45299b59cd5b", 4 - "date": "2021-03-28T12:08:53-05:00", 5 - "path": "/nix/store/6nqsmnd75vwbvkj764vg5slkmjzkmdd9-tree-sitter-devicetree", 6 - "sha256": "0mr3q2l7js6csb1fp8xjysikj26l94p3mmsiik4qwnw5kg694yam", 3 + "rev": "877adbfa0174d25894c40fa75ad52d4515a36368", 4 + "date": "2022-03-23T18:25:46-05:00", 5 + "path": "/nix/store/q0rqqm39h4dh17nlrr10kbfcqbdfk5kl-tree-sitter-devicetree", 6 + "sha256": "1ds7pa4x1yd54xa2mba37vp8lbi8n4l975lps0249x8xw35r0jrl", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-elixir.json
··· 1 1 { 2 2 "url": "https://github.com/elixir-lang/tree-sitter-elixir", 3 - "rev": "b4027d7cfc96935b50878bdf9faf80bd64ac73cf", 4 - "date": "2022-03-04T15:40:04+00:00", 5 - "path": "/nix/store/h3qh2s4q51bnq66p1v067g1fb8bd1743-tree-sitter-elixir", 6 - "sha256": "1pf2n1j8j5w7mrh81yzvha1gh4w3vffngikj04kzd5gkx9asf3x6", 3 + "rev": "ec1c4cac1b2f0290c53511a72fbab17c47815d2b", 4 + "date": "2022-04-18T23:16:26+02:00", 5 + "path": "/nix/store/2jmkl3lxq6cy0cg4wjf3hgjciw0xsm0y-tree-sitter-elixir", 6 + "sha256": "0xiprldyfqpx5fil1b1kbnpj57n7j15j3m8dhibhif7azbd1z1y3", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-go.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-go", 3 - "rev": "07d722831382a043b16547b6d9202f3da07f3cb3", 4 - "date": "2022-03-22T15:34:30+01:00", 5 - "path": "/nix/store/9ay5gjwnip3jcmi096sw5fyi1kxqg1pk-tree-sitter-go", 6 - "sha256": "0rc1p5jab08v1r81gzaz5xmxmbspl5i5zxba9immzax8ahzhhaxn", 3 + "rev": "c8fed1f0847a65a04a4b8cb7655f5f416e0742ca", 4 + "date": "2022-03-29T10:06:48+02:00", 5 + "path": "/nix/store/f9vy5q9p3rf2dcp7zdw9708j138ibi36-tree-sitter-go", 6 + "sha256": "0yi8h1q39hsdxp9053by9xkl53wn229fhwjrrzml7k8y95qgnsyd", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-gomod.json
··· 1 1 { 2 2 "url": "https://github.com/camdencheek/tree-sitter-go-mod", 3 - "rev": "3cbcb572109ea0bc476a292208722c326c9e6c3a", 4 - "date": "2021-12-16T14:44:10-07:00", 5 - "path": "/nix/store/jxc3lqcxagfvlk7l62fg8z98mjrn7pgz-tree-sitter-go-mod", 6 - "sha256": "0csrvmpvihwmw3772j4lkj49myqqp0f7imi7c11h9x9szz3lc8x8", 3 + "rev": "e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0", 4 + "date": "2022-04-05T11:00:59-06:00", 5 + "path": "/nix/store/4a0idwqi76n4g809inrkv88nv68dgc0i-tree-sitter-go-mod", 6 + "sha256": "09rkqwdwhsm41nrz73rqbajap4bc0spjcld9k9fr8xmlmqa67j2b", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-heex.json
··· 1 1 { 2 2 "url": "https://github.com/connorlay/tree-sitter-heex", 3 - "rev": "592e22292a367312c35e13de7fdb888f029981d6", 4 - "date": "2022-01-30T14:04:04-08:00", 5 - "path": "/nix/store/21n6sqyvkfd0q5ass9nj2wgicm9ljmgv-tree-sitter-heex", 6 - "sha256": "1k4nhlbbn7lqrjmkz8rr81rsrfkl9qfwm9q7qd2b18ygzr52payh", 3 + "rev": "57e46b4b002d5fb5c1f2706fe42380e544ecab5f", 4 + "date": "2022-04-17T10:39:01-07:00", 5 + "path": "/nix/store/afmvzkh237ikn0b9fw51crzhyk4ys1d2-tree-sitter-heex", 6 + "sha256": "0gfxqph5j3n3dlpnyw85lrwhgjh4zm7mdrnf0qyv0f2basayfabm", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-java.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-java", 3 - "rev": "881b84fe7078651af5077cc4cea4c85f9fddde3b", 4 - "date": "2022-03-21T10:50:51+01:00", 5 - "path": "/nix/store/ii1dwsg972sbllim6vrmjbcaw9fcy2b1-tree-sitter-java", 6 - "sha256": "0kvqqrx669fyaxm55l0p5vbswf9bfknl0brsr6llyzdz81dl0vk4", 3 + "rev": "e7cb801ef57f74db5c4ebe14df74de852bb451b5", 4 + "date": "2022-04-16T15:36:51+02:00", 5 + "path": "/nix/store/55br93464adchwwjwdqjai8ppykwh098-tree-sitter-java", 6 + "sha256": "0w27xk9j7mm9gr5aiwcv6cgfvzfnps0l9b09mwfqxhndh7j96vfn", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-json.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-json", 3 - "rev": "203e239408d642be83edde8988d6e7b20a19f0e8", 4 - "date": "2021-08-18T10:35:07-07:00", 5 - "path": "/nix/store/yqbmn17vs2lxqg5wa8b269fcsd5wr4bv-tree-sitter-json", 6 - "sha256": "08igb9ylfdsjasyn0p9j4sqpp0i2x1qcdzacbmsag02jmkyi6s7f", 3 + "rev": "137e1ce6a02698fc246cdb9c6b886ed1de9a1ed8", 4 + "date": "2022-04-21T11:20:07-07:00", 5 + "path": "/nix/store/5f0z08shhb8d03ab4zlaq9ss4dim6k9f-tree-sitter-json", 6 + "sha256": "1amiaiizd4mvmnbwqbr8lmisi9831di8r8xck9wyi5sfj3nd8hai", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-julia.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-julia", 3 - "rev": "12ea597262125fc22fd2e91aa953ac69b19c26ca", 4 - "date": "2021-05-03T17:44:45-07:00", 5 - "path": "/nix/store/lbz23r698hn7cha09qq0dbfay7dh74gg-tree-sitter-julia", 6 - "sha256": "0rmd7k3rv567psxrlqv17gvckijs19xs6mxni045rpayxmk441sk", 3 + "rev": "1e8fe0b3988e7cf56530837fd3a870089ddc7684", 4 + "date": "2022-04-15T13:59:51-07:00", 5 + "path": "/nix/store/9li8yqbvf95jksbv6myzha9bpmwq6xsg-tree-sitter-julia", 6 + "sha256": "0jwwx7ipdw7lq53zn5j72w5n4schjnmfv5fb3lii1nj60fqahrp7", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-latex.json
··· 1 1 { 2 2 "url": "https://github.com/latex-lsp/tree-sitter-latex", 3 - "rev": "b71e4928a63a6d75bc1670004a5b5a98c850a149", 4 - "date": "2022-03-16T20:19:11+01:00", 5 - "path": "/nix/store/gzpihd6k8cqsl0facz7kfgn2dh294fxw-tree-sitter-latex", 6 - "sha256": "1z2ywj57fpxaym6bv5ixvc01h8szazbhzmzzw960f49mlrima3n6", 3 + "rev": "8c5d90e78fa58ee6acab465ffa9a53e8b7b2c69c", 4 + "date": "2022-04-23T15:10:18+02:00", 5 + "path": "/nix/store/qpc37mjsl75qnmyzbkw6azphwzfdr9n9-tree-sitter-latex", 6 + "sha256": "1xq5g34g9sqshhpprakc4k5lrlgg1n8vb7d7nfrx4ilrz5s0kks1", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-ledger.json
··· 1 1 { 2 2 "url": "https://github.com/cbarrete/tree-sitter-ledger", 3 - "rev": "0cdeb0e51411a3ba5493662952c3039de08939ca", 4 - "date": "2021-09-06T18:36:51-04:00", 5 - "path": "/nix/store/8gh6lfvqczb6n6ncnmszvk3kj527m75w-tree-sitter-ledger", 6 - "sha256": "1z0r2aphijzq6j67gb2lx2qr3fi2qpiz2x9dwkjvppdb4ch7ga7m", 3 + "rev": "1050a25df55a62878102d10e524b5184b316b7ad", 4 + "date": "2022-04-01T08:21:18-04:00", 5 + "path": "/nix/store/hfhxv3k8kxpg7m31xzrf56lbaa4ips65-tree-sitter-ledger", 6 + "sha256": "0qivr9wjab8m1ha4zisznijpw4x3phv0q0nh8lnsx7bjbz6f7xfx", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-llvm.json
··· 1 1 { 2 2 "url": "https://github.com/benwilliamgraham/tree-sitter-llvm", 3 - "rev": "3b213925b9c4f42c1acfe2e10bfbb438d9c6834d", 4 - "date": "2021-12-27T14:02:51-05:00", 5 - "path": "/nix/store/hjg9z82l3iqyjw0s9lf1kkm31p5wlv3d-tree-sitter-llvm", 6 - "sha256": "0ymrdcajji11852c158w67mgcsycphwj9mh777q3n4jn8pp37y8j", 3 + "rev": "e9948edc41e9e5869af99dddb2b5ff5cc5581af6", 4 + "date": "2022-03-31T23:27:40-04:00", 5 + "path": "/nix/store/8nkhzala4wscfip1g0skh1cxvmp3gp8l-tree-sitter-llvm", 6 + "sha256": "0d579ylhi3hgzm5wbahs6hci1rhv7q1x6wsav9dbzv1y6np2dfrk", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-lua.json
··· 1 1 { 2 2 "url": "https://github.com/MunifTanjim/tree-sitter-lua", 3 - "rev": "547184a6cfcc900fcac4a2a56538fa8bcdb293e6", 4 - "date": "2022-01-28T20:44:16+06:00", 5 - "path": "/nix/store/gvq91asqk6911bci8xxx5wjbp2p3c2lk-tree-sitter-lua", 6 - "sha256": "04z182d591r3jlw0yx29m0hhzw4b14f8m85rz2bw959p0yghs88k", 3 + "rev": "2b4ffd5a5ffd0c6b4c84f0d9e003050a70db2a37", 4 + "date": "2022-04-08T22:29:43+06:00", 5 + "path": "/nix/store/gj2bbwc3105djyl3l5b0hjr1y1jg7262-tree-sitter-lua", 6 + "sha256": "1l383clymmzk0q9b21kcgnmpww4hsh938yd3z9djpkhagadpqpjs", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-markdown.json
··· 1 1 { 2 2 "url": "https://github.com/MDeiml/tree-sitter-markdown", 3 - "rev": "b49b2da50864171eff56acc8ba067c3540a3991f", 4 - "date": "2022-02-26T15:22:17+01:00", 5 - "path": "/nix/store/vllxsz0nvlw6z9y6s199l5z8f5dlhcpv-tree-sitter-markdown", 6 - "sha256": "1adypmkfsf6pgahba588d8l6ib59209rb2fkyk2dv0d3va76pr8x", 3 + "rev": "d24196f9b3e5af6fcb2ec2a0b6cbc5c06f58b85e", 4 + "date": "2022-03-30T11:47:57+02:00", 5 + "path": "/nix/store/rdac46kl274bdd18bdrdh33s71sin7xd-tree-sitter-markdown", 6 + "sha256": "07i3zwjla74s61w39fqfmb5a61dw6xlgfagh70p1rpvyrpxsywds", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-org-nvim.json
··· 1 1 { 2 2 "url": "https://github.com/milisims/tree-sitter-org", 3 - "rev": "1c3eb533a9cf6800067357b59e03ac3f91fc3a54", 4 - "date": "2022-02-05T14:19:52-05:00", 5 - "path": "/nix/store/n51rx6d005iibpvb1bb2d7az1l6p6vlq-tree-sitter-org", 6 - "sha256": "06xkhhdlkikvxadp7wnk8riz51mjq9ks1jchdy9x3fmq6bj72y1p", 3 + "rev": "fab7af32a2719091df5b222f98099c566859de78", 4 + "date": "2022-04-07T16:00:06-04:00", 5 + "path": "/nix/store/b17cvbkdvv7d3dzbi58lgrqsnhvh79d8-tree-sitter-org", 6 + "sha256": "0jz69wm1ay84zkslbcp4l906ay7l4jd3bi1k1ivclpx493pg8ia7", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-php", 3 - "rev": "0ce134234214427b6aeb2735e93a307881c6cd6f", 4 - "date": "2022-01-31T19:53:17+01:00", 5 - "path": "/nix/store/kdddnbbsik9wvnjh1wnbyzzr1x8v64ps-tree-sitter-php", 6 - "sha256": "0gg3p1zpwfhf0qz0isnca0zi5zkxs5j5bmjix99dv3rkw911vk17", 3 + "rev": "3c17a28da38afac41332d3ce79bbd8951867f346", 4 + "date": "2022-03-29T09:09:35-07:00", 5 + "path": "/nix/store/7dmygp3gi9ch00mf59d7g2l8k6f2pl81-tree-sitter-php", 6 + "sha256": "06xc4y67pl96h1gfh9zg4yxdgqj5mv7md28m78gix8sk1h011irq", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-prisma.json
··· 1 1 { 2 2 "url": "https://github.com/victorhqc/tree-sitter-prisma", 3 - "rev": "bf0833cbedb2c5b39250f5ba900f1239a16c6749", 4 - "date": "2022-03-18T18:56:29+01:00", 5 - "path": "/nix/store/9pq2l5b34xvi3v6i9zq1qxh3r2ilg2qs-tree-sitter-prisma", 6 - "sha256": "0idgrra41w4v3sa4sb0p3ba7k6sxfw74px4fkpprddjqjdnsrl50", 3 + "rev": "0ac307e4be0409d4327082ddc737ed432a49dfc3", 4 + "date": "2022-04-20T10:52:00+02:00", 5 + "path": "/nix/store/24vp6k2ijg832c95hx2x0j8x4i6pxffz-tree-sitter-prisma", 6 + "sha256": "13rcwlkxv9dns7mgxrb34vzhq32c854bna6gsyczvs6vishm6i9l", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-r.json
··· 1 1 { 2 2 "url": "https://github.com/r-lib/tree-sitter-r", 3 - "rev": "c19e54de252d5573cc2a762a030957074526fe99", 4 - "date": "2022-01-27T09:41:27-05:00", 5 - "path": "/nix/store/b2h3khs1x0j4j2fvs2sbkx1dp3d8fx4g-tree-sitter-r", 6 - "sha256": "1zan8dhjpxrn7vy7mvbc85hcdd5lls3vzpk6nchvn3j0i1ach85h", 3 + "rev": "cc04302e1bff76fa02e129f332f44636813b0c3c", 4 + "date": "2022-03-28T10:31:51-04:00", 5 + "path": "/nix/store/0s6513shwiiqq26ma0alx16f9w0sg2yp-tree-sitter-r", 6 + "sha256": "0adq1qng3ghb4wvglplj73q8c95hzpfiqb2q8bqnms81i7p2xma7", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-scala", 3 - "rev": "0a3dd53a7fc4b352a538397d054380aaa28be54c", 4 - "date": "2021-10-10T10:34:22-07:00", 5 - "path": "/nix/store/mys098cdap3mdp6x4qwlk7b9v84998b0-tree-sitter-scala", 6 - "sha256": "1lwyipn5b36fskr8cm60qjblj2chf8336zkqbsifq49z1lj0wvpi", 3 + "rev": "ec6047f531e7d4c13787d4ff208b94a84de34165", 4 + "date": "2022-03-27T09:48:17+02:00", 5 + "path": "/nix/store/70sghy226gl3s1b2p0zjhplb6zjy777g-tree-sitter-scala", 6 + "sha256": "0yjl8hwdm1pkihfgfbg19z5j0v3cp64a2pa59maws1i231fm5bsw", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scheme.json
··· 1 1 { 2 2 "url": "https://github.com/6cdh/tree-sitter-scheme", 3 - "rev": "a1d2233f4e5498bb305858323c93525e1dd165c0", 4 - "date": "2022-04-07T21:19:08+08:00", 5 - "path": "/nix/store/ljq285gnl26w8jg1ahdhxk2xa4l2s3vn-tree-sitter-scheme", 6 - "sha256": "0ggh2jpgnnakhsry12m31f5ranjhgkkcxp5jhsqxw6ac778n28h9", 3 + "rev": "aee42e302f36045cdc671223ce10a069203fd604", 4 + "date": "2022-04-21T11:07:14+08:00", 5 + "path": "/nix/store/jviqv18g5yszjcqmv48rpml6z4q4ccv8-tree-sitter-scheme", 6 + "sha256": "1piw1g5w29jxhwrvivpmdkyr2vbi8fpj2idzk8bwvplzbb6hfr7x", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-supercollider.json
··· 1 1 { 2 2 "url": "https://github.com/madskjeldgaard/tree-sitter-supercollider", 3 - "rev": "0f0e5b5a96dd3e048a9c3db648ed969c44068bff", 4 - "date": "2022-02-01T13:46:31+01:00", 5 - "path": "/nix/store/5rzm6vnqvpwxwakrjyy93hg0glfvcx93-tree-sitter-supercollider", 6 - "sha256": "0nxl43j7ddsddqcq56p921h1r5jkx8v49zxjzr6mcj6y1ljzndm2", 3 + "rev": "90c6d9f777d2b8c4ce497c48b5f270a44bcf3ea0", 4 + "date": "2022-04-14T11:41:40+02:00", 5 + "path": "/nix/store/hzdm20x9fpc8bqd6bphq1akbdmdcpq7s-tree-sitter-supercollider", 6 + "sha256": "1g0q32crsnzxnwh5bjfjm0dkxpnvdj76idjc8s4ba7hinwa8jpv0", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-svelte.json
··· 1 1 { 2 2 "url": "https://github.com/Himujjal/tree-sitter-svelte", 3 - "rev": "98274d94ec33e994e8354d9ddfdef58cca471294", 4 - "date": "2021-10-28T16:53:33+05:30", 5 - "path": "/nix/store/q3dapi6k6zdnnr0lki2ic9l6cbxdi2rq-tree-sitter-svelte", 6 - "sha256": "1kav0h755sa1j9j930kjrykb17aih017mbi0a97ncjjrlc6nyak5", 3 + "rev": "84c90ee15f851e1541c25c86e8a4338f5b4d5af2", 4 + "date": "2022-04-13T11:35:15+05:30", 5 + "path": "/nix/store/2miakcpw7xgg2pcwdbcg0kl2djijcfbj-tree-sitter-svelte", 6 + "sha256": "0hidafgzbnksyigksab8731jdnvj1vqn7fv0jxsc1yfrwrmai6ls", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+5 -5
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-toml.json
··· 1 1 { 2 - "url": "https://github.com/ikatyang/tree-sitter-toml", 3 - "rev": "8bd2056818b21860e3d756b5a58c4f6e05fb744e", 4 - "date": "2021-05-11T12:47:32+08:00", 5 - "path": "/nix/store/isgpadcxmgkb14w9yg67pb8lx7wlfhnn-tree-sitter-toml", 6 - "sha256": "0yasw5fp4mq6vzrdwlc3dxlss8a94bsffv4mzrfp0b3iw0s1dlyg", 2 + "url": "https://github.com/tree-sitter/tree-sitter-toml", 3 + "rev": "342d9be207c2dba869b9967124c679b5e6fd0ebe", 4 + "date": "2022-04-21T16:26:30-07:00", 5 + "path": "/nix/store/is4vnj1s94455s9msasbn7px7jjfr0ai-tree-sitter-toml", 6 + "sha256": "00pigsc947qc2p6g21iki6xy4h497arq53fp2fjgiw50bqmknrsp", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-typescript", 3 - "rev": "e8e8e8dc2745840b036421b4e43286750443cb13", 4 - "date": "2022-01-10T13:42:45-08:00", 5 - "path": "/nix/store/zl36qsk7pd9pcawfsy368axax97d83wz-tree-sitter-typescript", 6 - "sha256": "1z1v7fjgp418qsp0xkycfpvc8vm4a2ai5kx10xif1dvjpfgcj1qq", 3 + "rev": "8e9dba7bd7cf089838a036a98be94db53ba2d0a9", 4 + "date": "2022-04-13T09:44:02-07:00", 5 + "path": "/nix/store/188d0ki07nhmihrl2b868vmb9rd4hf4q-tree-sitter-typescript", 6 + "sha256": "010nnihmaw1a1l9mzjd1nmrb0z6j2h3pr872dzpdq7ajg0j3j1wl", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-vim.json
··· 1 1 { 2 2 "url": "https://github.com/vigoux/tree-sitter-viml", 3 - "rev": "c9d70082af14988842eb071c6c0b07e8d1d993ac", 4 - "date": "2022-03-21T17:11:25+01:00", 5 - "path": "/nix/store/z1bjg25frb0sq7kr0s3sp6jnz888p900-tree-sitter-viml", 6 - "sha256": "05mf8i5ni0kp4g1gdpgwjxi2d86hna2ijp9k7c1gy9j33hsq9i8g", 3 + "rev": "5268e0ec901e33ad7142ee31b580269a94fba042", 4 + "date": "2022-04-16T20:12:40+02:00", 5 + "path": "/nix/store/rw6cjm4vj4yihlfmrxa2vc81lr3x59rn-tree-sitter-viml", 6 + "sha256": "0vga1bivzkr00brzvv309hx7sqvg7y2kf6vx0s8hv9r56x6nm54s", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-zig.json
··· 1 1 { 2 2 "url": "https://github.com/maxxnino/tree-sitter-zig", 3 - "rev": "42e93d02ca945094699e2dc4de785bbaf8f740ec", 4 - "date": "2022-02-11T10:40:42+09:00", 5 - "path": "/nix/store/2yv27si133zqb93bm9gia0ymib9q2y75-tree-sitter-zig", 6 - "sha256": "14p02b04v67cvkvj7apipsmkmvv3jnhykm0qrrmqqxnkprac31im", 3 + "rev": "4cff36421dae9c05388b86cd64d2bab4b9ed6676", 4 + "date": "2022-04-02T10:33:48+07:00", 5 + "path": "/nix/store/ripw74y32a8nzsr9n30jfhh16wjxlxvb-tree-sitter-zig", 6 + "sha256": "0k9z0f6vfj1pfz3qkscb41wz2nzjp0xpz9mvm6264q655rq73dlc", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+1 -4
pkgs/development/tools/parsing/tree-sitter/update.nix
··· 42 42 "tree-sitter-ql" 43 43 "tree-sitter-embedded-template" 44 44 "tree-sitter-tsq" 45 + "tree-sitter-toml" 45 46 ]; 46 47 knownTreeSitterOrgGrammarReposJson = jsonFile "known-tree-sitter-org-grammar-repos" knownTreeSitterOrgGrammarRepos; 47 48 ··· 136 135 "tree-sitter-yaml" = { 137 136 orga = "ikatyang"; 138 137 repo = "tree-sitter-yaml"; 139 - }; 140 - "tree-sitter-toml" = { 141 - orga = "ikatyang"; 142 - repo = "tree-sitter-toml"; 143 138 }; 144 139 "tree-sitter-zig" = { 145 140 orga = "maxxnino";
+30
pkgs/development/tools/wp4nix/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitLab, nix, subversion }: 2 + 3 + buildGoModule rec { 4 + pname = "wp4nix"; 5 + version = "1.0.0"; 6 + 7 + src = fetchFromGitLab { 8 + domain = "git.helsinki.tools"; 9 + owner = "helsinki-systems"; 10 + repo = "wp4nix"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-WJteeFUMr684yZEtUP13MqRjJ1UAeo48AzOPdLEE65w="; 13 + }; 14 + 15 + vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 16 + 17 + postPatch = '' 18 + substituteInPlace main.go --replace nix-hash ${nix}/bin/nix-hash 19 + substituteInPlace svn.go --replace '"svn"' '"${subversion}/bin/svn"' 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "Packaging helper for Wordpress themes and plugins"; 24 + homepage = "https://git.helsinki.tools/helsinki-systems/wp4nix"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ onny ]; 27 + platforms = platforms.linux; 28 + }; 29 + } 30 +
+2 -2
pkgs/development/web/cypress/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "cypress"; 19 - version = "9.5.4"; 19 + version = "9.6.0"; 20 20 21 21 src = fetchzip { 22 22 url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip"; 23 - sha256 = "F4BSIA3ImXwmmki8/FK0t08Gf5S8KMpXNNBIPPJQNsM="; 23 + sha256 = "Mac6lmwQqbj9EPfpG0iLI8Qx04q7E0swmTqXx0J+Sdc="; 24 24 }; 25 25 26 26 # don't remove runtime deps
+53 -27
pkgs/games/assaultcube/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, makeDesktopItem, openal, pkg-config, libogg, 2 - libvorbis, SDL, SDL_image, makeWrapper, zlib, file, 3 - client ? true, server ? true }: 4 - 5 - with lib; 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeDesktopItem 5 + , copyDesktopItems 6 + , openal 7 + , pkg-config 8 + , libogg 9 + , libvorbis 10 + , SDL2 11 + , SDL2_image 12 + , makeWrapper 13 + , zlib 14 + , file 15 + , client ? true, server ? true 16 + }: 6 17 7 18 stdenv.mkDerivation rec { 8 - 9 - # master branch has legacy (1.2.0.2) protocol 1201 and gcc 6 fix. 10 19 pname = "assaultcube"; 11 - version = "unstable-2018-05-20"; 20 + version = "1.3.0.2"; 12 21 13 22 src = fetchFromGitHub { 14 23 owner = "assaultcube"; 15 24 repo = "AC"; 16 - rev = "f58ea22b46b5013a520520670434b3c235212371"; 17 - sha256 = "1vfn3d55vmmipdykrcfvgk6dddi9y95vlclsliirm7jdp20f15hd"; 25 + rev = "v${version}"; 26 + sha256 = "0qv339zw9q5q1y7bghca03gw7z4v89sl4lbr6h3b7siy08mcwiz9"; 18 27 }; 19 28 20 - nativeBuildInputs = [ makeWrapper pkg-config ]; 29 + nativeBuildInputs = [ 30 + makeWrapper 31 + pkg-config 32 + copyDesktopItems 33 + ]; 21 34 22 - buildInputs = [ file zlib ] ++ optionals client [ openal SDL SDL_image libogg libvorbis ]; 35 + buildInputs = [ 36 + file 37 + zlib 38 + ] ++ lib.optionals client [ 39 + openal 40 + SDL2 41 + SDL2_image 42 + libogg 43 + libvorbis 44 + ]; 23 45 24 - targets = (optionalString server "server") + (optionalString client " client"); 46 + targets = (lib.optionalString server "server") + (lib.optionalString client " client"); 25 47 makeFlags = [ "-C source/src" "CXX=${stdenv.cc.targetPrefix}c++" targets ]; 26 48 27 - desktop = makeDesktopItem { 28 - name = "AssaultCube"; 29 - desktopName = "AssaultCube"; 30 - comment = "A multiplayer, first-person shooter game, based on the CUBE engine. Fast, arcade gameplay."; 31 - genericName = "First-person shooter"; 32 - categories = [ "Game" "ActionGame" "Shooter" ]; 33 - icon = "assaultcube.png"; 34 - exec = pname; 35 - }; 49 + desktopItems = [ 50 + (makeDesktopItem { 51 + name = pname; 52 + desktopName = "AssaultCube"; 53 + comment = "A multiplayer, first-person shooter game, based on the CUBE engine. Fast, arcade gameplay."; 54 + genericName = "First-person shooter"; 55 + categories = [ "Game" "ActionGame" "Shooter" ]; 56 + icon = "assaultcube"; 57 + exec = pname; 58 + }) 59 + ]; 36 60 37 61 gamedatadir = "/share/games/${pname}"; 38 62 39 63 installPhase = '' 64 + runHook preInstall 40 65 41 66 bindir=$out/bin 42 67 ··· 72 47 if (test -e source/src/ac_client) then 73 48 cp source/src/ac_client $bindir 74 49 mkdir -p $out/share/applications 75 - cp ${desktop}/share/applications/* $out/share/applications 76 50 install -Dpm644 packages/misc/icon.png $out/share/icons/assaultcube.png 77 51 install -Dpm644 packages/misc/icon.png $out/share/pixmaps/assaultcube.png 78 52 ··· 84 60 makeWrapper $out/bin/ac_server $out/bin/${pname}-server \ 85 61 --chdir "$out/$gamedatadir" --add-flags "-Cconfig/servercmdline.txt" 86 62 fi 87 - ''; 88 63 89 - meta = { 64 + runHook postInstall 65 + ''; 66 + 67 + meta = with lib; { 90 68 description = "Fast and fun first-person-shooter based on the Cube fps"; 91 69 homepage = "https://assault.cubers.net"; 92 - maintainers = [ ]; 93 70 platforms = platforms.linux; # should work on darwin with a little effort. 94 - license = lib.licenses.unfree; 71 + license = licenses.unfree; 72 + maintainers = with maintainers; [ darkonion0 ]; 95 73 }; 96 74 }
+6 -6
pkgs/games/openrct2/default.nix
··· 5 5 }: 6 6 7 7 let 8 - openrct2-version = "0.3.5.1"; 8 + openrct2-version = "0.4.0"; 9 9 10 10 # Those versions MUST match the pinned versions within the CMakeLists.txt 11 11 # file. The REPLAYS repository from the CMakeLists.txt is not necessary. 12 - objects-version = "1.0.21"; 13 - title-sequences-version = "0.1.2c"; 12 + objects-version = "1.2.7"; 13 + title-sequences-version = "0.4.0"; 14 14 15 15 openrct2-src = fetchFromGitHub { 16 16 owner = "OpenRCT2"; 17 17 repo = "OpenRCT2"; 18 18 rev = "v${openrct2-version}"; 19 - sha256 = "01v9nsabqjq8hjmyshcp7f5liagfq8sxx9i3yqqab7zk4iixag1h"; 19 + sha256 = "sha256-4MDOLOPsKzk1vb1o/G90/NTyYJWBSrGRX6ZJETbBIaI="; 20 20 }; 21 21 22 22 objects-src = fetchFromGitHub { 23 23 owner = "OpenRCT2"; 24 24 repo = "objects"; 25 25 rev = "v${objects-version}"; 26 - sha256 = "0r2vp2y67jc1mpfl4j83sx5khvvaddx7xs26ppkigmr2d1xpxgr7"; 26 + sha256 = "sha256-R4+rEdGdvYwFrkm/S3+zXmU+UDam51dI/pWKmFXNrbE="; 27 27 }; 28 28 29 29 title-sequences-src = fetchFromGitHub { 30 30 owner = "OpenRCT2"; 31 31 repo = "title-sequences"; 32 32 rev = "v${title-sequences-version}"; 33 - sha256 = "1qdrm4q75bznmgdrpjdaiqvbf3q4vwbkkmls45izxvyg1djrpsdf"; 33 + sha256 = "sha256-anqCZkhYoaxPu3MYCYSsFFngOmPp2wnx2MGb0hj6W5U="; 34 34 }; 35 35 in 36 36 stdenv.mkDerivation {
+4 -4
pkgs/misc/tpm2-pkcs11/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, substituteAll 2 2 , pkg-config, autoreconfHook, autoconf-archive, makeWrapper, patchelf 3 - , tpm2-tss, tpm2-tools, opensc, openssl, sqlite, python37, glibc, libyaml 3 + , tpm2-tss, tpm2-tools, opensc, openssl, sqlite, python3, glibc, libyaml 4 4 , abrmdSupport ? true, tpm2-abrmd ? null 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "tpm2-pkcs11"; 9 - version = "1.7.0"; 9 + version = "1.8.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "tpm2-software"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-Z9w6mIFen8Lf1l59XrMtR/Je2BZZycsOLxKS0VS4r4c="; 15 + sha256 = "sha256-f5wi0nIM071yaQCwPkY1agKc7OEQa/IxHJc4V2i0Q9I="; 16 16 }; 17 17 18 18 patches = lib.singleton ( ··· 33 33 ]; 34 34 buildInputs = [ 35 35 tpm2-tss tpm2-tools opensc openssl sqlite libyaml 36 - (python37.withPackages (ps: [ ps.pyyaml ps.cryptography ps.pyasn1-modules ])) 36 + (python3.withPackages (ps: [ ps.pyyaml ps.cryptography ps.pyasn1-modules ps.tpm2-pytss ])) 37 37 ]; 38 38 39 39 outputs = [ "out" "bin" "dev" ];
+2 -2
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 3 3 let 4 4 generic = args: let 5 5 imported = import ./generic.nix args; 6 - in if ((!lib.versionOlder args.version "391") 7 - && stdenv.hostPlatform.system != "x86_64-linux") then null 6 + in if lib.versionAtLeast args.version "391" 7 + && stdenv.hostPlatform.system != "x86_64-linux" then null 8 8 else callPackage imported { 9 9 lib32 = (pkgsi686Linux.callPackage imported { 10 10 libsOnly = true;
+1 -1
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 33 33 34 34 assert !libsOnly -> kernel != null; 35 35 assert versionOlder version "391" -> sha256_32bit != null; 36 - assert ! versionOlder version "391" -> stdenv.hostPlatform.system == "x86_64-linux"; 36 + assert versionAtLeast version "391" -> stdenv.hostPlatform.system == "x86_64-linux"; 37 37 38 38 let 39 39 nameSuffix = optionalString (!libsOnly) "-${kernel.version}";
+1 -1
pkgs/os-specific/linux/rtl8723bs/default.nix
··· 35 35 homepage = "https://github.com/hadess/rtl8723bs"; 36 36 license = lib.licenses.gpl2; 37 37 platforms = lib.platforms.linux; 38 - broken = (! versionOlder kernel.version "4.12"); # Now in kernel staging drivers 38 + broken = versionAtLeast kernel.version "4.12"; # Now in kernel staging drivers 39 39 maintainers = with maintainers; [ elitak ]; 40 40 }; 41 41 }
+1 -1
pkgs/os-specific/linux/sch_cake/default.nix
··· 29 29 license = with licenses; [ bsd3 gpl2 ]; 30 30 maintainers = with maintainers; [ fpletz ]; 31 31 platforms = platforms.linux; 32 - broken = !lib.versionOlder kernel.version "4.13"; 32 + broken = lib.versionAtLeast kernel.version "4.13"; 33 33 }; 34 34 }
+11 -1
pkgs/os-specific/linux/upower/default.nix
··· 18 18 , systemd 19 19 , useIMobileDevice ? true 20 20 , libimobiledevice 21 + , withDocs ? (stdenv.buildPlatform == stdenv.hostPlatform) 21 22 }: 22 23 23 24 stdenv.mkDerivation rec { 24 25 pname = "upower"; 25 26 version = "0.99.17"; 26 27 27 - outputs = [ "out" "dev" "devdoc" ]; 28 + outputs = [ "out" "dev" ] 29 + ++ lib.optionals withDocs [ "devdoc" ]; 28 30 29 31 src = fetchFromGitLab { 30 32 domain = "gitlab.freedesktop.org"; ··· 35 33 rev = "v${version}"; 36 34 sha256 = "xvvqzGxgkuGcvnO12jnLURNJUoSlnMw2g/mnII+i6Bs="; 37 35 }; 36 + 37 + strictDeps = true; 38 + 39 + depsBuildBuild = [ 40 + pkg-config 41 + ]; 38 42 39 43 nativeBuildInputs = [ 40 44 meson ··· 74 66 "-Dos_backend=linux" 75 67 "-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system" 76 68 "-Dudevrulesdir=${placeholder "out"}/lib/udev/rules.d" 69 + "-Dintrospection=${if (stdenv.buildPlatform == stdenv.hostPlatform) then "auto" else "disabled"}" 70 + "-Dgtk-doc=${lib.boolToString withDocs}" 77 71 ]; 78 72 79 73 doCheck = false; # fails with "env: './linux/integration-test': No such file or directory"
+4 -4
pkgs/servers/caddy/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, nixosTests }: 2 2 let 3 - version = "2.4.6"; 3 + version = "2.5.0"; 4 4 dist = fetchFromGitHub { 5 5 owner = "caddyserver"; 6 6 repo = "dist"; ··· 18 18 owner = "caddyserver"; 19 19 repo = "caddy"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-xNCxzoNpXkj8WF9+kYJfO18ux8/OhxygkGjA49+Q4vY="; 21 + sha256 = "sha256-V9iIz/93n6EBJZ9v3MDKD6FivtplRFN9a/e0o7YX0/w="; 22 22 }; 23 23 24 - vendorSha256 = "sha256-NomgHqIiugSISbEtvIbJDn5GRn6Dn72adLPkAvLbUQU="; 24 + vendorSha256 = "sha256-xu3klc9yb4Ws8fvXRV286IDhi/zQVN1PKCiFKb8VJBo="; 25 25 26 26 postInstall = '' 27 27 install -Dm644 ${dist}/init/caddy.service ${dist}/init/caddy-api.service -t $out/lib/systemd/system ··· 36 36 homepage = "https://caddyserver.com"; 37 37 description = "Fast, cross-platform HTTP/2 web server with automatic HTTPS"; 38 38 license = licenses.asl20; 39 - maintainers = with maintainers; [ Br1ght0ne ]; 39 + maintainers = with maintainers; [ Br1ght0ne techknowlogick ]; 40 40 }; 41 41 }
+2 -2
pkgs/servers/foundationdb/vsmake.nix
··· 84 84 makeFlags = [ "all" "fdb_java" "fdb_python" ] 85 85 # Don't compile FDBLibTLS if we don't need it in 6.0 or later; 86 86 # it gets statically linked in 87 - ++ lib.optional (!lib.versionAtLeast version "6.0") [ "fdb_c" ] 87 + ++ lib.optional (lib.versionOlder version "6.0") [ "fdb_c" ] 88 88 # Needed environment overrides 89 89 ++ [ "KVRELEASE=1" 90 90 "NOSTRIP=1" ··· 100 100 installPhase = '' 101 101 mkdir -vp $out/{bin,libexec/plugins} $lib/{lib,share/java} $dev/include/foundationdb 102 102 103 - '' + lib.optionalString (!lib.versionAtLeast version "6.0") '' 103 + '' + lib.optionalString (lib.versionOlder version "6.0") '' 104 104 # we only copy the TLS library on < 6.0, since it's compiled-in otherwise 105 105 cp -v ./lib/libFDBLibTLS.so $out/libexec/plugins/FDBLibTLS.so 106 106 '' + ''
+2 -2
pkgs/servers/grocy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "grocy"; 5 - version = "3.2.0"; 5 + version = "3.3.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip"; 9 - sha256 = "sha256-UPawutm5MllPYdru+Rpk8UYfHDNcrNYaq4qMbZksouI="; 9 + sha256 = "sha256-y0l0V+cTIfZYtyV8l6kdFW9UzJWb7eQMEocaPo7TLbg="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip ];
+3 -3
pkgs/servers/klipper/default.nix
··· 6 6 }: 7 7 stdenv.mkDerivation rec { 8 8 pname = "klipper"; 9 - version = "unstable-2022-03-11"; 9 + version = "unstable-2022-03-14"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "KevinOConnor"; 13 13 repo = "klipper"; 14 - rev = "e3beafbdb4f2ac3f889f81aec0cad5ec473c8612"; 15 - sha256 = "sha256-xZSZUJ2TNaUzfwEFpnzr5EPlOvILLyiQ/3K1iiup7kU="; 14 + rev = "30098db22a43274ceb87e078e603889f403a35c4"; 15 + sha256 = "sha256-ORpXBFGPY6A/HEYX9Hhwb3wP2KcAE+z3pTxf6j7CwGg="; 16 16 }; 17 17 18 18 sourceRoot = "source/klippy";
+13
pkgs/servers/mail/opensmtpd/cross_fix.diff
··· 1 + diff --git a/configure.ac b/configure.ac 2 + index c215f3bf..f5aa25d8 100644 3 + --- a/configure.ac 4 + +++ b/configure.ac 5 + @@ -67,7 +67,7 @@ AC_C_BIGENDIAN 6 + AC_PROG_CPP 7 + AC_PROG_INSTALL 8 + AC_PROG_LIBTOOL 9 + -AC_PATH_PROG([AR], [ar]) 10 + +AC_PATH_TOOL([AR], [ar]) 11 + AC_PATH_PROG([CAT], [cat]) 12 + AC_PATH_PROG([CHMOD], [chmod]) 13 + AC_PATH_PROG([CHOWN], [chown])
+1
pkgs/servers/mail/opensmtpd/default.nix
··· 16 16 17 17 patches = [ 18 18 ./proc_path.diff # TODO: upstream to OpenSMTPD, see https://github.com/NixOS/nixpkgs/issues/54045 19 + ./cross_fix.diff # TODO: remove when https://github.com/OpenSMTPD/OpenSMTPD/pull/1177 will have made it into a release 19 20 ]; 20 21 21 22 # See https://github.com/OpenSMTPD/OpenSMTPD/issues/885 for the `sh bootstrap`
+3 -3
pkgs/servers/vouch-proxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vouch-proxy"; 5 - version = "0.36.0"; 5 + version = "0.37.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vouch"; 9 9 repo = "vouch-proxy"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pgoxRzYc5PIrxnRwWpthFmpsxDfvWTmLT7upQVIFoQo="; 11 + sha256 = "0rcc5b3v5d9v4y78z5fnjbn1k10xy8cpgxjhqc7j22k9wkic05mh"; 12 12 }; 13 13 14 - vendorSha256 = "sha256-ifH+420FIrib+zQtzzHtMMYd84BED+vgnRw4xToYIl4="; 14 + vendorSha256 = "0pi230xcaf0wkphfn3s4h3riviihxlqwyb9lzfdvh8h5dpizxwc9"; 15 15 16 16 ldflags = [ 17 17 "-s" "-w"
-24
pkgs/tools/admin/ansible/default.nix
··· 1 - { python3Packages, fetchFromGitHub }: 2 - 3 - rec { 4 - ansible = ansible_2_12; 5 - 6 - ansible_2_12 = python3Packages.toPythonApplication python3Packages.ansible-core; 7 - 8 - ansible_2_11 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (old: rec { 9 - pname = "ansible-core"; 10 - version = "2.11.6"; 11 - 12 - src = python3Packages.fetchPypi { 13 - inherit pname version; 14 - sha256 = "sha256-k9UCg8fFtHbev4PcCJs/Z5uTmouae11ijSjar7s9MDo="; 15 - }; 16 - })); 17 - 18 - ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base; 19 - 20 - # End of support 2021/10/02, End of life 2021/12/31 21 - ansible_2_9 = python3Packages.toPythonApplication python3Packages.ansible; 22 - 23 - ansible_2_8 = throw "Ansible 2.8 went end of life on 2021/01/03 and has subsequently been dropped"; 24 - }
+3 -3
pkgs/tools/admin/trivy/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "trivy"; 8 - version = "0.26.0"; 8 + version = "0.27.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aquasecurity"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-Se42a9Q76LsMk6b04P2C2sWSZ2UgfnQrpJUC2gwdCwY="; 14 + sha256 = "sha256-EBvsyGODqF1FM4/HaecAC9f77Nl6aU3EXGDhxYYBm1A="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-y/7KhDx6p+n6nvFHWcvGbvOWsXvvL81jOgfjxsL/JDg="; 17 + vendorSha256 = "sha256-p8w1eJPOYM/fxNknGDumdDPUiluqYTNs8iYJ1o09NWo="; 18 18 19 19 excludedPackages = "misc"; 20 20
+2 -2
pkgs/tools/backup/dar/default.nix
··· 9 9 with lib; 10 10 11 11 stdenv.mkDerivation rec { 12 - version = "2.7.4"; 12 + version = "2.7.5"; 13 13 pname = "dar"; 14 14 15 15 src = fetchurl { 16 16 url = "mirror://sourceforge/dar/${pname}-${version}.tar.gz"; 17 - sha256 = "sha256-esti2QXoq+5bic639eG96vZOSJboMVHmD+oRNAI6ic4="; 17 + sha256 = "sha256-lfpJOomadV/oTJsOloH1rYF5Wy3kVr+EBUvqZ+xaCWY="; 18 18 }; 19 19 20 20 outputs = [ "out" "dev" ];
+5 -5
pkgs/tools/backup/duply/default.nix
··· 1 - { lib, stdenv, fetchurl, coreutils, python2, duplicity, gawk, gnupg, bash 1 + { lib, stdenv, fetchurl, coreutils, python3, duplicity, gawk, gnupg, bash 2 2 , gnugrep, txt2man, makeWrapper, which 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "duply"; 7 - version = "2.3.1"; 7 + version = "2.4"; 8 8 9 9 src = fetchurl { 10 - url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/2.3.x/duply_${version}.tgz"; 11 - sha256 = "149hb9bk7hm5h3aqf19k37d0i2jf0viaqmpq2997i48qp3agji7h"; 10 + url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/2.4.x/duply_${version}.tgz"; 11 + hash = "sha256-DCrp3o/ukzkfnVaLbIK84bmYnXvqKsvlkGn3GJY3iNg="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; ··· 21 21 mkdir -p "$out/share/man/man1" 22 22 install -vD duply "$out/bin" 23 23 wrapProgram "$out/bin/duply" --set PATH \ 24 - ${lib.makeBinPath [ coreutils python2 duplicity gawk gnupg bash gnugrep txt2man which ]} 24 + ${lib.makeBinPath [ coreutils python3 duplicity gawk gnupg bash gnugrep txt2man which ]} 25 25 "$out/bin/duply" txt2man > "$out/share/man/man1/duply.1" 26 26 ''; 27 27
+15 -10
pkgs/tools/misc/gosu/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, testVersion, gosu }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "gosu"; 5 - version = "unstable-2017-05-09"; 6 - 7 - goPackagePath = "github.com/tianon/gosu"; 5 + version = "1.14"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "tianon"; 11 9 repo = "gosu"; 12 - rev = "e87cf95808a7b16208515c49012aa3410bc5bba8"; 13 - sha256 = "sha256-Ff0FXJg3z8akof+/St1JJu1OO1kS5gMtxSRnCLpj4eI="; 10 + rev = version; 11 + sha256 = "sha256-qwoHQB37tY8Pz8CHleYZI+SGkbHG7P/vgfXVMSyqi10="; 14 12 }; 15 13 16 - goDeps = ./deps.nix; 14 + vendorSha256 = "sha256-yxrOLCtSrY/a84N5yRWGUx1L425TckjvRyn/rtkzsRY="; 17 15 18 - meta = { 19 - description= "Tool that avoids TTY and signal-forwarding behavior of sudo and su"; 16 + ldflags = [ "-d" "-s" "-w" ]; 17 + 18 + passthru.tests.version = testVersion { 19 + package = gosu; 20 + }; 21 + 22 + meta = with lib; { 23 + description = "Tool that avoids TTY and signal-forwarding behavior of sudo and su"; 20 24 homepage = "https://github.com/tianon/gosu"; 21 25 license = lib.licenses.gpl3; 26 + maintainers = with maintainers; [ aaronjheng ]; 22 27 platforms = lib.platforms.linux; 23 28 }; 24 29 }
-11
pkgs/tools/misc/gosu/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/opencontainers/runc"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/opencontainers/runc"; 7 - rev = "5274430fee9bc930598cfd9c9dbd33213f79f96e"; 8 - sha256 = "149057gm2y1mc45s7bh43c1ngjg1m54jkpaxw534ir9v5mb1zsxx"; 9 - }; 10 - } 11 - ]
+1 -1
pkgs/tools/misc/kargo/default.nix
··· 12 12 }; 13 13 14 14 propagatedBuildInputs = [ 15 - ansible 15 + ansible-core 16 16 boto 17 17 cffi 18 18 cryptography
+27
pkgs/tools/misc/pouf/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "pouf"; 9 + version = "0.4.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "mothsart"; 13 + repo = pname; 14 + rev = version; 15 + sha256 = "0q7kj6x61xci8piax6vg3bsm9di11li7pm84vj13iwahdydhs1hn"; 16 + }; 17 + 18 + cargoSha256 = "128fgdp74lyv5k054cdjxzwmyb5cyy0jq0a9l4bsc34122mznnq7"; 19 + 20 + meta = with lib; { 21 + description = "A cli program for produce fake datas."; 22 + homepage = "https://github.com/mothsart/pouf"; 23 + changelog = "https://github.com/mothsart/pouf/releases/tag/${version}"; 24 + maintainers = with maintainers; [ mothsart ]; 25 + license = with licenses; [ mit ]; 26 + }; 27 + }
+2 -2
pkgs/tools/misc/rpm-ostree/default.nix
··· 29 29 , bubblewrap 30 30 , pcre 31 31 , check 32 - , python2 32 + , python3 33 33 , json_c 34 34 , zchunk 35 35 , libmodulemd ··· 50 50 }; 51 51 52 52 nativeBuildInputs = [ 53 + python3 53 54 pkg-config 54 55 which 55 56 autoconf ··· 83 82 librepo 84 83 pcre 85 84 check 86 - python2 87 85 88 86 # libdnf # vendored unstable branch 89 87 # required by vendored libdnf
+2 -2
pkgs/tools/misc/sharedown/default.nix
··· 17 17 18 18 stdenvNoCC.mkDerivation rec { 19 19 pname = "Sharedown"; 20 - version = "3.1.0"; 20 + version = "4.0.2"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "kylon"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "sha256-wQEP3fdp+Mhgoz873cgF65WouWtbEdCdXfLiVSmrjyA="; 26 + sha256 = "sha256-hHYk7B0+wqmpOmU5wf44MBTuocLM//Oif5SOtNzO++c="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+217 -258
pkgs/tools/misc/sharedown/yarn.lock
··· 16 16 ajv-keywords "^3.4.1" 17 17 18 18 "@electron/get@^1.13.0": 19 - version "1.13.1" 20 - resolved "https://registry.yarnpkg.com/@electron/get/-/get-1.13.1.tgz#42a0aa62fd1189638bd966e23effaebb16108368" 21 - integrity sha512-U5vkXDZ9DwXtkPqlB45tfYnnYBN8PePp1z/XDCupnSpdrxT8/ThCv9WCwPLf9oqiSGZTkH6dx2jDUPuoXpjkcA== 19 + version "1.14.1" 20 + resolved "https://registry.yarnpkg.com/@electron/get/-/get-1.14.1.tgz#16ba75f02dffb74c23965e72d617adc721d27f40" 21 + integrity sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw== 22 22 dependencies: 23 23 debug "^4.1.1" 24 24 env-paths "^2.2.0" ··· 71 71 dependencies: 72 72 defer-to-connect "^1.0.1" 73 73 74 - "@tedconf/fessonia@^2.2.1": 75 - version "2.2.1" 76 - resolved "https://registry.yarnpkg.com/@tedconf/fessonia/-/fessonia-2.2.1.tgz#24499e69c3aeda4926670675b9fdfeb9ab15f19d" 77 - integrity sha512-eX+O8P/xIkuCDeDI3IOIoyzuTJLVqbGnoBhLiBoFU7MwntF02ygQcByMinhUtXv2zm0pOSy6zeKoQTKAVBK60A== 74 + "@tootallnate/once@2": 75 + version "2.0.0" 76 + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" 77 + integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== 78 78 79 79 "@types/debug@^4.1.6": 80 80 version "4.1.7" ··· 109 109 integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== 110 110 111 111 "@types/node@*": 112 - version "17.0.10" 113 - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.10.tgz#616f16e9d3a2a3d618136b1be244315d95bd7cab" 114 - integrity sha512-S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog== 112 + version "17.0.23" 113 + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da" 114 + integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw== 115 115 116 116 "@types/node@^14.6.2": 117 - version "14.18.9" 118 - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.9.tgz#0e5944eefe2b287391279a19b407aa98bd14436d" 119 - integrity sha512-j11XSuRuAlft6vLDEX4RvhqC0KxNxx6QIyMXNb0vHHSNPXTPeiy3algESWmOOIzEtiEL0qiowPU3ewW9hHVa7Q== 117 + version "14.18.12" 118 + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.12.tgz#0d4557fd3b94497d793efd4e7d92df2f83b4ef24" 119 + integrity sha512-q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A== 120 120 121 121 "@types/plist@^3.0.1": 122 122 version "3.0.2" ··· 132 132 integrity sha512-9UjMCHK5GPgQRoNbqdLIAvAy0EInuiqbW0PBMtVP6B5B2HQJlvoJHM+KodPZMEjOa5VkSc+5LH7xy+cUzQdmHw== 133 133 134 134 "@types/yargs-parser@*": 135 - version "20.2.1" 136 - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 137 - integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 135 + version "21.0.0" 136 + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 137 + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 138 138 139 139 "@types/yargs@^17.0.1": 140 - version "17.0.8" 141 - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.8.tgz#d23a3476fd3da8a0ea44b5494ca7fa677b9dad4c" 142 - integrity sha512-wDeUwiUmem9FzsyysEwRukaEdDNcwbROvQ9QGRKaLI6t+IltNzbn4/i4asmB10auvZGQCzSQ6t0GSczEThlUXw== 140 + version "17.0.10" 141 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a" 142 + integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA== 143 143 dependencies: 144 144 "@types/yargs-parser" "*" 145 145 ··· 189 189 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 190 190 integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 191 191 192 - ansi-styles@^3.2.1: 193 - version "3.2.1" 194 - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 195 - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 196 - dependencies: 197 - color-convert "^1.9.0" 198 - 199 192 ansi-styles@^4.0.0, ansi-styles@^4.1.0: 200 193 version "4.3.0" 201 194 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" ··· 201 208 resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-3.7.1.tgz#cb0825c5e12efc85b196ac3ed9c89f076c61040e" 202 209 integrity sha512-ql93vEUq6WsstGXD+SBLSIQw6SNnhbDEM0swzgugytMxLp3rT24Ag/jcC80ZHxiPRTdew1niuR7P3/FCrDqIjw== 203 210 204 - app-builder-lib@22.14.5: 205 - version "22.14.5" 206 - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.14.5.tgz#a61a50b132b858e98fdc70b6b88994ae99b4f96d" 207 - integrity sha512-k3VwKP4kpsnUaXoUkm1s4zaSHPHIMFnN4kPMU9yXaKmE1LfHHqBaEah5bXeTAX5V/BC41wFdg8CF5vOjvgy8Rg== 211 + app-builder-lib@22.14.13: 212 + version "22.14.13" 213 + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.14.13.tgz#c1f5b6afc86596357598bb90b69eef06c7c2eeb3" 214 + integrity sha512-SufmrtxU+D0Tn948fjEwAOlCN9757UXLkzzTWXMwZKR/5hisvgqeeBepWfphMIE6OkDGz0fbzEhL1P2Pty4XMg== 208 215 dependencies: 209 216 "7zip-bin" "~5.1.1" 210 217 "@develar/schema-utils" "~2.6.5" ··· 212 219 "@malept/flatpak-bundler" "^0.4.0" 213 220 async-exit-hook "^2.0.1" 214 221 bluebird-lst "^1.0.9" 215 - builder-util "22.14.5" 216 - builder-util-runtime "8.9.1" 222 + builder-util "22.14.13" 223 + builder-util-runtime "8.9.2" 217 224 chromium-pickle-js "^0.2.0" 218 225 debug "^4.3.2" 219 226 ejs "^3.1.6" 220 227 electron-osx-sign "^0.5.0" 221 - electron-publish "22.14.5" 228 + electron-publish "22.14.13" 222 229 form-data "^4.0.0" 223 230 fs-extra "^10.0.0" 224 231 hosted-git-info "^4.0.2" ··· 297 304 resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 298 305 integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 299 306 300 - axios@^0.24.0: 301 - version "0.24.0" 302 - resolved "https://registry.yarnpkg.com/axios/-/axios-0.24.0.tgz#804e6fa1e4b9c5288501dd9dff56a7a0940d20d6" 303 - integrity sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA== 307 + axios@^0.26.1: 308 + version "0.26.1" 309 + resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" 310 + integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== 304 311 dependencies: 305 - follow-redirects "^1.14.4" 312 + follow-redirects "^1.14.8" 306 313 307 314 balanced-match@^1.0.0: 308 315 version "1.0.2" ··· 336 343 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 337 344 338 345 boolean@^3.0.1: 339 - version "3.1.4" 340 - resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.1.4.tgz#f51a2fb5838a99e06f9b6ec1edb674de67026435" 341 - integrity sha512-3hx0kwU3uzG6ReQ3pnaFQPSktpBw6RHN3/ivDKEuU8g1XSfafowyvDnadjv1xp8IZqhtSukxlwv9bF6FhX8m0w== 346 + version "3.2.0" 347 + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" 348 + integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== 342 349 343 350 bootstrap@5.1.3: 344 351 version "5.1.3" ··· 408 415 base64-js "^1.3.1" 409 416 ieee754 "^1.1.13" 410 417 411 - builder-util-runtime@8.9.1: 412 - version "8.9.1" 413 - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.9.1.tgz#25f066b3fbc20b3e6236a9b956b1ebb0e33ff66a" 414 - integrity sha512-c8a8J3wK6BIVLW7ls+7TRK9igspTbzWmUqxFbgK0m40Ggm6efUbxtWVCGIjc+dtchyr5qAMAUL6iEGRdS/6vwg== 418 + builder-util-runtime@8.9.2: 419 + version "8.9.2" 420 + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz#a9669ae5b5dcabfe411ded26678e7ae997246c28" 421 + integrity sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A== 415 422 dependencies: 416 423 debug "^4.3.2" 417 424 sax "^1.2.4" 418 425 419 - builder-util@22.14.5: 420 - version "22.14.5" 421 - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-22.14.5.tgz#42a18608d2a566c0846e91266464776c8bfb0cc9" 422 - integrity sha512-zqIHDFJwmA7jV7SC9aI+33MWwT2mWoijH+Ol9IntNAwuuRXoS+7XeJwnhLBXOhcDBzXT4kDzHnRk4JKeaygEYA== 426 + builder-util@22.14.13: 427 + version "22.14.13" 428 + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-22.14.13.tgz#41b5b7b4ee53aff4e09cc007fb144522598f3ce6" 429 + integrity sha512-oePC/qrrUuerhmH5iaCJzPRAKlSBylrhzuAJmRQClTyWnZUv6jbaHh+VoHMbEiE661wrj2S2aV7/bQh12cj1OA== 423 430 dependencies: 424 431 "7zip-bin" "~5.1.1" 425 432 "@types/debug" "^4.1.6" 426 433 "@types/fs-extra" "^9.0.11" 427 434 app-builder-bin "3.7.1" 428 435 bluebird-lst "^1.0.9" 429 - builder-util-runtime "8.9.1" 436 + builder-util-runtime "8.9.2" 430 437 chalk "^4.1.1" 431 438 cross-spawn "^7.0.3" 432 439 debug "^4.3.2" 433 440 fs-extra "^10.0.0" 441 + http-proxy-agent "^5.0.0" 442 + https-proxy-agent "^5.0.0" 434 443 is-ci "^3.0.0" 435 444 js-yaml "^4.1.0" 436 445 source-map-support "^0.5.19" ··· 457 462 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 458 463 integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 459 464 460 - chalk@^2.4.2: 461 - version "2.4.2" 462 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 463 - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 464 - dependencies: 465 - ansi-styles "^3.2.1" 466 - escape-string-regexp "^1.0.5" 467 - supports-color "^5.3.0" 468 - 469 - chalk@^4.1.0, chalk@^4.1.1: 465 + chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1: 470 466 version "4.1.2" 471 467 resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 472 468 integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 473 469 dependencies: 474 470 ansi-styles "^4.1.0" 475 471 supports-color "^7.1.0" 476 - 477 - charenc@0.0.2: 478 - version "0.0.2" 479 - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" 480 - integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= 481 472 482 473 chownr@^1.1.1: 483 474 version "1.1.4" ··· 528 547 resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 529 548 integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 530 549 531 - color-convert@^1.9.0: 532 - version "1.9.3" 533 - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 534 - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 535 - dependencies: 536 - color-name "1.1.3" 537 - 538 550 color-convert@^2.0.1: 539 551 version "2.0.1" 540 552 resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 541 553 integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 542 554 dependencies: 543 555 color-name "~1.1.4" 544 - 545 - color-name@1.1.3: 546 - version "1.1.3" 547 - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 548 - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 549 556 550 557 color-name@~1.1.4: 551 558 version "1.1.4" ··· 626 657 dependencies: 627 658 buffer "^5.1.0" 628 659 660 + cross-fetch@3.1.5: 661 + version "3.1.5" 662 + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" 663 + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 664 + dependencies: 665 + node-fetch "2.6.7" 666 + 629 667 cross-spawn@^6.0.0: 630 668 version "6.0.5" 631 669 resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" ··· 653 677 shebang-command "^2.0.0" 654 678 which "^2.0.1" 655 679 656 - crypt@0.0.2: 657 - version "0.0.2" 658 - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" 659 - integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= 660 - 661 680 crypto-random-string@^2.0.0: 662 681 version "2.0.0" 663 682 resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 664 683 integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 665 684 666 685 debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: 667 - version "4.3.3" 668 - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 669 - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 686 + version "4.3.4" 687 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 688 + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 670 689 dependencies: 671 690 ms "2.1.2" 672 691 673 - debug@4.3.2: 674 - version "4.3.2" 675 - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 676 - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 692 + debug@4.3.3: 693 + version "4.3.3" 694 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 695 + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 677 696 dependencies: 678 697 ms "2.1.2" 679 698 ··· 686 715 dependencies: 687 716 mimic-response "^1.0.0" 688 717 689 - decompress-response@^4.2.0: 690 - version "4.2.1" 691 - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" 692 - integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== 718 + decompress-response@^6.0.0: 719 + version "6.0.0" 720 + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" 721 + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== 693 722 dependencies: 694 - mimic-response "^2.0.0" 723 + mimic-response "^3.1.0" 695 724 696 725 deep-extend@^0.6.0: 697 726 version "0.6.0" ··· 720 749 resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 721 750 integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 722 751 723 - detect-libc@^1.0.3: 724 - version "1.0.3" 725 - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 726 - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 752 + detect-libc@^2.0.0: 753 + version "2.0.1" 754 + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" 755 + integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== 727 756 728 757 detect-node@^2.0.4: 729 758 version "2.1.0" 730 759 resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" 731 760 integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== 732 761 733 - devtools-protocol@0.0.937139: 734 - version "0.0.937139" 735 - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.937139.tgz#bdee3751fdfdb81cb701fd3afa94b1065dafafcf" 736 - integrity sha512-daj+rzR3QSxsPRy5vjjthn58axO8c11j58uY0lG5vvlJk/EiOdCWOptGdkXDjtuRHr78emKq0udHCXM4trhoDQ== 762 + devtools-protocol@0.0.969999: 763 + version "0.0.969999" 764 + resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.969999.tgz#3d6be0a126b3607bb399ae2719b471dda71f3478" 765 + integrity sha512-6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ== 737 766 738 767 dir-compare@^2.4.0: 739 768 version "2.4.0" ··· 745 774 commander "2.9.0" 746 775 minimatch "3.0.4" 747 776 748 - dmg-builder@22.14.5: 749 - version "22.14.5" 750 - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.14.5.tgz#137c0b55e639badcc0b119eb060e6fa4ed61d948" 751 - integrity sha512-1GvFGQE332bvPamcMwZDqWqfWfJTyyDLOsHMcGi0zs+Jh7JOn6/zuBkHJIWHdsj2QJbhzLVyd2/ZqttOKv7I8w== 777 + dmg-builder@22.14.13: 778 + version "22.14.13" 779 + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.14.13.tgz#cc613f3c18e889b8777d525991fd52f50a564f8c" 780 + integrity sha512-xNOugB6AbIRETeU2uID15sUfjdZZcKdxK8xkFnwIggsM00PJ12JxpLNPTjcRoUnfwj3WrPjilrO64vRMwNItQg== 752 781 dependencies: 753 - app-builder-lib "22.14.5" 754 - builder-util "22.14.5" 755 - builder-util-runtime "8.9.1" 782 + app-builder-lib "22.14.13" 783 + builder-util "22.14.13" 784 + builder-util-runtime "8.9.2" 756 785 fs-extra "^10.0.0" 757 786 iconv-lite "^0.6.2" 758 787 js-yaml "^4.1.0" ··· 760 789 dmg-license "^1.0.9" 761 790 762 791 dmg-license@^1.0.9: 763 - version "1.0.10" 764 - resolved "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.10.tgz#89f52afae25d827fce8d818c13aff30af1c16bcc" 765 - integrity sha512-SVeeyiOeinV5JCPHXMdKOgK1YVbak/4+8WL2rBnfqRYpA5FaeFaQnQWb25x628am1w70CbipGDv9S51biph63A== 792 + version "1.0.11" 793 + resolved "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz#7b3bc3745d1b52be7506b4ee80cb61df6e4cd79a" 794 + integrity sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q== 766 795 dependencies: 767 796 "@types/plist" "^3.0.1" 768 797 "@types/verror" "^1.10.3" ··· 802 831 dependencies: 803 832 jake "^10.6.1" 804 833 805 - electron-builder@^22.14.5: 806 - version "22.14.5" 807 - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.14.5.tgz#3a25547bd4fe3728d4704da80956a794c5c31496" 808 - integrity sha512-N73hSbXFz6Mz5Z6h6C5ly6CB+dUN6k1LuCDJjI8VF47bMXv/QE0HE+Kkb0GPKqTqM7Hsk/yIYX+kHCfSkR5FGg== 834 + electron-builder@^22.14.13: 835 + version "22.14.13" 836 + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.14.13.tgz#fd40564685cf5422a8f8d667940af3d3776f4fb8" 837 + integrity sha512-3fgLxqF2TXVKiUPeg74O4V3l0l3j7ERLazo8sUbRkApw0+4iVAf2BJkHsHMaXiigsgCoEzK/F4/rB5rne/VAnw== 809 838 dependencies: 810 839 "@types/yargs" "^17.0.1" 811 - app-builder-lib "22.14.5" 812 - builder-util "22.14.5" 813 - builder-util-runtime "8.9.1" 840 + app-builder-lib "22.14.13" 841 + builder-util "22.14.13" 842 + builder-util-runtime "8.9.2" 814 843 chalk "^4.1.1" 815 - dmg-builder "22.14.5" 844 + dmg-builder "22.14.13" 816 845 fs-extra "^10.0.0" 817 846 is-ci "^3.0.0" 818 847 lazy-val "^1.0.5" ··· 832 861 minimist "^1.2.0" 833 862 plist "^3.0.1" 834 863 835 - electron-publish@22.14.5: 836 - version "22.14.5" 837 - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.14.5.tgz#34bcdce671f0e651330db20040d6919c77c94bd6" 838 - integrity sha512-h+NANRdaA0PqGF15GKvorseWPzh1PXa/zx4I37//PIokW8eKIov8ky23foUSb55ZFWUHGpxQJux7y2NCfBtQeg== 864 + electron-publish@22.14.13: 865 + version "22.14.13" 866 + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.14.13.tgz#8b71e6975af8cc6ac5b21f293ade23f8704047c7" 867 + integrity sha512-0oP3QiNj3e8ewOaEpEJV/o6Zrmy2VarVvZ/bH7kyO/S/aJf9x8vQsKVWpsdmSiZ5DJEHgarFIXrnO0ZQf0P9iQ== 839 868 dependencies: 840 869 "@types/fs-extra" "^9.0.11" 841 - builder-util "22.14.5" 842 - builder-util-runtime "8.9.1" 870 + builder-util "22.14.13" 871 + builder-util-runtime "8.9.2" 843 872 chalk "^4.1.1" 844 873 fs-extra "^10.0.0" 845 874 lazy-val "^1.0.5" 846 875 mime "^2.5.2" 847 876 848 - electron@^16.0.6: 849 - version "16.0.7" 850 - resolved "https://registry.yarnpkg.com/electron/-/electron-16.0.7.tgz#87eaccd05ab61563d3c17dfbad2949bba7ead162" 851 - integrity sha512-/IMwpBf2svhA1X/7Q58RV+Nn0fvUJsHniG4TizaO7q4iKFYSQ6hBvsLz+cylcZ8hRMKmVy5G1XaMNJID2ah23w== 877 + electron@^17.1.1: 878 + version "17.2.0" 879 + resolved "https://registry.yarnpkg.com/electron/-/electron-17.2.0.tgz#a5c42c16352ea968fcb5d1ce256bec51e7d140fe" 880 + integrity sha512-eNXhPVEUofkgAeqRFvTizzYecoCMyS0Rar08WZHSAw9wjfZXawYMvTpjjjk9GiX9W/+Cjxua4YtGn5bOTabc0A== 852 881 dependencies: 853 882 "@electron/get" "^1.13.0" 854 883 "@types/node" "^14.6.2" ··· 890 919 version "2.1.1" 891 920 resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 892 921 integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 893 - 894 - escape-string-regexp@^1.0.5: 895 - version "1.0.5" 896 - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 897 - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 898 922 899 923 escape-string-regexp@^4.0.0: 900 924 version "4.0.0" ··· 957 991 dependencies: 958 992 pend "~1.2.0" 959 993 994 + fessonia@^2.2.2: 995 + version "2.2.2" 996 + resolved "https://registry.yarnpkg.com/fessonia/-/fessonia-2.2.2.tgz#c8f9da5701d2e63efc9fd5793368929ddfaaf776" 997 + integrity sha512-FvlDFdwHBIxWl2K9XynAIR38NB8xn4vPPZDNK5nIQBnGwZ0xv5FxDXsz+pzYZrUqoEQPQBJemNrYhueD2de7qw== 998 + 960 999 filelist@^1.0.1: 961 1000 version "1.0.2" 962 1001 resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" ··· 977 1006 locate-path "^5.0.0" 978 1007 path-exists "^4.0.0" 979 1008 980 - follow-redirects@^1.14.4: 981 - version "1.14.7" 982 - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.7.tgz#2004c02eb9436eee9a21446a6477debf17e81685" 983 - integrity sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ== 1009 + follow-redirects@^1.14.8: 1010 + version "1.14.9" 1011 + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7" 1012 + integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w== 984 1013 985 1014 font-awesome@^4.7.0: 986 1015 version "4.7.0" ··· 1002 1031 integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1003 1032 1004 1033 fs-extra@^10.0.0: 1005 - version "10.0.0" 1006 - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" 1007 - integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== 1034 + version "10.0.1" 1035 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.1.tgz#27de43b4320e833f6867cc044bfce29fdf0ef3b8" 1036 + integrity sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag== 1008 1037 dependencies: 1009 1038 graceful-fs "^4.2.0" 1010 1039 jsonfile "^6.0.1" ··· 1147 1176 resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1148 1177 integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= 1149 1178 1150 - has-flag@^3.0.0: 1151 - version "3.0.0" 1152 - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1153 - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1154 - 1155 1179 has-flag@^4.0.0: 1156 1180 version "4.0.0" 1157 1181 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" ··· 1174 1208 resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 1175 1209 integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 1176 1210 1177 - https-proxy-agent@5.0.0: 1211 + http-proxy-agent@^5.0.0: 1212 + version "5.0.0" 1213 + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" 1214 + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== 1215 + dependencies: 1216 + "@tootallnate/once" "2" 1217 + agent-base "6" 1218 + debug "4" 1219 + 1220 + https-proxy-agent@5.0.0, https-proxy-agent@^5.0.0: 1178 1221 version "5.0.0" 1179 1222 resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1180 1223 integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== ··· 1243 1268 version "1.3.8" 1244 1269 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1245 1270 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1246 - 1247 - is-buffer@~1.1.6: 1248 - version "1.1.6" 1249 - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1250 - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1251 1271 1252 1272 is-ci@^2.0.0: 1253 1273 version "2.0.0" ··· 1333 1363 buffer-alloc "^1.2.0" 1334 1364 1335 1365 isbinaryfile@^4.0.8: 1336 - version "4.0.8" 1337 - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.8.tgz#5d34b94865bd4946633ecc78a026fc76c5b11fcf" 1338 - integrity sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w== 1366 + version "4.0.10" 1367 + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" 1368 + integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== 1339 1369 1340 1370 isexe@^2.0.0: 1341 1371 version "2.0.0" ··· 1348 1378 integrity sha512-K4CiUBzo3YeWk76FuET/dQPH03WE04R94feo5TSKQCXpoXQt9E4yx2CnY737QZnSAI3PI4WlKo/zfqizGx52QQ== 1349 1379 1350 1380 jake@^10.6.1: 1351 - version "10.8.2" 1352 - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" 1353 - integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 1381 + version "10.8.4" 1382 + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.4.tgz#f6a8b7bf90c6306f768aa82bb7b98bf4ca15e84a" 1383 + integrity sha512-MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA== 1354 1384 dependencies: 1355 1385 async "0.9.x" 1356 - chalk "^2.4.2" 1386 + chalk "^4.0.2" 1357 1387 filelist "^1.0.1" 1358 1388 minimatch "^3.0.4" 1359 1389 ··· 1380 1410 integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1381 1411 1382 1412 json5@^2.2.0: 1383 - version "2.2.0" 1384 - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1385 - integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1386 - dependencies: 1387 - minimist "^1.2.5" 1413 + version "2.2.1" 1414 + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 1415 + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 1388 1416 1389 1417 jsonfile@^4.0.0: 1390 1418 version "4.0.0" ··· 1400 1432 optionalDependencies: 1401 1433 graceful-fs "^4.1.6" 1402 1434 1403 - keytar@^7.7.0: 1404 - version "7.7.0" 1405 - resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.7.0.tgz#3002b106c01631aa79b1aa9ee0493b94179bbbd2" 1406 - integrity sha512-YEY9HWqThQc5q5xbXbRwsZTh2PJ36OSYRjSv3NN2xf5s5dpLTjEZnC2YikR29OaVybf9nQ0dJ/80i40RS97t/A== 1435 + keytar@^7.9.0: 1436 + version "7.9.0" 1437 + resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz#4c6225708f51b50cbf77c5aae81721964c2918cb" 1438 + integrity sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ== 1407 1439 dependencies: 1408 - node-addon-api "^3.0.0" 1409 - prebuild-install "^6.0.0" 1440 + node-addon-api "^4.3.0" 1441 + prebuild-install "^7.0.1" 1410 1442 1411 1443 keyv@^3.0.0: 1412 1444 version "3.1.0" ··· 1470 1502 dependencies: 1471 1503 escape-string-regexp "^4.0.0" 1472 1504 1473 - md5@^2.3.0: 1474 - version "2.3.0" 1475 - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" 1476 - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== 1477 - dependencies: 1478 - charenc "0.0.2" 1479 - crypt "0.0.2" 1480 - is-buffer "~1.1.6" 1481 - 1482 - mime-db@1.51.0: 1483 - version "1.51.0" 1484 - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" 1485 - integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== 1505 + mime-db@1.52.0: 1506 + version "1.52.0" 1507 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1508 + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1486 1509 1487 1510 mime-types@^2.1.12: 1488 - version "2.1.34" 1489 - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" 1490 - integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== 1511 + version "2.1.35" 1512 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1513 + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1491 1514 dependencies: 1492 - mime-db "1.51.0" 1515 + mime-db "1.52.0" 1493 1516 1494 1517 mime@^2.5.2: 1495 1518 version "2.6.0" ··· 1492 1533 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1493 1534 integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1494 1535 1495 - mimic-response@^2.0.0: 1496 - version "2.1.0" 1497 - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" 1498 - integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== 1536 + mimic-response@^3.1.0: 1537 + version "3.1.0" 1538 + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 1539 + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 1499 1540 1500 - minimatch@3.0.4, minimatch@^3.0.4: 1541 + minimatch@3.0.4: 1501 1542 version "3.0.4" 1502 1543 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1503 1544 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1504 1545 dependencies: 1505 1546 brace-expansion "^1.1.7" 1506 1547 1507 - minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: 1508 - version "1.2.5" 1509 - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1510 - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1548 + minimatch@^3.0.4: 1549 + version "3.1.2" 1550 + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1551 + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1552 + dependencies: 1553 + brace-expansion "^1.1.7" 1554 + 1555 + minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: 1556 + version "1.2.6" 1557 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1558 + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1511 1559 1512 1560 mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: 1513 1561 version "0.5.3" ··· 1522 1556 integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 1523 1557 1524 1558 mkdirp@^0.5.4: 1525 - version "0.5.5" 1526 - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1527 - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1559 + version "0.5.6" 1560 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" 1561 + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 1528 1562 dependencies: 1529 - minimist "^1.2.5" 1563 + minimist "^1.2.6" 1530 1564 1531 1565 ms@2.0.0: 1532 1566 version "2.0.0" ··· 1548 1582 resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1549 1583 integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1550 1584 1551 - node-abi@^2.21.0: 1552 - version "2.30.1" 1553 - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.1.tgz#c437d4b1fe0e285aaf290d45b45d4d7afedac4cf" 1554 - integrity sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w== 1585 + node-abi@^3.3.0: 1586 + version "3.8.0" 1587 + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.8.0.tgz#679957dc8e7aa47b0a02589dbfde4f77b29ccb32" 1588 + integrity sha512-tzua9qWWi7iW4I42vUPKM+SfaF0vQSLAm4yO5J83mSwB7GeoWrDKC/K+8YCnYNwqP5duwazbw2X9l4m8SC2cUw== 1555 1589 dependencies: 1556 - semver "^5.4.1" 1590 + semver "^7.3.5" 1557 1591 1558 1592 node-addon-api@^1.6.3: 1559 1593 version "1.7.2" 1560 1594 resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" 1561 1595 integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== 1562 1596 1563 - node-addon-api@^3.0.0: 1564 - version "3.2.1" 1565 - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" 1566 - integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== 1597 + node-addon-api@^4.3.0: 1598 + version "4.3.0" 1599 + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" 1600 + integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== 1567 1601 1568 - node-fetch@2.6.5: 1569 - version "2.6.5" 1570 - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz#42735537d7f080a7e5f78b6c549b7146be1742fd" 1571 - integrity sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ== 1602 + node-fetch@2.6.7: 1603 + version "2.6.7" 1604 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1605 + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1572 1606 dependencies: 1573 1607 whatwg-url "^5.0.0" 1574 1608 ··· 1701 1735 find-up "^4.0.0" 1702 1736 1703 1737 plist@^3.0.1, plist@^3.0.4: 1704 - version "3.0.4" 1705 - resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.4.tgz#a62df837e3aed2bb3b735899d510c4f186019cbe" 1706 - integrity sha512-ksrr8y9+nXOxQB2osVNqrgvX/XQPOXaU4BQMKjYq8PvaY1U18mo+fKgBSwzK+luSyinOuPae956lSVcBwxlAMg== 1738 + version "3.0.5" 1739 + resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987" 1740 + integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA== 1707 1741 dependencies: 1708 1742 base64-js "^1.5.1" 1709 1743 xmlbuilder "^9.0.7" 1710 1744 1711 - prebuild-install@^6.0.0: 1712 - version "6.1.4" 1713 - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.4.tgz#ae3c0142ad611d58570b89af4986088a4937e00f" 1714 - integrity sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ== 1745 + prebuild-install@^7.0.1: 1746 + version "7.0.1" 1747 + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.0.1.tgz#c10075727c318efe72412f333e0ef625beaf3870" 1748 + integrity sha512-QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg== 1715 1749 dependencies: 1716 - detect-libc "^1.0.3" 1750 + detect-libc "^2.0.0" 1717 1751 expand-template "^2.0.3" 1718 1752 github-from-package "0.0.0" 1719 1753 minimist "^1.2.3" 1720 1754 mkdirp-classic "^0.5.3" 1721 1755 napi-build-utils "^1.0.1" 1722 - node-abi "^2.21.0" 1756 + node-abi "^3.3.0" 1723 1757 npmlog "^4.0.1" 1724 1758 pump "^3.0.0" 1725 1759 rc "^1.2.7" 1726 - simple-get "^3.0.3" 1760 + simple-get "^4.0.0" 1727 1761 tar-fs "^2.0.0" 1728 1762 tunnel-agent "^0.6.0" 1729 1763 ··· 1772 1806 dependencies: 1773 1807 escape-goat "^2.0.0" 1774 1808 1775 - puppeteer@13.0.1: 1776 - version "13.0.1" 1777 - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.0.1.tgz#9cd9bb8ec090bade183ca186bf342396bdffa135" 1778 - integrity sha512-wqGIx59LzYqWhYcJQphMT+ux0sgatEUbjKG0lbjJxNVqVIT3ZC5m4Bvmq2gHE3qhb63EwS+rNkql08bm4BvO0A== 1809 + puppeteer@13.5.1: 1810 + version "13.5.1" 1811 + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.1.tgz#d0f751bf36120efc2ebf74c7562a204a84e500e9" 1812 + integrity sha512-wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w== 1779 1813 dependencies: 1780 - debug "4.3.2" 1781 - devtools-protocol "0.0.937139" 1814 + cross-fetch "3.1.5" 1815 + debug "4.3.3" 1816 + devtools-protocol "0.0.969999" 1782 1817 extract-zip "2.0.1" 1783 1818 https-proxy-agent "5.0.0" 1784 - node-fetch "2.6.5" 1785 1819 pkg-dir "4.2.0" 1786 1820 progress "2.0.3" 1787 1821 proxy-from-env "1.1.0" 1788 1822 rimraf "3.0.2" 1789 1823 tar-fs "2.1.1" 1790 1824 unbzip2-stream "1.4.3" 1791 - ws "8.2.3" 1825 + ws "8.5.0" 1792 1826 1793 1827 rc@^1.2.7, rc@^1.2.8: 1794 1828 version "1.2.8" ··· 1917 1951 dependencies: 1918 1952 semver "^6.3.0" 1919 1953 1920 - semver@^5.4.1, semver@^5.5.0: 1954 + semver@^5.5.0: 1921 1955 version "5.7.1" 1922 1956 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1923 1957 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== ··· 1971 2005 integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1972 2006 1973 2007 signal-exit@^3.0.0, signal-exit@^3.0.2: 1974 - version "3.0.6" 1975 - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" 1976 - integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== 2008 + version "3.0.7" 2009 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2010 + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 1977 2011 1978 2012 simple-concat@^1.0.0: 1979 2013 version "1.0.1" 1980 2014 resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" 1981 2015 integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== 1982 2016 1983 - simple-get@^3.0.3: 1984 - version "3.1.0" 1985 - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" 1986 - integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== 2017 + simple-get@^4.0.0: 2018 + version "4.0.1" 2019 + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" 2020 + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== 1987 2021 dependencies: 1988 - decompress-response "^4.2.0" 2022 + decompress-response "^6.0.0" 1989 2023 once "^1.3.1" 1990 2024 simple-concat "^1.0.0" 1991 2025 ··· 2088 2122 integrity sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg== 2089 2123 dependencies: 2090 2124 debug "^4.1.0" 2091 - 2092 - supports-color@^5.3.0: 2093 - version "5.5.0" 2094 - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2095 - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2096 - dependencies: 2097 - has-flag "^3.0.0" 2098 2125 2099 2126 supports-color@^7.1.0: 2100 2127 version "7.2.0" ··· 2338 2379 signal-exit "^3.0.2" 2339 2380 typedarray-to-buffer "^3.1.5" 2340 2381 2341 - ws@8.2.3: 2342 - version "8.2.3" 2343 - resolved "https://registry.yarnpkg.com/ws/-/ws-8.2.3.tgz#63a56456db1b04367d0b721a0b80cae6d8becbba" 2344 - integrity sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA== 2382 + ws@8.5.0: 2383 + version "8.5.0" 2384 + resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f" 2385 + integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== 2345 2386 2346 2387 xdg-basedir@^4.0.0: 2347 2388 version "4.0.0" ··· 2369 2410 integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2370 2411 2371 2412 yargs-parser@^21.0.0: 2372 - version "21.0.0" 2373 - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55" 2374 - integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA== 2413 + version "21.0.1" 2414 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" 2415 + integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== 2375 2416 2376 2417 yargs@^17.0.1: 2377 - version "17.3.1" 2378 - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9" 2379 - integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA== 2418 + version "17.4.0" 2419 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.0.tgz#9fc9efc96bd3aa2c1240446af28499f0e7593d00" 2420 + integrity sha512-WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA== 2380 2421 dependencies: 2381 2422 cliui "^7.0.2" 2382 2423 escalade "^3.1.1"
+204 -260
pkgs/tools/misc/sharedown/yarndeps.nix
··· 18 18 }; 19 19 } 20 20 { 21 - name = "_electron_get___get_1.13.1.tgz"; 21 + name = "_electron_get___get_1.14.1.tgz"; 22 22 path = fetchurl { 23 - name = "_electron_get___get_1.13.1.tgz"; 24 - url = "https://registry.yarnpkg.com/@electron/get/-/get-1.13.1.tgz"; 25 - sha512 = "U5vkXDZ9DwXtkPqlB45tfYnnYBN8PePp1z/XDCupnSpdrxT8/ThCv9WCwPLf9oqiSGZTkH6dx2jDUPuoXpjkcA=="; 23 + name = "_electron_get___get_1.14.1.tgz"; 24 + url = "https://registry.yarnpkg.com/@electron/get/-/get-1.14.1.tgz"; 25 + sha512 = "BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw=="; 26 26 }; 27 27 } 28 28 { ··· 66 66 }; 67 67 } 68 68 { 69 - name = "_tedconf_fessonia___fessonia_2.2.1.tgz"; 69 + name = "_tootallnate_once___once_2.0.0.tgz"; 70 70 path = fetchurl { 71 - name = "_tedconf_fessonia___fessonia_2.2.1.tgz"; 72 - url = "https://registry.yarnpkg.com/@tedconf/fessonia/-/fessonia-2.2.1.tgz"; 73 - sha512 = "eX+O8P/xIkuCDeDI3IOIoyzuTJLVqbGnoBhLiBoFU7MwntF02ygQcByMinhUtXv2zm0pOSy6zeKoQTKAVBK60A=="; 71 + name = "_tootallnate_once___once_2.0.0.tgz"; 72 + url = "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz"; 73 + sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="; 74 74 }; 75 75 } 76 76 { ··· 114 114 }; 115 115 } 116 116 { 117 - name = "_types_node___node_17.0.10.tgz"; 117 + name = "_types_node___node_17.0.23.tgz"; 118 118 path = fetchurl { 119 - name = "_types_node___node_17.0.10.tgz"; 120 - url = "https://registry.yarnpkg.com/@types/node/-/node-17.0.10.tgz"; 121 - sha512 = "S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog=="; 119 + name = "_types_node___node_17.0.23.tgz"; 120 + url = "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz"; 121 + sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 122 122 }; 123 123 } 124 124 { 125 - name = "_types_node___node_14.18.9.tgz"; 125 + name = "_types_node___node_14.18.12.tgz"; 126 126 path = fetchurl { 127 - name = "_types_node___node_14.18.9.tgz"; 128 - url = "https://registry.yarnpkg.com/@types/node/-/node-14.18.9.tgz"; 129 - sha512 = "j11XSuRuAlft6vLDEX4RvhqC0KxNxx6QIyMXNb0vHHSNPXTPeiy3algESWmOOIzEtiEL0qiowPU3ewW9hHVa7Q=="; 127 + name = "_types_node___node_14.18.12.tgz"; 128 + url = "https://registry.yarnpkg.com/@types/node/-/node-14.18.12.tgz"; 129 + sha512 = "q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A=="; 130 130 }; 131 131 } 132 132 { ··· 146 146 }; 147 147 } 148 148 { 149 - name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; 149 + name = "_types_yargs_parser___yargs_parser_21.0.0.tgz"; 150 150 path = fetchurl { 151 - name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; 152 - url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"; 153 - sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; 151 + name = "_types_yargs_parser___yargs_parser_21.0.0.tgz"; 152 + url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz"; 153 + sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 154 154 }; 155 155 } 156 156 { 157 - name = "_types_yargs___yargs_17.0.8.tgz"; 157 + name = "_types_yargs___yargs_17.0.10.tgz"; 158 158 path = fetchurl { 159 - name = "_types_yargs___yargs_17.0.8.tgz"; 160 - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.8.tgz"; 161 - sha512 = "wDeUwiUmem9FzsyysEwRukaEdDNcwbROvQ9QGRKaLI6t+IltNzbn4/i4asmB10auvZGQCzSQ6t0GSczEThlUXw=="; 159 + name = "_types_yargs___yargs_17.0.10.tgz"; 160 + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz"; 161 + sha512 = "gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA=="; 162 162 }; 163 163 } 164 164 { ··· 218 218 }; 219 219 } 220 220 { 221 - name = "ansi_styles___ansi_styles_3.2.1.tgz"; 222 - path = fetchurl { 223 - name = "ansi_styles___ansi_styles_3.2.1.tgz"; 224 - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 225 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 226 - }; 227 - } 228 - { 229 221 name = "ansi_styles___ansi_styles_4.3.0.tgz"; 230 222 path = fetchurl { 231 223 name = "ansi_styles___ansi_styles_4.3.0.tgz"; ··· 234 242 }; 235 243 } 236 244 { 237 - name = "app_builder_lib___app_builder_lib_22.14.5.tgz"; 245 + name = "app_builder_lib___app_builder_lib_22.14.13.tgz"; 238 246 path = fetchurl { 239 - name = "app_builder_lib___app_builder_lib_22.14.5.tgz"; 240 - url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.14.5.tgz"; 241 - sha512 = "k3VwKP4kpsnUaXoUkm1s4zaSHPHIMFnN4kPMU9yXaKmE1LfHHqBaEah5bXeTAX5V/BC41wFdg8CF5vOjvgy8Rg=="; 247 + name = "app_builder_lib___app_builder_lib_22.14.13.tgz"; 248 + url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.14.13.tgz"; 249 + sha512 = "SufmrtxU+D0Tn948fjEwAOlCN9757UXLkzzTWXMwZKR/5hisvgqeeBepWfphMIE6OkDGz0fbzEhL1P2Pty4XMg=="; 242 250 }; 243 251 } 244 252 { ··· 330 338 }; 331 339 } 332 340 { 333 - name = "axios___axios_0.24.0.tgz"; 341 + name = "axios___axios_0.26.1.tgz"; 334 342 path = fetchurl { 335 - name = "axios___axios_0.24.0.tgz"; 336 - url = "https://registry.yarnpkg.com/axios/-/axios-0.24.0.tgz"; 337 - sha512 = "Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA=="; 343 + name = "axios___axios_0.26.1.tgz"; 344 + url = "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz"; 345 + sha512 = "fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA=="; 338 346 }; 339 347 } 340 348 { ··· 378 386 }; 379 387 } 380 388 { 381 - name = "boolean___boolean_3.1.4.tgz"; 389 + name = "boolean___boolean_3.2.0.tgz"; 382 390 path = fetchurl { 383 - name = "boolean___boolean_3.1.4.tgz"; 384 - url = "https://registry.yarnpkg.com/boolean/-/boolean-3.1.4.tgz"; 385 - sha512 = "3hx0kwU3uzG6ReQ3pnaFQPSktpBw6RHN3/ivDKEuU8g1XSfafowyvDnadjv1xp8IZqhtSukxlwv9bF6FhX8m0w=="; 391 + name = "boolean___boolean_3.2.0.tgz"; 392 + url = "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz"; 393 + sha512 = "d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw=="; 386 394 }; 387 395 } 388 396 { ··· 466 474 }; 467 475 } 468 476 { 469 - name = "builder_util_runtime___builder_util_runtime_8.9.1.tgz"; 477 + name = "builder_util_runtime___builder_util_runtime_8.9.2.tgz"; 470 478 path = fetchurl { 471 - name = "builder_util_runtime___builder_util_runtime_8.9.1.tgz"; 472 - url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.9.1.tgz"; 473 - sha512 = "c8a8J3wK6BIVLW7ls+7TRK9igspTbzWmUqxFbgK0m40Ggm6efUbxtWVCGIjc+dtchyr5qAMAUL6iEGRdS/6vwg=="; 479 + name = "builder_util_runtime___builder_util_runtime_8.9.2.tgz"; 480 + url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz"; 481 + sha512 = "rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A=="; 474 482 }; 475 483 } 476 484 { 477 - name = "builder_util___builder_util_22.14.5.tgz"; 485 + name = "builder_util___builder_util_22.14.13.tgz"; 478 486 path = fetchurl { 479 - name = "builder_util___builder_util_22.14.5.tgz"; 480 - url = "https://registry.yarnpkg.com/builder-util/-/builder-util-22.14.5.tgz"; 481 - sha512 = "zqIHDFJwmA7jV7SC9aI+33MWwT2mWoijH+Ol9IntNAwuuRXoS+7XeJwnhLBXOhcDBzXT4kDzHnRk4JKeaygEYA=="; 487 + name = "builder_util___builder_util_22.14.13.tgz"; 488 + url = "https://registry.yarnpkg.com/builder-util/-/builder-util-22.14.13.tgz"; 489 + sha512 = "oePC/qrrUuerhmH5iaCJzPRAKlSBylrhzuAJmRQClTyWnZUv6jbaHh+VoHMbEiE661wrj2S2aV7/bQh12cj1OA=="; 482 490 }; 483 491 } 484 492 { ··· 498 506 }; 499 507 } 500 508 { 501 - name = "chalk___chalk_2.4.2.tgz"; 502 - path = fetchurl { 503 - name = "chalk___chalk_2.4.2.tgz"; 504 - url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 505 - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 506 - }; 507 - } 508 - { 509 509 name = "chalk___chalk_4.1.2.tgz"; 510 510 path = fetchurl { 511 511 name = "chalk___chalk_4.1.2.tgz"; 512 512 url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; 513 513 sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 514 - }; 515 - } 516 - { 517 - name = "charenc___charenc_0.0.2.tgz"; 518 - path = fetchurl { 519 - name = "charenc___charenc_0.0.2.tgz"; 520 - url = "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz"; 521 - sha1 = "wKHS86cJLgN3S/qD8UwPxXkKhmc="; 522 514 }; 523 515 } 524 516 { ··· 586 610 }; 587 611 } 588 612 { 589 - name = "color_convert___color_convert_1.9.3.tgz"; 590 - path = fetchurl { 591 - name = "color_convert___color_convert_1.9.3.tgz"; 592 - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 593 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 594 - }; 595 - } 596 - { 597 613 name = "color_convert___color_convert_2.0.1.tgz"; 598 614 path = fetchurl { 599 615 name = "color_convert___color_convert_2.0.1.tgz"; 600 616 url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; 601 617 sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 602 - }; 603 - } 604 - { 605 - name = "color_name___color_name_1.1.3.tgz"; 606 - path = fetchurl { 607 - name = "color_name___color_name_1.1.3.tgz"; 608 - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 609 - sha1 = "p9BVi9icQveV3UIyj3QIMcpTvCU="; 610 618 }; 611 619 } 612 620 { ··· 706 746 }; 707 747 } 708 748 { 749 + name = "cross_fetch___cross_fetch_3.1.5.tgz"; 750 + path = fetchurl { 751 + name = "cross_fetch___cross_fetch_3.1.5.tgz"; 752 + url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz"; 753 + sha512 = "lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw=="; 754 + }; 755 + } 756 + { 709 757 name = "cross_spawn___cross_spawn_6.0.5.tgz"; 710 758 path = fetchurl { 711 759 name = "cross_spawn___cross_spawn_6.0.5.tgz"; ··· 730 762 }; 731 763 } 732 764 { 733 - name = "crypt___crypt_0.0.2.tgz"; 734 - path = fetchurl { 735 - name = "crypt___crypt_0.0.2.tgz"; 736 - url = "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz"; 737 - sha1 = "iNf/fsDfuG9xPch7u0LQRNPmxBs="; 738 - }; 739 - } 740 - { 741 765 name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 742 766 path = fetchurl { 743 767 name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; ··· 738 778 }; 739 779 } 740 780 { 781 + name = "debug___debug_4.3.4.tgz"; 782 + path = fetchurl { 783 + name = "debug___debug_4.3.4.tgz"; 784 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; 785 + sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 786 + }; 787 + } 788 + { 741 789 name = "debug___debug_4.3.3.tgz"; 742 790 path = fetchurl { 743 791 name = "debug___debug_4.3.3.tgz"; 744 792 url = "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz"; 745 793 sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 746 - }; 747 - } 748 - { 749 - name = "debug___debug_4.3.2.tgz"; 750 - path = fetchurl { 751 - name = "debug___debug_4.3.2.tgz"; 752 - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz"; 753 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 754 794 }; 755 795 } 756 796 { ··· 770 810 }; 771 811 } 772 812 { 773 - name = "decompress_response___decompress_response_4.2.1.tgz"; 813 + name = "decompress_response___decompress_response_6.0.0.tgz"; 774 814 path = fetchurl { 775 - name = "decompress_response___decompress_response_4.2.1.tgz"; 776 - url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz"; 777 - sha512 = "jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw=="; 815 + name = "decompress_response___decompress_response_6.0.0.tgz"; 816 + url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz"; 817 + sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; 778 818 }; 779 819 } 780 820 { ··· 818 858 }; 819 859 } 820 860 { 821 - name = "detect_libc___detect_libc_1.0.3.tgz"; 861 + name = "detect_libc___detect_libc_2.0.1.tgz"; 822 862 path = fetchurl { 823 - name = "detect_libc___detect_libc_1.0.3.tgz"; 824 - url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz"; 825 - sha1 = "+hN8S9aY7fVc1c0CrFWfkaTEups="; 863 + name = "detect_libc___detect_libc_2.0.1.tgz"; 864 + url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz"; 865 + sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; 826 866 }; 827 867 } 828 868 { ··· 834 874 }; 835 875 } 836 876 { 837 - name = "devtools_protocol___devtools_protocol_0.0.937139.tgz"; 877 + name = "devtools_protocol___devtools_protocol_0.0.969999.tgz"; 838 878 path = fetchurl { 839 - name = "devtools_protocol___devtools_protocol_0.0.937139.tgz"; 840 - url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.937139.tgz"; 841 - sha512 = "daj+rzR3QSxsPRy5vjjthn58axO8c11j58uY0lG5vvlJk/EiOdCWOptGdkXDjtuRHr78emKq0udHCXM4trhoDQ=="; 879 + name = "devtools_protocol___devtools_protocol_0.0.969999.tgz"; 880 + url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.969999.tgz"; 881 + sha512 = "6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ=="; 842 882 }; 843 883 } 844 884 { ··· 850 890 }; 851 891 } 852 892 { 853 - name = "dmg_builder___dmg_builder_22.14.5.tgz"; 893 + name = "dmg_builder___dmg_builder_22.14.13.tgz"; 854 894 path = fetchurl { 855 - name = "dmg_builder___dmg_builder_22.14.5.tgz"; 856 - url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.14.5.tgz"; 857 - sha512 = "1GvFGQE332bvPamcMwZDqWqfWfJTyyDLOsHMcGi0zs+Jh7JOn6/zuBkHJIWHdsj2QJbhzLVyd2/ZqttOKv7I8w=="; 895 + name = "dmg_builder___dmg_builder_22.14.13.tgz"; 896 + url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.14.13.tgz"; 897 + sha512 = "xNOugB6AbIRETeU2uID15sUfjdZZcKdxK8xkFnwIggsM00PJ12JxpLNPTjcRoUnfwj3WrPjilrO64vRMwNItQg=="; 858 898 }; 859 899 } 860 900 { 861 - name = "dmg_license___dmg_license_1.0.10.tgz"; 901 + name = "dmg_license___dmg_license_1.0.11.tgz"; 862 902 path = fetchurl { 863 - name = "dmg_license___dmg_license_1.0.10.tgz"; 864 - url = "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.10.tgz"; 865 - sha512 = "SVeeyiOeinV5JCPHXMdKOgK1YVbak/4+8WL2rBnfqRYpA5FaeFaQnQWb25x628am1w70CbipGDv9S51biph63A=="; 903 + name = "dmg_license___dmg_license_1.0.11.tgz"; 904 + url = "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz"; 905 + sha512 = "ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q=="; 866 906 }; 867 907 } 868 908 { ··· 906 946 }; 907 947 } 908 948 { 909 - name = "electron_builder___electron_builder_22.14.5.tgz"; 949 + name = "electron_builder___electron_builder_22.14.13.tgz"; 910 950 path = fetchurl { 911 - name = "electron_builder___electron_builder_22.14.5.tgz"; 912 - url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.14.5.tgz"; 913 - sha512 = "N73hSbXFz6Mz5Z6h6C5ly6CB+dUN6k1LuCDJjI8VF47bMXv/QE0HE+Kkb0GPKqTqM7Hsk/yIYX+kHCfSkR5FGg=="; 951 + name = "electron_builder___electron_builder_22.14.13.tgz"; 952 + url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.14.13.tgz"; 953 + sha512 = "3fgLxqF2TXVKiUPeg74O4V3l0l3j7ERLazo8sUbRkApw0+4iVAf2BJkHsHMaXiigsgCoEzK/F4/rB5rne/VAnw=="; 914 954 }; 915 955 } 916 956 { ··· 922 962 }; 923 963 } 924 964 { 925 - name = "electron_publish___electron_publish_22.14.5.tgz"; 965 + name = "electron_publish___electron_publish_22.14.13.tgz"; 926 966 path = fetchurl { 927 - name = "electron_publish___electron_publish_22.14.5.tgz"; 928 - url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.14.5.tgz"; 929 - sha512 = "h+NANRdaA0PqGF15GKvorseWPzh1PXa/zx4I37//PIokW8eKIov8ky23foUSb55ZFWUHGpxQJux7y2NCfBtQeg=="; 967 + name = "electron_publish___electron_publish_22.14.13.tgz"; 968 + url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.14.13.tgz"; 969 + sha512 = "0oP3QiNj3e8ewOaEpEJV/o6Zrmy2VarVvZ/bH7kyO/S/aJf9x8vQsKVWpsdmSiZ5DJEHgarFIXrnO0ZQf0P9iQ=="; 930 970 }; 931 971 } 932 972 { 933 - name = "electron___electron_16.0.7.tgz"; 973 + name = "electron___electron_17.2.0.tgz"; 934 974 path = fetchurl { 935 - name = "electron___electron_16.0.7.tgz"; 936 - url = "https://registry.yarnpkg.com/electron/-/electron-16.0.7.tgz"; 937 - sha512 = "/IMwpBf2svhA1X/7Q58RV+Nn0fvUJsHniG4TizaO7q4iKFYSQ6hBvsLz+cylcZ8hRMKmVy5G1XaMNJID2ah23w=="; 975 + name = "electron___electron_17.2.0.tgz"; 976 + url = "https://registry.yarnpkg.com/electron/-/electron-17.2.0.tgz"; 977 + sha512 = "eNXhPVEUofkgAeqRFvTizzYecoCMyS0Rar08WZHSAw9wjfZXawYMvTpjjjk9GiX9W/+Cjxua4YtGn5bOTabc0A=="; 938 978 }; 939 979 } 940 980 { ··· 991 1031 name = "escape_goat___escape_goat_2.1.1.tgz"; 992 1032 url = "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz"; 993 1033 sha512 = "8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="; 994 - }; 995 - } 996 - { 997 - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 998 - path = fetchurl { 999 - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 1000 - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1001 - sha1 = "G2HAViGQqN/2rjuyzwIAyhMLhtQ="; 1002 1034 }; 1003 1035 } 1004 1036 { ··· 1066 1114 }; 1067 1115 } 1068 1116 { 1117 + name = "fessonia___fessonia_2.2.2.tgz"; 1118 + path = fetchurl { 1119 + name = "fessonia___fessonia_2.2.2.tgz"; 1120 + url = "https://registry.yarnpkg.com/fessonia/-/fessonia-2.2.2.tgz"; 1121 + sha512 = "FvlDFdwHBIxWl2K9XynAIR38NB8xn4vPPZDNK5nIQBnGwZ0xv5FxDXsz+pzYZrUqoEQPQBJemNrYhueD2de7qw=="; 1122 + }; 1123 + } 1124 + { 1069 1125 name = "filelist___filelist_1.0.2.tgz"; 1070 1126 path = fetchurl { 1071 1127 name = "filelist___filelist_1.0.2.tgz"; ··· 1090 1130 }; 1091 1131 } 1092 1132 { 1093 - name = "follow_redirects___follow_redirects_1.14.7.tgz"; 1133 + name = "follow_redirects___follow_redirects_1.14.9.tgz"; 1094 1134 path = fetchurl { 1095 - name = "follow_redirects___follow_redirects_1.14.7.tgz"; 1096 - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.7.tgz"; 1097 - sha512 = "+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ=="; 1135 + name = "follow_redirects___follow_redirects_1.14.9.tgz"; 1136 + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz"; 1137 + sha512 = "MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w=="; 1098 1138 }; 1099 1139 } 1100 1140 { ··· 1122 1162 }; 1123 1163 } 1124 1164 { 1125 - name = "fs_extra___fs_extra_10.0.0.tgz"; 1165 + name = "fs_extra___fs_extra_10.0.1.tgz"; 1126 1166 path = fetchurl { 1127 - name = "fs_extra___fs_extra_10.0.0.tgz"; 1128 - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz"; 1129 - sha512 = "C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ=="; 1167 + name = "fs_extra___fs_extra_10.0.1.tgz"; 1168 + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.1.tgz"; 1169 + sha512 = "NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag=="; 1130 1170 }; 1131 1171 } 1132 1172 { ··· 1258 1298 }; 1259 1299 } 1260 1300 { 1261 - name = "has_flag___has_flag_3.0.0.tgz"; 1262 - path = fetchurl { 1263 - name = "has_flag___has_flag_3.0.0.tgz"; 1264 - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 1265 - sha1 = "tdRU3CGZriJWmfNGfloH87lVuv0="; 1266 - }; 1267 - } 1268 - { 1269 1301 name = "has_flag___has_flag_4.0.0.tgz"; 1270 1302 path = fetchurl { 1271 1303 name = "has_flag___has_flag_4.0.0.tgz"; ··· 1295 1343 name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz"; 1296 1344 url = "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz"; 1297 1345 sha512 = "carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="; 1346 + }; 1347 + } 1348 + { 1349 + name = "http_proxy_agent___http_proxy_agent_5.0.0.tgz"; 1350 + path = fetchurl { 1351 + name = "http_proxy_agent___http_proxy_agent_5.0.0.tgz"; 1352 + url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz"; 1353 + sha512 = "n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="; 1298 1354 }; 1299 1355 } 1300 1356 { ··· 1383 1423 name = "ini___ini_1.3.8.tgz"; 1384 1424 url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; 1385 1425 sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 1386 - }; 1387 - } 1388 - { 1389 - name = "is_buffer___is_buffer_1.1.6.tgz"; 1390 - path = fetchurl { 1391 - name = "is_buffer___is_buffer_1.1.6.tgz"; 1392 - url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 1393 - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 1394 1426 }; 1395 1427 } 1396 1428 { ··· 1506 1554 }; 1507 1555 } 1508 1556 { 1509 - name = "isbinaryfile___isbinaryfile_4.0.8.tgz"; 1557 + name = "isbinaryfile___isbinaryfile_4.0.10.tgz"; 1510 1558 path = fetchurl { 1511 - name = "isbinaryfile___isbinaryfile_4.0.8.tgz"; 1512 - url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.8.tgz"; 1513 - sha512 = "53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w=="; 1559 + name = "isbinaryfile___isbinaryfile_4.0.10.tgz"; 1560 + url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz"; 1561 + sha512 = "iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw=="; 1514 1562 }; 1515 1563 } 1516 1564 { ··· 1530 1578 }; 1531 1579 } 1532 1580 { 1533 - name = "jake___jake_10.8.2.tgz"; 1581 + name = "jake___jake_10.8.4.tgz"; 1534 1582 path = fetchurl { 1535 - name = "jake___jake_10.8.2.tgz"; 1536 - url = "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz"; 1537 - sha512 = "eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A=="; 1583 + name = "jake___jake_10.8.4.tgz"; 1584 + url = "https://registry.yarnpkg.com/jake/-/jake-10.8.4.tgz"; 1585 + sha512 = "MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA=="; 1538 1586 }; 1539 1587 } 1540 1588 { ··· 1570 1618 }; 1571 1619 } 1572 1620 { 1573 - name = "json5___json5_2.2.0.tgz"; 1621 + name = "json5___json5_2.2.1.tgz"; 1574 1622 path = fetchurl { 1575 - name = "json5___json5_2.2.0.tgz"; 1576 - url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz"; 1577 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 1623 + name = "json5___json5_2.2.1.tgz"; 1624 + url = "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz"; 1625 + sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 1578 1626 }; 1579 1627 } 1580 1628 { ··· 1594 1642 }; 1595 1643 } 1596 1644 { 1597 - name = "keytar___keytar_7.7.0.tgz"; 1645 + name = "keytar___keytar_7.9.0.tgz"; 1598 1646 path = fetchurl { 1599 - name = "keytar___keytar_7.7.0.tgz"; 1600 - url = "https://registry.yarnpkg.com/keytar/-/keytar-7.7.0.tgz"; 1601 - sha512 = "YEY9HWqThQc5q5xbXbRwsZTh2PJ36OSYRjSv3NN2xf5s5dpLTjEZnC2YikR29OaVybf9nQ0dJ/80i40RS97t/A=="; 1647 + name = "keytar___keytar_7.9.0.tgz"; 1648 + url = "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz"; 1649 + sha512 = "VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ=="; 1602 1650 }; 1603 1651 } 1604 1652 { ··· 1682 1730 }; 1683 1731 } 1684 1732 { 1685 - name = "md5___md5_2.3.0.tgz"; 1733 + name = "mime_db___mime_db_1.52.0.tgz"; 1686 1734 path = fetchurl { 1687 - name = "md5___md5_2.3.0.tgz"; 1688 - url = "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz"; 1689 - sha512 = "T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g=="; 1735 + name = "mime_db___mime_db_1.52.0.tgz"; 1736 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz"; 1737 + sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 1690 1738 }; 1691 1739 } 1692 1740 { 1693 - name = "mime_db___mime_db_1.51.0.tgz"; 1741 + name = "mime_types___mime_types_2.1.35.tgz"; 1694 1742 path = fetchurl { 1695 - name = "mime_db___mime_db_1.51.0.tgz"; 1696 - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz"; 1697 - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; 1698 - }; 1699 - } 1700 - { 1701 - name = "mime_types___mime_types_2.1.34.tgz"; 1702 - path = fetchurl { 1703 - name = "mime_types___mime_types_2.1.34.tgz"; 1704 - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz"; 1705 - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; 1743 + name = "mime_types___mime_types_2.1.35.tgz"; 1744 + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz"; 1745 + sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; 1706 1746 }; 1707 1747 } 1708 1748 { ··· 1714 1770 }; 1715 1771 } 1716 1772 { 1717 - name = "mimic_response___mimic_response_2.1.0.tgz"; 1773 + name = "mimic_response___mimic_response_3.1.0.tgz"; 1718 1774 path = fetchurl { 1719 - name = "mimic_response___mimic_response_2.1.0.tgz"; 1720 - url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz"; 1721 - sha512 = "wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA=="; 1775 + name = "mimic_response___mimic_response_3.1.0.tgz"; 1776 + url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz"; 1777 + sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 1722 1778 }; 1723 1779 } 1724 1780 { ··· 1730 1786 }; 1731 1787 } 1732 1788 { 1733 - name = "minimist___minimist_1.2.5.tgz"; 1789 + name = "minimatch___minimatch_3.1.2.tgz"; 1734 1790 path = fetchurl { 1735 - name = "minimist___minimist_1.2.5.tgz"; 1736 - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 1737 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 1791 + name = "minimatch___minimatch_3.1.2.tgz"; 1792 + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; 1793 + sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 1794 + }; 1795 + } 1796 + { 1797 + name = "minimist___minimist_1.2.6.tgz"; 1798 + path = fetchurl { 1799 + name = "minimist___minimist_1.2.6.tgz"; 1800 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz"; 1801 + sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 1738 1802 }; 1739 1803 } 1740 1804 { ··· 1754 1802 }; 1755 1803 } 1756 1804 { 1757 - name = "mkdirp___mkdirp_0.5.5.tgz"; 1805 + name = "mkdirp___mkdirp_0.5.6.tgz"; 1758 1806 path = fetchurl { 1759 - name = "mkdirp___mkdirp_0.5.5.tgz"; 1760 - url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 1761 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 1807 + name = "mkdirp___mkdirp_0.5.6.tgz"; 1808 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz"; 1809 + sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 1762 1810 }; 1763 1811 } 1764 1812 { ··· 1794 1842 }; 1795 1843 } 1796 1844 { 1797 - name = "node_abi___node_abi_2.30.1.tgz"; 1845 + name = "node_abi___node_abi_3.8.0.tgz"; 1798 1846 path = fetchurl { 1799 - name = "node_abi___node_abi_2.30.1.tgz"; 1800 - url = "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.1.tgz"; 1801 - sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w=="; 1847 + name = "node_abi___node_abi_3.8.0.tgz"; 1848 + url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.8.0.tgz"; 1849 + sha512 = "tzua9qWWi7iW4I42vUPKM+SfaF0vQSLAm4yO5J83mSwB7GeoWrDKC/K+8YCnYNwqP5duwazbw2X9l4m8SC2cUw=="; 1802 1850 }; 1803 1851 } 1804 1852 { ··· 1810 1858 }; 1811 1859 } 1812 1860 { 1813 - name = "node_addon_api___node_addon_api_3.2.1.tgz"; 1861 + name = "node_addon_api___node_addon_api_4.3.0.tgz"; 1814 1862 path = fetchurl { 1815 - name = "node_addon_api___node_addon_api_3.2.1.tgz"; 1816 - url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz"; 1817 - sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A=="; 1863 + name = "node_addon_api___node_addon_api_4.3.0.tgz"; 1864 + url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz"; 1865 + sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="; 1818 1866 }; 1819 1867 } 1820 1868 { 1821 - name = "node_fetch___node_fetch_2.6.5.tgz"; 1869 + name = "node_fetch___node_fetch_2.6.7.tgz"; 1822 1870 path = fetchurl { 1823 - name = "node_fetch___node_fetch_2.6.5.tgz"; 1824 - url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz"; 1825 - sha512 = "mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ=="; 1871 + name = "node_fetch___node_fetch_2.6.7.tgz"; 1872 + url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz"; 1873 + sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; 1826 1874 }; 1827 1875 } 1828 1876 { ··· 1994 2042 }; 1995 2043 } 1996 2044 { 1997 - name = "plist___plist_3.0.4.tgz"; 2045 + name = "plist___plist_3.0.5.tgz"; 1998 2046 path = fetchurl { 1999 - name = "plist___plist_3.0.4.tgz"; 2000 - url = "https://registry.yarnpkg.com/plist/-/plist-3.0.4.tgz"; 2001 - sha512 = "ksrr8y9+nXOxQB2osVNqrgvX/XQPOXaU4BQMKjYq8PvaY1U18mo+fKgBSwzK+luSyinOuPae956lSVcBwxlAMg=="; 2047 + name = "plist___plist_3.0.5.tgz"; 2048 + url = "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz"; 2049 + sha512 = "83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA=="; 2002 2050 }; 2003 2051 } 2004 2052 { 2005 - name = "prebuild_install___prebuild_install_6.1.4.tgz"; 2053 + name = "prebuild_install___prebuild_install_7.0.1.tgz"; 2006 2054 path = fetchurl { 2007 - name = "prebuild_install___prebuild_install_6.1.4.tgz"; 2008 - url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.4.tgz"; 2009 - sha512 = "Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ=="; 2055 + name = "prebuild_install___prebuild_install_7.0.1.tgz"; 2056 + url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.0.1.tgz"; 2057 + sha512 = "QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg=="; 2010 2058 }; 2011 2059 } 2012 2060 { ··· 2074 2122 }; 2075 2123 } 2076 2124 { 2077 - name = "puppeteer___puppeteer_13.0.1.tgz"; 2125 + name = "puppeteer___puppeteer_13.5.1.tgz"; 2078 2126 path = fetchurl { 2079 - name = "puppeteer___puppeteer_13.0.1.tgz"; 2080 - url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.0.1.tgz"; 2081 - sha512 = "wqGIx59LzYqWhYcJQphMT+ux0sgatEUbjKG0lbjJxNVqVIT3ZC5m4Bvmq2gHE3qhb63EwS+rNkql08bm4BvO0A=="; 2127 + name = "puppeteer___puppeteer_13.5.1.tgz"; 2128 + url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.1.tgz"; 2129 + sha512 = "wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w=="; 2082 2130 }; 2083 2131 } 2084 2132 { ··· 2290 2338 }; 2291 2339 } 2292 2340 { 2293 - name = "signal_exit___signal_exit_3.0.6.tgz"; 2341 + name = "signal_exit___signal_exit_3.0.7.tgz"; 2294 2342 path = fetchurl { 2295 - name = "signal_exit___signal_exit_3.0.6.tgz"; 2296 - url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz"; 2297 - sha512 = "sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="; 2343 + name = "signal_exit___signal_exit_3.0.7.tgz"; 2344 + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz"; 2345 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 2298 2346 }; 2299 2347 } 2300 2348 { ··· 2306 2354 }; 2307 2355 } 2308 2356 { 2309 - name = "simple_get___simple_get_3.1.0.tgz"; 2357 + name = "simple_get___simple_get_4.0.1.tgz"; 2310 2358 path = fetchurl { 2311 - name = "simple_get___simple_get_3.1.0.tgz"; 2312 - url = "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz"; 2313 - sha512 = "bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA=="; 2359 + name = "simple_get___simple_get_4.0.1.tgz"; 2360 + url = "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz"; 2361 + sha512 = "brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="; 2314 2362 }; 2315 2363 } 2316 2364 { ··· 2431 2479 name = "sumchecker___sumchecker_3.0.1.tgz"; 2432 2480 url = "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz"; 2433 2481 sha512 = "MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg=="; 2434 - }; 2435 - } 2436 - { 2437 - name = "supports_color___supports_color_5.5.0.tgz"; 2438 - path = fetchurl { 2439 - name = "supports_color___supports_color_5.5.0.tgz"; 2440 - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 2441 - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 2442 2482 }; 2443 2483 } 2444 2484 { ··· 2714 2770 }; 2715 2771 } 2716 2772 { 2717 - name = "ws___ws_8.2.3.tgz"; 2773 + name = "ws___ws_8.5.0.tgz"; 2718 2774 path = fetchurl { 2719 - name = "ws___ws_8.2.3.tgz"; 2720 - url = "https://registry.yarnpkg.com/ws/-/ws-8.2.3.tgz"; 2721 - sha512 = "wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="; 2775 + name = "ws___ws_8.5.0.tgz"; 2776 + url = "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz"; 2777 + sha512 = "BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg=="; 2722 2778 }; 2723 2779 } 2724 2780 { ··· 2762 2818 }; 2763 2819 } 2764 2820 { 2765 - name = "yargs_parser___yargs_parser_21.0.0.tgz"; 2821 + name = "yargs_parser___yargs_parser_21.0.1.tgz"; 2766 2822 path = fetchurl { 2767 - name = "yargs_parser___yargs_parser_21.0.0.tgz"; 2768 - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz"; 2769 - sha512 = "z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA=="; 2823 + name = "yargs_parser___yargs_parser_21.0.1.tgz"; 2824 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz"; 2825 + sha512 = "9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg=="; 2770 2826 }; 2771 2827 } 2772 2828 { 2773 - name = "yargs___yargs_17.3.1.tgz"; 2829 + name = "yargs___yargs_17.4.0.tgz"; 2774 2830 path = fetchurl { 2775 - name = "yargs___yargs_17.3.1.tgz"; 2776 - url = "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz"; 2777 - sha512 = "WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA=="; 2831 + name = "yargs___yargs_17.4.0.tgz"; 2832 + url = "https://registry.yarnpkg.com/yargs/-/yargs-17.4.0.tgz"; 2833 + sha512 = "WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA=="; 2778 2834 }; 2779 2835 } 2780 2836 {
+2 -2
pkgs/tools/misc/snapper/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45 3 3 , acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2 4 - , lvm2, pam, python2, util-linux, json_c, nixosTests 4 + , lvm2, pam, util-linux, json_c, nixosTests 5 5 , ncurses }: 6 6 7 7 stdenv.mkDerivation rec { ··· 21 21 ]; 22 22 buildInputs = [ 23 23 acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2 24 - lvm2 pam python2 util-linux json_c ncurses 24 + lvm2 pam util-linux json_c ncurses 25 25 ]; 26 26 27 27 passthru.tests.snapper = nixosTests.snapper;
+2 -2
pkgs/tools/misc/tmuxp/default.nix
··· 6 6 in 7 7 pypkgs.buildPythonApplication rec { 8 8 pname = "tmuxp"; 9 - version = "1.9.2"; 9 + version = "1.11.0"; 10 10 11 11 src = pypkgs.fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-3RlTbIq7UGvEESMvncq97bhjJw8O4m+0aFVZgBQOwkM="; 13 + sha256 = "sha256-N5kZ+e17ZgLOCvV/lcT/hdG1VNqLxh98QOQyM0BmZCA="; 14 14 }; 15 15 16 16 # No tests in archive
+13 -6
pkgs/tools/misc/ytfzf/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "ytfzf"; 19 - version = "2.2"; 19 + version = "2.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "pystardust"; 23 23 repo = "ytfzf"; 24 24 rev = "v${version}"; 25 - hash = "sha256-dQq7p/aK9iiyuhuxh5eVXR9GLukwsvosONpQTI0mknw="; 25 + hash = "sha256-zfoICi1VChmrRHZ3dSHGTcXkVf/zirQTycFz98xj+QY="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ makeWrapper ]; 29 29 30 30 dontBuild = true; 31 31 32 - installFlags = [ "PREFIX=${placeholder "out"}" "doc" ]; 32 + installFlags = [ 33 + "PREFIX=" 34 + "DESTDIR=${placeholder "out"}" 35 + "doc" 36 + "addons" 37 + ]; 33 38 34 39 postInstall = '' 35 - wrapProgram "$out/bin/ytfzf" --prefix PATH : ${lib.makeBinPath [ 36 - chafa coreutils curl dmenu fzf gnused jq mpv ueberzug yt-dlp 37 - ]} 40 + wrapProgram "$out/bin/ytfzf" \ 41 + --prefix PATH : ${lib.makeBinPath [ 42 + chafa coreutils curl dmenu fzf gnused jq mpv ueberzug yt-dlp 43 + ]} \ 44 + --set YTFZF_SYSTEM_ADDON_DIR "$out/share/ytfzf/addons" 38 45 ''; 39 46 40 47 meta = with lib; {
+3 -3
pkgs/tools/networking/corerad/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "corerad"; 5 - version = "1.1.2"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mdlayher"; 9 9 repo = "corerad"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-1v7jAYLIflXIKY0zltzkre4sNv9qqWxFGWrQuOBr2s0="; 11 + sha256 = "sha256-CNDotCRxKBtg/RsrBa00r3vRKBIIZ4xqpdXkImI44QI="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-oS9nI1BELDLFksN+NbLT1Eklg67liOvcRbxtGdYGJJA="; 14 + vendorSha256 = "sha256-w15dRxIBzDN5i4RNEDuSfCHHb4wc4fw1B2wjlTk40iE="; 15 15 16 16 # Since the tarball pulled from GitHub doesn't contain git tag information, 17 17 # we fetch the expected tag's timestamp from a file in the root of the
+2 -2
pkgs/tools/package-management/nix-eval-jobs/default.nix
··· 11 11 }: 12 12 stdenv.mkDerivation rec { 13 13 pname = "nix-eval-jobs"; 14 - version = "0.0.5"; 14 + version = "0.0.6"; 15 15 src = fetchFromGitHub { 16 16 owner = "nix-community"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-3/F9q6MRebTltJzuhIukHrxgUyd5pi34IzaklfdvKe4="; 19 + hash = "sha256-NCUVRiZqg9JgS+hlAczvPDb0M5uIwyyqhdKe5K1P360="; 20 20 }; 21 21 buildInputs = [ 22 22 boost
+5 -5
pkgs/tools/security/browserpass/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, makeWrapper, gnupg }: 2 2 buildGoModule rec { 3 3 pname = "browserpass"; 4 - version = "3.0.6"; 4 + version = "3.0.10"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "browserpass"; 8 8 repo = "browserpass-native"; 9 9 rev = version; 10 - sha256 = "0q3bsla07zjl6i69nj1axbkg2ia89pvh0jg6nlqgbm2kpzzbn0pz"; 10 + sha256 = "8eAwUwcRTnhVDkQc3HsvTP0TqC4LfVrUelxdbJxe9t0="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ]; 14 14 15 - vendorSha256 = "1wcbn0ip596f2dp68y6jmxgv20l0dgrcxg5cwclkawigj05416zj"; 15 + vendorSha256 = "gWXcYyIp86b/Pn6vj7qBj/VZS9rTr4weVw0YWmg+36c="; 16 16 17 17 doCheck = false; 18 18 ··· 21 21 # variables to be valid by default 22 22 substituteInPlace Makefile \ 23 23 --replace "PREFIX ?= /usr" "" 24 - sed -i -e 's/SED :=.*/SED := sed/' Makefile 25 - sed -i -e 's/INSTALL :=.*/INSTALL := install/' Makefile 24 + sed -i -e 's/SED =.*/SED = sed/' Makefile 25 + sed -i -e 's/INSTALL =.*/INSTALL = install/' Makefile 26 26 ''; 27 27 28 28 DESTDIR = placeholder "out";
+3 -3
pkgs/tools/security/nuclei/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "nuclei"; 8 - version = "2.6.8"; 8 + version = "2.6.9"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-XVABgsmPRNseWN+iNfbjicoNuHyZSrrlVOV3YEX7DPU="; 14 + sha256 = "sha256-BGWlkNj0LQ02BSUWQYjoT4bR0t/DmNB0jBpvwB/gWwo="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-Mibn93EviweuEsMF2d1kQAJtss/ELlJQIZTM7To2dkg="; 17 + vendorSha256 = "sha256-ar62CZ/2zXO3lwvWNiIAt9XITj2Y/0iIYGX8tmSCwcU="; 18 18 19 19 modRoot = "./v2"; 20 20 subPackages = [
+2 -2
pkgs/tools/system/jsvc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jsvc"; 5 - version = "1.2.4"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://downloads.apache.org//commons/daemon/source/commons-daemon-${version}-src.tar.gz"; 9 - sha256 = "1nrr6ggy6h20r9zyv14vx6vc9p1w6l8fl9fn6i8dx2hrq6kk2bjw"; 9 + sha256 = "sha256-UzzXb+MRPVNTE8HYsB/yPK9rq8zGmbGmi0RGk3zER0s="; 10 10 }; 11 11 12 12 buildInputs = [ commonsDaemon ];
+3 -3
pkgs/tools/system/natscli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "natscli"; 8 - version = "0.0.30"; 8 + version = "0.0.32"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nats-io"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-+WvJWHRQr5wYV9TG5e379trBO2Gwy0/4bAEJNwDun7s="; 14 + sha256 = "sha256-/bK7eQaH5VpYm0lfL43DtVxEeoo4z0Ns1ykuA0osPAs="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-IHDJp+cjukX916dvffpv4Wit9kmuY101fasN+ChMxWQ="; 17 + vendorSha256 = "sha256-qg3fmFBHeKujNQr7WFhkdvMQeR/PCBzqTHHeNsCrrMc="; 18 18 19 19 meta = with lib; { 20 20 description = "NATS Command Line Interface";
+2 -2
pkgs/tools/system/nq/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nq"; 5 - version = "0.4"; 5 + version = "0.5"; 6 6 src = fetchFromGitHub { 7 7 owner = "chneukirchen"; 8 8 repo = "nq"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-UfCeHwOD+tG6X2obW64DYZr6j90yh1Yl7My4ur+sqmk="; 10 + sha256 = "sha256-g14t2Wy2GwiqnfEDiLAPGehzUgK6mLC+5PAZynez62s="; 11 11 }; 12 12 makeFlags = [ "PREFIX=$(out)" ]; 13 13 postPatch = ''
+14 -11
pkgs/tools/typesetting/mmark/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, testers, mmark }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "mmark"; 5 - version = "1.3.6"; 6 - rev = "v${version}"; 7 - 8 - goPackagePath = "github.com/miekg/mmark"; 5 + version = "2.2.25"; 9 6 10 7 src = fetchFromGitHub { 11 - inherit rev; 12 - owner = "miekg"; 8 + owner = "mmarkdown"; 13 9 repo = "mmark"; 14 - sha256 = "0q2zrwa2vwk7a0zhmi000zpqrc01zssrj9c5n3573rg68fksg77m"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-9XjNTbsB4kh7YpjUnTzSXypw9r4ZyR7GALTrYebRKAg="; 15 12 }; 16 13 17 - goDeps = ./deps.nix; 14 + vendorSha256 = "sha256-uHphMy9OVnLD6IBqfMTyRlDyyTabzZC4Vn0628P+0F4="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 + 18 + passthru.tests.version = testers.testVersion { 19 + package = mmark; 20 + }; 18 21 19 22 meta = { 20 23 description = "A powerful markdown processor in Go geared towards the IETF"; 21 - homepage = "https://github.com/miekg/mmark"; 24 + homepage = "https://github.com/mmarkdown/mmark"; 22 25 license = with lib.licenses; bsd2; 23 26 maintainers = with lib.maintainers; [ yrashk ]; 24 27 platforms = lib.platforms.unix;
-12
pkgs/tools/typesetting/mmark/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/BurntSushi/toml"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/BurntSushi/toml"; 8 - rev = "a368813c5e648fee92e5f6c30e3944ff9d5e8895"; 9 - sha256 = "1sjxs2lwc8jpln80s4rlzp7nprbcljhy5mz4rf9995gq93wqnym5"; 10 - }; 11 - } 12 - ]
-36
pkgs/tools/typesetting/odpdown/default.nix
··· 1 - { lib, fetchFromGitHub, python2Packages, libreoffice }: 2 - 3 - python2Packages.buildPythonApplication rec { 4 - 5 - pname = "odpdown"; 6 - version = "0.4.1"; 7 - 8 - src = fetchFromGitHub { 9 - owner = "thorstenb"; 10 - repo = "odpdown"; 11 - rev = "v${version}"; 12 - sha256 = "r2qbgD9PAalbypt+vjp2YcYggUGPQMEG2FDxMtohqG4="; 13 - }; 14 - 15 - propagatedBuildInputs = with python2Packages; [ libreoffice lpod lxml mistune pillow pygments ]; 16 - 17 - checkInputs = with python2Packages; [ 18 - nose 19 - ]; 20 - 21 - meta = with lib; { 22 - homepage = "https://github.com/thorstenb/odpdown"; 23 - description = "Create nice-looking slides from your favourite text editor"; 24 - longDescription = '' 25 - Have a tool like pandoc, latex beamer etc, that you can write (or 26 - auto-generate) input for within your favourite hacker's editor, and 27 - generate nice-looking slides from. Using your corporation's mandatory, 28 - CI-compliant and lovely-artsy Impress template. Including 29 - syntax-highlighted code snippets of your latest hack, auto-fitted into the 30 - slides. 31 - ''; 32 - license = licenses.bsd3; 33 - platforms = with platforms; linux ++ darwin; 34 - maintainers = with maintainers; [ vandenoever ]; 35 - }; 36 - }
+10 -2
pkgs/tools/typesetting/tex/texlive/combine.nix
··· 225 225 226 226 perl `type -P mktexlsr.pl` --sort ./share/texmf 227 227 ${bin.texlinks}/bin/texlinks "$out/bin" && wrapBin 228 - perl `type -P fmtutil.pl` --sys --all | grep '^fmtutil' # too verbose 228 + FORCE_SOURCE_DATE=1 perl `type -P fmtutil.pl` --sys --all | grep '^fmtutil' # too verbose 229 229 #${bin.texlinks}/bin/texlinks "$out/bin" && wrapBin # do we need to regenerate format links? 230 230 231 231 # Disable unavailable map files 232 232 echo y | perl `type -P updmap.pl` --sys --syncwithtrees --force 233 233 # Regenerate the map files (this is optional) 234 234 perl `type -P updmap.pl` --sys --force 235 + 236 + # sort entries to improve reproducibility 237 + [[ -f "$TEXMFSYSCONFIG"/web2c/updmap.cfg ]] && sort -o "$TEXMFSYSCONFIG"/web2c/updmap.cfg "$TEXMFSYSCONFIG"/web2c/updmap.cfg 235 238 236 239 perl `type -P mktexlsr.pl` --sort ./share/texmf-* # to make sure 237 240 '' + ··· 302 299 ) 303 300 fi 304 301 '' 305 - + bin.cleanBrokenLinks 302 + + bin.cleanBrokenLinks + 303 + # Get rid of all log files. They are not needed, but take up space 304 + # and render the build unreproducible by their embedded timestamps. 305 + '' 306 + find $TEXMFSYSVAR/web2c -name '*.log' -delete 307 + '' 306 308 ; 307 309 }).overrideAttrs (_: { allowSubstitutes = true; }) 308 310 # TODO: make TeX fonts visible by fontconfig: it should be enough to install an appropriate file
+10 -10
pkgs/tools/virtualization/marathonctl/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage { 4 - pname = "marathonctl-unstable"; 5 - version = "2017-03-06"; 6 - 7 - goPackagePath = "github.com/shoenig/marathonctl"; 8 - subPackages = [ "." ]; 9 - goDeps = ./deps.nix; 3 + buildGoModule rec { 4 + pname = "marathonctl"; 5 + version = "0.0.7"; 10 6 11 7 src = fetchFromGitHub { 12 8 owner = "shoenig"; 13 9 repo = "marathonctl"; 14 - rev = "0867e66551fff5d81f25959baf914a8ee11a3a8b"; 15 - sha256 = "1fcc54hwpa8s3kz4gn26mc6nrv6zjrw869331nvm47khi23gpmxw"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-MigmvOwYa0uYPexchS4MP74I1Tp6QHYuQVSOh1+FrMg="; 16 12 }; 13 + 14 + vendorSha256 = "sha256-Oiol4KuPOyJq2Bfc5div+enX4kQqYn20itmwWBecuIg="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 17 18 18 meta = with lib; { 19 19 homepage = "https://github.com/shoenig/marathonctl";
-12
pkgs/tools/virtualization/marathonctl/deps.nix
··· 1 - # This file was generated by go2nix. 2 - [ 3 - { 4 - goPackagePath = "github.com/shoenig/config"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/shoenig/config"; 8 - rev = "7d793e7ad7f175ef22743b1ea38acee8267788db"; 9 - sha256 = "1dhcv1j5xk30kj73dfnx3xqx8mcvk9r8ywp9khgf2kq6wh9sm1qr"; 10 - }; 11 - } 12 - ]
+7
pkgs/top-level/aliases.nix
··· 74 74 amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11 75 75 amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09 76 76 angelfish = libsForQt5.plasmaMobileGear.angelfish; # Added 2021-10-06 77 + ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30 78 + ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 79 + ansible_2_9 = throw "Ansible 2.9 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 77 80 antimicro = throw "antimicro has been removed as it was broken, see antimicrox instead"; # Added 2020-08-06 78 81 antimicroX = antimicrox; # Added 2021-10-31 79 82 ardour_5 = throw "ardour_5 has been removed. see https://github.com/NixOS/nixpkgs/issues/139549"; # Added 2021-09-28 ··· 144 141 145 142 ### C ### 146 143 144 + c14 = throw "c14 is deprecated and archived by upstream"; # Added 2022-04-10 147 145 caddy1 = throw "caddy 1.x has been removed from nixpkgs, as it's unmaintained: https://github.com/caddyserver/caddy/blob/master/.github/SECURITY.md#supported-versions"; # Added 2020-10-02 148 146 calibre-py2 = throw "calibre-py2 has been removed from nixpkgs, as calibre has upgraded to python 3. Please use calibre as replacement"; # Added 2021-01-13 149 147 calibre-py3 = throw "calibre-py3 has been removed from nixpkgs, as calibre's default python version is now 3. Please use calibre as replacement"; # Added 2021-01-13 ··· 652 648 libgroove = throw "libgroove has been removed, because it depends on an outdated and insecure version of ffmpeg"; # Added 2022-01-21 653 649 libgumbo = throw "'libgumbo' has been renamed to/replaced by 'gumbo'"; # Converted to throw 2022-02-22 654 650 libintlOrEmpty = lib.optional (!stdenv.isLinux || stdenv.hostPlatform.libc != "glibc") gettext; # Added 2018-03-14 651 + libixp_hg = libixp; 655 652 libjpeg_drop = libjpeg_original; # Added 2020-06-05 656 653 libjson_rpc_cpp = throw "'libjson_rpc_cpp' has been renamed to/replaced by 'libjson-rpc-cpp'"; # Converted to throw 2022-02-22 657 654 libkml = throw "libkml has been removed from nixpkgs, as it's abandoned and no package needed it"; # Added 2021-11-09 ··· 885 880 oauth2_proxy = oauth2-proxy; # Added 2021-04-18 886 881 octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set"; # Added 2021-01-24 887 882 ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # Added 2021-07-12 883 + odpdown = throw "odpdown has been removed because it lacks python3 support"; # Added 2022-04-25 888 884 ofp = throw "ofp is not compatible with odp-dpdk"; 889 885 olifant = throw "olifant has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 890 886 onnxruntime = throw "onnxruntime has been removed due to poor maintainability"; # Added 2020-12-04 ··· 1366 1360 winpdb = throw "winpdb has been removed: abandoned by upstream"; # Added 2022-04-22 1367 1361 winusb = throw "'winusb' has been renamed to/replaced by 'woeusb'"; # Converted to throw 2022-02-22 1368 1362 wireguard = throw "'wireguard' has been renamed to/replaced by 'wireguard-tools'"; # Converted to throw 2022-02-22 1363 + wmii_hg = wmii; 1369 1364 wxmupen64plus = throw "wxmupen64plus was removed because the upstream disappeared"; # Added 2022-01-31 1370 1365 1371 1366 ### X ###
+26 -23
pkgs/top-level/all-packages.nix
··· 4036 4036 electron = electron_14; 4037 4037 }; 4038 4038 4039 + pouf = callPackage ../tools/misc/pouf { }; 4040 + 4039 4041 poweralertd = callPackage ../tools/misc/poweralertd { }; 4040 4042 4041 4043 ps_mem = callPackage ../tools/system/ps_mem { }; ··· 4789 4787 code-browser-qt = libsForQt5.callPackage ../applications/editors/code-browser { withQt = true; }; 4790 4788 code-browser-gtk2 = callPackage ../applications/editors/code-browser { withGtk2 = true; }; 4791 4789 code-browser-gtk = callPackage ../applications/editors/code-browser { withGtk3 = true; }; 4792 - 4793 - c14 = callPackage ../applications/networking/c14 { }; 4794 4790 4795 4791 certstrap = callPackage ../tools/security/certstrap { }; 4796 4792 ··· 7738 7738 7739 7739 ninka = callPackage ../development/tools/misc/ninka { }; 7740 7740 7741 - nixnote2 = libsForQt514.callPackage ../applications/misc/nixnote2 { }; 7741 + nixnote2 = libsForQt5.callPackage ../applications/misc/nixnote2 { }; 7742 7742 7743 7743 nodenv = callPackage ../development/tools/nodenv { }; 7744 7744 ··· 8681 8681 8682 8682 nmap-formatter = callPackage ../tools/security/nmap-formatter { }; 8683 8683 8684 - nmapsi4 = libsForQt514.callPackage ../tools/security/nmap/qt.nix { }; 8684 + nmapsi4 = libsForQt5.callPackage ../tools/security/nmap/qt.nix { }; 8685 8685 8686 8686 nnn = callPackage ../applications/misc/nnn { }; 8687 8687 ··· 8810 8810 obexftp = callPackage ../tools/bluetooth/obexftp { }; 8811 8811 8812 8812 objconv = callPackage ../development/tools/misc/objconv {}; 8813 - 8814 - odpdown = callPackage ../tools/typesetting/odpdown { }; 8815 8813 8816 8814 odpic = callPackage ../development/libraries/odpic { }; 8817 8815 ··· 12204 12206 12205 12207 colm = callPackage ../development/compilers/colm { }; 12206 12208 12207 - colmap = libsForQt514.callPackage ../applications/science/misc/colmap { }; 12209 + colmap = libsForQt5.callPackage ../applications/science/misc/colmap { }; 12208 12210 colmapWithCuda = colmap.override { cudaSupport = true; cudatoolkit = cudatoolkit_11; }; 12209 12211 12210 12212 chickenPackages_4 = callPackage ../development/compilers/chicken/4 { }; ··· 14661 14663 14662 14664 autoadb = callPackage ../misc/autoadb { }; 14663 14665 14664 - inherit (callPackage ../tools/admin/ansible { }) 14665 - ansible 14666 - ansible_2_8 14667 - ansible_2_9 14668 - ansible_2_10 14669 - ansible_2_11; 14666 + ansible = ansible_2_12; 14667 + ansible_2_12 = python3Packages.toPythonApplication python3Packages.ansible-core; 14670 14668 14671 14669 ansible-lint = with python3.pkgs; toPythonApplication ansible-lint; 14672 14670 ··· 17911 17917 17912 17918 jansson = callPackage ../development/libraries/jansson { }; 17913 17919 17920 + jarowinkler-cpp = callPackage ../development/libraries/jarowinkler-cpp { }; 17921 + 17914 17922 jasper = callPackage ../development/libraries/jasper { }; 17915 17923 17916 17924 jbig2dec = callPackage ../development/libraries/jbig2dec { }; ··· 19340 19344 19341 19345 libxsmm = callPackage ../development/libraries/libxsmm { }; 19342 19346 19343 - libixp_hg = callPackage ../development/libraries/libixp-hg { }; 19347 + libixp = callPackage ../development/libraries/libixp { }; 19344 19348 19345 19349 libwpe = callPackage ../development/libraries/libwpe { }; 19346 19350 ··· 20206 20210 20207 20211 rapidcheck = callPackage ../development/libraries/rapidcheck {}; 20208 20212 20213 + rapidfuzz-cpp = callPackage ../development/libraries/rapidfuzz-cpp { }; 20214 + 20209 20215 rapidjson = callPackage ../development/libraries/rapidjson {}; 20210 20216 20211 20217 rapidxml = callPackage ../development/libraries/rapidxml {}; ··· 20724 20726 talloc = callPackage ../development/libraries/talloc { }; 20725 20727 20726 20728 tagparser = callPackage ../development/libraries/tagparser { }; 20729 + 20730 + taskflow = callPackage ../development/libraries/taskflow { }; 20727 20731 20728 20732 tclap = callPackage ../development/libraries/tclap {}; 20729 20733 ··· 24272 24272 24273 24273 kanji-stroke-order-font = callPackage ../data/fonts/kanji-stroke-order-font {}; 24274 24274 24275 + kacst = callPackage ../data/fonts/kacst {}; 24276 + 24275 24277 kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {}; 24276 24278 24277 24279 kde-rounded-corners = libsForQt5.callPackage ../data/themes/kwin-decorations/kde-rounded-corners { }; ··· 27596 27594 27597 27595 libowlevelzs = callPackage ../development/libraries/libowlevelzs { }; 27598 27596 27599 - librecad = libsForQt514.callPackage ../applications/misc/librecad { 27597 + librecad = libsForQt5.callPackage ../applications/misc/librecad { 27600 27598 boost = boost175; 27601 27599 }; 27602 27600 ··· 27877 27875 27878 27876 meme-suite = callPackage ../applications/science/biology/meme-suite { }; 27879 27877 27880 - # Needs qtwebkit which is broken on qt5.15 27881 - mendeley = libsForQt514.callPackage ../applications/office/mendeley { 27878 + mendeley = libsForQt5.callPackage ../applications/office/mendeley { 27882 27879 gconf = gnome2.GConf; 27883 27880 }; 27884 27881 ··· 28985 28984 28986 28985 qimgv = libsForQt5.callPackage ../applications/graphics/qimgv { }; 28987 28986 28988 - qlandkartegt = libsForQt514.callPackage ../applications/misc/qlandkartegt { 28987 + qlandkartegt = libsForQt5.callPackage ../applications/misc/qlandkartegt { 28989 28988 gdal = gdal.override { 28990 28989 libgeotiff = libgeotiff.override { proj = proj_7; }; 28991 28990 libspatialite = libspatialite.override { proj = proj_7; }; ··· 30159 30158 30160 30159 virtual-ans = callPackage ../applications/audio/virtual-ans {}; 30161 30160 30162 - virtualbox = libsForQt514.callPackage ../applications/virtualization/virtualbox { 30161 + virtualbox = libsForQt5.callPackage ../applications/virtualization/virtualbox { 30163 30162 stdenv = stdenv_32bit; 30164 30163 inherit (gnome2) libIDL; 30165 30164 jdk = openjdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 ··· 30419 30418 30420 30419 wmderlandc = callPackage ../applications/window-managers/wmderlandc { }; 30421 30420 30422 - wmii_hg = callPackage ../applications/window-managers/wmii-hg { }; 30421 + wmii = callPackage ../applications/window-managers/wmii { }; 30423 30422 30424 30423 wofi = callPackage ../applications/misc/wofi { }; 30425 30424 ··· 30442 30441 30443 30442 worldengine-cli = python3Packages.worldengine; 30444 30443 30445 - wpsoffice = libsForQt514.callPackage ../applications/office/wpsoffice {}; 30444 + wpsoffice = libsForQt5.callPackage ../applications/office/wpsoffice {}; 30446 30445 30447 30446 wrapFirefox = callPackage ../applications/networking/browsers/firefox/wrapper.nix { }; 30448 30447 30449 30448 wrapThunderbird = callPackage ../applications/networking/mailreaders/thunderbird/wrapper.nix { }; 30449 + 30450 + wp4nix = callPackage ../development/tools/wp4nix { }; 30450 30451 30451 30452 wp-cli = callPackage ../development/tools/wp-cli { }; 30452 30453 ··· 34911 34908 inherit pkgs lib stdenv; 34912 34909 }; 34913 34910 34914 - golden-cheetah = libsForQt514.callPackage ../applications/misc/golden-cheetah {}; 34911 + golden-cheetah = libsForQt5.callPackage ../applications/misc/golden-cheetah {}; 34915 34912 34916 34913 linkchecker = callPackage ../tools/networking/linkchecker { }; 34917 34914 ··· 35187 35184 jami-daemon jami-libclient jami-client-gnome jami-client-qt; 35188 35185 35189 35186 jitsi-meet-electron = callPackage ../applications/networking/instant-messengers/jitsi-meet-electron { 35190 - electron = electron_16; 35187 + electron = electron_17; 35191 35188 }; 35192 35189 35193 35190 zenstates = callPackage ../os-specific/linux/zenstates {};
+2 -2
pkgs/top-level/php-packages.nix
··· 461 461 '') 462 462 ]; 463 463 zendExtension = true; 464 - doCheck = !(lib.versionOlder php.version "7.4"); 464 + doCheck = lib.versionAtLeast php.version "7.4"; 465 465 # Tests launch the builtin webserver. 466 466 __darwinAllowLocalNetworking = true; 467 467 } ··· 525 525 ''; 526 526 doCheck = false; 527 527 } 528 - { name = "session"; doCheck = !(lib.versionAtLeast php.version "8.0"); } 528 + { name = "session"; doCheck = lib.versionOlder php.version "8.0"; } 529 529 { name = "shmop"; } 530 530 { 531 531 name = "simplexml";
+1
pkgs/top-level/python-aliases.nix
··· 34 34 35 35 mapAliases ({ 36 36 aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30 37 + ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30 37 38 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 38 39 asyncio-nats-client = nats-py; # added 2022-02-08 39 40 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15
+4 -4
pkgs/top-level/python-packages.nix
··· 513 513 514 514 ansi2html = callPackage ../development/python-modules/ansi2html { }; 515 515 516 - ansible = callPackage ../development/python-modules/ansible/legacy.nix { }; 517 - 518 - ansible-base = callPackage ../development/python-modules/ansible/base.nix { }; 516 + ansible = callPackage ../development/python-modules/ansible { }; 519 517 520 518 ansible-compat = callPackage ../development/python-modules/ansible-compat { }; 521 519 ··· 2875 2877 2876 2878 feedparser = callPackage ../development/python-modules/feedparser { }; 2877 2879 2878 - fenics = callPackage ../development/libraries/science/math/fenics { 2880 + fenics = callPackage ../development/python-modules/fenics { 2879 2881 hdf5 = pkgs.hdf5_1_10; 2880 2882 boost = pkgs.boost169; 2881 2883 }; ··· 6127 6129 pdm-pep517 = callPackage ../development/python-modules/pdm-pep517 { }; 6128 6130 6129 6131 pdoc3 = callPackage ../development/python-modules/pdoc3 { }; 6132 + 6133 + peaqevcore = callPackage ../development/python-modules/peaqevcore { }; 6130 6134 6131 6135 pebble = callPackage ../development/python-modules/pebble { }; 6132 6136
+2
pkgs/top-level/qt5-packages.nix
··· 142 142 143 143 mapbox-gl-qml = libsForQt5.callPackage ../development/libraries/mapbox-gl-qml { }; 144 144 145 + maplibre-gl-native = callPackage ../development/libraries/maplibre-gl-native { }; 146 + 145 147 mauikit = callPackage ../development/libraries/mauikit { }; 146 148 147 149 mauikit-filebrowsing = callPackage ../development/libraries/mauikit-filebrowsing { };