lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
41e5bd55 b30088fc

+1320 -598
+1 -1
lib/default.nix
··· 88 88 updateManyAttrsByPath; 89 89 inherit (self.lists) singleton forEach foldr fold foldl foldl' imap0 imap1 90 90 concatMap flatten remove findSingle findFirst any all count 91 - optional optionals toList range partition zipListsWith zipLists 91 + optional optionals toList range replicate partition zipListsWith zipLists 92 92 reverseList listDfs toposort sort naturalSort compareLists take 93 93 drop sublist last init crossLists unique intersectLists 94 94 subtractLists mutuallyExclusive groupBy groupBy';
+12
lib/lists.nix
··· 303 303 else 304 304 genList (n: first + n) (last - first + 1); 305 305 306 + /* Return a list with `n` copies of an element. 307 + 308 + Type: replicate :: int -> a -> [a] 309 + 310 + Example: 311 + replicate 3 "a" 312 + => [ "a" "a" "a" ] 313 + replicate 2 true 314 + => [ true true ] 315 + */ 316 + replicate = n: elem: genList (_: elem) n; 317 + 306 318 /* Splits the elements of a list in two lists, `right` and 307 319 `wrong`, depending on the evaluation of a predicate. 308 320
+5
lib/tests/misc.nix
··· 479 479 expected = [2 30 40 42]; 480 480 }; 481 481 482 + testReplicate = { 483 + expr = replicate 3 "a"; 484 + expected = ["a" "a" "a"]; 485 + }; 486 + 482 487 testToIntShouldConvertStringToInt = { 483 488 expr = toInt "27"; 484 489 expected = 27;
+1 -1
nixos/doc/manual/default.nix
··· 48 48 }; 49 49 in buildPackages.nixosOptionsDoc { 50 50 inherit (eval) options; 51 - inherit (revision); 51 + inherit revision; 52 52 transformOptions = opt: opt // { 53 53 # Clean up declaration sites to not refer to the NixOS source tree. 54 54 declarations =
+2 -2
nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
··· 116 116 <listitem> 117 117 <para> 118 118 <link xlink:href="https://dm3mat.darc.de/qdmr/">QDMR</link>, a 119 - gui application and command line tool for programming cheap 120 - DMR radios 119 + GUI application and command line tool for programming DMR 120 + radios 121 121 <link linkend="opt-programs.qdmr.enable">programs.qdmr</link> 122 122 </para> 123 123 </listitem>
+1 -1
nixos/doc/manual/release-notes/rl-2305.section.md
··· 38 38 39 39 - [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable). 40 40 41 - - [QDMR](https://dm3mat.darc.de/qdmr/), a gui application and command line tool for programming cheap DMR radios [programs.qdmr](#opt-programs.qdmr.enable) 41 + - [QDMR](https://dm3mat.darc.de/qdmr/), a GUI application and command line tool for programming DMR radios [programs.qdmr](#opt-programs.qdmr.enable) 42 42 43 43 - [v2rayA](https://v2raya.org), a Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel. Available as [services.v2raya](options.html#opt-services.v2raya.enable). 44 44
+1 -2
nixos/modules/config/zram.nix
··· 32 32 }; 33 33 34 34 swapDevices = lib.mkOption { 35 - default = 0; 36 - example = 1; 35 + default = 1; 37 36 type = lib.types.int; 38 37 description = lib.mdDoc '' 39 38 Number of zram devices to be used as swap, recommended is 1.
+1 -1
nixos/modules/programs/qdmr.nix
··· 20 20 config = lib.mkIf cfg.enable { 21 21 environment.systemPackages = [ cfg.package ]; 22 22 services.udev.packages = [ cfg.package ]; 23 - users.groups.wireshark = {}; 23 + users.groups.dialout = {}; 24 24 }; 25 25 }
+1 -1
nixos/modules/services/misc/pykms.nix
··· 85 85 WorkingDirectory = libDir; 86 86 SyslogIdentifier = "pykms"; 87 87 Restart = "on-failure"; 88 - MemoryLimit = cfg.memoryLimit; 88 + MemoryMax = cfg.memoryLimit; 89 89 }; 90 90 }; 91 91 };
+22 -4
nixos/modules/services/networking/openvpn.nix
··· 57 57 ''}"} 58 58 ''; 59 59 60 - in { 60 + in 61 + { 61 62 description = "OpenVPN instance ‘${name}’"; 62 63 63 64 wantedBy = optional cfg.autoStart "multi-user.target"; ··· 70 71 serviceConfig.Type = "notify"; 71 72 }; 72 73 74 + restartService = optionalAttrs cfg.restartAfterSleep { 75 + openvpn-restart = { 76 + wantedBy = [ "sleep.target" ]; 77 + path = [ pkgs.procps ]; 78 + script = "pkill --signal SIGHUP --exact openvpn"; 79 + #SIGHUP makes openvpn process to self-exit and then it got restarted by systemd because of Restart=always 80 + description = "Sends a signal to OpenVPN process to trigger a restart after return from sleep"; 81 + }; 82 + }; 83 + 73 84 in 74 85 75 86 { ··· 82 93 options = { 83 94 84 95 services.openvpn.servers = mkOption { 85 - default = {}; 96 + default = { }; 86 97 87 98 example = literalExpression '' 88 99 { ··· 201 212 202 213 }; 203 214 215 + services.openvpn.restartAfterSleep = mkOption { 216 + default = true; 217 + type = types.bool; 218 + description = lib.mdDoc "Whether OpenVPN client should be restarted after sleep."; 219 + }; 220 + 204 221 }; 205 222 206 223 207 224 ###### implementation 208 225 209 - config = mkIf (cfg.servers != {}) { 226 + config = mkIf (cfg.servers != { }) { 210 227 211 - systemd.services = listToAttrs (mapAttrsFlatten (name: value: nameValuePair "openvpn-${name}" (makeOpenVPNJob value name)) cfg.servers); 228 + systemd.services = (listToAttrs (mapAttrsFlatten (name: value: nameValuePair "openvpn-${name}" (makeOpenVPNJob value name)) cfg.servers)) 229 + // restartService; 212 230 213 231 environment.systemPackages = [ openvpn ]; 214 232
+2 -2
pkgs/applications/audio/airwindows-lv2/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "airwindows-lv2"; 5 - version = "14.0"; 5 + version = "16.0"; 6 6 src = fetchFromGitHub { 7 7 owner = "hannesbraun"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-urlj9XwMqKt5JvvsA1f7YpuLhQXMGxp0V1pGv+LTroE="; 10 + sha256 = "sha256-jdeJ/VAJTDeiR9pyYps82F2Ty16r+a/FK+XV5L3rWco="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ meson ninja pkg-config ];
+3 -3
pkgs/applications/blockchains/nearcore/default.nix
··· 4 4 }: 5 5 rustPlatform.buildRustPackage rec { 6 6 pname = "nearcore"; 7 - version = "1.30.0"; 7 + version = "1.30.1"; 8 8 9 9 # https://github.com/near/nearcore/tags 10 10 src = fetchFromGitHub { ··· 13 13 # there is also a branch for this version number, so we need to be explicit 14 14 rev = "refs/tags/${version}"; 15 15 16 - sha256 = "sha256-Co8896RojUf/R8ZiRn7zSO1AWH7x5rYom6TbGohH1KM="; 16 + sha256 = "sha256-VjvHCiWjsx5Y7xxqck/O9gSNrL8mxCTosLwLqC85ywY="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-M+vhLBXsd+R97Sh5s6jFzon/47XohJeQKh//9QP6PXw="; 19 + cargoHash = "sha256-5Gs1sAzjuUO3IkwMX1NeA/Sbax0qtwvulyT66AQaNjs="; 20 20 cargoPatches = [ ./0001-make-near-test-contracts-optional.patch ]; 21 21 22 22 postPatch = ''
-9
pkgs/applications/editors/neovim/tests/default.nix
··· 9 9 let 10 10 inherit (neovimUtils) makeNeovimConfig; 11 11 12 - packages.myVimPackage.start = with vimPlugins; [ vim-nix ]; 13 - 14 12 plugins = with vimPlugins; [ 15 13 { 16 14 plugin = vim-obsession; ··· 46 44 }; 47 45 48 46 nvimAutoDisableWrap = makeNeovimConfig { }; 49 - 50 - nvimConfDontWrap = makeNeovimConfig { 51 - inherit plugins; 52 - customRC = '' 53 - " just a comment 54 - ''; 55 - }; 56 47 57 48 wrapNeovim2 = suffix: config: 58 49 wrapNeovimUnstable neovim-unwrapped (config // {
+2 -2
pkgs/applications/editors/vscode/extensions/lua/default.nix
··· 1 1 { lib 2 2 , vscode-utils 3 - , sumneko-lua-language-server 3 + , lua-language-server 4 4 }: 5 5 6 6 vscode-utils.buildVscodeMarketplaceExtension { ··· 14 14 patches = [ ./remove-chmod.patch ]; 15 15 16 16 postInstall = '' 17 - ln -sf ${sumneko-lua-language-server}/bin/lua-language-server \ 17 + ln -sf ${lua-language-server}/bin/lua-language-server \ 18 18 $out/$installPrefix/server/bin/lua-language-server 19 19 ''; 20 20
+2 -2
pkgs/applications/file-managers/clifm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clifm"; 5 - version = "1.9"; 5 + version = "1.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leo-arch"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-jrP8V1EhHldliZEjiX55TJujc82ub46aWi1boJYDVTg="; 11 + sha256 = "sha256-kXnI8a1nGKBDc+isv9RYvputKk+/FHmM9j+G4UnI5Z4="; 12 12 }; 13 13 14 14 buildInputs = [ libcap acl file readline ];
+3 -3
pkgs/applications/graphics/rnote/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "rnote"; 26 - version = "0.5.12"; 26 + version = "0.5.13"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "flxzt"; 30 30 repo = "rnote"; 31 31 rev = "v${version}"; 32 - hash = "sha256-wrx8+18jVDIhYhxD8VgU8wlRDLoUwMWIBOzSUozjUII="; 32 + hash = "sha256-8HMaCO+v9PbkoS8Z1BmndiU7UmlG4TT0+bSESIwa3RM="; 33 33 }; 34 34 35 35 cargoDeps = rustPlatform.fetchCargoTarball { 36 36 inherit src; 37 37 name = "${pname}-${version}"; 38 - hash = "sha256-t0nmfM6Z30c+n0iANjMBVifOhYMXdBqgjxYdhOPOhYQ="; 38 + hash = "sha256-rXAPILGzLZ3Ne4nhdaPZH1R2ezaF+D/P2t/Sod6nxo8="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/mediaelch/default.nix
··· 23 23 in 24 24 stdenv.mkDerivation rec { 25 25 pname = "mediaelch"; 26 - version = "2.8.18"; 26 + version = "2.10.0"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "Komet"; 30 30 repo = "MediaElch"; 31 31 rev = "v${version}"; 32 - sha256 = "sha256-9kwU9j8YNF/OmzrQaRAlBpW+t/tIpZJw5+pfEoTmCBA="; 32 + sha256 = "sha256-hipOOG+ibfsJZKLcnB6a5+OOvSs4WUdpEY+RiVKJc+k="; 33 33 fetchSubmodules = true; 34 34 }; 35 35
+7 -7
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 319 319 "vendorHash": null 320 320 }, 321 321 "dns": { 322 - "hash": "sha256-aH9sDqlXSq2dJi0kzGreJZ5V8A0WU0UqTpxWPKn23rM=", 322 + "hash": "sha256-qLKlnw0vnPvxJluvUiBERu1YdtrRklocVw314/lvQT4=", 323 323 "homepage": "https://registry.terraform.io/providers/hashicorp/dns", 324 324 "owner": "hashicorp", 325 325 "repo": "terraform-provider-dns", 326 - "rev": "v3.2.3", 326 + "rev": "v3.2.4", 327 327 "spdx": "MPL-2.0", 328 - "vendorHash": "sha256-AefmrO8Zb7ICH+qGxYW9ele6kNtrAusOf+KE/iZxKLY=" 328 + "vendorHash": "sha256-Ba4J6LUchqhdZTxcJxTgP20aZVioybIzKvF4j5TDQIk=" 329 329 }, 330 330 "dnsimple": { 331 331 "hash": "sha256-P1mvxRbOSmQknQxFPEyAkpK5eZQq286oceRFbrgYYqg=", ··· 439 439 "vendorHash": "sha256-aVbJT31IIgW0GYzwVX7kT4j7E+dadSbnttThh2lzGyE=" 440 440 }, 441 441 "google": { 442 - "hash": "sha256-yxw+LtrBhfZlTVh36o3uUdt3zGo7VLTjk5Cc8xoqhio=", 442 + "hash": "sha256-B/eXf31mRtWpl6TCv/hukPWfbb7Ne4W2FUMxiAbfsfI=", 443 443 "homepage": "https://registry.terraform.io/providers/hashicorp/google", 444 444 "owner": "hashicorp", 445 445 "proxyVendor": true, 446 446 "repo": "terraform-provider-google", 447 - "rev": "v4.51.0", 447 + "rev": "v4.52.0", 448 448 "spdx": "MPL-2.0", 449 449 "vendorHash": "sha256-oModEw/gaQCDHLf+2EKf1O1HQSGWnqEReXowE6F7W0o=" 450 450 }, 451 451 "google-beta": { 452 - "hash": "sha256-KQxIi9EF59FTcWoiE5oTZx+lVV+Pb+PH0QIz02PztN4=", 452 + "hash": "sha256-ISOhZqc6/RMqG4n63RjQluy0odkKATcCa52YpQW89xQ=", 453 453 "homepage": "https://registry.terraform.io/providers/hashicorp/google-beta", 454 454 "owner": "hashicorp", 455 455 "proxyVendor": true, 456 456 "repo": "terraform-provider-google-beta", 457 - "rev": "v4.51.0", 457 + "rev": "v4.52.0", 458 458 "spdx": "MPL-2.0", 459 459 "vendorHash": "sha256-oModEw/gaQCDHLf+2EKf1O1HQSGWnqEReXowE6F7W0o=" 460 460 },
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "3.25.0"; 5 + version = "3.26.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-XH9o1DTwG5ne5TZDgsS4HfC5WqLXc16JtjkKQtiE8z0="; 11 + sha256 = "sha256-wkPBMFsPLJFfilKuA3bGNn7NtC+wsnXZf+qkVpF2fWc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-iVyLNPvmzkI46Cp0SgbxK6xIQspJjpYjqPf3mOMoZvU="; 14 + vendorHash = "sha256-U7RQPrvByTADC2/8O0cvcf0nmDgIeVkuyRGV0fpSCPk="; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 75 75 in 76 76 env.mkDerivation rec { 77 77 pname = "telegram-desktop"; 78 - version = "4.6.0"; 78 + version = "4.6.1"; 79 79 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 80 80 81 81 # Telegram-Desktop with submodules ··· 84 84 repo = "tdesktop"; 85 85 rev = "v${version}"; 86 86 fetchSubmodules = true; 87 - sha256 = "1kwg286mbpf0gj57702fqddmyn5iihzny3da425psnwa10s217yf"; 87 + sha256 = "1df9rx3a6xvgipgzn5h4jc46nsdkypl4255si606bkrccdz8bcrl"; 88 88 }; 89 89 90 90 postPatch = ''
+8 -4
pkgs/applications/office/kbibtex/default.nix
··· 5 5 , extra-cmake-modules 6 6 , shared-mime-info 7 7 # Qt 8 + , qtnetworkauth 8 9 , qtxmlpatterns 9 10 , qtwebengine 10 11 , qca-qt5 ··· 28 29 29 30 mkDerivation rec { 30 31 pname = "kbibtex"; 31 - version = "0.9.2"; 32 + version = "0.9.3.1"; 32 33 33 - src = fetchurl { 34 - url = "mirror://kde/stable/KBibTeX/${version}/kbibtex-${version}.tar.xz"; 35 - sha256 = "09xcdx363z9hps3wbr1kx96a6q6678y8pg8r3apyps4xm7xm31nr"; 34 + src = let 35 + majorMinorPatch = lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version)); 36 + in fetchurl { 37 + url = "mirror://kde/stable/KBibTeX/${majorMinorPatch}/kbibtex-${version}.tar.xz"; 38 + hash = "sha256-kH/E5xv9dmzM7WrIMlGCo4y0Xv/7XHowELJP3OJz8kQ="; 36 39 }; 37 40 38 41 nativeBuildInputs = [ ··· 41 44 ]; 42 45 43 46 buildInputs = [ 47 + qtnetworkauth 44 48 qtxmlpatterns 45 49 qtwebengine 46 50 qca-qt5
+1 -1
pkgs/applications/radio/qdmr/default.nix
··· 61 61 ''; 62 62 63 63 meta = { 64 - description = "A codeplug programming tool for DMR radios"; 64 + description = "GUI application and command line tool for programming DMR radios"; 65 65 homepage = "https://dm3mat.darc.de/qdmr/"; 66 66 license = lib.licenses.gpl3Plus; 67 67 maintainers = with lib.maintainers; [ janik _0x4A6F ];
+6 -12
pkgs/applications/science/electronics/verilator/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , perl, flex, bison, python3, autoconf 3 - , which, cmake 3 + , which, cmake, help2man 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "verilator"; 8 - version = "5.002"; 8 + version = "5.006"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-RNoKAEF7zl+WqqbxGP/VvdQqQP8VI3hoQku3b/g0XpU="; 14 + hash = "sha256-PA8hbE6XECapuaO5YcgEodOoxSDqpMucdijJBBb7fZg="; 15 15 }; 16 16 17 17 enableParallelBuilding = true; 18 18 buildInputs = [ perl ]; 19 - nativeBuildInputs = [ flex bison python3 autoconf ]; 19 + nativeBuildInputs = [ flex bison python3 autoconf help2man ]; 20 20 nativeCheckInputs = [ which ]; 21 21 22 22 doCheck = stdenv.isLinux; # darwin tests are broken for now... ··· 24 24 25 25 preConfigure = "autoconf"; 26 26 27 - preCheck = '' 28 - patchShebangs \ 29 - src/flexfix \ 30 - src/vlcovgen \ 31 - bin/verilator \ 32 - bin/verilator_coverage \ 33 - test_regress/driver.pl \ 34 - test_regress/t/*.pl 27 + postPatch = '' 28 + patchShebangs bin/* src/{flexfix,vlcovgen} test_regress/{driver.pl,t/*.pl} 35 29 ''; 36 30 37 31 meta = with lib; {
+3 -3
pkgs/applications/virtualization/nixpacks/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "nixpacks"; 5 - version = "1.1.1"; 5 + version = "1.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "railwayapp"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-SrNYvkJy97GwneA7UClNLaO0fd+ZiMSxCCSgqwESw5Y="; 11 + sha256 = "sha256-lQHJ5Y+EMhERxOX062QMNPImAX9tjamGYFXYYUmhpys="; 12 12 }; 13 13 14 - cargoHash = "sha256-S/V2PVkL9T/USXAzorDpo0nhRm9DOkNtfw5CADg4oKM="; 14 + cargoHash = "sha256-z+DQkl/7kX5tLG9igPnEgHi9sJhB4NoutfV2/BV2U6A="; 15 15 16 16 # skip test due FHS dependency 17 17 doCheck = false;
-2
pkgs/build-support/build-fhs-userenv-bubblewrap/default.nix
··· 1 1 { lib, callPackage, runCommandLocal, writeShellScriptBin, glibc, pkgsi686Linux, coreutils, bubblewrap }: 2 2 3 - let buildFHSEnv = callPackage ./env.nix { }; in 4 - 5 3 args @ { 6 4 name 7 5 , runScript ? "bash"
+3 -2
pkgs/build-support/rust/hooks/default.nix
··· 2 2 , callPackage 3 3 , cargo 4 4 , cargo-nextest 5 + , clang 5 6 , lib 6 7 , makeSetupHook 7 8 , maturin ··· 126 127 bindgenHook = callPackage ({}: makeSetupHook { 127 128 name = "rust-bindgen-hook"; 128 129 substitutions = { 129 - libclang = rustc.llvmPackages.clang.cc.lib; 130 - clang = rustc.llvmPackages.clang; 130 + libclang = clang.cc.lib; 131 + inherit clang; 131 132 }; 132 133 } 133 134 ./rust-bindgen-hook.sh) {};
+5
pkgs/desktops/deepin/apps/deepin-image-viewer/default.nix
··· 35 35 url = "https://github.com/linuxdeepin/deepin-image-viewer/commit/4a046e6207fea306e592fddc33c1285cf719a63d.patch"; 36 36 sha256 = "sha256-aIgYmq6WDfCE+ZcD0GshxM+QmBWZGjh9MzZcTMrhBJ0="; 37 37 }) 38 + (fetchpatch { 39 + name = "fix build with libraw 0.21"; 40 + url = "https://raw.githubusercontent.com/archlinux/svntogit-community/2ff11979704dd7156a7e7c3bae9b30f08894063d/trunk/libraw-0.21.patch"; 41 + sha256 = "sha256-I/w4uiANT8Z8ud/F9WCd3iRHOfplu3fpqnu8ZIs4C+w="; 42 + }) 38 43 ]; 39 44 40 45 postPatch = ''
+3
pkgs/desktops/deepin/default.nix
··· 35 35 deepin-icon-theme = callPackage ./artwork/deepin-icon-theme { }; 36 36 deepin-gtk-theme = callPackage ./artwork/deepin-gtk-theme { }; 37 37 deepin-sound-theme = callPackage ./artwork/deepin-sound-theme { }; 38 + 39 + #### MISC 40 + deepin-desktop-base = callPackage ./misc/deepin-desktop-base { }; 38 41 }; 39 42 in 40 43 lib.makeScope libsForQt5.newScope packages
+36
pkgs/desktops/deepin/misc/deepin-desktop-base/default.nix
··· 1 + { stdenvNoCC 2 + , lib 3 + , fetchFromGitHub 4 + }: 5 + stdenvNoCC.mkDerivation rec { 6 + pname = "deepin-desktop-base"; 7 + version = "2022.03.07"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "linuxdeepin"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "sha256-joAduRI9jUtPA4lNsEhgOZlci8j/cvD8rJThqvj6a8A="; 14 + }; 15 + 16 + makeFlags = [ "DESTDIR=${placeholder "out"}" ]; 17 + 18 + # distribution_logo_transparent.svg come form nixos-artwork(https://github.com/NixOS/nixos-artwork)/logo/nixos-white.svg under CC-BY license, used for dde-lock 19 + postInstall = '' 20 + rm -r $out/etc 21 + rm -r $out/usr/share/python-apt 22 + rm -r $out/usr/share/plymouth 23 + rm -r $out/usr/share/distro-info 24 + mv $out/usr/* $out/ 25 + rm -r $out/usr 26 + install -D ${./distribution_logo_transparent.svg} $out/share/pixmaps/distribution_logo_transparent.svg 27 + ''; 28 + 29 + meta = with lib; { 30 + description = "Base assets and definitions for Deepin Desktop Environment"; 31 + homepage = "https://github.com/linuxdeepin/deepin-desktop-base"; 32 + license = licenses.gpl3Plus; 33 + platforms = platforms.linux; 34 + maintainers = teams.deepin.members; 35 + }; 36 + }
+243
pkgs/desktops/deepin/misc/deepin-desktop-base/distribution_logo_transparent.svg
··· 1 + <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 + <!-- Created with Inkscape (http://www.inkscape.org/) --> 3 + 4 + <svg 5 + width="156px" 6 + height="46px" 7 + viewBox="0 0 156 46" 8 + version="1.1" 9 + id="SVGRoot" 10 + sodipodi:docname="distribution_logo_transparent.svg" 11 + inkscape:version="1.1 (c4e8f9e, 2021-05-24)" 12 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 13 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 14 + xmlns:xlink="http://www.w3.org/1999/xlink" 15 + xmlns="http://www.w3.org/2000/svg" 16 + xmlns:svg="http://www.w3.org/2000/svg"> 17 + <sodipodi:namedview 18 + id="namedview12158" 19 + pagecolor="#ffffff" 20 + bordercolor="#ffffff" 21 + borderopacity="0" 22 + inkscape:pageshadow="2" 23 + inkscape:pageopacity="0.0" 24 + inkscape:pagecheckerboard="0" 25 + inkscape:document-units="px" 26 + showgrid="false" 27 + inkscape:zoom="0.67972082" 28 + inkscape:cx="397.22191" 29 + inkscape:cy="90.478323" 30 + inkscape:window-width="1920" 31 + inkscape:window-height="960" 32 + inkscape:window-x="0" 33 + inkscape:window-y="0" 34 + inkscape:window-maximized="1" 35 + inkscape:current-layer="layer1" /> 36 + <defs 37 + id="defs12153" /> 38 + <g 39 + inkscape:label="Layer 1" 40 + inkscape:groupmode="layer" 41 + id="layer1"> 42 + <g 43 + id="g12416" 44 + transform="matrix(0.10297744,0,0,0.10574712,-2.4660846,-2.6161481)"> 45 + <g 46 + id="layer7" 47 + inkscape:label="bg" 48 + style="display:none"> 49 + <rect 50 + transform="translate(-132.5822,958.04022)" 51 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" 52 + id="rect5389" 53 + width="1543.4287" 54 + height="483.7439" 55 + x="132.5822" 56 + y="-957.77832" /> 57 + <rect 58 + style="fill:#000000;fill-opacity:1;stroke-width:0.529749" 59 + id="rect6896" 60 + width="1543.4287" 61 + height="483.74393" 62 + x="-9.0332054e-07" 63 + y="0.26189968" /> 64 + </g> 65 + <g 66 + id="layer5" 67 + inkscape:label="guide" 68 + style="display:none;opacity:0.516" 69 + transform="translate(-132.5822,958.04022)"> 70 + <rect 71 + y="-957.77832" 72 + x="132.5822" 73 + height="483.7439" 74 + width="1543.4283" 75 + id="rect5350" 76 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d4d4d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> 77 + <rect 78 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#9b9b9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" 79 + id="rect5346" 80 + width="1496.443" 81 + height="435.68069" 82 + x="155.77646" 83 + y="-933.38721" 84 + inkscape:export-xdpi="17.971878" 85 + inkscape:export-ydpi="17.971878" /> 86 + <rect 87 + y="-851.65918" 88 + x="159.02695" 89 + height="272.58423" 90 + width="1492.5731" 91 + id="rect5348" 92 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#848484;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> 93 + </g> 94 + <g 95 + id="layer6" 96 + inkscape:label="logo-guide" 97 + style="display:none" 98 + transform="translate(-132.5822,958.04022)"> 99 + <rect 100 + y="-958.02759" 101 + x="132.65129" 102 + height="484.30399" 103 + width="550.41602" 104 + id="rect5379" 105 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#5c201e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" 106 + inkscape:export-filename="/home/tim/dev/nix/homepage/logo/nix-wiki.png" 107 + inkscape:export-xdpi="22.07" 108 + inkscape:export-ydpi="22.07" /> 109 + <rect 110 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c24a46;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" 111 + id="rect5372" 112 + width="501.94415" 113 + height="434.30405" 114 + x="156.12303" 115 + y="-933.02759" 116 + inkscape:export-filename="/home/tim/dev/nix/homepage/logo/nixos-logo-only-hires-print.png" 117 + inkscape:export-xdpi="212.2" 118 + inkscape:export-ydpi="212.2" /> 119 + <rect 120 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d98d8a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" 121 + id="rect5381" 122 + width="24.939611" 123 + height="24.939611" 124 + x="658.02826" 125 + y="-958.04022" /> 126 + </g> 127 + <g 128 + style="display:inline" 129 + inkscape:label="text-vegur" 130 + id="g5329" 131 + transform="translate(-132.5822,958.04022)"> 132 + <g 133 + aria-label="Nix" 134 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:395.097px;line-height:125%;font-family:Carlito;-inkscape-font-specification:Carlito;letter-spacing:0px;word-spacing:0px;display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 135 + id="text5407"> 136 + <path 137 + d="m 969.15319,-847.11833 h -30.81755 v 139.86428 c 0,19.75484 0.79019,50.96749 1.97548,85.73601 h -1.18529 c -15.40877,-28.84207 -32.79303,-56.49884 -45.04104,-75.46349 l -96.79872,-150.1368 h -42.27536 v 267.87565 h 30.81755 v -139.86427 c 0,-19.75485 -0.79019,-56.89395 -1.97548,-91.26737 h 1.18529 c 22.91561,39.90478 36.34891,62.0302 48.99201,80.99485 l 96.79872,150.13679 h 38.32439 z" 138 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Vegur;-inkscape-font-specification:Vegur;fill:#ffffff" 139 + id="path4683" /> 140 + <path 141 + d="m 1027.8251,-579.24268 h 33.1881 v -191.22686 h -33.1881 z m 16.594,-219.27874 c 11.4578,0 20.5451,-9.08722 20.5451,-20.54503 0,-11.45781 -9.0873,-20.54504 -20.5451,-20.54504 -11.4578,0 -20.545,9.08723 -20.545,20.54504 0,11.45781 9.0872,20.54503 20.545,20.54503 z" 142 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Vegur;-inkscape-font-specification:Vegur;fill:#ffffff" 143 + id="path4685" /> 144 + <path 145 + d="m 1267.7785,-770.46954 h -37.9293 l -46.6214,70.32723 h -1.1853 l -45.0411,-70.32723 h -41.09 l 68.3517,93.24285 v 1.18529 l -70.7223,96.79872 h 37.9293 l 49.7822,-75.85859 h 1.1853 l 49.7822,75.85859 h 41.09 l -72.3027,-98.37911 v -1.18529 z" 146 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Vegur;-inkscape-font-specification:Vegur;fill:#ffffff" 147 + id="path4687" /> 148 + </g> 149 + <g 150 + aria-label="O" 151 + transform="scale(0.95067318,1.0518862)" 152 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:367.487px;line-height:125%;font-family:Carlito;-inkscape-font-specification:Carlito;letter-spacing:0px;word-spacing:0px;display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 153 + id="text5356"> 154 + <path 155 + d="m 1468.5915,-800.79725 c -66.1477,0 -120.5358,48.14083 -120.5358,128.25306 0,80.11223 54.3881,128.25306 120.5358,128.25306 66.1477,0 120.5359,-48.14083 120.5359,-128.25306 0,-80.11223 -54.3882,-128.25306 -120.5359,-128.25306 z m 0,24.98914 c 49.2433,0 86.727,36.74872 86.727,103.26392 0,66.5152 -37.4837,103.26392 -86.727,103.26392 -49.2433,0 -86.727,-36.74872 -86.727,-103.26392 0,-66.5152 37.4837,-103.26392 86.727,-103.26392 z" 156 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Vegur;-inkscape-font-specification:Vegur;fill:#ffffff" 157 + id="path4680" /> 158 + </g> 159 + <g 160 + aria-label="S" 161 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:386.555px;line-height:125%;font-family:Carlito;-inkscape-font-specification:Carlito;letter-spacing:0px;word-spacing:0px;display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 162 + id="text5364"> 163 + <path 164 + d="m 1523.761,-773.88643 c 0,37.10927 19.3277,57.21012 64.1681,75.37819 34.4034,13.91598 48.3193,26.28573 48.3193,51.79835 0,30.92438 -25.126,46.38657 -58.3697,46.38657 -17.395,0 -37.1093,-2.70588 -58.7564,-10.05042 l -3.479,26.67228 c 18.9412,6.95799 39.8152,9.66387 60.6891,9.66387 51.7984,0 95.0925,-26.28573 95.0925,-79.24374 0,-36.7227 -22.4202,-54.50422 -67.6471,-72.6723 -30.1512,-11.9832 -44.8403,-24.73951 -44.8403,-51.41179 0,-25.89917 22.4202,-40.2017 50.6387,-40.2017 16.6218,0 34.7899,4.2521 47.5462,9.27732 l 3.479,-26.28573 c -14.6891,-6.18488 -32.8572,-9.27732 -52.958,-9.27732 -47.5463,0 -83.8824,27.4454 -83.8824,69.96642 z" 165 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Vegur;-inkscape-font-specification:Vegur;fill:#ffffff" 166 + id="path4677" /> 167 + </g> 168 + </g> 169 + <g 170 + id="layer4" 171 + inkscape:label="white-logo" 172 + style="display:inline"> 173 + <g 174 + style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:11.0512" 175 + transform="matrix(0.09048806,0,0,0.09048806,9.7879003,109.19458)" 176 + id="g955"> 177 + <g 178 + transform="matrix(11.047619,0,0,11.047619,-1572.2888,9377.7107)" 179 + id="g869" 180 + style="fill:#ffffff;fill-opacity:1"> 181 + <g 182 + transform="rotate(-60,226.35754,-449.37199)" 183 + id="g932" 184 + style="fill:#ffffff;fill-opacity:1;stroke-width:11.0512"> 185 + <path 186 + sodipodi:nodetypes="cccccccccc" 187 + inkscape:connector-curvature="0" 188 + id="path3336-6-3" 189 + d="m 449.71876,-420.51322 122.19683,211.67512 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4901 -33.22946,-57.8257 z" 190 + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 191 + </g> 192 + <path 193 + sodipodi:nodetypes="cccccccccc" 194 + inkscape:connector-curvature="0" 195 + id="path4260-0-6" 196 + d="m 309.54892,-710.38827 122.19683,211.67512 -56.15706,0.5268 -32.6236,-56.8692 -32.85645,56.5653 -27.90237,-0.011 -14.29086,-24.6896 46.81047,-80.4901 -33.22946,-57.8256 z" 197 + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:33.1535;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> 198 + <use 199 + x="0" 200 + y="0" 201 + xlink:href="#path3336-6-3" 202 + inkscape:transform-center-x="124.43045" 203 + inkscape:transform-center-y="151.59082" 204 + id="use3439-6-7" 205 + transform="rotate(60,728.23563,-692.24036)" 206 + width="100%" 207 + height="100%" 208 + style="fill:#ffffff;fill-opacity:1;stroke-width:11.0512" /> 209 + <use 210 + x="0" 211 + y="0" 212 + xlink:href="#path3336-6-3" 213 + inkscape:transform-center-x="59.669705" 214 + inkscape:transform-center-y="-139.94592" 215 + id="use3449-5-5" 216 + transform="rotate(180,477.5036,-570.81898)" 217 + width="100%" 218 + height="100%" 219 + style="fill:#ffffff;fill-opacity:1;stroke-width:11.0512" /> 220 + <use 221 + style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:11.0512" 222 + x="0" 223 + y="0" 224 + xlink:href="#path4260-0-6" 225 + id="use4354-5-3" 226 + transform="rotate(120,407.33916,-716.08356)" 227 + width="100%" 228 + height="100%" /> 229 + <use 230 + style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:11.0512" 231 + x="0" 232 + y="0" 233 + xlink:href="#path4260-0-6" 234 + id="use4362-2-5" 235 + transform="rotate(-120,407.28823,-715.86995)" 236 + width="100%" 237 + height="100%" /> 238 + </g> 239 + </g> 240 + </g> 241 + </g> 242 + </g> 243 + </svg>
+3 -3
pkgs/development/libraries/nng/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nng"; 5 - version = "1.5.2"; 5 + version = "1.6.0-prerelease"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nanomsg"; 9 9 repo = "nng"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-qbjMLpPk5FxH710Mf8AIraY0mERbaxVVhTT94W0EV+k="; 10 + rev = "539e559e65cd8f227c45e4b046ac41c0edcf6c32"; 11 + sha256 = "sha256-86+f0um25Ywn78S2JrV54K7k3O6ots0q2dCco1aK0xM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ninja ]
-2
pkgs/development/libraries/protobuf/generic-v3.nix
··· 53 53 mainProgram = "protoc"; 54 54 platforms = lib.platforms.unix; 55 55 }; 56 - 57 - passthru.version = version; 58 56 }; 59 57 in mkProtobufDerivation(if (stdenv.buildPlatform != stdenv.hostPlatform) 60 58 then (mkProtobufDerivation null buildPackages.stdenv)
+33
pkgs/development/python-modules/aiodocker/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , aiohttp 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "aiodocker"; 9 + # unstable includes support for python 3.10+ 10 + version = "unstable-2022-01-20"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "aio-libs"; 14 + repo = pname; 15 + rev = "f1dbdc3d42147f4c2ab5e6802acf6f7d0f885be4"; 16 + sha256 = "RL5Ck4wsBZO88afmoojeFKbdIeCjDo/SwNqUcERH6Ls="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + aiohttp 21 + ]; 22 + 23 + # tests require docker daemon 24 + doCheck = false; 25 + pythonImportsCheck = [ "aiodocker" ]; 26 + 27 + meta = with lib; { 28 + description = "Docker API client for asyncio"; 29 + homepage = "https://github.com/aio-libs/aiodocker"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ emilytrau ]; 32 + }; 33 + }
+2 -2
pkgs/development/python-modules/arcam-fmj/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "arcam-fmj"; 15 - version = "1.1.0"; 15 + version = "1.2.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "elupus"; 22 22 repo = "arcam_fmj"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-oXMoDpb4tg4iYAanTfPzeFp/IQl4bIELCTdM24hM84A="; 24 + hash = "sha256-stoxDb25K/h55rwR0faWO0AOjSJmjZNbMbOAuUE2iSM="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+4 -2
pkgs/development/python-modules/deepdiff/default.nix
··· 3 3 , fetchFromGitHub 4 4 , click 5 5 , ordered-set 6 + , orjson 6 7 , clevercsv 7 8 , jsonpickle 8 9 , numpy ··· 14 15 15 16 buildPythonPackage rec { 16 17 pname = "deepdiff"; 17 - version = "6.2.1"; 18 + version = "6.2.3"; 18 19 format = "setuptools"; 19 20 20 21 disabled = pythonOlder "3.7"; ··· 23 24 owner = "seperman"; 24 25 repo = "deepdiff"; 25 26 rev = "refs/tags/${version}"; 26 - hash = "sha256-AKah3A9srKm/cFWM7IiZ7JxQ8s0KTuh8VLKOymsDgnA="; 27 + hash = "sha256-rlMksUi+R48fIEjVv2E3yOETDezTghZ8+Zsypu8fAnQ="; 27 28 }; 28 29 29 30 postPatch = '' ··· 33 34 34 35 propagatedBuildInputs = [ 35 36 ordered-set 37 + orjson 36 38 ]; 37 39 38 40 passthru.optional-dependencies = {
+2 -2
pkgs/development/python-modules/greeclimate/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "greeclimate"; 14 - version = "1.4.0"; 14 + version = "1.4.1"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 20 20 owner = "cmroche"; 21 21 repo = "greeclimate"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-UBkfe4d+K+730TbvModZF1ET7uxMpQGxOkq0PF/WiWc="; 23 + hash = "sha256-M4oxFi/PpqhJgZX/wM+9rSrraIZcqzubbxnihfK0W2E="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/meilisearch/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "meilisearch"; 11 - version = "0.23.0"; 11 + version = "0.24.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "meilisearch"; 18 18 repo = "meilisearch-python"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-7TiXyuB2veNJtK6UmQg01O82r549aRmEa/DFzJtnQug="; 20 + hash = "sha256-u7LQjc1N4JS9bAFaa9SnljgnldkcgK1bsjKakG0zQ2E="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+81
pkgs/development/python-modules/ome-zarr/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , fetchpatch 6 + , pytestCheckHook 7 + , aiohttp 8 + , dask 9 + , fsspec 10 + , numpy 11 + , requests 12 + , scikitimage 13 + , s3fs 14 + , toolz 15 + , zarr 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "ome-zarr"; 20 + version = "0.6.1"; 21 + disabled = pythonOlder "3.6"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "ome"; 25 + repo = "ome-zarr-py"; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-dpweOuqruh7mAqmSaNbehLCr8OCLe1IZNWV4bpHpTl0="; 28 + }; 29 + 30 + patches = [ 31 + # remove after next release: 32 + (fetchpatch { 33 + name = "fix-writer-bug"; 34 + url = "https://github.com/ome/ome-zarr-py/commit/c1302e05998dfe2faf94b0f958c92888681f5ffa.patch"; 35 + hash = "sha256-1WANObABUXkjqeGdnmg0qJ48RcZcuAwgitZyMwiRYUw="; 36 + }) 37 + ]; 38 + 39 + propagatedBuildInputs = [ 40 + numpy 41 + dask 42 + zarr 43 + fsspec 44 + aiohttp 45 + requests 46 + s3fs 47 + scikitimage 48 + toolz 49 + ]; 50 + 51 + nativeCheckInputs = [ 52 + pytestCheckHook 53 + ]; 54 + 55 + disabledTests = [ 56 + # attempts to access network 57 + "test_s3_info" 58 + ]; 59 + 60 + pythonImportsCheck = [ 61 + "ome_zarr" 62 + "ome_zarr.cli" 63 + "ome_zarr.csv" 64 + "ome_zarr.data" 65 + "ome_zarr.format" 66 + "ome_zarr.io" 67 + "ome_zarr.reader" 68 + "ome_zarr.writer" 69 + "ome_zarr.scale" 70 + "ome_zarr.utils" 71 + ]; 72 + 73 + meta = with lib; { 74 + description = "Implementation of next-generation file format (NGFF) specifications for storing bioimaging data in the cloud."; 75 + homepage = "https://pypi.org/project/ome-zarr"; 76 + changelog = "https://github.com/ome/ome-zarr-py/blob/v${version}/CHANGELOG.md"; 77 + license = licenses.bsd2; 78 + maintainers = [ maintainers.bcdarwin ]; 79 + mainProgram = "ome_zarr"; 80 + }; 81 + }
+9 -5
pkgs/development/python-modules/pikepdf/default.nix
··· 18 18 , python-dateutil 19 19 , python-xmp-toolkit 20 20 , qpdf 21 + , setuptools 21 22 , setuptools-scm 22 23 , substituteAll 24 + , wheel 23 25 }: 24 26 25 27 buildPythonPackage rec { 26 28 pname = "pikepdf"; 27 - version = "6.2.9"; 28 - format = "setuptools"; 29 + version = "7.0.0"; 30 + format = "pyproject"; 29 31 30 - disabled = pythonOlder "3.7"; 32 + disabled = pythonOlder "3.8"; 31 33 32 34 src = fetchFromGitHub { 33 35 owner = "pikepdf"; ··· 39 41 postFetch = '' 40 42 rm "$out/.git_archival.txt" 41 43 ''; 42 - hash = "sha256-Obsg5fsTv/7uiFRbzGp90+d90e2dX7CWMMRMgiQvNyc="; 44 + hash = "sha256-sJVAiAQtJ8tU8ZHRU5jzIICnHc6RJwMsvxexnt7b4Yw="; 43 45 }; 44 46 45 47 patches = [ ··· 58 60 SETUPTOOLS_SCM_PRETEND_VERSION = version; 59 61 60 62 buildInputs = [ 61 - pybind11 62 63 qpdf 63 64 ]; 64 65 65 66 nativeBuildInputs = [ 67 + pybind11 68 + setuptools 66 69 setuptools-scm 70 + wheel 67 71 ]; 68 72 69 73 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/python-gvm/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "python-gvm"; 15 - version = "22.9.1"; 15 + version = "23.2.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "greenbone"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - sha256 = "sha256-V9xfPYwDDoCGJPstzYsC/ikUp45uiaZE0Bg4i9tRNhU="; 24 + sha256 = "sha256-6EmmiJjadC6zJM4+HhL8w2Xw1p7pG5LI0TS53bH61Tc="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+3 -33
pkgs/development/r-modules/default.nix
··· 325 325 Cardinal = [ pkgs.which ]; 326 326 chebpol = [ pkgs.fftw.dev ]; 327 327 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 328 - classInt = lib.optional stdenv.isDarwin [ pkgs.libiconv ]; 329 328 curl = [ pkgs.curl.dev ]; 330 329 data_table = [ pkgs.zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 331 330 devEMF = with pkgs; [ xorg.libXft.dev ]; ··· 344 343 graphscan = [ pkgs.gsl ]; 345 344 gsl = [ pkgs.gsl ]; 346 345 gert = [ pkgs.libgit2 ]; 347 - haven = with pkgs; [ libiconv zlib.dev ]; 346 + haven = with pkgs; [ zlib.dev ]; 348 347 h5vc = [ pkgs.zlib.dev ]; 349 348 HiCseg = [ pkgs.gsl ]; 350 349 imager = [ pkgs.xorg.libX11.dev ]; ··· 362 361 mvabund = [ pkgs.gsl ]; 363 362 mwaved = [ pkgs.fftw.dev ]; 364 363 mzR = with pkgs; [ zlib netcdf ]; 364 + nanonext = with pkgs; [ mbedtls nng ]; 365 365 ncdf4 = [ pkgs.netcdf ]; 366 - nloptr = with pkgs; [ nlopt pkg-config libiconv ]; 366 + nloptr = with pkgs; [ nlopt pkg-config ]; 367 367 n1qn1 = [ pkgs.gfortran ]; 368 368 odbc = [ pkgs.unixODBC ]; 369 369 pander = with pkgs; [ pandoc which ]; ··· 379 379 RAppArmor = [ pkgs.libapparmor ]; 380 380 rapportools = [ pkgs.which ]; 381 381 rapport = [ pkgs.which ]; 382 - readxl = [ pkgs.libiconv ]; 383 382 rcdd = [ pkgs.gmp.dev ]; 384 383 RcppCNPy = [ pkgs.zlib.dev ]; 385 384 RcppGSL = [ pkgs.gsl ]; ··· 499 498 500 499 packagesWithBuildInputs = { 501 500 # sort -t '=' -k 2 502 - deldir = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 503 - gam = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 504 - interp = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 505 - RcppArmadillo = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 506 - quantreg = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 507 - rmutil = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 508 - robustbase = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 509 - SparseM = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 510 - hexbin = lib.optionals stdenv.isDarwin [ pkgs.libiconv ]; 511 501 svKomodo = [ pkgs.which ]; 512 502 nat = [ pkgs.which ]; 513 503 nat_templatebrains = [ pkgs.which ]; ··· 516 506 clustermq = [ pkgs.pkg-config ]; 517 507 RMark = [ pkgs.which ]; 518 508 RPushbullet = [ pkgs.which ]; 519 - RcppEigen = [ pkgs.libiconv ]; 520 509 RCurl = [ pkgs.curl.dev ]; 521 510 R2SWF = [ pkgs.pkg-config ]; 522 511 rgl = with pkgs; [ libGLU libGLU.dev libGL xorg.libX11.dev freetype.dev libpng.dev ]; ··· 555 544 tikzDevice = with pkgs; [ which texlive.combined.scheme-medium ]; 556 545 gridGraphics = [ pkgs.which ]; 557 546 adimpro = with pkgs; [ which xorg.xdpyinfo ]; 558 - cluster = [ pkgs.libiconv ]; 559 - KernSmooth = [ pkgs.libiconv ]; 560 - nlme = [ pkgs.libiconv ]; 561 - Matrix = [ pkgs.libiconv ]; 562 - mgcv = [ pkgs.libiconv ]; 563 - minqa = [ pkgs.libiconv ]; 564 - igraph = [ pkgs.libiconv ]; 565 - ape = [ pkgs.libiconv ]; 566 - expm = [ pkgs.libiconv ]; 567 - mnormt = [ pkgs.libiconv ]; 568 - pan = [ pkgs.libiconv ]; 569 - phangorn = [ pkgs.libiconv ]; 570 - quadprog = [ pkgs.libiconv ]; 571 - randomForest = [ pkgs.libiconv ]; 572 - sundialr = [ pkgs.libiconv ]; 573 - ucminf = [ pkgs.libiconv ]; 574 - glmnet = [ pkgs.libiconv ]; 575 - mvtnorm = [ pkgs.libiconv ]; 576 - statmod = [ pkgs.libiconv ]; 577 547 rsvg = [ pkgs.librsvg.dev ]; 578 548 ssh = with pkgs; [ libssh ]; 579 549 s2 = [ pkgs.openssl.dev ];
+2 -2
pkgs/development/r-modules/generic-builder.nix
··· 1 - { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran }: 1 + { stdenv, lib, R, libcxx, xvfb-run, util-linux, Cocoa, Foundation, gettext, gfortran, libiconv }: 2 2 3 3 { name, buildInputs ? [], requireX ? false, ... } @ attrs: 4 4 5 5 stdenv.mkDerivation ({ 6 6 buildInputs = buildInputs ++ [R gettext] ++ 7 7 lib.optionals requireX [util-linux xvfb-run] ++ 8 - lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran]; 8 + lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran libiconv]; 9 9 10 10 NIX_CFLAGS_COMPILE = 11 11 lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
+27
pkgs/development/tools/database/pgagroal/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, docutils, libev, openssl, systemd }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "pgagroal"; 5 + version = "1.5.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "agroal"; 9 + repo = "pgagroal"; 10 + rev = version; 11 + hash = "sha256-d6icEYlk0qnzmoP/mvSmTw16YfIYWc2WbY7sKguX7Ug="; 12 + }; 13 + 14 + patches = [ ./do-not-search-libatomic.patch ]; 15 + 16 + nativeBuildInputs = [ cmake docutils ]; 17 + 18 + buildInputs = [ libev openssl systemd ]; 19 + 20 + meta = with lib; { 21 + description = "High-performance connection pool for PostgreSQL"; 22 + homepage = "https://agroal.github.io/pgagroal/"; 23 + license = licenses.bsd3; 24 + maintainers = [ maintainers.marsam ]; 25 + platforms = platforms.linux; 26 + }; 27 + }
+15
pkgs/development/tools/database/pgagroal/do-not-search-libatomic.patch
··· 1 + --- i/CMakeLists.txt 2 + +++ w/CMakeLists.txt 3 + @@ -78,12 +78,6 @@ 4 + endif() 5 + 6 + if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") 7 + - find_package(Libatomic) 8 + - if (LIBATOMIC_FOUND) 9 + - message(STATUS "libatomic found") 10 + - else () 11 + - message(FATAL_ERROR "libatomic needed") 12 + - endif() 13 + 14 + find_package(Systemd) 15 + if (SYSTEMD_FOUND)
+2 -2
pkgs/development/tools/devbox/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "devbox"; 8 - version = "0.3.2"; 8 + version = "0.3.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jetpack-io"; 12 12 repo = pname; 13 13 rev = version; 14 - hash = "sha256-RYuSreMdXnWJ47lBCuz7Ub6jlLlmEI6ZGt3vSg4B3zs="; 14 + hash = "sha256-T1laFLVDtDYOA5x3zWcBU7ae1uN1cQUqLHtY36uEXOI="; 15 15 }; 16 16 17 17 ldflags = [
+22 -21
pkgs/development/tools/language-servers/sumneko-lua-language-server/default.nix pkgs/development/tools/language-servers/lua-language-server/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ninja, makeWrapper, CoreFoundation, Foundation }: 2 - let 3 - target = if stdenv.isDarwin then "macOS" else "Linux"; 4 - in 2 + 5 3 stdenv.mkDerivation rec { 6 - pname = "sumneko-lua-language-server"; 7 - version = "3.6.7"; 4 + pname = "lua-language-server"; 5 + version = "3.6.10"; 8 6 9 7 src = fetchFromGitHub { 10 - owner = "sumneko"; 8 + owner = "luals"; 11 9 repo = "lua-language-server"; 12 10 rev = version; 13 - sha256 = "sha256-x7/yO1rJ+VBG4EFpISYblRECLW2lsLz5wcqLR14UV/g="; 11 + sha256 = "sha256-QnkWEf1Uv+CZwEyv1b3WMPvaOZEn+mKH5w3CPyw02CQ="; 14 12 fetchSubmodules = true; 15 13 }; 16 14 ··· 24 22 Foundation 25 23 ]; 26 24 27 - preBuild = '' 28 - cd 3rd/luamake 29 - '' 30 - + lib.optionalString stdenv.isDarwin '' 31 - # Needed for the test 32 - export HOME=/var/empty 25 + postPatch = '' 26 + # filewatch tests are failing on darwin 27 + # this feature is not used in lua-language-server 28 + sed -i /filewatch/d 3rd/bee.lua/test/test.lua 29 + 30 + pushd 3rd/luamake 31 + '' + lib.optionalString stdenv.isDarwin '' 33 32 # This package uses the program clang for C and C++ files. The language 34 33 # is selected via the command line argument -std, but this do not work 35 34 # in combination with the nixpkgs clang wrapper. Therefor we have to ··· 44 43 ''; 45 44 46 45 ninjaFlags = [ 47 - "-fcompile/ninja/${lib.toLower target}.ninja" 46 + "-fcompile/ninja/${if stdenv.isDarwin then "macos" else "linux"}.ninja" 48 47 ]; 49 48 50 49 postBuild = '' 51 - cd ../.. 50 + popd 52 51 ./3rd/luamake/luamake rebuild 53 52 ''; 54 53 ··· 66 65 makeWrapper "$out"/share/lua-language-server/bin/lua-language-server \ 67 66 $out/bin/lua-language-server \ 68 67 --add-flags "-E $out/share/lua-language-server/main.lua \ 69 - --logpath=\''${XDG_CACHE_HOME:-\$HOME/.cache}/sumneko_lua/log \ 70 - --metapath=\''${XDG_CACHE_HOME:-\$HOME/.cache}/sumneko_lua/meta" 68 + --logpath=\''${XDG_CACHE_HOME:-\$HOME/.cache}/lua-language-server/log \ 69 + --metapath=\''${XDG_CACHE_HOME:-\$HOME/.cache}/lua-language-server/meta" 71 70 72 71 runHook postInstall 73 72 ''; 74 73 74 + # some tests require local networking 75 + __darwinAllowLocalNetworking = true; 76 + 75 77 meta = with lib; { 76 - description = "Lua Language Server coded by Lua"; 77 - homepage = "https://github.com/sumneko/lua-language-server"; 78 + description = "A language server that offers Lua language support"; 79 + homepage = "https://github.com/luals/lua-language-server"; 78 80 license = licenses.mit; 79 - maintainers = with maintainers; [ sei40kr ]; 81 + maintainers = with maintainers; [ figsoda sei40kr ]; 80 82 platforms = platforms.linux ++ platforms.darwin; 81 - mainProgram = "lua-language-server"; 82 83 }; 83 84 }
+2 -2
pkgs/development/tools/pipenv/default.nix
··· 23 23 24 24 in buildPythonApplication rec { 25 25 pname = "pipenv"; 26 - version = "2022.11.25"; 26 + version = "2023.2.4"; 27 27 28 28 src = fetchPypi { 29 29 inherit pname version; 30 - sha256 = "sha256-ElnWxwU7EIbZqqvIGp/rc5vS0X6BuyAgSJoy7BQYYu4="; 30 + sha256 = "sha256-GKPrpRnjbVnw1af5xCvSaFIeS5t7PRvWrc8TFWkyMnU="; 31 31 }; 32 32 33 33 LC_ALL = "en_US.UTF-8";
+3 -3
pkgs/development/tools/ruff/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ruff"; 11 - version = "0.0.242"; 11 + version = "0.0.243"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "charliermarsh"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-TdaFo1U37W0UtGWtRchwdtTvyfljDOvtBJ7vCym1FX4="; 17 + sha256 = "sha256-iRkcZ8+RoZifMGbP5ZD++9UJbsCVuwUYmgWfAQpuX1E="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-3gW9wV6aYVnKNxW79mJCy/lkQUD67G6U47JiOQriT40="; 20 + cargoSha256 = "sha256-t6PP0Tc3ULkVt056fZnPfObxcz2ek0ZxafkVj2SfBZg="; 21 21 22 22 nativeBuildInputs = [ 23 23 installShellFiles
+1 -1
pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix
··· 5 5 }@inputs: 6 6 7 7 let 8 - inherit (pkgs) stdenv lib fetchurl linkFarm callPackage git rsync makeWrapper runCommandLocal; 8 + inherit (pkgs) stdenv lib callPackage git rsync runCommandLocal; 9 9 10 10 compose = f: g: x: f (g x); 11 11 id = x: x;
+2 -2
pkgs/games/heroic/default.nix
··· 10 10 11 11 mkYarnPackage rec { 12 12 pname = "heroic-unwrapped"; 13 - version = "2.5.2"; 13 + version = "2.6.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Heroic-Games-Launcher"; 17 17 repo = "HeroicGamesLauncher"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-vyZH/uOE7Oph8TuBFM2cUFwM4ed8Ri3fKRUrl9A6zHc="; 19 + sha256 = "sha256-bU4jvF81GI8a9ACwYn1Hdb5DbpK6GI7z19enO7uu48o="; 20 20 }; 21 21 22 22 packageJSON = ./package.json;
+14 -9
pkgs/games/heroic/package.json
··· 1 1 { 2 2 "name": "heroic", 3 - "version": "2.5.2", 3 + "version": "2.6.1", 4 4 "private": true, 5 5 "main": "build/electron/main.js", 6 6 "homepage": "./", ··· 53 53 "artifactName": "${productName}-${version}-Portable.${ext}" 54 54 }, 55 55 "mac": { 56 + "artifactName": "${productName}-${version}-macOS-${arch}.${ext}", 56 57 "target": "dmg", 57 58 "category": "public.app-category.games", 58 59 "icon": "build/icon.icns", ··· 145 146 "fs-extra": "^10.1.0", 146 147 "fuse.js": "^6.6.2", 147 148 "graceful-fs": "^4.2.10", 148 - "heroic-wine-downloader": "^1.2.3", 149 149 "howlongtobeat": "^1.7.0", 150 150 "i18next": "^21.6.16", 151 151 "i18next-fs-backend": "^1.1.4", ··· 164 164 "source-map-support": "^0.5.21", 165 165 "steam-shortcut-editor": "^3.1.1", 166 166 "systeminformation": "^5.15.0", 167 + "ts-prune": "^0.10.3", 167 168 "tslib": "^2.4.0" 168 169 }, 169 170 "scripts": { 170 171 "start": "vite", 171 172 "codecheck": "tsc --noEmit", 173 + "find-deadcode": "ts-prune --error", 172 174 "test": "jest", 173 175 "test-watch": "jest --watch --maxWorkers=25%", 174 176 "test:ci": "jest --runInBand --silent", ··· 176 178 "release:mac": "vite build && electron-builder -p always --mac", 177 179 "release:win": "vite build && electron-builder -p always --win nsis portable", 178 180 "dist:linux": "vite build && electron-builder --linux", 179 - "dist:mac": "vite build && electron-builder --mac", 181 + "dist:mac": "vite build && electron-builder --mac --x64 --arm64", 180 182 "dist:win": "vite build && electron-builder --win", 183 + "dist:flatpak": "yarn dist:linux appimage && yarn flatpak:prepare && yarn flatpak:build", 181 184 "lint": "eslint --cache -c .eslintrc --ext .tsx,ts ./src", 182 185 "lint-fix": "eslint --fix -c .eslintrc --ext .tsx,ts ./src", 183 - "dist-flatpak": "cd flatpak && flatpak-builder build local.heroic.yml --install --force-clean --user", 184 - "flatpak-test": "yarn dist:linux appimage && cd flatpak && flatpak-builder build local.heroic.yml --install --force-clean --user", 186 + "flatpak:build": "cd flatpak-build && flatpak-builder build com.heroicgameslauncher.hgl.yml --install --force-clean --user", 187 + "flatpak:prepare": "node ./flatpak/prepareFlatpak.js", 188 + "flatpak:prepare-release": "node ./flatpak/prepareFlatpak.js release", 185 189 "i18n": "i18next", 186 190 "prepare": "husky install", 187 - "prettier": "prettier --check .", 188 - "prettier-fix": "prettier --write ." 191 + "prettier": "prettier --check . '!flatpak-build'", 192 + "prettier-fix": "prettier --write . '!flatpak-build'" 189 193 }, 190 194 "eslintConfig": { 191 195 "extends": [ ··· 211 215 "@typescript-eslint/eslint-plugin": "^5.20.0", 212 216 "@typescript-eslint/parser": "^5.20.0", 213 217 "@vitejs/plugin-react": "^2.2.0", 214 - "electron": "^21.2.1", 215 - "electron-builder": "^23.1.0", 218 + "electron": "^22.2.0", 219 + "electron-builder": "^23.6.0", 216 220 "electron-devtools-installer": "^3.2.0", 217 221 "eslint": "^8.13.0", 218 222 "eslint-config-prettier": "^8.5.0", ··· 226 230 "sass": "^1.55.0", 227 231 "tmp": "^0.2.1", 228 232 "ts-jest": "^28.0.7", 233 + "type-fest": "^3.2.0", 229 234 "typescript": "^4.8.4", 230 235 "vite": "^3.2.2", 231 236 "vite-plugin-electron": "^0.10.2",
+199 -184
pkgs/games/heroic/yarn.lock
··· 452 452 ajv "^6.12.0" 453 453 ajv-keywords "^3.4.1" 454 454 455 - "@electron/get@^1.14.1": 456 - version "1.14.1" 457 - resolved "https://registry.yarnpkg.com/@electron/get/-/get-1.14.1.tgz#16ba75f02dffb74c23965e72d617adc721d27f40" 458 - integrity sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw== 455 + "@electron/get@^2.0.0": 456 + version "2.0.2" 457 + resolved "https://registry.yarnpkg.com/@electron/get/-/get-2.0.2.tgz#ae2a967b22075e9c25aaf00d5941cd79c21efd7e" 458 + integrity sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g== 459 459 dependencies: 460 460 debug "^4.1.1" 461 461 env-paths "^2.2.0" 462 462 fs-extra "^8.1.0" 463 - got "^9.6.0" 463 + got "^11.8.5" 464 464 progress "^2.0.3" 465 465 semver "^6.2.0" 466 466 sumchecker "^3.0.1" 467 467 optionalDependencies: 468 468 global-agent "^3.0.0" 469 - global-tunnel-ng "^2.7.1" 470 469 471 470 "@electron/universal@1.2.1": 472 471 version "1.2.1" ··· 1141 1140 resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.46.tgz#57501b58023776dbbae9e25619146286440be34c" 1142 1141 integrity sha512-ng4ut1z2MCBhK/NwDVwIQp3pAUOCs/KNaW3cBxdFB2xTDrOuo1xuNmpr/9HHFhxqIvHrs1NTH3KJg6q+JSy1Kw== 1143 1142 1144 - "@sindresorhus/is@^0.14.0": 1145 - version "0.14.0" 1146 - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 1147 - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 1143 + "@sindresorhus/is@^4.0.0": 1144 + version "4.6.0" 1145 + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" 1146 + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== 1148 1147 1149 1148 "@sinonjs/commons@^1.7.0": 1150 1149 version "1.8.3" ··· 1242 1241 "@svgr/hast-util-to-babel-ast" "^6.4.0" 1243 1242 svg-parser "^2.0.4" 1244 1243 1245 - "@szmarczak/http-timer@^1.1.2": 1246 - version "1.1.2" 1247 - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 1248 - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 1244 + "@szmarczak/http-timer@^4.0.5": 1245 + version "4.0.6" 1246 + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" 1247 + integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== 1249 1248 dependencies: 1250 - defer-to-connect "^1.0.1" 1249 + defer-to-connect "^2.0.0" 1251 1250 1252 1251 "@testing-library/dom@^7.31.0": 1253 1252 version "7.31.2" ··· 1311 1310 resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" 1312 1311 integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== 1313 1312 1313 + "@ts-morph/common@~0.12.3": 1314 + version "0.12.3" 1315 + resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.12.3.tgz#a96e250217cd30e480ab22ec6a0ebbe65fd784ff" 1316 + integrity sha512-4tUmeLyXJnJWvTFOKtcNJ1yh0a3SsTLi2MUoyj8iUNznFRN1ZquaNe7Oukqrnki2FzZkm0J9adCNLDZxUzvj+w== 1317 + dependencies: 1318 + fast-glob "^3.2.7" 1319 + minimatch "^3.0.4" 1320 + mkdirp "^1.0.4" 1321 + path-browserify "^1.0.1" 1322 + 1314 1323 "@types/aria-query@^4.2.0": 1315 1324 version "4.2.2" 1316 1325 resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc" ··· 1349 1358 dependencies: 1350 1359 "@babel/types" "^7.3.0" 1351 1360 1361 + "@types/cacheable-request@^6.0.1": 1362 + version "6.0.3" 1363 + resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" 1364 + integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== 1365 + dependencies: 1366 + "@types/http-cache-semantics" "*" 1367 + "@types/keyv" "^3.1.4" 1368 + "@types/node" "*" 1369 + "@types/responselike" "^1.0.0" 1370 + 1352 1371 "@types/classnames@^2.3.1": 1353 1372 version "2.3.1" 1354 1373 resolved "https://registry.yarnpkg.com/@types/classnames/-/classnames-2.3.1.tgz#3c2467aa0f1a93f1f021e3b9bcf938bd5dfdc0dd" ··· 1414 1433 "@types/minimatch" "*" 1415 1434 "@types/node" "*" 1416 1435 1417 - "@types/graceful-fs@^4.1.3", "@types/graceful-fs@^4.1.5": 1436 + "@types/graceful-fs@^4.1.3": 1418 1437 version "4.1.5" 1419 1438 resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 1420 1439 integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== ··· 1433 1452 resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" 1434 1453 integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== 1435 1454 1455 + "@types/http-cache-semantics@*": 1456 + version "4.0.1" 1457 + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" 1458 + integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== 1459 + 1436 1460 "@types/i18next-fs-backend@^1.1.2": 1437 1461 version "1.1.2" 1438 1462 resolved "https://registry.yarnpkg.com/@types/i18next-fs-backend/-/i18next-fs-backend-1.1.2.tgz#4f3116769229371fcdf64bbdb6841ea745e392f9" ··· 1490 1514 resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 1491 1515 integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 1492 1516 1517 + "@types/keyv@^3.1.4": 1518 + version "3.1.4" 1519 + resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" 1520 + integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== 1521 + dependencies: 1522 + "@types/node" "*" 1523 + 1493 1524 "@types/mdast@^3.0.0": 1494 1525 version "3.0.10" 1495 1526 resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af" ··· 1612 1643 "@types/prop-types" "*" 1613 1644 "@types/scheduler" "*" 1614 1645 csstype "^3.0.2" 1646 + 1647 + "@types/responselike@^1.0.0": 1648 + version "1.0.0" 1649 + resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" 1650 + integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== 1651 + dependencies: 1652 + "@types/node" "*" 1615 1653 1616 1654 "@types/scheduler@*": 1617 1655 version "0.16.2" ··· 2037 2075 dependencies: 2038 2076 follow-redirects "^1.14.4" 2039 2077 2040 - axios@^0.24.0: 2041 - version "0.24.0" 2042 - resolved "https://registry.yarnpkg.com/axios/-/axios-0.24.0.tgz#804e6fa1e4b9c5288501dd9dff56a7a0940d20d6" 2043 - integrity sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA== 2044 - dependencies: 2045 - follow-redirects "^1.14.4" 2046 - 2047 2078 axios@^0.26.1: 2048 2079 version "0.26.1" 2049 2080 resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" ··· 2324 2355 stat-mode "^1.0.0" 2325 2356 temp-file "^3.4.0" 2326 2357 2327 - cacheable-request@^6.0.0: 2328 - version "6.1.0" 2329 - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 2330 - integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 2358 + cacheable-lookup@^5.0.3: 2359 + version "5.0.4" 2360 + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" 2361 + integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== 2362 + 2363 + cacheable-request@^7.0.2: 2364 + version "7.0.2" 2365 + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" 2366 + integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== 2331 2367 dependencies: 2332 2368 clone-response "^1.0.2" 2333 2369 get-stream "^5.1.0" 2334 2370 http-cache-semantics "^4.0.0" 2335 - keyv "^3.0.0" 2371 + keyv "^4.0.0" 2336 2372 lowercase-keys "^2.0.0" 2337 - normalize-url "^4.1.0" 2338 - responselike "^1.0.2" 2373 + normalize-url "^6.0.1" 2374 + responselike "^2.0.0" 2339 2375 2340 2376 call-bind@^1.0.0, call-bind@^1.0.2: 2341 2377 version "1.0.2" ··· 2528 2564 resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 2529 2565 integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 2530 2566 2567 + code-block-writer@^11.0.0: 2568 + version "11.0.3" 2569 + resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-11.0.3.tgz#9eec2993edfb79bfae845fbc093758c0a0b73b76" 2570 + integrity sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw== 2571 + 2531 2572 collect-v8-coverage@^1.0.0: 2532 2573 version "1.0.1" 2533 2574 resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" ··· 2591 2632 resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 2592 2633 integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 2593 2634 2635 + commander@^6.2.1: 2636 + version "6.2.1" 2637 + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 2638 + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 2639 + 2594 2640 commander@~9.4.1: 2595 2641 version "9.4.1" 2596 2642 resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd" ··· 2631 2677 onetime "^5.1.2" 2632 2678 pkg-up "^3.1.0" 2633 2679 semver "^7.3.5" 2634 - 2635 - config-chain@^1.1.11: 2636 - version "1.1.13" 2637 - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" 2638 - integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== 2639 - dependencies: 2640 - ini "^1.3.4" 2641 - proto-list "~1.2.1" 2642 2680 2643 2681 convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 2644 2682 version "1.9.0" ··· 2836 2874 dependencies: 2837 2875 character-entities "^2.0.0" 2838 2876 2839 - decompress-response@^3.3.0: 2840 - version "3.3.0" 2841 - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 2842 - integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== 2877 + decompress-response@^6.0.0: 2878 + version "6.0.0" 2879 + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" 2880 + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== 2843 2881 dependencies: 2844 - mimic-response "^1.0.0" 2882 + mimic-response "^3.1.0" 2845 2883 2846 2884 dedent@^0.7.0: 2847 2885 version "0.7.0" ··· 2858 2896 resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 2859 2897 integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 2860 2898 2861 - defer-to-connect@^1.0.1: 2862 - version "1.1.3" 2863 - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 2864 - integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 2899 + defer-to-connect@^2.0.0: 2900 + version "2.0.1" 2901 + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" 2902 + integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== 2865 2903 2866 2904 define-properties@^1.1.3, define-properties@^1.1.4: 2867 2905 version "1.1.4" ··· 3072 3110 resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.2.tgz#dacc20160935a37dea6364aa1bef819fb9b6ab05" 3073 3111 integrity sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg== 3074 3112 3075 - duplexer3@^0.1.4: 3076 - version "0.1.5" 3077 - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" 3078 - integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== 3079 - 3080 3113 duplexify@^3.6.0: 3081 3114 version "3.7.1" 3082 3115 resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" ··· 3094 3127 dependencies: 3095 3128 jake "^10.8.5" 3096 3129 3097 - electron-builder@^23.1.0: 3130 + electron-builder@^23.6.0: 3098 3131 version "23.6.0" 3099 3132 resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz#c79050cbdce90ed96c5feb67c34e9e0a21b5331b" 3100 3133 integrity sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw== ··· 3175 3208 semver "^7.3.5" 3176 3209 typed-emitter "^2.1.0" 3177 3210 3178 - electron@^21.2.1: 3179 - version "21.2.1" 3180 - resolved "https://registry.yarnpkg.com/electron/-/electron-21.2.1.tgz#a6bbf4fee7ed985c739cc0d87fbef0ea4559da57" 3181 - integrity sha512-RLuFstGpHk1wtCRm9Kd+mhLjHZ5+m83+GQ/CsVl06OT7ikCT68yXMEgPmSkgmN5WjzlorsK6H5hIk9Sf6P/7Lg== 3211 + electron@^22.2.0: 3212 + version "22.2.0" 3213 + resolved "https://registry.yarnpkg.com/electron/-/electron-22.2.0.tgz#1aa321415d8b8021a4b0807641f0ad56028feaf5" 3214 + integrity sha512-puRZSF2vWJ4pz3oetL5Td8LcuivTWz3MoAk/gjImHSN1B/2VJNEQlw1jGdkte+ppid2craOswE2lmCOZ7SwF1g== 3182 3215 dependencies: 3183 - "@electron/get" "^1.14.1" 3216 + "@electron/get" "^2.0.0" 3184 3217 "@types/node" "^16.11.26" 3185 3218 extract-zip "^2.0.1" 3186 3219 ··· 3193 3226 version "8.0.0" 3194 3227 resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 3195 3228 integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 3196 - 3197 - encodeurl@^1.0.2: 3198 - version "1.0.2" 3199 - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 3200 - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== 3201 3229 3202 3230 end-of-stream@^1.0.0, end-of-stream@^1.1.0: 3203 3231 version "1.4.4" ··· 3714 3742 resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.1.0.tgz#17d1a3646880b9891dfa0c54e69c5fef33cad779" 3715 3743 integrity sha512-Kl29QoNbNvn4nhDsLYjyIAaIqaJB6rBx5p3sL9VjaefJ+eMFBWVZiaoguaoZfzEKr5RhAti0UgM8703akGPJ6g== 3716 3744 3717 - fast-glob@^3.2.9: 3745 + fast-glob@^3.2.7, fast-glob@^3.2.9: 3718 3746 version "3.2.12" 3719 3747 resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 3720 3748 integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== ··· 3979 4007 resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 3980 4008 integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 3981 4009 3982 - get-stream@^4.1.0: 3983 - version "4.1.0" 3984 - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 3985 - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 3986 - dependencies: 3987 - pump "^3.0.0" 3988 - 3989 4010 get-stream@^5.0.0, get-stream@^5.1.0: 3990 4011 version "5.2.0" 3991 4012 resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" ··· 4068 4089 semver "^7.3.2" 4069 4090 serialize-error "^7.0.1" 4070 4091 4071 - global-tunnel-ng@^2.7.1: 4072 - version "2.7.1" 4073 - resolved "https://registry.yarnpkg.com/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz#d03b5102dfde3a69914f5ee7d86761ca35d57d8f" 4074 - integrity sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg== 4075 - dependencies: 4076 - encodeurl "^1.0.2" 4077 - lodash "^4.17.10" 4078 - npm-conf "^1.1.3" 4079 - tunnel "^0.0.6" 4080 - 4081 4092 globals@^11.1.0: 4082 4093 version "11.12.0" 4083 4094 resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" ··· 4109 4120 merge2 "^1.4.1" 4110 4121 slash "^3.0.0" 4111 4122 4112 - got@^9.6.0: 4113 - version "9.6.0" 4114 - resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 4115 - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 4123 + got@^11.8.5: 4124 + version "11.8.6" 4125 + resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" 4126 + integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== 4116 4127 dependencies: 4117 - "@sindresorhus/is" "^0.14.0" 4118 - "@szmarczak/http-timer" "^1.1.2" 4119 - cacheable-request "^6.0.0" 4120 - decompress-response "^3.3.0" 4121 - duplexer3 "^0.1.4" 4122 - get-stream "^4.1.0" 4123 - lowercase-keys "^1.0.1" 4124 - mimic-response "^1.0.1" 4125 - p-cancelable "^1.0.0" 4126 - to-readable-stream "^1.0.0" 4127 - url-parse-lax "^3.0.0" 4128 + "@sindresorhus/is" "^4.0.0" 4129 + "@szmarczak/http-timer" "^4.0.5" 4130 + "@types/cacheable-request" "^6.0.1" 4131 + "@types/responselike" "^1.0.0" 4132 + cacheable-lookup "^5.0.3" 4133 + cacheable-request "^7.0.2" 4134 + decompress-response "^6.0.0" 4135 + http2-wrapper "^1.0.0-beta.5.2" 4136 + lowercase-keys "^2.0.0" 4137 + p-cancelable "^2.0.0" 4138 + responselike "^2.0.0" 4128 4139 4129 - graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.8, graceful-fs@^4.2.9: 4140 + graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.9: 4130 4141 version "4.2.10" 4131 4142 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 4132 4143 integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== ··· 4214 4225 dependencies: 4215 4226 rsvp "~3.2.1" 4216 4227 4217 - heroic-wine-downloader@^1.2.3: 4218 - version "1.2.3" 4219 - resolved "https://registry.yarnpkg.com/heroic-wine-downloader/-/heroic-wine-downloader-1.2.3.tgz#e415709b0d6e1e6feb109261cded50c04073439c" 4220 - integrity sha512-njiJ+/hg1PhwGVwTtlm++6qQHVI6rWQtGSi/BA4gLkctt/rb7uYHnX8tkTq6EisXaWVeF5rXNInojH9047PPxw== 4221 - dependencies: 4222 - "@types/graceful-fs" "^4.1.5" 4223 - axios "^0.24.0" 4224 - graceful-fs "^4.2.8" 4225 - 4226 4228 hoist-non-react-statics@^3.3.1: 4227 4229 version "3.3.2" 4228 4230 resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" ··· 4282 4284 "@tootallnate/once" "2" 4283 4285 agent-base "6" 4284 4286 debug "4" 4287 + 4288 + http2-wrapper@^1.0.0-beta.5.2: 4289 + version "1.0.3" 4290 + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" 4291 + integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== 4292 + dependencies: 4293 + quick-lru "^5.1.1" 4294 + resolve-alpn "^1.0.0" 4285 4295 4286 4296 https-proxy-agent@^5.0.0: 4287 4297 version "5.0.1" ··· 4422 4432 version "2.0.4" 4423 4433 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 4424 4434 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 4425 - 4426 - ini@^1.3.4: 4427 - version "1.3.8" 4428 - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 4429 - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 4430 4435 4431 4436 ini@^3.0.0: 4432 4437 version "3.0.1" ··· 5193 5198 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 5194 5199 integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 5195 5200 5196 - json-buffer@3.0.0: 5197 - version "3.0.0" 5198 - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 5199 - integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== 5201 + json-buffer@3.0.1: 5202 + version "3.0.1" 5203 + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 5204 + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 5200 5205 5201 5206 json-parse-even-better-errors@^2.3.0: 5202 5207 version "2.3.1" ··· 5229 5234 integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== 5230 5235 5231 5236 json5@^1.0.1: 5232 - version "1.0.1" 5233 - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 5234 - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 5237 + version "1.0.2" 5238 + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 5239 + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 5235 5240 dependencies: 5236 5241 minimist "^1.2.0" 5242 + 5243 + json5@^2.1.3: 5244 + version "2.2.2" 5245 + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab" 5246 + integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ== 5237 5247 5238 5248 json5@^2.2.0, json5@^2.2.1: 5239 5249 version "2.2.1" ··· 5274 5284 readable-stream "~2.3.6" 5275 5285 setimmediate "^1.0.5" 5276 5286 5277 - keyv@^3.0.0: 5278 - version "3.1.0" 5279 - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 5280 - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 5287 + keyv@^4.0.0: 5288 + version "4.5.2" 5289 + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" 5290 + integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== 5281 5291 dependencies: 5282 - json-buffer "3.0.0" 5292 + json-buffer "3.0.1" 5283 5293 5284 5294 kleur@^3.0.3: 5285 5295 version "3.0.3" ··· 5382 5392 resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 5383 5393 integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 5384 5394 5385 - lodash@^4.17.10, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21: 5395 + lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21: 5386 5396 version "4.17.21" 5387 5397 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 5388 5398 integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== ··· 5393 5403 integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 5394 5404 dependencies: 5395 5405 js-tokens "^3.0.0 || ^4.0.0" 5396 - 5397 - lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 5398 - version "1.0.1" 5399 - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 5400 - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 5401 5406 5402 5407 lowercase-keys@^2.0.0: 5403 5408 version "2.0.0" ··· 5744 5749 resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" 5745 5750 integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== 5746 5751 5747 - mimic-response@^1.0.0, mimic-response@^1.0.1: 5752 + mimic-response@^1.0.0: 5748 5753 version "1.0.1" 5749 5754 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 5750 5755 integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 5756 + 5757 + mimic-response@^3.1.0: 5758 + version "3.1.0" 5759 + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 5760 + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 5751 5761 5752 5762 min-indent@^1.0.0: 5753 5763 version "1.0.1" ··· 5802 5812 dependencies: 5803 5813 minimist "^1.2.6" 5804 5814 5805 - mkdirp@^1.0.3: 5815 + mkdirp@^1.0.3, mkdirp@^1.0.4: 5806 5816 version "1.0.4" 5807 5817 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 5808 5818 integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== ··· 5887 5897 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 5888 5898 integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 5889 5899 5890 - normalize-url@^4.1.0: 5891 - version "4.5.1" 5892 - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 5893 - integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 5900 + normalize-url@^6.0.1: 5901 + version "6.1.0" 5902 + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" 5903 + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== 5894 5904 5895 5905 now-and-later@^2.0.0: 5896 5906 version "2.0.1" ··· 5898 5908 integrity sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ== 5899 5909 dependencies: 5900 5910 once "^1.3.2" 5901 - 5902 - npm-conf@^1.1.3: 5903 - version "1.1.3" 5904 - resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 5905 - integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== 5906 - dependencies: 5907 - config-chain "^1.1.11" 5908 - pify "^3.0.0" 5909 5911 5910 5912 npm-run-path@^4.0.0, npm-run-path@^4.0.1: 5911 5913 version "4.0.1" ··· 6021 6023 dependencies: 6022 6024 readable-stream "^2.0.1" 6023 6025 6024 - p-cancelable@^1.0.0: 6025 - version "1.1.0" 6026 - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 6027 - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 6026 + p-cancelable@^2.0.0: 6027 + version "2.1.1" 6028 + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" 6029 + integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== 6028 6030 6029 6031 p-limit@^2.0.0, p-limit@^2.2.0: 6030 6032 version "2.3.0" ··· 6103 6105 dependencies: 6104 6106 entities "^4.4.0" 6105 6107 6108 + path-browserify@^1.0.1: 6109 + version "1.0.1" 6110 + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" 6111 + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== 6112 + 6106 6113 path-dirname@^1.0.0: 6107 6114 version "1.0.2" 6108 6115 resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" ··· 6157 6164 version "2.3.1" 6158 6165 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 6159 6166 integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 6160 - 6161 - pify@^3.0.0: 6162 - version "3.0.0" 6163 - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 6164 - integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== 6165 6167 6166 6168 pirates@^4.0.4: 6167 6169 version "4.0.5" ··· 6209 6211 resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 6210 6212 integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 6211 6213 6212 - prepend-http@^2.0.0: 6213 - version "2.0.0" 6214 - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 6215 - integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== 6216 - 6217 6214 prettier@^2.6.2: 6218 6215 version "2.7.1" 6219 6216 resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" ··· 6306 6303 resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d" 6307 6304 integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg== 6308 6305 6309 - proto-list@~1.2.1: 6310 - version "1.2.4" 6311 - resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 6312 - integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== 6313 - 6314 6306 pump@^2.0.0: 6315 6307 version "2.0.1" 6316 6308 resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" ··· 6350 6342 version "1.0.1" 6351 6343 resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" 6352 6344 integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== 6345 + 6346 + quick-lru@^5.1.1: 6347 + version "5.1.1" 6348 + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 6349 + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 6353 6350 6354 6351 quick-temp@^0.1.8: 6355 6352 version "0.1.8" ··· 6649 6646 resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 6650 6647 integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 6651 6648 6649 + resolve-alpn@^1.0.0: 6650 + version "1.2.1" 6651 + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" 6652 + integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== 6653 + 6652 6654 resolve-cwd@^3.0.0: 6653 6655 version "3.0.0" 6654 6656 resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" ··· 6696 6698 path-parse "^1.0.7" 6697 6699 supports-preserve-symlinks-flag "^1.0.0" 6698 6700 6699 - responselike@^1.0.2: 6700 - version "1.0.2" 6701 - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 6702 - integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== 6701 + responselike@^2.0.0: 6702 + version "2.0.1" 6703 + resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" 6704 + integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== 6703 6705 dependencies: 6704 - lowercase-keys "^1.0.0" 6706 + lowercase-keys "^2.0.0" 6705 6707 6706 6708 reusify@^1.0.4: 6707 6709 version "1.0.4" ··· 7293 7295 resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 7294 7296 integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 7295 7297 7296 - to-readable-stream@^1.0.0: 7297 - version "1.0.0" 7298 - resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 7299 - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 7300 - 7301 7298 to-regex-range@^5.0.1: 7302 7299 version "5.0.1" 7303 7300 resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" ··· 7326 7323 version "2.1.0" 7327 7324 resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" 7328 7325 integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== 7326 + 7327 + "true-myth@^4.1.0": 7328 + version "4.1.1" 7329 + resolved "https://registry.yarnpkg.com/true-myth/-/true-myth-4.1.1.tgz#ff4ac9d5130276e34aa338757e2416ec19248ba2" 7330 + integrity sha512-rqy30BSpxPznbbTcAcci90oZ1YR4DqvKcNXNerG5gQBU2v4jk0cygheiul5J6ExIMrgDVuanv/MkGfqZbKrNNg== 7329 7331 7330 7332 truncate-utf8-bytes@^1.0.0: 7331 7333 version "1.0.2" ··· 7348 7350 semver "7.x" 7349 7351 yargs-parser "^21.0.1" 7350 7352 7353 + ts-morph@^13.0.1: 7354 + version "13.0.3" 7355 + resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-13.0.3.tgz#c0c51d1273ae2edb46d76f65161eb9d763444c1d" 7356 + integrity sha512-pSOfUMx8Ld/WUreoSzvMFQG5i9uEiWIsBYjpU9+TTASOeUa89j5HykomeqVULm1oqWtBdleI3KEFRLrlA3zGIw== 7357 + dependencies: 7358 + "@ts-morph/common" "~0.12.3" 7359 + code-block-writer "^11.0.0" 7360 + 7361 + ts-prune@^0.10.3: 7362 + version "0.10.3" 7363 + resolved "https://registry.yarnpkg.com/ts-prune/-/ts-prune-0.10.3.tgz#b6c71a525543b38dcf947a7d3adfb7f9e8b91f38" 7364 + integrity sha512-iS47YTbdIcvN8Nh/1BFyziyUqmjXz7GVzWu02RaZXqb+e/3Qe1B7IQ4860krOeCGUeJmterAlaM2FRH0Ue0hjw== 7365 + dependencies: 7366 + commander "^6.2.1" 7367 + cosmiconfig "^7.0.1" 7368 + json5 "^2.1.3" 7369 + lodash "^4.17.21" 7370 + "true-myth" "^4.1.0" 7371 + ts-morph "^13.0.1" 7372 + 7351 7373 tsconfig-paths@^3.14.1: 7352 7374 version "3.14.1" 7353 7375 resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" ··· 7375 7397 dependencies: 7376 7398 tslib "^1.8.1" 7377 7399 7378 - tunnel@^0.0.6: 7379 - version "0.0.6" 7380 - resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 7381 - integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 7382 - 7383 7400 type-check@^0.4.0, type-check@~0.4.0: 7384 7401 version "0.4.0" 7385 7402 resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" ··· 7411 7428 version "2.19.0" 7412 7429 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" 7413 7430 integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== 7431 + 7432 + type-fest@^3.2.0: 7433 + version "3.2.0" 7434 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.2.0.tgz#2c8b49e775d9e314a73ea6fcee0b2e8549d5f886" 7435 + integrity sha512-Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og== 7414 7436 7415 7437 typed-emitter@^2.1.0: 7416 7438 version "2.1.0" ··· 7573 7595 integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 7574 7596 dependencies: 7575 7597 punycode "^2.1.0" 7576 - 7577 - url-parse-lax@^3.0.0: 7578 - version "3.0.0" 7579 - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 7580 - integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== 7581 - dependencies: 7582 - prepend-http "^2.0.0" 7583 7598 7584 7599 user-agents@^1.0.580: 7585 7600 version "1.0.1204"
+220 -208
pkgs/games/heroic/yarn.nix
··· 442 442 }; 443 443 } 444 444 { 445 - name = "_electron_get___get_1.14.1.tgz"; 445 + name = "_electron_get___get_2.0.2.tgz"; 446 446 path = fetchurl { 447 - name = "_electron_get___get_1.14.1.tgz"; 448 - url = "https://registry.yarnpkg.com/@electron/get/-/get-1.14.1.tgz"; 449 - sha512 = "BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw=="; 447 + name = "_electron_get___get_2.0.2.tgz"; 448 + url = "https://registry.yarnpkg.com/@electron/get/-/get-2.0.2.tgz"; 449 + sha512 = "eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g=="; 450 450 }; 451 451 } 452 452 { ··· 1050 1050 }; 1051 1051 } 1052 1052 { 1053 - name = "_sindresorhus_is___is_0.14.0.tgz"; 1053 + name = "_sindresorhus_is___is_4.6.0.tgz"; 1054 1054 path = fetchurl { 1055 - name = "_sindresorhus_is___is_0.14.0.tgz"; 1056 - url = "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz"; 1057 - sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="; 1055 + name = "_sindresorhus_is___is_4.6.0.tgz"; 1056 + url = "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz"; 1057 + sha512 = "t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="; 1058 1058 }; 1059 1059 } 1060 1060 { ··· 1170 1170 }; 1171 1171 } 1172 1172 { 1173 - name = "_szmarczak_http_timer___http_timer_1.1.2.tgz"; 1173 + name = "_szmarczak_http_timer___http_timer_4.0.6.tgz"; 1174 1174 path = fetchurl { 1175 - name = "_szmarczak_http_timer___http_timer_1.1.2.tgz"; 1176 - url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"; 1177 - sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="; 1175 + name = "_szmarczak_http_timer___http_timer_4.0.6.tgz"; 1176 + url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"; 1177 + sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="; 1178 1178 }; 1179 1179 } 1180 1180 { ··· 1226 1226 }; 1227 1227 } 1228 1228 { 1229 + name = "_ts_morph_common___common_0.12.3.tgz"; 1230 + path = fetchurl { 1231 + name = "_ts_morph_common___common_0.12.3.tgz"; 1232 + url = "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.12.3.tgz"; 1233 + sha512 = "4tUmeLyXJnJWvTFOKtcNJ1yh0a3SsTLi2MUoyj8iUNznFRN1ZquaNe7Oukqrnki2FzZkm0J9adCNLDZxUzvj+w=="; 1234 + }; 1235 + } 1236 + { 1229 1237 name = "_types_aria_query___aria_query_4.2.2.tgz"; 1230 1238 path = fetchurl { 1231 1239 name = "_types_aria_query___aria_query_4.2.2.tgz"; ··· 1263 1271 name = "_types_babel__traverse___babel__traverse_7.18.2.tgz"; 1264 1272 url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz"; 1265 1273 sha512 = "FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg=="; 1274 + }; 1275 + } 1276 + { 1277 + name = "_types_cacheable_request___cacheable_request_6.0.3.tgz"; 1278 + path = fetchurl { 1279 + name = "_types_cacheable_request___cacheable_request_6.0.3.tgz"; 1280 + url = "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz"; 1281 + sha512 = "IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw=="; 1266 1282 }; 1267 1283 } 1268 1284 { ··· 1370 1386 }; 1371 1387 } 1372 1388 { 1389 + name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; 1390 + path = fetchurl { 1391 + name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; 1392 + url = "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; 1393 + sha512 = "SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="; 1394 + }; 1395 + } 1396 + { 1373 1397 name = "_types_i18next_fs_backend___i18next_fs_backend_1.1.2.tgz"; 1374 1398 path = fetchurl { 1375 1399 name = "_types_i18next_fs_backend___i18next_fs_backend_1.1.2.tgz"; ··· 1442 1466 }; 1443 1467 } 1444 1468 { 1469 + name = "_types_keyv___keyv_3.1.4.tgz"; 1470 + path = fetchurl { 1471 + name = "_types_keyv___keyv_3.1.4.tgz"; 1472 + url = "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz"; 1473 + sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1474 + }; 1475 + } 1476 + { 1445 1477 name = "_types_mdast___mdast_3.0.10.tgz"; 1446 1478 path = fetchurl { 1447 1479 name = "_types_mdast___mdast_3.0.10.tgz"; ··· 1591 1623 name = "_types_react___react_18.0.24.tgz"; 1592 1624 url = "https://registry.yarnpkg.com/@types/react/-/react-18.0.24.tgz"; 1593 1625 sha512 = "wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q=="; 1626 + }; 1627 + } 1628 + { 1629 + name = "_types_responselike___responselike_1.0.0.tgz"; 1630 + path = fetchurl { 1631 + name = "_types_responselike___responselike_1.0.0.tgz"; 1632 + url = "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz"; 1633 + sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; 1594 1634 }; 1595 1635 } 1596 1636 { ··· 2050 2090 }; 2051 2091 } 2052 2092 { 2053 - name = "axios___axios_0.24.0.tgz"; 2054 - path = fetchurl { 2055 - name = "axios___axios_0.24.0.tgz"; 2056 - url = "https://registry.yarnpkg.com/axios/-/axios-0.24.0.tgz"; 2057 - sha512 = "Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA=="; 2058 - }; 2059 - } 2060 - { 2061 2093 name = "axios___axios_0.26.1.tgz"; 2062 2094 path = fetchurl { 2063 2095 name = "axios___axios_0.26.1.tgz"; ··· 2346 2378 }; 2347 2379 } 2348 2380 { 2349 - name = "cacheable_request___cacheable_request_6.1.0.tgz"; 2381 + name = "cacheable_lookup___cacheable_lookup_5.0.4.tgz"; 2382 + path = fetchurl { 2383 + name = "cacheable_lookup___cacheable_lookup_5.0.4.tgz"; 2384 + url = "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz"; 2385 + sha512 = "2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA=="; 2386 + }; 2387 + } 2388 + { 2389 + name = "cacheable_request___cacheable_request_7.0.2.tgz"; 2350 2390 path = fetchurl { 2351 - name = "cacheable_request___cacheable_request_6.1.0.tgz"; 2352 - url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz"; 2353 - sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 2391 + name = "cacheable_request___cacheable_request_7.0.2.tgz"; 2392 + url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz"; 2393 + sha512 = "pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew=="; 2354 2394 }; 2355 2395 } 2356 2396 { ··· 2578 2618 }; 2579 2619 } 2580 2620 { 2621 + name = "code_block_writer___code_block_writer_11.0.3.tgz"; 2622 + path = fetchurl { 2623 + name = "code_block_writer___code_block_writer_11.0.3.tgz"; 2624 + url = "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-11.0.3.tgz"; 2625 + sha512 = "NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw=="; 2626 + }; 2627 + } 2628 + { 2581 2629 name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz"; 2582 2630 path = fetchurl { 2583 2631 name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz"; ··· 2666 2714 }; 2667 2715 } 2668 2716 { 2717 + name = "commander___commander_6.2.1.tgz"; 2718 + path = fetchurl { 2719 + name = "commander___commander_6.2.1.tgz"; 2720 + url = "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz"; 2721 + sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; 2722 + }; 2723 + } 2724 + { 2669 2725 name = "commander___commander_9.4.1.tgz"; 2670 2726 path = fetchurl { 2671 2727 name = "commander___commander_9.4.1.tgz"; ··· 2706 2762 }; 2707 2763 } 2708 2764 { 2709 - name = "config_chain___config_chain_1.1.13.tgz"; 2710 - path = fetchurl { 2711 - name = "config_chain___config_chain_1.1.13.tgz"; 2712 - url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz"; 2713 - sha512 = "qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ=="; 2714 - }; 2715 - } 2716 - { 2717 2765 name = "convert_source_map___convert_source_map_1.9.0.tgz"; 2718 2766 path = fetchurl { 2719 2767 name = "convert_source_map___convert_source_map_1.9.0.tgz"; ··· 2954 3002 }; 2955 3003 } 2956 3004 { 2957 - name = "decompress_response___decompress_response_3.3.0.tgz"; 3005 + name = "decompress_response___decompress_response_6.0.0.tgz"; 2958 3006 path = fetchurl { 2959 - name = "decompress_response___decompress_response_3.3.0.tgz"; 2960 - url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz"; 2961 - sha512 = "BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA=="; 3007 + name = "decompress_response___decompress_response_6.0.0.tgz"; 3008 + url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz"; 3009 + sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; 2962 3010 }; 2963 3011 } 2964 3012 { ··· 2986 3034 }; 2987 3035 } 2988 3036 { 2989 - name = "defer_to_connect___defer_to_connect_1.1.3.tgz"; 3037 + name = "defer_to_connect___defer_to_connect_2.0.1.tgz"; 2990 3038 path = fetchurl { 2991 - name = "defer_to_connect___defer_to_connect_1.1.3.tgz"; 2992 - url = "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz"; 2993 - sha512 = "0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="; 3039 + name = "defer_to_connect___defer_to_connect_2.0.1.tgz"; 3040 + url = "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz"; 3041 + sha512 = "4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="; 2994 3042 }; 2995 3043 } 2996 3044 { ··· 3100 3148 { 3101 3149 name = "9e7de2a6d917591f10a66389e62e1dc053c04fec"; 3102 3150 path = 3103 - let 3104 - repo = fetchgit { 3105 - url = "https://github.com/discordjs/rpc.git"; 3106 - rev = "9e7de2a6d917591f10a66389e62e1dc053c04fec"; 3107 - sha256 = "1idb6k8h15a2pmbgs5xw5c2d763kgxg2ykx60vq0gdbhq73wz32j"; 3108 - }; 3109 - in 3110 - runCommand "9e7de2a6d917591f10a66389e62e1dc053c04fec" { buildInputs = [gnutar]; } '' 3111 - # Set u+w because tar-fs can't unpack archives with read-only dirs 3112 - # https://github.com/mafintosh/tar-fs/issues/79 3113 - tar cf $out --mode u+w -C ${repo} . 3114 - ''; 3151 + let repo = fetchgit { 3152 + url = "https://github.com/discordjs/rpc.git"; 3153 + rev = "9e7de2a6d917591f10a66389e62e1dc053c04fec"; 3154 + sha256 = "1idb6k8h15a2pmbgs5xw5c2d763kgxg2ykx60vq0gdbhq73wz32j"; 3155 + }; 3156 + in runCommand "9e7de2a6d917591f10a66389e62e1dc053c04fec" { buildInputs = [gnutar]; } '' 3157 + # Set u+w because tar-fs can't unpack archives with read-only dirs 3158 + # https://github.com/mafintosh/tar-fs/issues/79 3159 + tar cf $out --mode u+w -C ${repo} . 3160 + ''; 3115 3161 } 3116 3162 { 3117 3163 name = "dmg_builder___dmg_builder_23.6.0.tgz"; ··· 3242 3288 }; 3243 3289 } 3244 3290 { 3245 - name = "duplexer3___duplexer3_0.1.5.tgz"; 3246 - path = fetchurl { 3247 - name = "duplexer3___duplexer3_0.1.5.tgz"; 3248 - url = "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz"; 3249 - sha512 = "1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA=="; 3250 - }; 3251 - } 3252 - { 3253 3291 name = "duplexify___duplexify_3.7.1.tgz"; 3254 3292 path = fetchurl { 3255 3293 name = "duplexify___duplexify_3.7.1.tgz"; ··· 3322 3360 }; 3323 3361 } 3324 3362 { 3325 - name = "electron___electron_21.2.1.tgz"; 3363 + name = "electron___electron_22.2.0.tgz"; 3326 3364 path = fetchurl { 3327 - name = "electron___electron_21.2.1.tgz"; 3328 - url = "https://registry.yarnpkg.com/electron/-/electron-21.2.1.tgz"; 3329 - sha512 = "RLuFstGpHk1wtCRm9Kd+mhLjHZ5+m83+GQ/CsVl06OT7ikCT68yXMEgPmSkgmN5WjzlorsK6H5hIk9Sf6P/7Lg=="; 3365 + name = "electron___electron_22.2.0.tgz"; 3366 + url = "https://registry.yarnpkg.com/electron/-/electron-22.2.0.tgz"; 3367 + sha512 = "puRZSF2vWJ4pz3oetL5Td8LcuivTWz3MoAk/gjImHSN1B/2VJNEQlw1jGdkte+ppid2craOswE2lmCOZ7SwF1g=="; 3330 3368 }; 3331 3369 } 3332 3370 { ··· 3343 3381 name = "emoji_regex___emoji_regex_8.0.0.tgz"; 3344 3382 url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; 3345 3383 sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 3346 - }; 3347 - } 3348 - { 3349 - name = "encodeurl___encodeurl_1.0.2.tgz"; 3350 - path = fetchurl { 3351 - name = "encodeurl___encodeurl_1.0.2.tgz"; 3352 - url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; 3353 - sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; 3354 3384 }; 3355 3385 } 3356 3386 { ··· 4186 4216 }; 4187 4217 } 4188 4218 { 4189 - name = "get_stream___get_stream_4.1.0.tgz"; 4190 - path = fetchurl { 4191 - name = "get_stream___get_stream_4.1.0.tgz"; 4192 - url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; 4193 - sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 4194 - }; 4195 - } 4196 - { 4197 4219 name = "get_stream___get_stream_5.2.0.tgz"; 4198 4220 path = fetchurl { 4199 4221 name = "get_stream___get_stream_5.2.0.tgz"; ··· 4266 4288 }; 4267 4289 } 4268 4290 { 4269 - name = "global_tunnel_ng___global_tunnel_ng_2.7.1.tgz"; 4270 - path = fetchurl { 4271 - name = "global_tunnel_ng___global_tunnel_ng_2.7.1.tgz"; 4272 - url = "https://registry.yarnpkg.com/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz"; 4273 - sha512 = "4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg=="; 4274 - }; 4275 - } 4276 - { 4277 4291 name = "globals___globals_11.12.0.tgz"; 4278 4292 path = fetchurl { 4279 4293 name = "globals___globals_11.12.0.tgz"; ··· 4306 4320 }; 4307 4321 } 4308 4322 { 4309 - name = "got___got_9.6.0.tgz"; 4323 + name = "got___got_11.8.6.tgz"; 4310 4324 path = fetchurl { 4311 - name = "got___got_9.6.0.tgz"; 4312 - url = "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz"; 4313 - sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 4325 + name = "got___got_11.8.6.tgz"; 4326 + url = "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz"; 4327 + sha512 = "6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g=="; 4314 4328 }; 4315 4329 } 4316 4330 { ··· 4434 4448 }; 4435 4449 } 4436 4450 { 4437 - name = "heroic_wine_downloader___heroic_wine_downloader_1.2.3.tgz"; 4438 - path = fetchurl { 4439 - name = "heroic_wine_downloader___heroic_wine_downloader_1.2.3.tgz"; 4440 - url = "https://registry.yarnpkg.com/heroic-wine-downloader/-/heroic-wine-downloader-1.2.3.tgz"; 4441 - sha512 = "njiJ+/hg1PhwGVwTtlm++6qQHVI6rWQtGSi/BA4gLkctt/rb7uYHnX8tkTq6EisXaWVeF5rXNInojH9047PPxw=="; 4442 - }; 4443 - } 4444 - { 4445 4451 name = "hoist_non_react_statics___hoist_non_react_statics_3.3.2.tgz"; 4446 4452 path = fetchurl { 4447 4453 name = "hoist_non_react_statics___hoist_non_react_statics_3.3.2.tgz"; ··· 4503 4509 name = "http_proxy_agent___http_proxy_agent_5.0.0.tgz"; 4504 4510 url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz"; 4505 4511 sha512 = "n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="; 4512 + }; 4513 + } 4514 + { 4515 + name = "http2_wrapper___http2_wrapper_1.0.3.tgz"; 4516 + path = fetchurl { 4517 + name = "http2_wrapper___http2_wrapper_1.0.3.tgz"; 4518 + url = "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz"; 4519 + sha512 = "V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg=="; 4506 4520 }; 4507 4521 } 4508 4522 { ··· 4666 4680 }; 4667 4681 } 4668 4682 { 4669 - name = "ini___ini_1.3.8.tgz"; 4670 - path = fetchurl { 4671 - name = "ini___ini_1.3.8.tgz"; 4672 - url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; 4673 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 4674 - }; 4675 - } 4676 - { 4677 4683 name = "ini___ini_3.0.1.tgz"; 4678 4684 path = fetchurl { 4679 4685 name = "ini___ini_3.0.1.tgz"; ··· 5362 5368 }; 5363 5369 } 5364 5370 { 5365 - name = "json_buffer___json_buffer_3.0.0.tgz"; 5371 + name = "json_buffer___json_buffer_3.0.1.tgz"; 5366 5372 path = fetchurl { 5367 - name = "json_buffer___json_buffer_3.0.0.tgz"; 5368 - url = "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz"; 5369 - sha512 = "CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ=="; 5373 + name = "json_buffer___json_buffer_3.0.1.tgz"; 5374 + url = "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz"; 5375 + sha512 = "4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="; 5370 5376 }; 5371 5377 } 5372 5378 { ··· 5418 5424 }; 5419 5425 } 5420 5426 { 5421 - name = "json5___json5_1.0.1.tgz"; 5427 + name = "json5___json5_1.0.2.tgz"; 5422 5428 path = fetchurl { 5423 - name = "json5___json5_1.0.1.tgz"; 5424 - url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz"; 5425 - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 5429 + name = "json5___json5_1.0.2.tgz"; 5430 + url = "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz"; 5431 + sha512 = "g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="; 5432 + }; 5433 + } 5434 + { 5435 + name = "json5___json5_2.2.2.tgz"; 5436 + path = fetchurl { 5437 + name = "json5___json5_2.2.2.tgz"; 5438 + url = "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz"; 5439 + sha512 = "46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ=="; 5426 5440 }; 5427 5441 } 5428 5442 { ··· 5466 5480 }; 5467 5481 } 5468 5482 { 5469 - name = "keyv___keyv_3.1.0.tgz"; 5483 + name = "keyv___keyv_4.5.2.tgz"; 5470 5484 path = fetchurl { 5471 - name = "keyv___keyv_3.1.0.tgz"; 5472 - url = "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz"; 5473 - sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 5485 + name = "keyv___keyv_4.5.2.tgz"; 5486 + url = "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz"; 5487 + sha512 = "5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g=="; 5474 5488 }; 5475 5489 } 5476 5490 { ··· 5623 5637 name = "loose_envify___loose_envify_1.4.0.tgz"; 5624 5638 url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 5625 5639 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 5626 - }; 5627 - } 5628 - { 5629 - name = "lowercase_keys___lowercase_keys_1.0.1.tgz"; 5630 - path = fetchurl { 5631 - name = "lowercase_keys___lowercase_keys_1.0.1.tgz"; 5632 - url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz"; 5633 - sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 5634 5640 }; 5635 5641 } 5636 5642 { ··· 5978 5984 }; 5979 5985 } 5980 5986 { 5987 + name = "mimic_response___mimic_response_3.1.0.tgz"; 5988 + path = fetchurl { 5989 + name = "mimic_response___mimic_response_3.1.0.tgz"; 5990 + url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz"; 5991 + sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 5992 + }; 5993 + } 5994 + { 5981 5995 name = "min_indent___min_indent_1.0.1.tgz"; 5982 5996 path = fetchurl { 5983 5997 name = "min_indent___min_indent_1.0.1.tgz"; ··· 6162 6176 }; 6163 6177 } 6164 6178 { 6165 - name = "normalize_url___normalize_url_4.5.1.tgz"; 6179 + name = "normalize_url___normalize_url_6.1.0.tgz"; 6166 6180 path = fetchurl { 6167 - name = "normalize_url___normalize_url_4.5.1.tgz"; 6168 - url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz"; 6169 - sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="; 6181 + name = "normalize_url___normalize_url_6.1.0.tgz"; 6182 + url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz"; 6183 + sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; 6170 6184 }; 6171 6185 } 6172 6186 { ··· 6178 6192 }; 6179 6193 } 6180 6194 { 6181 - name = "npm_conf___npm_conf_1.1.3.tgz"; 6182 - path = fetchurl { 6183 - name = "npm_conf___npm_conf_1.1.3.tgz"; 6184 - url = "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz"; 6185 - sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw=="; 6186 - }; 6187 - } 6188 - { 6189 6195 name = "npm_run_path___npm_run_path_4.0.1.tgz"; 6190 6196 path = fetchurl { 6191 6197 name = "npm_run_path___npm_run_path_4.0.1.tgz"; ··· 6306 6312 }; 6307 6313 } 6308 6314 { 6309 - name = "p_cancelable___p_cancelable_1.1.0.tgz"; 6315 + name = "p_cancelable___p_cancelable_2.1.1.tgz"; 6310 6316 path = fetchurl { 6311 - name = "p_cancelable___p_cancelable_1.1.0.tgz"; 6312 - url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz"; 6313 - sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="; 6317 + name = "p_cancelable___p_cancelable_2.1.1.tgz"; 6318 + url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz"; 6319 + sha512 = "BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg=="; 6314 6320 }; 6315 6321 } 6316 6322 { ··· 6402 6408 }; 6403 6409 } 6404 6410 { 6411 + name = "path_browserify___path_browserify_1.0.1.tgz"; 6412 + path = fetchurl { 6413 + name = "path_browserify___path_browserify_1.0.1.tgz"; 6414 + url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz"; 6415 + sha512 = "b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="; 6416 + }; 6417 + } 6418 + { 6405 6419 name = "path_dirname___path_dirname_1.0.2.tgz"; 6406 6420 path = fetchurl { 6407 6421 name = "path_dirname___path_dirname_1.0.2.tgz"; ··· 6490 6504 }; 6491 6505 } 6492 6506 { 6493 - name = "pify___pify_3.0.0.tgz"; 6494 - path = fetchurl { 6495 - name = "pify___pify_3.0.0.tgz"; 6496 - url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; 6497 - sha512 = "C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="; 6498 - }; 6499 - } 6500 - { 6501 6507 name = "pirates___pirates_4.0.5.tgz"; 6502 6508 path = fetchurl { 6503 6509 name = "pirates___pirates_4.0.5.tgz"; ··· 6551 6557 name = "prelude_ls___prelude_ls_1.2.1.tgz"; 6552 6558 url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; 6553 6559 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 6554 - }; 6555 - } 6556 - { 6557 - name = "prepend_http___prepend_http_2.0.0.tgz"; 6558 - path = fetchurl { 6559 - name = "prepend_http___prepend_http_2.0.0.tgz"; 6560 - url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz"; 6561 - sha512 = "ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA=="; 6562 6560 }; 6563 6561 } 6564 6562 { ··· 6658 6656 }; 6659 6657 } 6660 6658 { 6661 - name = "proto_list___proto_list_1.2.4.tgz"; 6662 - path = fetchurl { 6663 - name = "proto_list___proto_list_1.2.4.tgz"; 6664 - url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz"; 6665 - sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="; 6666 - }; 6667 - } 6668 - { 6669 6659 name = "pump___pump_2.0.1.tgz"; 6670 6660 path = fetchurl { 6671 6661 name = "pump___pump_2.0.1.tgz"; ··· 6711 6701 name = "queue_tick___queue_tick_1.0.1.tgz"; 6712 6702 url = "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz"; 6713 6703 sha512 = "kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag=="; 6704 + }; 6705 + } 6706 + { 6707 + name = "quick_lru___quick_lru_5.1.1.tgz"; 6708 + path = fetchurl { 6709 + name = "quick_lru___quick_lru_5.1.1.tgz"; 6710 + url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz"; 6711 + sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 6714 6712 }; 6715 6713 } 6716 6714 { ··· 6932 6930 { 6933 6931 name = "e7cc9a63a1f512565da44cb57316d9fb10750e17"; 6934 6932 path = 6935 - let 6936 - repo = fetchgit { 6937 - url = "https://github.com/devsnek/node-register-scheme.git"; 6938 - rev = "e7cc9a63a1f512565da44cb57316d9fb10750e17"; 6939 - sha256 = "0j4ycczsjpmha35arvijrxrsx8f110az9qhdw20plyh23fd4kvy6"; 6940 - }; 6941 - in 6942 - runCommand "e7cc9a63a1f512565da44cb57316d9fb10750e17" { buildInputs = [gnutar]; } '' 6943 - # Set u+w because tar-fs can't unpack archives with read-only dirs 6944 - # https://github.com/mafintosh/tar-fs/issues/79 6945 - tar cf $out --mode u+w -C ${repo} . 6946 - ''; 6933 + let repo = fetchgit { 6934 + url = "https://github.com/devsnek/node-register-scheme.git"; 6935 + rev = "e7cc9a63a1f512565da44cb57316d9fb10750e17"; 6936 + sha256 = "0j4ycczsjpmha35arvijrxrsx8f110az9qhdw20plyh23fd4kvy6"; 6937 + }; 6938 + in runCommand "e7cc9a63a1f512565da44cb57316d9fb10750e17" { buildInputs = [gnutar]; } '' 6939 + # Set u+w because tar-fs can't unpack archives with read-only dirs 6940 + # https://github.com/mafintosh/tar-fs/issues/79 6941 + tar cf $out --mode u+w -C ${repo} . 6942 + ''; 6947 6943 } 6948 6944 { 6949 6945 name = "remark_parse___remark_parse_10.0.1.tgz"; ··· 7018 7014 }; 7019 7015 } 7020 7016 { 7017 + name = "resolve_alpn___resolve_alpn_1.2.1.tgz"; 7018 + path = fetchurl { 7019 + name = "resolve_alpn___resolve_alpn_1.2.1.tgz"; 7020 + url = "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz"; 7021 + sha512 = "0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="; 7022 + }; 7023 + } 7024 + { 7021 7025 name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; 7022 7026 path = fetchurl { 7023 7027 name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; ··· 7074 7078 }; 7075 7079 } 7076 7080 { 7077 - name = "responselike___responselike_1.0.2.tgz"; 7081 + name = "responselike___responselike_2.0.1.tgz"; 7078 7082 path = fetchurl { 7079 - name = "responselike___responselike_1.0.2.tgz"; 7080 - url = "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz"; 7081 - sha512 = "/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="; 7083 + name = "responselike___responselike_2.0.1.tgz"; 7084 + url = "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz"; 7085 + sha512 = "4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw=="; 7082 7086 }; 7083 7087 } 7084 7088 { ··· 7794 7798 }; 7795 7799 } 7796 7800 { 7797 - name = "to_readable_stream___to_readable_stream_1.0.0.tgz"; 7798 - path = fetchurl { 7799 - name = "to_readable_stream___to_readable_stream_1.0.0.tgz"; 7800 - url = "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz"; 7801 - sha512 = "Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q=="; 7802 - }; 7803 - } 7804 - { 7805 7801 name = "to_regex_range___to_regex_range_5.0.1.tgz"; 7806 7802 path = fetchurl { 7807 7803 name = "to_regex_range___to_regex_range_5.0.1.tgz"; ··· 7842 7838 }; 7843 7839 } 7844 7840 { 7841 + name = "true_myth___true_myth_4.1.1.tgz"; 7842 + path = fetchurl { 7843 + name = "true_myth___true_myth_4.1.1.tgz"; 7844 + url = "https://registry.yarnpkg.com/true-myth/-/true-myth-4.1.1.tgz"; 7845 + sha512 = "rqy30BSpxPznbbTcAcci90oZ1YR4DqvKcNXNerG5gQBU2v4jk0cygheiul5J6ExIMrgDVuanv/MkGfqZbKrNNg=="; 7846 + }; 7847 + } 7848 + { 7845 7849 name = "truncate_utf8_bytes___truncate_utf8_bytes_1.0.2.tgz"; 7846 7850 path = fetchurl { 7847 7851 name = "truncate_utf8_bytes___truncate_utf8_bytes_1.0.2.tgz"; ··· 7858 7862 }; 7859 7863 } 7860 7864 { 7865 + name = "ts_morph___ts_morph_13.0.3.tgz"; 7866 + path = fetchurl { 7867 + name = "ts_morph___ts_morph_13.0.3.tgz"; 7868 + url = "https://registry.yarnpkg.com/ts-morph/-/ts-morph-13.0.3.tgz"; 7869 + sha512 = "pSOfUMx8Ld/WUreoSzvMFQG5i9uEiWIsBYjpU9+TTASOeUa89j5HykomeqVULm1oqWtBdleI3KEFRLrlA3zGIw=="; 7870 + }; 7871 + } 7872 + { 7873 + name = "ts_prune___ts_prune_0.10.3.tgz"; 7874 + path = fetchurl { 7875 + name = "ts_prune___ts_prune_0.10.3.tgz"; 7876 + url = "https://registry.yarnpkg.com/ts-prune/-/ts-prune-0.10.3.tgz"; 7877 + sha512 = "iS47YTbdIcvN8Nh/1BFyziyUqmjXz7GVzWu02RaZXqb+e/3Qe1B7IQ4860krOeCGUeJmterAlaM2FRH0Ue0hjw=="; 7878 + }; 7879 + } 7880 + { 7861 7881 name = "tsconfig_paths___tsconfig_paths_3.14.1.tgz"; 7862 7882 path = fetchurl { 7863 7883 name = "tsconfig_paths___tsconfig_paths_3.14.1.tgz"; ··· 7887 7907 name = "tsutils___tsutils_3.21.0.tgz"; 7888 7908 url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz"; 7889 7909 sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 7890 - }; 7891 - } 7892 - { 7893 - name = "tunnel___tunnel_0.0.6.tgz"; 7894 - path = fetchurl { 7895 - name = "tunnel___tunnel_0.0.6.tgz"; 7896 - url = "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz"; 7897 - sha512 = "1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg=="; 7898 7910 }; 7899 7911 } 7900 7912 { ··· 7943 7955 name = "type_fest___type_fest_2.19.0.tgz"; 7944 7956 url = "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz"; 7945 7957 sha512 = "RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="; 7958 + }; 7959 + } 7960 + { 7961 + name = "type_fest___type_fest_3.2.0.tgz"; 7962 + path = fetchurl { 7963 + name = "type_fest___type_fest_3.2.0.tgz"; 7964 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-3.2.0.tgz"; 7965 + sha512 = "Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og=="; 7946 7966 }; 7947 7967 } 7948 7968 { ··· 8127 8147 name = "uri_js___uri_js_4.4.1.tgz"; 8128 8148 url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz"; 8129 8149 sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 8130 - }; 8131 - } 8132 - { 8133 - name = "url_parse_lax___url_parse_lax_3.0.0.tgz"; 8134 - path = fetchurl { 8135 - name = "url_parse_lax___url_parse_lax_3.0.0.tgz"; 8136 - url = "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 8137 - sha512 = "NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ=="; 8138 8150 }; 8139 8151 } 8140 8152 {
+19 -4
pkgs/games/vassal/default.nix
··· 1 - { lib, stdenv, fetchzip, jre, makeWrapper }: 1 + { lib 2 + , stdenv 3 + , fetchzip 4 + , glib 5 + , jre 6 + , makeWrapper 7 + , wrapGAppsHook 8 + }: 2 9 3 10 stdenv.mkDerivation rec { 4 11 pname = "VASSAL"; 5 - version = "3.6.10"; 12 + version = "3.6.11"; 6 13 7 14 src = fetchzip { 8 15 url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2"; 9 - sha256 = "sha256-YQUKYsuDaCHChiRBQOKr813ptyc4UxZQ5aQFeC6tutU="; 16 + sha256 = "sha256-t05rwP33/V2S5pkWjv87GmPHtYCMrMxT3o3cOrwytK4="; 10 17 }; 11 18 12 - nativeBuildInputs = [ makeWrapper ]; 19 + buildInputs = [ 20 + glib 21 + ]; 22 + 23 + nativeBuildInputs = [ 24 + makeWrapper 25 + wrapGAppsHook 26 + ]; 13 27 14 28 installPhase = '' 15 29 runHook preInstall ··· 37 51 license = licenses.lgpl21Only; 38 52 maintainers = with maintainers; [ tvestelind ]; 39 53 platforms = platforms.unix; 54 + mainProgram = "vassal"; 40 55 }; 41 56 }
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 16 17 17 buildGoModule rec { 18 18 pname = "evcc"; 19 - version = "0.112.2"; 19 + version = "0.112.5"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "evcc-io"; 23 23 repo = pname; 24 24 rev = version; 25 - hash = "sha256-rIsx1c9Pz7nAjJe71YYmizhDkrIR1gcCocmTUMdkt5A="; 25 + hash = "sha256-UoBepu+9A4nuv9HdjYacMXzXqdS24KU4hYuRlEhsdKQ="; 26 26 }; 27 27 28 28 vendorHash = "sha256-sfASvLsNUp+7T0ib87HkLNBDp5fbk3hEV0LIKK46O4g=";
+3 -5
pkgs/servers/sql/monetdb/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, python3 2 - , bison, openssl, readline, bzip2 3 - }: 1 + { lib, stdenv, fetchurl, cmake, python3, bison, openssl, readline, bzip2 }: 4 2 5 3 stdenv.mkDerivation rec { 6 4 pname = "monetdb"; 7 - version = "11.45.11"; 5 + version = "11.45.13"; 8 6 9 7 src = fetchurl { 10 8 url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2"; 11 - sha256 = "sha256-0Hme9ohyRuiN9CAZq7SAWGcQxNakiDVWEoL+wt1GsfY="; 9 + sha256 = "sha256-TYTzC1oiU/YwrJNABwyA50qSB12cwrMurqYFVCtSAcc="; 12 10 }; 13 11 14 12 postPatch = ''
-1
pkgs/stdenv/darwin/default.nix
··· 98 98 99 99 doSign = localSystem.isAarch64 && last != null; 100 100 doUpdateAutoTools = localSystem.isAarch64 && last != null; 101 - inherit (last.pkgs) runCommandLocal; 102 101 103 102 mkExtraBuildCommands = cc: '' 104 103 rsrc="$out/resource-root"
+31
pkgs/tools/filesystems/simple-mtpfs/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , autoconf-archive 6 + , pkg-config 7 + , fuse 8 + , libmtp 9 + }: 10 + stdenv.mkDerivation rec { 11 + pname = "simple-mtpfs"; 12 + version = "0.4.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "phatina"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + hash = "sha256-vAqi2owa4LJK7y7S7TwkPAqDxzyHrZZBTu0MBwMT0gI="; 19 + }; 20 + 21 + nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ]; 22 + buildInputs = [ fuse libmtp ]; 23 + 24 + meta = with lib; { 25 + description = "Simple MTP fuse filesystem driver"; 26 + homepage = "https://github.com/phatina/simple-mtpfs"; 27 + license = licenses.gpl2Plus; 28 + platforms = platforms.linux; 29 + maintainers = with maintainers; [ laalsaas ]; 30 + }; 31 + }
+106
pkgs/tools/games/alice-tools/default.nix
··· 1 + { stdenv 2 + , lib 3 + , gitUpdater 4 + , fetchFromGitHub 5 + , fetchpatch 6 + , meson 7 + , ninja 8 + , pkg-config 9 + , bison 10 + , flex 11 + , libiconv 12 + , libpng 13 + , libjpeg 14 + , libwebp 15 + , zlib 16 + , withGUI ? true 17 + , qtbase ? null 18 + , wrapQtAppsHook ? null 19 + }: 20 + 21 + assert withGUI -> qtbase != null && wrapQtAppsHook != null; 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "alice-tools"; 25 + version = "0.12.1"; 26 + 27 + src = fetchFromGitHub { 28 + owner = "nunuhara"; 29 + repo = "alice-tools"; 30 + rev = version; 31 + fetchSubmodules = true; 32 + hash = "sha256-uXiNNneAOTDupgc+ZvaeRNbEQFJBv4ppdEc3kZeUsg8="; 33 + }; 34 + 35 + patches = [ 36 + # These two patches (one to alice-tools, one to a subproject) improve DCF & PCF parsing 37 + # Remove them when version > 0.12.1 38 + (fetchpatch { 39 + url = "https://github.com/nunuhara/alice-tools/commit/c800e85b37998d7a47060f5da4b1782d7201a042.patch"; 40 + excludes = [ "subprojects/libsys4" ]; 41 + hash = "sha256-R5ckFHqUWHdAPkFa53UbVeLgxJg/8qGLTQWwj5YRJc4="; 42 + }) 43 + (fetchpatch { 44 + url = "https://github.com/nunuhara/libsys4/commit/cff2b826d1618fb17616cdd288ab0c50f35e8032.patch"; 45 + stripLen = 1; 46 + extraPrefix = "subprojects/libsys4/"; 47 + hash = "sha256-CmetiVP2kGL+MwuE9OoEDrDFxzwWvv1TtZuq1li1uIw="; 48 + }) 49 + ]; 50 + 51 + postPatch = lib.optionalString (withGUI && lib.versionAtLeast qtbase.version "6.0") '' 52 + substituteInPlace src/meson.build \ 53 + --replace qt5 qt6 54 + ''; 55 + 56 + mesonFlags = lib.optionals (withGUI && lib.versionAtLeast qtbase.version "6.0") [ 57 + # Qt6 requires at least C++17, project uses compiler's default, default too old on Darwin & aarch64-linux 58 + "-Dcpp_std=c++17" 59 + ]; 60 + 61 + nativeBuildInputs = [ 62 + meson 63 + ninja 64 + pkg-config 65 + bison 66 + flex 67 + ] ++ lib.optionals withGUI [ 68 + wrapQtAppsHook 69 + ]; 70 + 71 + buildInputs = [ 72 + libiconv 73 + libpng 74 + libjpeg 75 + libwebp 76 + zlib 77 + ] ++ lib.optionals withGUI [ 78 + qtbase 79 + ]; 80 + 81 + dontWrapQtApps = true; 82 + 83 + # Default install step only installs a static library of a build dependency 84 + installPhase = '' 85 + runHook preInstall 86 + 87 + install -Dm755 src/alice $out/bin/alice 88 + '' + lib.optionalString withGUI '' 89 + install -Dm755 src/galice $out/bin/galice 90 + wrapQtApp $out/bin/galice 91 + '' + '' 92 + 93 + runHook postInstall 94 + ''; 95 + 96 + passthru.updateScript = gitUpdater { }; 97 + 98 + meta = with lib; { 99 + description = "Tools for extracting/editing files from AliceSoft games"; 100 + homepage = "https://github.com/nunuhara/alice-tools"; 101 + license = licenses.gpl2Plus; 102 + platforms = platforms.all; 103 + maintainers = with maintainers; [ OPNA2608 ]; 104 + mainProgram = if withGUI then "galice" else "alice"; 105 + }; 106 + }
+2 -2
pkgs/tools/misc/eget/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "eget"; 13 - version = "1.3.1"; 13 + version = "1.3.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "zyedidia"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-ahmvsSBR/WhKhBSMc+GE3RfuGK6wJIKSvqXPcff1HAI="; 19 + sha256 = "sha256-tUHA5LbTOz20ydMM8141VjCUBsxI+Wzkgfh27aq/2y4="; 20 20 }; 21 21 22 22 vendorSha256 = "sha256-J8weaJSC+k8BnijG2Jm2GYUZmEhASrrCDxb46ZGmCMI=";
+3 -3
pkgs/tools/misc/pandoc-katex/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "pandoc-katex"; 5 - version = "0.1.10"; 5 + version = "0.1.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "xu-cheng"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-TGilWr/Q8K+YP6FYfZqJOwtTAFiY+YX7AAole4TiSoE="; 11 + hash = "sha256-2a3WJTNIMqWnTlHB+2U/6ifuoecbOlTP6e7YjD/UvPM="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-CEyS7dMG+5e/LwEKdYlHFVCBm2FPKVjJlrMFB+QGm+Y="; 14 + cargoHash = "sha256-Qf+QYOIBmSgax7p5K32SkaDT0MoKUY4TkxLbf/ZbM+U="; 15 15 16 16 meta = with lib; { 17 17 description = "Pandoc filter to render math equations using KaTeX";
+3 -3
pkgs/tools/misc/phrase-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "phrase-cli"; 5 - version = "2.6.5"; 5 + version = "2.6.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "phrase"; 9 9 repo = "phrase-cli"; 10 10 rev = version; 11 - sha256 = "sha256-6pt8WjfSt458FIK/cCzEOM9mFruFY6jBnkXoRWIhOr0="; 11 + sha256 = "sha256-MX4na74T8+6As8e+izWz1O+xhNGfS2EKUT6goqy+sms="; 12 12 }; 13 13 14 - vendorHash = "sha256-zUwp7RqaKtxbTzEOhcmGG/+tqtBKs7cm6+sFNCKET08="; 14 + vendorHash = "sha256-Sfjp8EQeTlXayYSBO72KWLj+CScNUM5O49AP1qEfQTw="; 15 15 16 16 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 17 17
+2 -2
pkgs/tools/misc/steampipe/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "steampipe"; 5 - version = "0.18.3"; 5 + version = "0.18.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "turbot"; 9 9 repo = "steampipe"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FHZMnq/7y450dME5+CfF8Nkv7jEZyVkMYBXPcinFVvM="; 11 + sha256 = "sha256-sCnKnBxZuueH8XgXPqCLrJvS4zUbraz3mZr/2Xn+7YU="; 12 12 }; 13 13 14 14 vendorHash = "sha256-W30f7QYgm+QyLDJICpjMn7mtUIziTR1igThEbv+Aa7M=";
+3 -3
pkgs/tools/nix/nix-init/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "nix-init"; 18 - version = "0.1.0"; 18 + version = "0.1.1"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "nix-community"; 22 22 repo = "nix-init"; 23 23 rev = "v${version}"; 24 - hash = "sha256-97aAlH03H8xTVhp45FwecNb7i/ZUtJG9OOYBx8Sf+YI="; 24 + hash = "sha256-x9UrBCnEGz6nI1XGBLjIeiF3qi3EvynAfafiuhQdt9Q="; 25 25 }; 26 26 27 - cargoHash = "sha256-uvn1cP6aIxfPKG/QLtHBd6fHjl7JNRtkZ4gIG2tpHVg="; 27 + cargoHash = "sha256-RUfprANAbj8w8LPRwQEF9SD9fhWb1CEcwbvOa6DX9Xk="; 28 28 29 29 nativeBuildInputs = [ 30 30 installShellFiles
+59 -5
pkgs/tools/nix/nix-init/license.nix
··· 3 3 { lib, writeText }: 4 4 5 5 let 6 - inherit (builtins) concatLists concatStringsSep length; 7 - inherit (lib) flip licenses mapAttrsToList optional; 6 + inherit (lib) 7 + concatMapAttrs 8 + filterAttrs 9 + flip 10 + id 11 + intersectLists 12 + licenses 13 + mapAttrsToList 14 + optionalAttrs 15 + pipe 16 + warn 17 + attrNames 18 + concatStringsSep 19 + length 20 + ; 8 21 9 - inserts = concatLists 10 - (flip mapAttrsToList licenses 11 - (k: v: optional (v ? spdxId) '' xs.insert("${v.spdxId}", "${k}");'')); 22 + licenseMap = flip concatMapAttrs licenses 23 + (k: v: optionalAttrs (v ? spdxId && !v.deprecated) { ${v.spdxId} = k; }); 24 + 25 + deprecatedAliases = { 26 + "AGPL-3.0" = "agpl3Only"; 27 + "BSD-2-Clause-FreeBSD" = "bsd2WithViews"; 28 + "BSD-2-Clause-NetBSD" = "bsd2"; 29 + "GFDL-1.1" = "fdl11Only"; 30 + "GFDL-1.2" = "fdl12Only"; 31 + "GFDL-1.3" = "fdl13Only"; 32 + "GPL-1.0" = "gpl1Only"; 33 + "GPL-1.0+" = "gpl1Plus"; 34 + "GPL-2.0" = "gpl2Only"; 35 + "GPL-2.0+" = "gpl2Plus"; 36 + "GPL-3.0" = "gpl3Only"; 37 + "GPL-3.0+" = "gpl3Plus"; 38 + "LGPL-2.0" = "lgpl2Only"; 39 + "LGPL-2.0+" = "lgpl2Plus"; 40 + "LGPL-2.1" = "lgpl21Only"; 41 + "LGPL-2.1+" = "lgpl21Plus"; 42 + "LGPL-3.0" = "lgpl3Only"; 43 + "LGPL-3.0+" = "lgpl3Plus"; 44 + }; 45 + 46 + lints = { 47 + "deprecated licenses" = intersectLists 48 + (attrNames licenseMap) 49 + (attrNames deprecatedAliases); 50 + 51 + "invalid aliases" = attrNames (filterAttrs 52 + (k: v: licenses.${v}.deprecated or true) 53 + deprecatedAliases); 54 + }; 55 + 56 + lint = flip pipe 57 + (flip mapAttrsToList lints (k: v: 58 + if v == [ ] then 59 + id 60 + else 61 + warn "${k}: ${concatStringsSep ", " v}")); 62 + 63 + inserts = lint (mapAttrsToList 64 + (k: v: '' xs.insert("${k}", "${v}");'') 65 + (deprecatedAliases // licenseMap)); 12 66 in 13 67 14 68 writeText "license.rs" ''
+26
pkgs/tools/security/argocd-vault-plugin/default.nix
··· 1 + { buildGoModule, fetchFromGitHub, lib }: 2 + 3 + buildGoModule rec { 4 + pname = "argocd-vault-plugin"; 5 + version = "1.13.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "argoproj-labs"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-BuPNmGWKvjWkMCyyAFZeSCcnBUeaoduw7fZe07WD3Jo="; 12 + }; 13 + 14 + vendorHash = "sha256-jxuYT63FxylQinJ9paPk/Ut0aFX5gdLOS4ugzrtRIF0="; 15 + 16 + # integration tests require filesystem and network access for credentials 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 + homepage = "https://argocd-vault-plugin.readthedocs.io"; 21 + changelog = "https://github.com/argoproj-labs/argocd-vault-plugin/releases/tag/v${version}"; 22 + description = "An Argo CD plugin to retrieve secrets from Secret Management tools and inject them into Kubernetes secrets"; 23 + license = licenses.asl20; 24 + maintainers = with maintainers; [ urandom ]; 25 + }; 26 + }
+2 -2
pkgs/tools/video/atomicparsley/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "atomicparsley"; 5 - version = "20210715.151551.e7ad03a"; 5 + version = "20221229.172126.d813aa6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "wez"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-77yWwfdEul4uLsUNX1dLwj8K0ilcuBaTVKMyXDvKVx4="; 11 + sha256 = "sha256-3otyOpDdiltZ0SR1hImfIDBi53PKuAvh93yq1X3Xkmo="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/tools/wayland/shotman/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "shotman"; 12 - version = "0.3.0"; 12 + version = "0.4.0"; 13 13 14 14 src = fetchFromSourcehut { 15 15 owner = "~whynothugo"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-tyIvAe6wQxxHRkD46dYjHYtvv7OWDuurYi6tsdL8BtE="; 18 + hash = "sha256-BWHQtaDnM6lBEMkD8Y7M2NrWD78rY3yL8dzsa6PBiR0="; 19 19 }; 20 20 21 - cargoHash = "sha256-N42dGImQPqa/NXpqhEnMDsG1mrdNh1BM0BDvRS6Oiio="; 21 + cargoHash = "sha256-uckdpzCD3ItUVvpF2fHofcZFkQZzt8Xz/VWFiQ9Hkrs="; 22 22 23 23 nativeBuildInputs = [ pkg-config makeWrapper ]; 24 24
+1
pkgs/top-level/aliases.nix
··· 1472 1472 subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26 1473 1473 subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31 1474 1474 sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16 1475 + sumneko-lua-language-server = lua-language-server; # Added 2023-02-07 1475 1476 sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed"; 1476 1477 surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22 1477 1478 swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14
+20 -4
pkgs/top-level/all-packages.nix
··· 1370 1370 1371 1371 albert = libsForQt5.callPackage ../applications/misc/albert {}; 1372 1372 1373 + alice-tools = callPackage ../tools/games/alice-tools { 1374 + withGUI = false; 1375 + }; 1376 + 1377 + alice-tools-qt5 = libsForQt5.callPackage ../tools/games/alice-tools { }; 1378 + 1379 + alice-tools-qt6 = qt6Packages.callPackage ../tools/games/alice-tools { }; 1380 + 1373 1381 allure = callPackage ../development/tools/allure {}; 1374 1382 1375 1383 aquosctl = callPackage ../tools/misc/aquosctl { }; 1376 1384 1377 1385 arch-install-scripts = callPackage ../tools/misc/arch-install-scripts {}; 1386 + 1387 + argocd-vault-plugin = callPackage ../tools/security/argocd-vault-plugin {}; 1378 1388 1379 1389 arubaotp-seed-extractor = callPackage ../tools/security/arubaotp-seed-extractor { }; 1380 1390 ··· 10341 10351 10342 10352 ombi = callPackage ../servers/ombi { }; 10343 10353 10354 + ome_zarr = with python3Packages; toPythonApplication ome-zarr; 10355 + 10344 10356 omping = callPackage ../applications/networking/omping { }; 10345 10357 10346 10358 onefetch = callPackage ../tools/misc/onefetch { ··· 10785 10797 pg_flame = callPackage ../tools/misc/pg_flame { }; 10786 10798 10787 10799 pg_top = callPackage ../tools/misc/pg_top { }; 10800 + 10801 + pgagroal = callPackage ../development/tools/database/pgagroal { }; 10788 10802 10789 10803 pgcenter = callPackage ../tools/misc/pgcenter { }; 10790 10804 ··· 11873 11887 silice = callPackage ../development/compilers/silice { }; 11874 11888 11875 11889 silver-searcher = callPackage ../tools/text/silver-searcher { }; 11890 + 11891 + simple-mtpfs = callPackage ../tools/filesystems/simple-mtpfs { }; 11876 11892 11877 11893 simpleproxy = callPackage ../tools/networking/simpleproxy { }; 11878 11894 ··· 16963 16979 16964 16980 kotlin-language-server = callPackage ../development/tools/language-servers/kotlin-language-server { }; 16965 16981 16982 + lua-language-server = darwin.apple_sdk_11_0.callPackage ../development/tools/language-servers/lua-language-server { 16983 + inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Foundation; 16984 + }; 16985 + 16966 16986 metals = callPackage ../development/tools/language-servers/metals { }; 16967 16987 16968 16988 millet = callPackage ../development/tools/language-servers/millet { }; ··· 16970 16990 nil = callPackage ../development/tools/language-servers/nil { }; 16971 16991 16972 16992 rnix-lsp = callPackage ../development/tools/language-servers/rnix-lsp { }; 16973 - 16974 - sumneko-lua-language-server = darwin.apple_sdk_11_0.callPackage ../development/tools/language-servers/sumneko-lua-language-server { 16975 - inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Foundation; 16976 - }; 16977 16993 16978 16994 svls = callPackage ../development/tools/language-servers/svls { }; 16979 16995
+4
pkgs/top-level/python-packages.nix
··· 162 162 163 163 aiodns = callPackage ../development/python-modules/aiodns { }; 164 164 165 + aiodocker = callPackage ../development/python-modules/aiodocker { }; 166 + 165 167 aioeafm = callPackage ../development/python-modules/aioeafm { }; 166 168 167 169 aioeagle = callPackage ../development/python-modules/aioeagle { }; ··· 6592 6594 oletools = callPackage ../development/python-modules/oletools { }; 6593 6595 6594 6596 omegaconf = callPackage ../development/python-modules/omegaconf { }; 6597 + 6598 + ome-zarr = callPackage ../development/python-modules/ome-zarr { }; 6595 6599 6596 6600 omnikinverter = callPackage ../development/python-modules/omnikinverter { }; 6597 6601