diff --git a/third_party/nixpkgs/.github/CODEOWNERS b/third_party/nixpkgs/.github/CODEOWNERS
index a64b6918c4..50263b7ff7 100644
--- a/third_party/nixpkgs/.github/CODEOWNERS
+++ b/third_party/nixpkgs/.github/CODEOWNERS
@@ -231,3 +231,8 @@
# Cinnamon
/pkgs/desktops/cinnamon @mkg20001
+
+#nim
+/pkgs/development/compilers/nim @ehmry
+/pkgs/development/nim-packages @ehmry
+/pkgs/top-level/nim-packages.nix @ehmry
diff --git a/third_party/nixpkgs/.github/labeler.yml b/third_party/nixpkgs/.github/labeler.yml
index ff83104246..780843a2a5 100644
--- a/third_party/nixpkgs/.github/labeler.yml
+++ b/third_party/nixpkgs/.github/labeler.yml
@@ -72,6 +72,12 @@
- nixos/**/*
- pkgs/os-specific/linux/nixos-rebuild/**/*
+"6.topic: nim":
+ - doc/languages-frameworks/nim.section.md
+ - pkgs/development/compilers/nim/*
+ - pkgs/development/nim-packages/**/*
+ - pkgs/top-level/nim-packages.nix
+
"6.topic: ocaml":
- doc/languages-frameworks/ocaml.section.md
- pkgs/development/compilers/ocaml/**/*
diff --git a/third_party/nixpkgs/doc/languages-frameworks/index.xml b/third_party/nixpkgs/doc/languages-frameworks/index.xml
index 29a1e08969..b010f27cac 100644
--- a/third_party/nixpkgs/doc/languages-frameworks/index.xml
+++ b/third_party/nixpkgs/doc/languages-frameworks/index.xml
@@ -23,6 +23,7 @@
+
diff --git a/third_party/nixpkgs/doc/languages-frameworks/nim.section.md b/third_party/nixpkgs/doc/languages-frameworks/nim.section.md
new file mode 100644
index 0000000000..16dce61d71
--- /dev/null
+++ b/third_party/nixpkgs/doc/languages-frameworks/nim.section.md
@@ -0,0 +1,91 @@
+# Nim {#nim}
+
+## Overview {#nim-overview}
+
+The Nim compiler, a builder function, and some packaged libraries are available
+in Nixpkgs. Until now each compiler release has been effectively backwards
+compatible so only the latest version is available.
+
+## Nim program packages in Nixpkgs {#nim-program-packages-in-nixpkgs}
+
+Nim programs can be built using `nimPackages.buildNimPackage`. In the
+case of packages not containing exported library code the attribute
+`nimBinOnly` should be set to `true`.
+
+The following example shows a Nim program that depends only on Nim libraries:
+
+```nix
+{ lib, nimPackages, fetchurl }:
+
+nimPackages.buildNimPackage rec {
+ pname = "hottext";
+ version = "1.4";
+
+ nimBinOnly = true;
+
+ src = fetchurl {
+ url = "https://git.sr.ht/~ehmry/hottext/archive/v${version}.tar.gz";
+ sha256 = "sha256-hIUofi81zowSMbt1lUsxCnVzfJGN3FEiTtN8CEFpwzY=";
+ };
+
+ buildInputs = with nimPackages; [
+ bumpy
+ chroma
+ flatty
+ nimsimd
+ pixie
+ sdl2
+ typography
+ vmath
+ zippy
+ ];
+}
+
+```
+
+## Nim library packages in Nixpkgs {#nim-library-packages-in-nixpkgs}
+
+
+Nim libraries can also be built using `nimPackages.buildNimPackage`, but
+often the product of a fetcher is sufficient to satisfy a dependency.
+The `fetchgit`, `fetchFromGitHub`, and `fetchNimble` functions yield an
+output that can be discovered during the `configurePhase` of `buildNimPackage`.
+
+Nim library packages are listed in
+[pkgs/top-level/nim-packages.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/nim-packages.nix) and implemented at
+[pkgs/development/nim-packages](https://github.com/NixOS/nixpkgs/tree/master/pkgs/development/nim-packages).
+
+The following example shows a Nim library that propagates a dependency on a
+non-Nim package:
+```nix
+{ lib, buildNimPackage, fetchNimble, SDL2 }:
+
+buildNimPackage rec {
+ pname = "sdl2";
+ version = "2.0.4";
+ src = fetchNimble {
+ inherit pname version;
+ hash = "sha256-Vtcj8goI4zZPQs2TbFoBFlcR5UqDtOldaXSH/+/xULk=";
+ };
+ propagatedBuildInputs = [ SDL2 ];
+}
+```
+
+## `buildNimPackage` parameters {#buildnimpackage-parameters}
+
+All parameters from `stdenv.mkDerivation` function are still supported. The
+following are specific to `buildNimPackage`:
+
+* `nimBinOnly ? false`: If `true` then build only the programs listed in
+ the Nimble file in the packages sources.
+* `nimbleFile`: Specify the Nimble file location of the package being built
+ rather than discover the file at build-time.
+* `nimRelease ? true`: Build the package in *release* mode.
+* `nimDefines ? []`: A list of Nim defines. Key-value tuples are not supported.
+* `nimFlags ? []`: A list of command line arguments to pass to the Nim compiler.
+ Use this to specify defines with arguments in the form of `-d:${name}=${value}`.
+* `nimDoc` ? false`: Build and install HTML documentation.
+
+* `buildInputs` ? []: The packages listed here will be searched for `*.nimble`
+ files which are used to populate the Nim library path. Otherwise the standard
+ behavior is in effect.
diff --git a/third_party/nixpkgs/maintainers/maintainer-list.nix b/third_party/nixpkgs/maintainers/maintainer-list.nix
index 393be185b0..9da7544cf9 100644
--- a/third_party/nixpkgs/maintainers/maintainer-list.nix
+++ b/third_party/nixpkgs/maintainers/maintainer-list.nix
@@ -2743,6 +2743,12 @@
githubId = 40633781;
name = "Sergei S.";
};
+ dit7ya = {
+ email = "7rat13@gmail.com";
+ github = "dit7ya";
+ githubId = 14034137;
+ name = "Mostly Void";
+ };
dizfer = {
email = "david@izquierdofernandez.com";
github = "dizfer";
@@ -5189,6 +5195,12 @@
githubId = 9866621;
name = "Jack";
};
+ jkarlson = {
+ email = "jekarlson@gmail.com";
+ github = "jkarlson";
+ githubId = 1204734;
+ name = "Emil Karlson";
+ };
jlesquembre = {
email = "jl@lafuente.me";
github = "jlesquembre";
@@ -7667,6 +7679,12 @@
githubId = 6455574;
name = "Matt Votava";
};
+ mvs = {
+ email = "mvs@nya.yt";
+ github = "illdefined";
+ githubId = 772914;
+ name = "Mikael Voss";
+ };
maxwilson = {
email = "nixpkgs@maxwilson.dev";
github = "mwilsoncoding";
diff --git a/third_party/nixpkgs/maintainers/team-list.nix b/third_party/nixpkgs/maintainers/team-list.nix
index df0c9ce7cf..9171c10da4 100644
--- a/third_party/nixpkgs/maintainers/team-list.nix
+++ b/third_party/nixpkgs/maintainers/team-list.nix
@@ -164,6 +164,14 @@ with lib.maintainers; {
scope = "Maintain Kodi and related packages.";
};
+ mate = {
+ members = [
+ j03
+ romildo
+ ];
+ scope = "Maintain Mate desktop environment and related packages.";
+ };
+
matrix = {
members = [
ma27
diff --git a/third_party/nixpkgs/nixos/modules/module-list.nix b/third_party/nixpkgs/nixos/modules/module-list.nix
index 19e9f5a27b..a7decf8898 100644
--- a/third_party/nixpkgs/nixos/modules/module-list.nix
+++ b/third_party/nixpkgs/nixos/modules/module-list.nix
@@ -1031,7 +1031,7 @@
./services/web-servers/shellinabox.nix
./services/web-servers/tomcat.nix
./services/web-servers/traefik.nix
- ./services/web-servers/trafficserver.nix
+ ./services/web-servers/trafficserver/default.nix
./services/web-servers/ttyd.nix
./services/web-servers/uwsgi.nix
./services/web-servers/varnish/default.nix
diff --git a/third_party/nixpkgs/nixos/modules/services/cluster/kubernetes/default.nix b/third_party/nixpkgs/nixos/modules/services/cluster/kubernetes/default.nix
index f2c76a56d8..08b2141818 100644
--- a/third_party/nixpkgs/nixos/modules/services/cluster/kubernetes/default.nix
+++ b/third_party/nixpkgs/nixos/modules/services/cluster/kubernetes/default.nix
@@ -253,7 +253,7 @@ in {
(mkIf cfg.kubelet.enable {
virtualisation.containerd = {
enable = mkDefault true;
- settings = mkDefault defaultContainerdSettings;
+ settings = mapAttrsRecursive (name: mkDefault) defaultContainerdSettings;
};
})
diff --git a/third_party/nixpkgs/nixos/modules/services/mail/opensmtpd.nix b/third_party/nixpkgs/nixos/modules/services/mail/opensmtpd.nix
index dc209e8add..ef7d53e7d9 100644
--- a/third_party/nixpkgs/nixos/modules/services/mail/opensmtpd.nix
+++ b/third_party/nixpkgs/nixos/modules/services/mail/opensmtpd.nix
@@ -111,7 +111,7 @@ in {
};
services.mail.sendmailSetuidWrapper = mkIf cfg.setSendmail
- security.wrappers.smtpctl // { program = "sendmail"; };
+ (security.wrappers.smtpctl // { program = "sendmail"; });
systemd.tmpfiles.rules = [
"d /var/spool/smtpd 711 root - - -"
diff --git a/third_party/nixpkgs/nixos/modules/services/misc/safeeyes.nix b/third_party/nixpkgs/nixos/modules/services/misc/safeeyes.nix
index 1e748195e4..638218d8bb 100644
--- a/third_party/nixpkgs/nixos/modules/services/misc/safeeyes.nix
+++ b/third_party/nixpkgs/nixos/modules/services/misc/safeeyes.nix
@@ -26,12 +26,16 @@ in
config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.safeeyes ];
+
systemd.user.services.safeeyes = {
description = "Safeeyes";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
+ path = [ pkgs.alsa-utils ];
+
startLimitIntervalSec = 350;
startLimitBurst = 10;
serviceConfig = {
diff --git a/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver.nix b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/default.nix
similarity index 95%
rename from third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver.nix
rename to third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/default.nix
index db0e2ac0bd..341e8b1397 100644
--- a/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver.nix
+++ b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/default.nix
@@ -8,21 +8,9 @@ let
group = config.users.groups.trafficserver.name;
getManualUrl = name: "https://docs.trafficserver.apache.org/en/latest/admin-guide/files/${name}.en.html";
- getConfPath = name: "${pkgs.trafficserver}/etc/trafficserver/${name}";
yaml = pkgs.formats.yaml { };
- fromYAML = f:
- let
- jsonFile = pkgs.runCommand "in.json"
- {
- nativeBuildInputs = [ pkgs.remarshal ];
- } ''
- yaml2json < "${f}" > "$out"
- '';
- in
- builtins.fromJSON (builtins.readFile jsonFile);
-
mkYamlConf = name: cfg:
if cfg != null then {
"trafficserver/${name}.yaml".source = yaml.generate "${name}.yaml" cfg;
@@ -73,7 +61,7 @@ in
ipAllow = mkOption {
type = types.nullOr yaml.type;
- default = fromYAML (getConfPath "ip_allow.yaml");
+ default = builtins.fromJSON (builtins.readFile ./ip_allow.json);
defaultText = "upstream defaults";
example = literalExample {
ip_allow = [{
@@ -94,7 +82,7 @@ in
logging = mkOption {
type = types.nullOr yaml.type;
- default = fromYAML (getConfPath "logging.yaml");
+ default = builtins.fromJSON (builtins.readFile ./logging.json);
defaultText = "upstream defaults";
example = literalExample { };
description = ''
diff --git a/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/ip_allow.json b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/ip_allow.json
new file mode 100644
index 0000000000..fc2db80372
--- /dev/null
+++ b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/ip_allow.json
@@ -0,0 +1,36 @@
+{
+ "ip_allow": [
+ {
+ "apply": "in",
+ "ip_addrs": "127.0.0.1",
+ "action": "allow",
+ "methods": "ALL"
+ },
+ {
+ "apply": "in",
+ "ip_addrs": "::1",
+ "action": "allow",
+ "methods": "ALL"
+ },
+ {
+ "apply": "in",
+ "ip_addrs": "0/0",
+ "action": "deny",
+ "methods": [
+ "PURGE",
+ "PUSH",
+ "DELETE"
+ ]
+ },
+ {
+ "apply": "in",
+ "ip_addrs": "::/0",
+ "action": "deny",
+ "methods": [
+ "PURGE",
+ "PUSH",
+ "DELETE"
+ ]
+ }
+ ]
+}
diff --git a/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/logging.json b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/logging.json
new file mode 100644
index 0000000000..81e7ba0186
--- /dev/null
+++ b/third_party/nixpkgs/nixos/modules/services/web-servers/trafficserver/logging.json
@@ -0,0 +1,37 @@
+{
+ "logging": {
+ "formats": [
+ {
+ "name": "welf",
+ "format": "id=firewall time=\"% %\" fw=% pri=6 proto=% duration=% sent=% rcvd=% src=% dst=% dstname=% user=% op=% arg=\"%\" result=% ref=\"%<{Referer}cqh>\" agent=\"%<{user-agent}cqh>\" cache=%"
+ },
+ {
+ "name": "squid_seconds_only_timestamp",
+ "format": "% % % %/% % % % % %/% %"
+ },
+ {
+ "name": "squid",
+ "format": "% % % %/% % % % % %/% %"
+ },
+ {
+ "name": "common",
+ "format": "% - % [%] \"%\" % %"
+ },
+ {
+ "name": "extended",
+ "format": "% - % [%] \"%\" % % % % % % % % % % %"
+ },
+ {
+ "name": "extended2",
+ "format": "% - % [%] \"%\" % % % % % % % % % % % % % % %"
+ }
+ ],
+ "logs": [
+ {
+ "filename": "squid",
+ "format": "squid",
+ "mode": "binary"
+ }
+ ]
+ }
+}
diff --git a/third_party/nixpkgs/nixos/modules/virtualisation/containerd.nix b/third_party/nixpkgs/nixos/modules/virtualisation/containerd.nix
index 43cb6273f2..898a66e7b0 100644
--- a/third_party/nixpkgs/nixos/modules/virtualisation/containerd.nix
+++ b/third_party/nixpkgs/nixos/modules/virtualisation/containerd.nix
@@ -53,8 +53,11 @@ in
virtualisation.containerd = {
args.config = toString containerdConfigChecked;
settings = {
- plugins.cri.containerd.snapshotter = lib.mkIf config.boot.zfs.enabled "zfs";
- plugins.cri.cni.bin_dir = lib.mkDefault "${pkgs.cni-plugins}/bin";
+ plugins."io.containerd.grpc.v1.cri" = {
+ containerd.snapshotter =
+ lib.mkIf config.boot.zfs.enabled (lib.mkOptionDefault "zfs");
+ cni.bin_dir = lib.mkOptionDefault "${pkgs.cni-plugins}/bin";
+ };
};
};
diff --git a/third_party/nixpkgs/pkgs/applications/audio/praat/default.nix b/third_party/nixpkgs/pkgs/applications/audio/praat/default.nix
index b21ea2fccf..75a706cff1 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/praat/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/praat/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "praat";
- version = "6.1.52";
+ version = "6.1.53";
src = fetchFromGitHub {
owner = "praat";
repo = "praat";
rev = "v${version}";
- sha256 = "sha256-O/PjR2J9IMifOtCIsvo90XeRK/G29HQYt3zrn2lVjxA=";
+ sha256 = "sha256-4GOVrKVHl/Cj0PNx+rcLESn5fbyIsnzaheMOFLlEVMU=";
};
configurePhase = ''
diff --git a/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix b/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
index 2738a86534..74ed00dc5a 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
@@ -13,13 +13,13 @@
mkDerivation rec {
pname = "ptcollab";
- version = "0.4.2";
+ version = "0.4.3";
src = fetchFromGitHub {
owner = "yuxshao";
repo = "ptcollab";
rev = "v${version}";
- sha256 = "sha256-AeIjc+FoFsTcyWl261GvyySIHP107rL4JkuMXFhnPbk=";
+ sha256 = "sha256-bFFWPl7yaTwCKz7/f9Vk6mg0roUnig0dFERS4IE4R7g=";
};
nativeBuildInputs = [ qmake pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/blockchains/ledger-live-desktop/default.nix b/third_party/nixpkgs/pkgs/applications/blockchains/ledger-live-desktop/default.nix
index 4b3ba00fb9..acf03368d3 100644
--- a/third_party/nixpkgs/pkgs/applications/blockchains/ledger-live-desktop/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/blockchains/ledger-live-desktop/default.nix
@@ -2,12 +2,12 @@
let
pname = "ledger-live-desktop";
- version = "2.32.2";
+ version = "2.33.1";
name = "${pname}-${version}";
src = fetchurl {
url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage";
- sha256 = "14agkl6xf0f9s5qldla6p6kzl8zlx61q5m8qy63lq215hrzh9d50";
+ sha256 = "1k1h37fbpsib9h8867m2dsfacdjs78gdm61gvrin5gpw1zj10syz";
};
appimageContents = appimageTools.extractType2 {
diff --git a/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix b/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
index 0c9bd808b5..85cd9dd905 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
@@ -17,8 +17,8 @@ let
sha256Hash = "04k7c328bl8ixi8bvp2mm33q2hmv40yc9p5dff5cghyycarwpd3f";
};
latestVersion = { # canary & dev
- version = "2021.1.1.11"; # "Android Studio Bumblebee (2021.1.1) Canary 11"
- sha256Hash = "0npvb7kr259799bs2bs2drvimmmwb0rdzswbkz8zgi5c2fwjcvvl";
+ version = "2021.1.1.12"; # "Android Studio Bumblebee (2021.1.1) Canary 12"
+ sha256Hash = "1dyn9435s0xbxwj28b0cciz6ry58pgfgba4rbny3jszxi5j3j0r1";
};
in {
# Attributes are named by their corresponding release channels
diff --git a/third_party/nixpkgs/pkgs/applications/misc/grsync/default.nix b/third_party/nixpkgs/pkgs/applications/misc/grsync/default.nix
index f4d1b08525..c8068d6822 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/grsync/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/grsync/default.nix
@@ -1,12 +1,12 @@
-{ lib, stdenv, fetchurl, dee, gtk2, intltool, libdbusmenu-gtk2, libunity, pkg-config, rsync }:
+{ lib, stdenv, fetchurl, dee, gtk3, intltool, libdbusmenu-gtk3, libunity, pkg-config, rsync }:
stdenv.mkDerivation rec {
- version = "1.2.8";
+ version = "1.3.0";
pname = "grsync";
src = fetchurl {
url = "mirror://sourceforge/grsync/grsync-${version}.tar.gz";
- sha256 = "1c86jch73cy7ig9k4shvcd3jnaxk7jppfcr8nmkz8gbylsn5zsll";
+ sha256 = "sha256-t8fGpi4FMC2DF8OHQefXHvmrRjnuW/8mIqODsgQ6Nfw=";
};
nativeBuildInputs = [
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
buildInputs = [
dee
- gtk2
- libdbusmenu-gtk2
+ gtk3
+ libdbusmenu-gtk3
libunity
rsync
];
diff --git a/third_party/nixpkgs/pkgs/applications/misc/mkgmap/default.nix b/third_party/nixpkgs/pkgs/applications/misc/mkgmap/default.nix
index 79f29777ea..e6282d0acb 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/mkgmap/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/mkgmap/default.nix
@@ -14,11 +14,11 @@ let
in
stdenv.mkDerivation rec {
pname = "mkgmap";
- version = "4806";
+ version = "4807";
src = fetchurl {
url = "https://www.mkgmap.org.uk/download/mkgmap-r${version}-src.tar.gz";
- sha256 = "kCjcjl0qXxtAS+WGpZB3o5Eq9Xg0vY0gcjFosYJbAsI=";
+ sha256 = "3DEcXopoCIcBANYrGclZH6K0JLgeYADXtPjQtobyfps=";
};
patches = [
diff --git a/third_party/nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix b/third_party/nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix
index bc9b83178d..479e497e34 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix
@@ -1,23 +1,27 @@
{ lib, fetchFromGitHub, makeDesktopItem, prusa-slicer }:
let
appname = "SuperSlicer";
- version = "2.3.56.8";
pname = "super-slicer";
description = "PrusaSlicer fork with more features and faster development cycle";
- override = super: {
+
+ versions = {
+ stable = { version = "2.3.56.9"; sha256 = "sha256-vv01wGQkrasKKjpGSDeDqZbd1X5/iTfGXYN5Jwz+FKE="; };
+ staging = { version = "2.3.57.0"; sha256 = "sha256-7o0AqgQcKYc6c+Hi3x5pC/pKJZPlEsYOYk9sC21+mvM="; };
+ };
+
+ override = { version, sha256 }: super: {
inherit version pname;
src = fetchFromGitHub {
owner = "supermerill";
repo = "SuperSlicer";
- sha256 = "sha256-em0OgrcPaV2VYM8DpvtVJjgdojStMF/ROUEtZ8iLZfo=";
+ inherit sha256;
rev = version;
fetchSubmodules = true;
};
# We don't need PS overrides anymore, and gcode-viewer is embedded in the binary.
postInstall = null;
- dontStrip = true;
separateDebugInfo = true;
# See https://github.com/supermerill/SuperSlicer/issues/432
@@ -44,5 +48,10 @@ let
maintainers = with maintainers; [ cab404 moredread ];
};
+ passthru = allVersions;
+
};
-in prusa-slicer.overrideAttrs override
+
+ allVersions = builtins.mapAttrs (_name: version: (prusa-slicer.overrideAttrs (override version))) versions;
+in
+allVersions.stable
diff --git a/third_party/nixpkgs/pkgs/applications/misc/safeeyes/default.nix b/third_party/nixpkgs/pkgs/applications/misc/safeeyes/default.nix
index 179ebd33d8..c188e5f785 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/safeeyes/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/safeeyes/default.nix
@@ -57,6 +57,9 @@ in buildPythonApplication rec {
# safeeyes images
--prefix XDG_DATA_DIRS : "$out/lib/${python.libPrefix}/site-packages/usr/share"
)
+ mkdir -p $out/share/applications
+ cp -r safeeyes/platform/icons $out/share/
+ cp safeeyes/platform/safeeyes.desktop $out/share/applications/
'';
doCheck = false; # no tests
diff --git a/third_party/nixpkgs/pkgs/applications/misc/skytemple/default.nix b/third_party/nixpkgs/pkgs/applications/misc/skytemple/default.nix
index a242a520fc..7e27acbeff 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/skytemple/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/skytemple/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "skytemple";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
- sha256 = "03qmjp257rk4p1zkz89cv26awdgngvakqyg6jc3g6xrhmsvr4r2p";
+ sha256 = "13vvsp47frgq5c2wfllkg4lmsy5vxl53j5rw9c84d5xix5bisk1n";
};
buildInputs = [
@@ -41,6 +41,6 @@ python3Packages.buildPythonApplication rec {
homepage = "https://github.com/SkyTemple/skytemple";
description = "ROM hacking tool for Pokémon Mystery Dungeon Explorers of Sky";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ xfix ];
+ maintainers = with maintainers; [ xfix marius851000 ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix b/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
index e70b875e6f..3b159d4b7f 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
pname = "upwork";
- version = "5.6.7.13";
+ version = "5.6.8.0";
src = fetchurl {
- url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_7_13_9f0e0a44a59e4331/${pname}_${version}_amd64.deb";
- sha256 = "f1d3168cda47f77100192ee97aa629e2452fe62fb364dd59ad361adbc0d1da87";
+ url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_8_0_836f43f6f6be4149/${pname}_${version}_amd64.deb";
+ sha256 = "b3a52f773d633837882dc107b206006325722ca5d5d5a1e8bdf5453f872e1b6f";
};
dontWrapGApps = true;
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/angelfish/default.nix b/third_party/nixpkgs/pkgs/applications/networking/browsers/angelfish/default.nix
index 391993617d..dedc514696 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/browsers/angelfish/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/angelfish/default.nix
@@ -20,17 +20,17 @@
mkDerivation rec {
pname = "angelfish";
- version = "21.06";
+ version = "21.08";
src = fetchurl {
url = "mirror://kde/stable/plasma-mobile/${version}/angelfish-${version}.tar.xz";
- sha256 = "sha256-iHgmG/DeaUPnRXlVIU8P/oUcYINienYmR2zI9Q4Yd3s=";
+ sha256 = "1gzvlha159bw767mj8lisn89592j4j4dazzfws3v4anddjh60xnh";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- sha256 = "0zh0kli7kav18v9znq2f5jklhf3m1kyb41jzmivjx70g9xyfzlwk";
+ sha256 = "1pbvw9hdzn3i97mahdy9y6jnjsmwmjs3lxfz7q6r9r10i8swbkak";
};
nativeBuildInputs = [
@@ -63,7 +63,7 @@ mkDerivation rec {
meta = with lib; {
description = "Web browser for Plasma Mobile";
- homepage = "https://apps.kde.org/en/mobile.angelfish";
+ homepage = "https://invent.kde.org/plasma-mobile/angelfish";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
index ea59b5ecf2..a33c261bf2 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
@@ -2,24 +2,25 @@
let
version = "0.17.2";
+ sha256 = "0kcdx4ldnshk4pqq37a7p08xr5cpsjrbrifk9fc3jbiw39m09mhf";
+ manifestsSha256 = "1v6md4xh4sq1vmb5a8qvb66l101fq75lmv2s4j2z3walssb5mmgj";
manifests = fetchzip {
url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz";
- sha256 = "1v6md4xh4sq1vmb5a8qvb66l101fq75lmv2s4j2z3walssb5mmgj";
+ sha256 = manifestsSha256;
stripRoot = false;
};
in
buildGoModule rec {
- inherit version;
-
pname = "fluxcd";
+ inherit version;
src = fetchFromGitHub {
owner = "fluxcd";
repo = "flux2";
rev = "v${version}";
- sha256 = "0kcdx4ldnshk4pqq37a7p08xr5cpsjrbrifk9fc3jbiw39m09mhf";
+ inherit sha256;
};
vendorSha256 = "sha256-glifJ0V3RwS7E6EWZsCa88m0MK883RhPSXCsAmMggVs=";
@@ -50,6 +51,8 @@ buildGoModule rec {
done
'';
+ passthru.updateScript = ./update.sh;
+
meta = with lib; {
description = "Open and extensible continuous delivery solution for Kubernetes";
longDescription = ''
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh
new file mode 100755
index 0000000000..f463370e66
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh
@@ -0,0 +1,31 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -i bash -p curl gnugrep gnused jq
+
+set -eu -o pipefail
+
+cd $(dirname "${BASH_SOURCE[0]}")
+
+TAG=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} --silent https://api.github.com/repos/fluxcd/flux2/releases/latest | jq -r '.tag_name')
+
+VERSION=$(echo ${TAG} | sed 's/^v//')
+
+SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/fluxcd/flux2/archive/refs/tags/${TAG}.tar.gz)
+
+SPEC_SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/fluxcd/flux2/releases/download/${TAG}/manifests.tar.gz)
+
+setKV () {
+ sed -i "s/$1 = \".*\"/$1 = \"$2\"/" ./default.nix
+}
+
+setKV version ${VERSION}
+setKV sha256 ${SHA256}
+setKV manifestsSha256 ${SPEC_SHA256}
+setKV vendorSha256 ""
+
+cd ../../../../../
+set +e
+VENDOR_SHA256=$(nix-build --no-out-link -A fluxcd 2>&1 | grep "got:" | cut -d':' -f2 | sed 's/ //g')
+set -e
+
+cd - > /dev/null
+setKV vendorSha256 ${VENDOR_SHA256}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
index 07ac0730fa..90deecab89 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
@@ -20,13 +20,13 @@ let
"${electron}/bin/electron";
in nodePackages.deltachat-desktop.override rec {
pname = "deltachat-desktop";
- version = "1.21.1";
+ version = "1.22.1";
src = fetchFromGitHub {
owner = "deltachat";
repo = "deltachat-desktop";
rev = "v${version}";
- sha256 = "0d59z0mvi70i26d79s4h0sssclwcakidhvhq56zi78bkfqlx7xf1";
+ sha256 = "0wrwjblpw3f5ky697b2nhi9lisn4q5bl05086fdkx5v5j2ghz3n9";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json
index 19cb53f6da..0090bce0fa 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json
@@ -1,6 +1,6 @@
{
"name": "deltachat-desktop",
- "version": "1.21.1",
+ "version": "1.22.1",
"dependencies": {
"@blueprintjs/core": "^3.22.3",
"@mapbox/geojson-extent": "^1.0.0",
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix
index 7f0127c28f..d6d97b8e34 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix
@@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "dino";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "dino";
repo = "dino";
rev = "v${version}";
- sha256 = "11m38syqzb1z92wmdaf45gryl6gjxwbcnk32j4p984ipqj2vdzd8";
+ sha256 = "sha256-uYP3D2uyvfRP91fq/1jKOaKgp/+How0SUwmxSrLLH4c=";
};
nativeBuildInputs = [
@@ -81,7 +81,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Modern Jabber/XMPP Client using GTK/Vala";
homepage = "https://github.com/dino/dino";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ mic92 qyliss ];
};
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/discord/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/discord/default.nix
index ab17046812..b499f01d88 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -1,5 +1,4 @@
{ branch ? "stable", pkgs }:
-# Generated by ./update-discord.sh
let
inherit (pkgs) callPackage fetchurl;
in {
@@ -7,30 +6,30 @@ in {
pname = "discord";
binaryName = "Discord";
desktopName = "Discord";
- version = "0.0.15";
+ version = "0.0.16";
src = fetchurl {
url = "https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz";
- sha256 = "0pn2qczim79hqk2limgh88fsn93sa8wvana74mpdk5n6x5afkvdd";
+ sha256 = "UTVKjs/i7C/m8141bXBsakQRFd/c//EmqqhKhkr1OOk=";
};
};
ptb = callPackage ./base.nix rec {
pname = "discord-ptb";
binaryName = "DiscordPTB";
desktopName = "Discord PTB";
- version = "0.0.25";
+ version = "0.0.26";
src = fetchurl {
url = "https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz";
- sha256 = "082ygmsycicddpkv5s03vw3rjkrk4lgprq29z8b1hdjifvw93b21";
+ sha256 = "1rlj76yhxjwwfmdln3azjr69hvfx1bjqdg9jhdn4fp6mlirkrcq4";
};
};
canary = callPackage ./base.nix rec {
pname = "discord-canary";
binaryName = "DiscordCanary";
desktopName = "Discord Canary";
- version = "0.0.130";
+ version = "0.0.131";
src = fetchurl {
url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
- sha256 = "sha256-UamSiwjR68Pfm3uyHaI871VaGwIKJ5DShl8uE3rvX+U=";
+ sha256 = "087rzyivk0grhc73v7ldxxghks0n16ifrvpmk95vzaw99l9xv0v5";
};
};
}.${branch}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/whatsapp-for-linux/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/whatsapp-for-linux/default.nix
index 298a224097..4e61f39cac 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/whatsapp-for-linux/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/whatsapp-for-linux/default.nix
@@ -8,6 +8,7 @@
, libappindicator-gtk3
, gst_all_1
, pcre
+, wrapGAppsHook
}:
stdenv.mkDerivation rec {
@@ -24,6 +25,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
pkg-config
+ wrapGAppsHook
];
buildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index 5395946125..03a34a69a7 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -28,11 +28,11 @@
}:
let
- version = "5.7.31792.0820";
+ version = "5.8.0.16";
srcs = {
x86_64-linux = fetchurl {
url = "https://zoom.us/client/${version}/zoom_x86_64.pkg.tar.xz";
- sha256 = "16p8wn67hb6p9rn684bbpwz8w5knyqw9rv2nnw6cwg949qjv43lm";
+ sha256 = "1axnh81bf3ab5gzxxqm172wpqlpfbj9a2h3cry3kyxzmrihzbwdm";
};
};
diff --git a/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix b/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
index d8f53f4b25..299ba0765c 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
@@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
pname = "msmtp";
- version = "1.8.15";
+ version = "1.8.16";
src = fetchurl {
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
- sha256 = "sha256-ImXcY56/Lt8waf/+CjvXZ0n4tY9AAdXN6uGYc5SQmc4=";
+ sha256 = "1n271yr83grpki9szdirnk6wb5rcc319f0gmfabyw3fzyf4msjy0";
};
patches = [
diff --git a/third_party/nixpkgs/pkgs/applications/networking/sync/rclone/default.nix b/third_party/nixpkgs/pkgs/applications/networking/sync/rclone/default.nix
index 6e19fb60f8..90bd951468 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/sync/rclone/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/sync/rclone/default.nix
@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "rclone";
- version = "1.56.0";
+ version = "1.56.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "03fqwsbpwb8vmgxg6knkp8f4xlvgg88n2c7inwjg8x91c7c77i0b";
+ sha256 = "sha256-2UIIJMa5Wlr4rvBRXvE9kwh798x8jVa63hVLZ51Ltp0=";
};
- vendorSha256 = "1gryisn63f6ss889s162ncvlsaznwgvgxdwk2pn5c5zw8dkmjdmi";
+ vendorSha256 = "sha256-sTZZZ0P8F1bsFZO3/vbj9itNN7PCBJ0Q0tq4YayOPr8=";
subPackages = [ "." ];
diff --git a/third_party/nixpkgs/pkgs/applications/radio/kappanhang/default.nix b/third_party/nixpkgs/pkgs/applications/radio/kappanhang/default.nix
new file mode 100644
index 0000000000..a236de8d94
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/radio/kappanhang/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildGoModule, fetchFromGitHub, pkg-config, pulseaudio }:
+
+buildGoModule rec {
+ pname = "kappanhang";
+ version = "1.3";
+
+ src = fetchFromGitHub {
+ owner = "nonoo";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1ycy8avq5s7zspfi0d9klqcwwkpmcaz742cigd7pmcnbbhspcicp";
+ };
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ pulseaudio ];
+
+ vendorSha256 = "1srjngcis42wfskwfqxxj101y9xyzrans1smy53bh1c9zm856xha";
+
+ meta = with lib; {
+ homepage = "https://github.com/nonoo/kappanhang";
+ description = "Remote control for Icom radio transceivers";
+ license = licenses.mit;
+ maintainers = with maintainers; [ mvs ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/science/astronomy/kstars/default.nix b/third_party/nixpkgs/pkgs/applications/science/astronomy/kstars/default.nix
index cf3ea143ce..c7e76b6ad9 100644
--- a/third_party/nixpkgs/pkgs/applications/science/astronomy/kstars/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/astronomy/kstars/default.nix
@@ -14,11 +14,11 @@
mkDerivation rec {
pname = "kstars";
- version = "3.5.4";
+ version = "3.5.5";
src = fetchurl {
url = "mirror://kde/stable/kstars/kstars-${version}.tar.xz";
- sha256 = "sha256-JCdSYcogvoUmu+vB/vye+6ZMIJqVoScAKreh89dxoDU=";
+ sha256 = "sha256-cD31YFBnKvEPyBQils6qJxNKagDoIi8/Znfxj/Gsa0M=";
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
@@ -33,11 +33,6 @@ mkDerivation rec {
cfitsio indi-full xplanet libnova libraw gsl wcslib stellarsolver
];
- # See https://bugs.kde.org/show_bug.cgi?id=439541
- preConfigure = ''
- rm po/de/docs/kstars/index.docbook
- '';
-
cmakeFlags = [
"-DINDI_PREFIX=${indi-full}"
"-DXPLANET_PREFIX=${xplanet}"
diff --git a/third_party/nixpkgs/pkgs/applications/science/biology/blast/default.nix b/third_party/nixpkgs/pkgs/applications/science/biology/blast/default.nix
index 877b5b7d34..15e1b3eb98 100644
--- a/third_party/nixpkgs/pkgs/applications/science/biology/blast/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/biology/blast/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "blast";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchurl {
url = "https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${version}/ncbi-blast-${version}+-src.tar.gz";
- sha256 = "0m0r9vkw631ky1za1wilsfk9k9spwqh22nkrb9a57rbwmrc1i3nq";
+ sha256 = "122bf45cyj3s3zv2lw1y1rhz7g22v0va560ai30xdjl8sk4wk8zx";
};
sourceRoot = "ncbi-blast-${version}+-src/c++";
diff --git a/third_party/nixpkgs/pkgs/applications/science/biology/mosdepth/default.nix b/third_party/nixpkgs/pkgs/applications/science/biology/mosdepth/default.nix
index 715f2ea313..b6cc5e4061 100644
--- a/third_party/nixpkgs/pkgs/applications/science/biology/mosdepth/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/biology/mosdepth/default.nix
@@ -1,23 +1,9 @@
-{lib, stdenv, fetchFromGitHub, nim, htslib, pcre}:
+{lib, nimPackages, fetchFromGitHub, pcre}:
-let
- hts-nim = fetchFromGitHub {
- owner = "brentp";
- repo = "hts-nim";
- rev = "v0.3.4";
- sha256 = "0670phk1bq3l9j2zaa8i5wcpc5dyfrc0l2a6c21g0l2mmdczffa7";
- };
-
- docopt = fetchFromGitHub {
- owner = "docopt";
- repo = "docopt.nim";
- rev = "v0.6.7";
- sha256 = "1ga7ckg21fzwwvh26jp2phn2h3pvkn8g8sm13dxif33rp471bv37";
- };
-
-in stdenv.mkDerivation rec {
+nimPackages.buildNimPackage rec {
pname = "mosdepth";
version = "0.3.2";
+ nimBinOnly = true;
src = fetchFromGitHub {
owner = "brentp";
@@ -26,15 +12,7 @@ in stdenv.mkDerivation rec {
sha256 = "sha256-uui4yC7ok+pvbXVKfBVsAarH40fnH4fnP8P4uzOqztQ=";
};
- nativeBuildInputs = [ nim ];
- buildInputs = [ htslib pcre ];
-
- buildPhase = ''
- HOME=$TMPDIR
- nim -p:${hts-nim}/src -p:${docopt}/src c --nilseqs:on -d:release mosdepth.nim
- '';
-
- installPhase = "install -Dt $out/bin mosdepth";
+ buildInputs = with nimPackages; [ docopt hts-nim pcre ];
meta = with lib; {
description = "fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing";
diff --git a/third_party/nixpkgs/pkgs/applications/science/logic/coq/default.nix b/third_party/nixpkgs/pkgs/applications/science/logic/coq/default.nix
index cd19b9a944..e595bf47c6 100644
--- a/third_party/nixpkgs/pkgs/applications/science/logic/coq/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/logic/coq/default.nix
@@ -9,7 +9,7 @@
, customOCamlPackages ? null
, ocamlPackages_4_05, ocamlPackages_4_09, ocamlPackages_4_10, ncurses
, buildIde ? true
-, glib, gnome, wrapGAppsHook
+, glib, gnome, wrapGAppsHook, makeDesktopItem, copyDesktopItems
, csdp ? null
, version, coq-version ? null,
}@args:
@@ -124,7 +124,9 @@ self = stdenv.mkDerivation {
'';
};
- nativeBuildInputs = [ pkg-config ] ++ optional (!versionAtLeast "8.6") gnumake42;
+ nativeBuildInputs = [ pkg-config ]
+ ++ optional buildIde copyDesktopItems
+ ++ optional (!versionAtLeast "8.6") gnumake42;
buildInputs = [ ncurses ] ++ ocamlBuildInputs
++ optionals buildIde
(if versionAtLeast "8.10"
@@ -166,12 +168,24 @@ self = stdenv.mkDerivation {
createFindlibDestdir = true;
+ desktopItems = optional buildIde (makeDesktopItem {
+ name = "coqide";
+ exec = "coqide";
+ icon = "coq";
+ desktopName = "CoqIDE";
+ comment = "Graphical interface for the Coq proof assistant";
+ categories = "Development;Science;Math;IDE;GTK";
+ });
+
postInstall = ''
cp bin/votour $out/bin/
ln -s $out/lib/coq $OCAMLFIND_DESTDIR/coq
+ '' + optionalString buildIde ''
+ mkdir -p "$out/share/pixmaps"
+ ln -s "$out/share/coq/coq.png" "$out/share/pixmaps/"
'';
- meta = with lib; {
+ meta = {
description = "Coq proof assistant";
longDescription = ''
Coq is a formal proof management system. It provides a formal language
diff --git a/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/default.nix b/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/default.nix
index 47b826078f..a7010966c2 100644
--- a/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/default.nix
@@ -8,6 +8,7 @@
# extra support
, pythonSupport ? true, pythonPackages ? null
, opencvSupport ? false, opencv ? null
+, withSvmLight ? false
}:
assert pythonSupport -> pythonPackages != null;
@@ -60,7 +61,7 @@ stdenv.mkDerivation rec {
url = "https://github.com/awild82/shogun/commit/365ce4c4c700736d2eec8ba6c975327a5ac2cd9b.patch";
sha256 = "158hqv4xzw648pmjbwrhxjp7qcppqa7kvriif87gn3zdn711c49s";
})
- ];
+ ] ++ lib.optional (!withSvmLight) ./svmlight-scrubber.patch;
CCACHE_DISABLE="1";
CCACHE_DIR=".ccache";
@@ -86,12 +87,29 @@ stdenv.mkDerivation rec {
(flag "CMAKE_VERBOSE_MAKEFILE:BOOL" doCheck)
(flag "PythonModular" pythonSupport)
(flag "OpenCV" opencvSupport)
+ (flag "USE_SVMLIGHT" withSvmLight)
];
+ postPatch = ''
+ # Fix preprocessing SVMlight code
+ sed -i \
+ -e 's@#ifdef SVMLIGHT@#ifdef USE_SVMLIGHT@' \
+ -e '/^#ifdef USE_SVMLIGHT/,/^#endif/ s@#endif@#endif //USE_SVMLIGHT@' \
+ src/shogun/kernel/string/CommUlongStringKernel.cpp
+ sed -i -e 's/#if USE_SVMLIGHT/#ifdef USE_SVMLIGHT/' src/interfaces/swig/Machine.i
+ sed -i -e 's@// USE_SVMLIGHT@//USE_SVMLIGHT@' src/interfaces/swig/Transfer.i
+ sed -i -e 's@/\* USE_SVMLIGHT \*/@//USE_SVMLIGHT@' src/interfaces/swig/Transfer_includes.i
+ '' + lib.optionalString (!withSvmLight) ''
+ # Run SVMlight scrubber
+ patchShebangs scripts/light-scrubber.sh
+ echo "removing SVMlight code"
+ ./scripts/light-scrubber.sh
+ '';
+
meta = with lib; {
description = "A toolbox which offers a wide range of efficient and unified machine learning methods";
homepage = "http://shogun-toolbox.org/";
- license = licenses.gpl3;
+ license = if withSvmLight then licenses.unfree else licenses.gpl3Plus;
maintainers = with maintainers; [ edwtjo ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/svmlight-scrubber.patch b/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/svmlight-scrubber.patch
new file mode 100644
index 0000000000..2958e6ce5d
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/science/machine-learning/shogun/svmlight-scrubber.patch
@@ -0,0 +1,76 @@
+From: Sebastián Mancilla
+Subject: Update SVMlight scrubber script
+
+This requires previously fixing a few wrong preprocessor directives that
+are supposed to fence code using SVMlight.
+
+- The script was too eager and removing *.light files in SVMlight format
+ that are used by other tests. The code reading those files doesn't use
+ any SVMlight code so it should be fine to keep it and run the tests.
+
+- The Python test *domainadaptationsvm.py was not removed because of
+ wrong globbing.
+
+- Remove a couple of examples using SVMlight that were missed.
+
+- The script is actually modifying (and breaking) itself because the
+ grep for the USE_SVMLIGHT macro is too eager again and matches itself
+ (and the version stored in upstream's Debian package control tarball
+ is broken because of it). Just fix it by grepping for preprocessor
+ directives only.
+
+- No need to fix the Transfer_includes.i file in the script with a final
+ %} when its preprocessor directives have been fixed.
+
+- The Swig files were moved to a new directory at some point but the
+ script was not updated accordingly.
+---
+ scripts/light-scrubber.sh | 16 ++++++----------
+ 1 file changed, 6 insertions(+), 10 deletions(-)
+
+diff a/scripts/light-scrubber.sh b/scripts/light-scrubber.sh
+--- a/scripts/light-scrubber.sh
++++ b/scripts/light-scrubber.sh
+@@ -26,14 +26,16 @@
+ # You should have received a copy of the GNU General Public License
+ # along with this program. If not, see .
+ #
+-rm -rf examples/*/*/{*light*,*_domainadaptationsvm_*} \
++rm -rf examples/*/*/{*light*.*,*domainadaptationsvm*} \
+ examples/undocumented/matlab_and_octave/tests/*light* \
++ examples/undocumented/python/serialization_string_kernels.py \
++ examples/undocumented/python/mkl_binclass.py \
+ src/shogun/classifier/svm/SVMLight.* \
+ src/shogun/classifier/svm/SVMLightOneClass.* \
+ src/shogun/regression/svr/SVRLight.* \
+ doc/md/LICENSE_SVMlight*
+
+-for _file in `grep -rl USE_SVMLIGHT .`
++grep -rl '^#ifdef USE_SVMLIGHT' . | while read -r _file
+ do
+ sed -i.orig -e \
+ '/\#ifdef USE_SVMLIGHT/,/\#endif \/\/USE_SVMLIGHT/c \\' ${_file} && \
+@@ -41,7 +43,7 @@ do
+ rm -rf ${_file}.orig
+ done
+
+-for _file in `find . -depth -name 'CMakeLists.txt'`
++find . -depth -name 'CMakeLists.txt' | while read -r _file
+ do
+ sed -i.orig -e 's!.*_sv[mr]light_.*!!g' ${_file} && \
+ touch -r ${_file}.orig ${_file} && \
+@@ -56,13 +58,7 @@ do
+ rm -rf ${_file}.orig
+ done
+
+-_file="src/interfaces/modular/Transfer_includes.i" && \
+-cp -a ${_file} ${_file}.orig && \
+-echo '%}' >> ${_file} && \
+-touch -r ${_file}.orig ${_file} && \
+-rm -rf ${_file}.orig
+-
+-_file="src/interfaces/modular/Machine.i" && \
++_file="src/interfaces/swig/Machine.i" && \
+ sed -i.orig -e '/.*CSVRLight.*/d' ${_file} && \
+ touch -r ${_file}.orig ${_file} && \
+ rm -rf ${_file}.orig
diff --git a/third_party/nixpkgs/pkgs/applications/terminal-emulators/nimmm/default.nix b/third_party/nixpkgs/pkgs/applications/terminal-emulators/nimmm/default.nix
index bb09fa776b..0e0d75ab80 100644
--- a/third_party/nixpkgs/pkgs/applications/terminal-emulators/nimmm/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/terminal-emulators/nimmm/default.nix
@@ -1,30 +1,9 @@
-{ lib, stdenv, fetchFromGitHub, nim, termbox, pcre }:
+{ lib, nimPackages, fetchFromGitHub, nim, termbox, pcre }:
-let
- noise = fetchFromGitHub {
- owner = "jangko";
- repo = "nim-noise";
- rev = "v0.1.14";
- sha256 = "0wndiphznfyb1pac6zysi3bqljwlfwj6ziarcwnpf00sw2zni449";
- };
-
- nimbox = fetchFromGitHub {
- owner = "dom96";
- repo = "nimbox";
- rev = "6a56e76c01481176f16ae29b7d7c526bd83f229b";
- sha256 = "15x1sdfxa1xcqnr68705jfnlv83lm0xnp2z9iz3pgc4bz5vwn4x1";
- };
-
- lscolors = fetchFromGitHub {
- owner = "joachimschmidt557";
- repo = "nim-lscolors";
- rev = "v0.3.3";
- sha256 = "0526hqh46lcfsvymb67ldsc8xbfn24vicn3b8wrqnh6mag8wynf4";
- };
-
-in stdenv.mkDerivation rec {
+nimPackages.buildNimPackage rec {
pname = "nimmm";
version = "0.2.0";
+ nimBinOnly = true;
src = fetchFromGitHub {
owner = "joachimschmidt557";
@@ -33,17 +12,8 @@ in stdenv.mkDerivation rec {
sha256 = "168n61avphbxsxfq8qzcnlqx6wgvz5yrjvs14g25cg3k46hj4xqg";
};
- nativeBuildInputs = [ nim ];
- buildInputs = [ termbox pcre ];
-
- buildPhase = ''
- export HOME=$TMPDIR;
- nim -p:${noise} -p:${nimbox} -p:${lscolors}/src c -d:release src/nimmm.nim
- '';
-
- installPhase = ''
- install -Dt $out/bin src/nimmm
- '';
+ buildInputs = [ termbox pcre ]
+ ++ (with nimPackages; [ noise nimbox lscolors ]);
meta = with lib; {
description = "Terminal file manager written in nim";
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-machete/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-machete/default.nix
index d73ae5c960..fb5113dad0 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-machete/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-machete/default.nix
@@ -1,29 +1,36 @@
-{ lib, buildPythonApplication, fetchPypi
-, installShellFiles, pbr
-, flake8, mock, pycodestyle, pylint, tox
+{ lib
+, buildPythonApplication
+, fetchFromGitHub
+, installShellFiles
+, git
+, stestr
, nix-update-script
-, testVersion, git-machete
+, testVersion
+, git-machete
}:
buildPythonApplication rec {
pname = "git-machete";
version = "3.3.0";
- src = fetchPypi {
- inherit pname version;
- sha256 = "0mq6hmb3wvj0ash27h4zyl46l3fikpf0mv3ng330lcy6v7bhy5b8";
+ src = fetchFromGitHub {
+ owner = "virtuslab";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0sx45y1d1v6y66msjc1lw9jhjppgbxqj145kivmd7lr6ccw68kav";
};
- nativeBuildInputs = [ installShellFiles pbr ];
+ nativeBuildInputs = [ installShellFiles ];
- # TODO: Add missing check inputs (2019-11-22):
- # - stestr
- doCheck = false;
- checkInputs = [ flake8 mock pycodestyle pylint tox ];
+ checkInputs = [ git stestr ];
+
+ postCheck = ''
+ stestr run
+ '';
postInstall = ''
- installShellCompletion --bash --name git-machete completion/git-machete.completion.bash
- installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh
+ installShellCompletion --bash --name git-machete completion/git-machete.completion.bash
+ installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh
'';
passthru = {
@@ -42,7 +49,6 @@ buildPythonApplication rec {
homepage = "https://github.com/VirtusLab/git-machete";
description = "Git repository organizer and rebase/merge workflow automation tool";
license = licenses.mit;
- platforms = platforms.all;
- maintainers = [ maintainers.blitz ];
+ maintainers = with maintainers; [ blitz ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-repo/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-repo/default.nix
index 0cf131508b..038df7772d 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-repo/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-repo/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "git-repo";
- version = "2.16.7";
+ version = "2.16.8";
src = fetchFromGitHub {
owner = "android";
repo = "tools_repo";
rev = "v${version}";
- sha256 = "sha256-AJD+WV8JilclcMXc4RFv2xY9QZNUJtYX1dsb1q85qZ0=";
+ sha256 = "sha256-5EIuaGc93ll9YXLlleZ2HhT0maa+xtozk0LtneYYcDM=";
};
# Fix 'NameError: name 'ssl' is not defined'
diff --git a/third_party/nixpkgs/pkgs/applications/virtualization/conmon/default.nix b/third_party/nixpkgs/pkgs/applications/virtualization/conmon/default.nix
index b560b02d43..fbbc59359d 100644
--- a/third_party/nixpkgs/pkgs/applications/virtualization/conmon/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/virtualization/conmon/default.nix
@@ -4,23 +4,24 @@
, pkg-config
, glib
, glibc
+, libseccomp
, systemd
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "conmon";
- version = "2.0.29";
+ version = "2.0.30";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Idt+bN9Lf6GEjdGC/sM9Ln1ohXhUy78CrmJxSDA2Y0o=";
+ sha256 = "sha256-NZMuHhQyo+95QTJcR79cyZr86ytkbo4nmaqTF0Bdt+s=";
};
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ glib systemd ]
+ buildInputs = [ glib libseccomp systemd ]
++ lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
# manpage requires building the vendored go-md2man
diff --git a/third_party/nixpkgs/pkgs/data/icons/luna-icons/default.nix b/third_party/nixpkgs/pkgs/data/icons/luna-icons/default.nix
index 3b5bc262c0..efdea602c3 100644
--- a/third_party/nixpkgs/pkgs/data/icons/luna-icons/default.nix
+++ b/third_party/nixpkgs/pkgs/data/icons/luna-icons/default.nix
@@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "luna-icons";
- version = "1.3";
+ version = "1.4";
src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
rev = version;
- sha256 = "0pww8882qvlnamxzvn7jxyi0h7lffrwld7qqs1q08h73xc3p18nv";
+ sha256 = "sha256-qYFyZT1mLNHBRrX/NX2pmt9P5n8urEK/msQMctSckzE=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/data/themes/flat-remix-gnome/default.nix b/third_party/nixpkgs/pkgs/data/themes/flat-remix-gnome/default.nix
index 28bfb12f4c..8e273afc76 100644
--- a/third_party/nixpkgs/pkgs/data/themes/flat-remix-gnome/default.nix
+++ b/third_party/nixpkgs/pkgs/data/themes/flat-remix-gnome/default.nix
@@ -6,20 +6,20 @@
stdenv.mkDerivation rec {
pname = "flat-remix-gnome";
- version = "20210716";
+ version = "20210921";
src = fetchFromGitHub {
owner = "daniruiz";
repo = pname;
rev = version;
- hash = "sha256-UAWi4MyqtuSzp5TEkVLYJF7+2tzH/aT60ObNOimCJ4o=";
+ hash = "sha256-HnbKqdDAre2jhZH1Osf3jigz/dQpx7k0fPsVaZz7xC8=";
};
nativeBuildInputs = [ glib ];
makeFlags = [ "PREFIX=$(out)" ];
preInstall = ''
# make install will back up this file, it will fail if the file doesn't exist.
- # https://github.com/daniruiz/flat-remix-gnome/blob/20210716/Makefile#L53
+ # https://github.com/daniruiz/flat-remix-gnome/blob/20210921/Makefile#L53
mkdir -p $out/share/gnome-shell/
touch $out/share/gnome-shell/gnome-shell-theme.gresource
'';
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
index 3f25e303dc..6f673d6322 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
@@ -48,7 +48,6 @@ stdenv.mkDerivation rec {
patches = lib.optionals withPantheon [
# https://github.com/elementary/browser
- # FIXME: Update the patches when https://github.com/elementary/browser/pull/41 merged
./dark-style.patch
./navigation-buttons.patch
];
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/atril/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/atril/default.nix
index 81c5bdcd78..c88e3a72ea 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/atril/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/atril/default.nix
@@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix
index 27bf56cf51..0d347b39f1 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/caja-dropbox/default.nix
@@ -50,6 +50,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/caja-dropbox";
license = with licenses; [ gpl3Plus cc-by-nd-30 ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/caja-extensions/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/caja-extensions/default.nix
index 0b21f2721d..4cec397748 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/caja-extensions/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/caja-extensions/default.nix
@@ -40,6 +40,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/caja/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/caja/default.nix
index 65d6e1a21e..ce9861f176 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/caja/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/caja/default.nix
@@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/engrampa/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/engrampa/default.nix
index b9627dae02..7fde8fb195 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/engrampa/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/engrampa/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/eom/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/eom/default.nix
index 7947247bf1..9862c3059d 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/eom/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/eom/default.nix
@@ -34,11 +34,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = mateUpdateScript { inherit pname version; };
- meta = {
+ meta = with lib; {
description = "An image viewing and cataloging program for the MATE desktop";
homepage = "https://mate-desktop.org";
- license = lib.licenses.gpl2Plus;
- platforms = lib.platforms.unix;
- maintainers = [ lib.maintainers.romildo ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.unix;
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/libmatekbd/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/libmatekbd/default.nix
index 967e223f2b..d7969f55ef 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/libmatekbd/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/libmatekbd/default.nix
@@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/libmatekbd";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/libmatemixer/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/libmatemixer/default.nix
index 2824c958de..2ef34f2ea6 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/libmatemixer/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/libmatemixer/default.nix
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/libmatemixer";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/libmateweather/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/libmateweather/default.nix
index b325de3b3c..3d99b0ccd8 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/libmateweather/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/libmateweather/default.nix
@@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/libmateweather";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/marco/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/marco/default.nix
index e7e6547284..597538a9f8 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/marco/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/marco/default.nix
@@ -40,6 +40,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/marco";
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-applets/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-applets/default.nix
index f06db0adc1..30b51e9ed5 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-applets/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-applets/default.nix
@@ -49,6 +49,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.linux;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix
index 3fa6f37b2a..9384d49e2a 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix
@@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus cc-by-sa-40 ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-calc/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-calc/default.nix
index 4344e97075..b26347f733 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-calc/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-calc/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = [ licenses.gpl2Plus ];
platforms = platforms.linux;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-common/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-common/default.nix
index 159fb75426..c3d2910e86 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-common/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-common/default.nix
@@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = mateUpdateScript { inherit pname version; };
- meta = {
+ meta = with lib; {
description = "Common files for development of MATE packages";
homepage = "https://mate-desktop.org";
- license = lib.licenses.gpl3Plus;
- platforms = lib.platforms.unix;
- maintainers = [ lib.maintainers.romildo ];
+ license = licenses.gpl3Plus;
+ platforms = platforms.unix;
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix
index 9c1186a692..e95f3696e2 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix
@@ -57,6 +57,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-control-center";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-desktop/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-desktop/default.nix
index 19ad26656f..e4928ac748 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-desktop/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-desktop/default.nix
@@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
index 7dc4423fb6..69f780f608 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
@@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme/default.nix
index 0e4fc7f0c3..001b6e4187 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-icon-theme/default.nix
@@ -29,11 +29,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = mateUpdateScript { inherit pname version; };
- meta = {
+ meta = with lib; {
description = "Icon themes from MATE";
homepage = "https://mate-desktop.org";
- license = lib.licenses.lgpl3Plus;
- platforms = lib.platforms.linux;
- maintainers = [ lib.maintainers.romildo ];
+ license = licenses.lgpl3Plus;
+ platforms = platforms.linux;
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-indicator-applet/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-indicator-applet/default.nix
index 3cf2ac9b4c..08985608cd 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-indicator-applet/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-indicator-applet/default.nix
@@ -42,6 +42,6 @@ stdenv.mkDerivation rec {
'';
license = with licenses; [ gpl3Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-media/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-media/default.nix
index c4e9a9d5b0..839e1dc203 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-media/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-media/default.nix
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo maintainers.chpatrick ];
+ maintainers = teams.mate.members ++ (with maintainers; [ chpatrick ]);
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-menus/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-menus/default.nix
index 33f4374465..09c251f408 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-menus/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-menus/default.nix
@@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-menus";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-netbook/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-netbook/default.nix
index f4908906ff..f9c4737bab 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-netbook/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-netbook/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl3Only lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-notification-daemon/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-notification-daemon/default.nix
index 8bc730032f..a66f8de434 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-notification-daemon/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-notification-daemon/default.nix
@@ -37,6 +37,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-notification-daemon";
license = with licenses; [ gpl2Plus gpl3Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-panel/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-panel/default.nix
index d0e54bab58..8da5f89392 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-panel/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-panel/default.nix
@@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-panel";
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-polkit/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-polkit/default.nix
index 8ec813ce83..9b1d77d782 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-polkit/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-polkit/default.nix
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-power-manager/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-power-manager/default.nix
index c7b6690d2e..72f9ba93a4 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-power-manager/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-power-manager/default.nix
@@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus fdl11Plus ];
platforms = platforms.unix;
- maintainers = with maintainers; [ romildo chpatrick ];
+ maintainers = teams.mate.members ++ (with maintainers; [ chpatrick ]);
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix
index 767d0e9232..f33c47cbf0 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix
@@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-sensors-applet/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-sensors-applet/default.nix
index 7e77f89805..6faceee002 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-sensors-applet/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-sensors-applet/default.nix
@@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
description = "MATE panel applet for hardware sensors";
license = with licenses; [ gpl2Plus ];
platforms = platforms.linux;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-session-manager/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-session-manager/default.nix
index 152ecf572d..1c51e2f6ae 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-session-manager/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-session-manager/default.nix
@@ -55,6 +55,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-session-manager";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-settings-daemon/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-settings-daemon/default.nix
index 3ece77dc08..ff46b339b2 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-settings-daemon/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-settings-daemon/default.nix
@@ -45,6 +45,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-settings-daemon";
license = with licenses; [ gpl2Plus gpl3Plus lgpl2Plus mit ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-system-monitor/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-system-monitor/default.nix
index d94695ac80..9b4a510b72 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-system-monitor/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-system-monitor/default.nix
@@ -37,6 +37,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix
index ed7ba49c18..19fa5697f9 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = licenses.gpl3Plus;
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-themes/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-themes/default.nix
index 6a1be82c8a..21c7b23537 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-themes/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-themes/default.nix
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ lgpl21Plus lgpl3Only gpl3Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
index 830cf092f8..5aebd6aef4 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
@@ -86,6 +86,6 @@ python3Packages.buildPythonApplication rec {
changelog = "https://github.com/ubuntu-mate/mate-tweak/releases/tag/${version}";
license = [ licenses.gpl2Plus ];
platforms = platforms.linux;
- maintainers = with maintainers; [ luc65r ];
+ maintainers = teams.mate.members ++ (with maintainers; [ luc65r ]);
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix
index 8a5aadb936..ecbe2e667a 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix
@@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus fdl12 ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-user-share/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-user-share/default.nix
index 9907552f3c..3e0062c7a7 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-user-share/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-user-share/default.nix
@@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/mate-user-share";
license = with licenses; [ gpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mate-utils/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mate-utils/default.nix
index 6801368dc4..48e662f54f 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mate-utils/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mate-utils/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/mozo/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/mozo/default.nix
index 037989083b..3a02b03ceb 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/mozo/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/mozo/default.nix
@@ -27,6 +27,6 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/mate-desktop/mozo";
license = with licenses; [ lgpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/pluma/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/pluma/default.nix
index 9eb0f9283b..53b0251229 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/pluma/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/pluma/default.nix
@@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/mate/python-caja/default.nix b/third_party/nixpkgs/pkgs/desktops/mate/python-caja/default.nix
index ccee7b0468..452a7943d6 100644
--- a/third_party/nixpkgs/pkgs/desktops/mate/python-caja/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/mate/python-caja/default.nix
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mate-desktop/python-caja";
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
+ maintainers = teams.mate.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
index 6afd440183..549493966c 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
@@ -28,7 +28,7 @@
stdenv.mkDerivation rec {
pname = "elementary-calendar";
- version = "6.0.1";
+ version = "6.0.2";
repoName = "calendar";
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
owner = "elementary";
repo = repoName;
rev = version;
- sha256 = "1caxc42jrys5s4x9qai5wdpcwpkmyvnqx9z75974g7swiz1lrzq6";
+ sha256 = "16xp8gfgpyz9xpjsxm6jlk4skkknj65g0q4x0qvw9sg9f1p6a514";
};
passthru = {
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/sideload/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/sideload/default.nix
index fad1186578..df152afc1a 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/sideload/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/sideload/default.nix
@@ -23,13 +23,13 @@
stdenv.mkDerivation rec {
pname = "sideload";
- version = "6.0.1";
+ version = "6.0.2";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
- sha256 = "0mwcaayzcm5pjcwdd61can93y66jiz4wyz9wr8j5fbns5hbk3z5m";
+ sha256 = "0abpcawmmv5mgzk2i5n9rlairmjr2v9rg9b8c9g7xa085s496bi9";
};
passthru = {
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
index d8023a1bf3..26476d4fe0 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
@@ -21,22 +21,16 @@
stdenv.mkDerivation rec {
pname = "switchboard-plug-keyboard";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
- sha256 = "1nsy9fh6qj5kyg22bs1hm6kpsvarwc63q0hl0nbwymvnhfjf6swp";
+ sha256 = "1p1l7dx5v1zzz89hhhkm6n3ls7ig4cf2prh1099f1c054qiy9b0y";
};
patches = [
- # Upstream code not respecting our localedir
- # https://github.com/elementary/switchboard-plug-keyboard/pull/377
- (fetchpatch {
- url = "https://github.com/elementary/switchboard-plug-keyboard/commit/6d8bcadba05b4ee1115b891448b0de31bcba3749.patch";
- sha256 = "1bppxakj71r3cfy8sw19xbyngb7r6nyirc4g6pjf02cdidhw3v8l";
- })
./0001-Remove-Install-Unlisted-Engines-function.patch
(substituteAll {
src = ./fix-paths.patch;
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
index ca0319a549..dda4fa8a3a 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
@@ -21,13 +21,13 @@
stdenv.mkDerivation rec {
pname = "switchboard-plug-mouse-touchpad";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
- sha256 = "19kiwrdpan8hr5r79y591591qjx7pm3x814xfkg9vi11ndbcrznr";
+ sha256 = "0nqgbpk1knvbj5xa078i0ka6lzqmaaa873gwj3mhjr5q2gzkw7y5";
};
passthru = {
@@ -60,12 +60,6 @@ stdenv.mkDerivation rec {
src = ./fix-paths.patch;
touchegg = touchegg;
})
- # Upstream code not respecting our localedir
- # https://github.com/elementary/switchboard-plug-mouse-touchpad/pull/185
- (fetchpatch {
- url = "https://github.com/elementary/switchboard-plug-mouse-touchpad/commit/a6f84dc08be5dc6f7535082bacfa24e2dff4ef67.patch";
- sha256 = "0fxl894dzw1f84n36mb9y7gshs69xcb0samvs2gsa0pcdlzfp3cy";
- })
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
index 86b71ab499..f68898239a 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
@@ -32,7 +32,7 @@
stdenv.mkDerivation rec {
pname = "elementary-greeter";
- version = "6.0.0";
+ version = "6.0.1";
repoName = "greeter";
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
owner = "elementary";
repo = repoName;
rev = version;
- sha256 = "1ny1003bbpdscc4kr2d94zc5vxm30y64dpj3fpd5zz2p2g0cq2h9";
+ sha256 = "1f606ds56sp1c58q8dblfpaq9pwwkqw9i4gkwksw45m2xkwlbflq";
};
passthru = {
@@ -89,12 +89,6 @@ stdenv.mkDerivation rec {
];
patches = [
- # Upstream code not respecting our localedir
- # https://github.com/elementary/greeter/pull/545
- (fetchpatch {
- url = "https://github.com/elementary/greeter/commit/d1373a7db827bc753bfcd70d0c8f25460ea9f1de.patch";
- sha256 = "0s8l7ycd2s307d3dh1p4vdk33dbzjzqwxs6msyb9w0ycfyxlwdvp";
- })
./sysconfdir-install.patch
# Needed until https://github.com/elementary/greeter/issues/360 is fixed
(substituteAll {
diff --git a/third_party/nixpkgs/pkgs/development/compilers/gleam/default.nix b/third_party/nixpkgs/pkgs/development/compilers/gleam/default.nix
index af8758997e..d97ab82b39 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/gleam/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/gleam/default.nix
@@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "gleam";
- version = "0.16.1";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "gleam-lang";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-JivBYBhXTti285pO4HNhalj0WeR/Hly3IjxpA+qauWY=";
+ sha256 = "sha256-HFcJUOfWMgMm+Sc3nAXW6FwXkiY34826QxMZ8rWPmnk=";
};
nativeBuildInputs = [ pkg-config ];
@@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ openssl ] ++
lib.optionals stdenv.isDarwin [ Security libiconv ];
- cargoSha256 = "sha256-SemHpvZ0lMqyMcgHPnmqI4C1krAJMM0hKCNNVMrulfI=";
+ cargoSha256 = "sha256-zjb+ERikMwC+ulfx6EW+FXLweZACwKNw4HEIc9dH3+4=";
meta = with lib; {
description = "A statically typed language for the Erlang VM";
diff --git a/third_party/nixpkgs/pkgs/development/compilers/idris2/default.nix b/third_party/nixpkgs/pkgs/development/compilers/idris2/default.nix
index 47fed06014..a8ac6431a4 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/idris2/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/idris2/default.nix
@@ -13,13 +13,13 @@
# Uses scheme to bootstrap the build of idris2
stdenv.mkDerivation rec {
pname = "idris2";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchFromGitHub {
owner = "idris-lang";
repo = "Idris2";
rev = "v${version}";
- sha256 = "sha256-JRI5/dEy9GT8SIj3X+UcJ0SiTQ20pqevWeTNX6e+Nfw=";
+ sha256 = "sha256-6CTn8o5geWSesXO7vTrrV/2EOQ3f+nPQ2M5cem13ZSY=";
};
# We do not add any propagatedNativeBuildInputs because we do not want the
diff --git a/third_party/nixpkgs/pkgs/development/compilers/kotlin/default.nix b/third_party/nixpkgs/pkgs/development/compilers/kotlin/default.nix
index a1de91f2d3..9f2efdb409 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/kotlin/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/kotlin/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "kotlin";
- version = "1.5.30";
+ version = "1.5.31";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
- sha256 = "sha256-Je69ubsuFl5LqO+/j/lDxF1Pw52//CwcqgWejdgTZ18=";
+ sha256 = "sha256-ZhERKG8+WsBqrzqUA9hp2alqF2tisUGBS+YmpHJJ/p4=";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/third_party/nixpkgs/pkgs/development/compilers/llvm/13/lld/default.nix b/third_party/nixpkgs/pkgs/development/compilers/llvm/13/lld/default.nix
index 34ac265f4b..2b5e9e965d 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/llvm/13/lld/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/llvm/13/lld/default.nix
@@ -18,6 +18,14 @@ stdenv.mkDerivation rec {
./gnu-install-dirs.patch
];
+ # On Darwin the llvm-config is perhaps not working fine as the
+ # LLVM_MAIN_SRC_DIR is not getting set correctly, and the build fails as the
+ # include path is not correct.
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ substituteInPlace MachO/CMakeLists.txt --replace \
+ '(''${LLVM_MAIN_SRC_DIR}/' '(../'
+ '';
+
nativeBuildInputs = [ cmake ];
buildInputs = [ libllvm libxml2 ];
diff --git a/third_party/nixpkgs/pkgs/development/compilers/mlkit/default.nix b/third_party/nixpkgs/pkgs/development/compilers/mlkit/default.nix
index 77d2fe6cac..04e9e8a163 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/mlkit/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/mlkit/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "mlkit";
- version = "4.5.7";
+ version = "4.5.9";
src = fetchFromGitHub {
owner = "melsman";
repo = "mlkit";
rev = "v${version}";
- sha256 = "sha256-Wq+Os7nzRA5Pxz6Ba7DudcDQs3KA0eYVLy1nO/A16EE=";
+ sha256 = "sha256-b+iPuGB82a0r0zl49+RbalxR6OpFNXOxZgubzKE+2M4=";
};
nativeBuildInputs = [ autoreconfHook mlton ];
diff --git a/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix b/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
index 49e18097ab..7434347f2a 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
@@ -1,8 +1,9 @@
# https://nim-lang.github.io/Nim/packaging.html
# https://nim-lang.org/docs/nimc.html
-{ lib, buildPackages, stdenv, fetchurl, fetchgit, fetchFromGitHub, makeWrapper
-, openssl, pcre, readline, boehmgc, sqlite, nim-unwrapped }:
+{ lib, callPackage, buildPackages, stdenv, fetchurl, fetchgit, fetchFromGitHub
+, makeWrapper, openssl, pcre, readline, boehmgc, sqlite, nim-unwrapped
+, nimble-unwrapped }:
let
parseCpu = platform:
@@ -186,138 +187,141 @@ in {
nim' = buildPackages.nim-unwrapped;
nimble' = buildPackages.nimble-unwrapped;
inherit (stdenv) targetPlatform;
- in stdenv.mkDerivation {
- name = "${targetPlatform.config}-nim-wrapper-${nim'.version}";
- inherit (nim') version;
- preferLocalBuild = true;
- strictDeps = true;
+ self = stdenv.mkDerivation {
+ name = "${targetPlatform.config}-nim-wrapper-${nim'.version}";
+ inherit (nim') version;
+ preferLocalBuild = true;
+ strictDeps = true;
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = [ makeWrapper ];
- patches = [
- ./nim.cfg.patch
- # Remove configurations that clash with ours
- ];
+ patches = [
+ ./nim.cfg.patch
+ # Remove configurations that clash with ours
+ ];
- unpackPhase = ''
- runHook preUnpack
- tar xf ${nim'.src} nim-$version/config
- cd nim-$version
- runHook postUnpack
- '';
-
- dontConfigure = true;
-
- buildPhase =
- # Configure the Nim compiler to use $CC and $CXX as backends
- # The compiler is configured by two configuration files, each with
- # a different DSL. The order of evaluation matters and that order
- # is not documented, so duplicate the configuration across both files.
- ''
- runHook preBuild
- cat >> config/config.nims << WTF
-
- switch("os", "${nimTarget.os}")
- switch("cpu", "${nimTarget.cpu}")
- switch("define", "nixbuild")
-
- # Configure the compiler using the $CC set by Nix at build time
- import strutils
- let cc = getEnv"CC"
- if cc.contains("gcc"):
- switch("cc", "gcc")
- elif cc.contains("clang"):
- switch("cc", "clang")
- WTF
-
- mv config/nim.cfg config/nim.cfg.old
- cat > config/nim.cfg << WTF
- os = "${nimTarget.os}"
- cpu = "${nimTarget.cpu}"
- define:"nixbuild"
- WTF
-
- cat >> config/nim.cfg < config/nim.cfg.old
- rm config/nim.cfg.old
-
- cat >> config/nim.cfg << WTF
-
- clang.cpp.exe %= "\$CXX"
- clang.cpp.linkerexe %= "\$CXX"
- clang.exe %= "\$CC"
- clang.linkerexe %= "\$CC"
- gcc.cpp.exe %= "\$CXX"
- gcc.cpp.linkerexe %= "\$CXX"
- gcc.exe %= "\$CC"
- gcc.linkerexe %= "\$CC"
- WTF
-
- runHook postBuild
+ unpackPhase = ''
+ runHook preUnpack
+ tar xf ${nim'.src} nim-$version/config
+ cd nim-$version
+ runHook postUnpack
'';
- wrapperArgs = [
- "--prefix PATH : ${lib.makeBinPath [ buildPackages.gdb ]}:${
- placeholder "out"
- }/bin"
- # Used by nim-gdb
+ dontConfigure = true;
- "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ openssl pcre ]}"
- # These libraries may be referred to by the standard library.
- # This is broken for cross-compilation because the package
- # set will be shifted back by nativeBuildInputs.
+ buildPhase =
+ # Configure the Nim compiler to use $CC and $CXX as backends
+ # The compiler is configured by two configuration files, each with
+ # a different DSL. The order of evaluation matters and that order
+ # is not documented, so duplicate the configuration across both files.
+ ''
+ runHook preBuild
+ cat >> config/config.nims << WTF
- "--set NIM_CONFIG_PATH ${placeholder "out"}/etc/nim"
- # Use the custom configuration
+ switch("os", "${nimTarget.os}")
+ switch("cpu", "${nimTarget.cpu}")
+ switch("define", "nixbuild")
- ''--set NIX_HARDENING_ENABLE "''${NIX_HARDENING_ENABLE/fortify}"''
- # Fortify hardening appends -O2 to gcc flags which is unwanted for unoptimized nim builds.
- ];
+ # Configure the compiler using the $CC set by Nix at build time
+ import strutils
+ let cc = getEnv"CC"
+ if cc.contains("gcc"):
+ switch("cc", "gcc")
+ elif cc.contains("clang"):
+ switch("cc", "clang")
+ WTF
- installPhase = ''
- runHook preInstall
+ mv config/nim.cfg config/nim.cfg.old
+ cat > config/nim.cfg << WTF
+ os = "${nimTarget.os}"
+ cpu = "${nimTarget.cpu}"
+ define:"nixbuild"
+ WTF
- mkdir -p $out/bin $out/etc
+ cat >> config/nim.cfg < config/nim.cfg.old
+ rm config/nim.cfg.old
- cp -r config $out/etc/nim
+ cat >> config/nim.cfg << WTF
+
+ clang.cpp.exe %= "\$CXX"
+ clang.cpp.linkerexe %= "\$CXX"
+ clang.exe %= "\$CC"
+ clang.linkerexe %= "\$CC"
+ gcc.cpp.exe %= "\$CXX"
+ gcc.cpp.linkerexe %= "\$CXX"
+ gcc.exe %= "\$CC"
+ gcc.linkerexe %= "\$CC"
+ WTF
+
+ runHook postBuild
+ '';
+
+ wrapperArgs = [
+ "--prefix PATH : ${lib.makeBinPath [ buildPackages.gdb ]}:${
+ placeholder "out"
+ }/bin"
+ # Used by nim-gdb
+
+ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ openssl pcre ]}"
+ # These libraries may be referred to by the standard library.
+ # This is broken for cross-compilation because the package
+ # set will be shifted back by nativeBuildInputs.
+
+ "--set NIM_CONFIG_PATH ${placeholder "out"}/etc/nim"
+ # Use the custom configuration
+
+ ''--set NIX_HARDENING_ENABLE "''${NIX_HARDENING_ENABLE/fortify}"''
+ # Fortify hardening appends -O2 to gcc flags which is unwanted for unoptimized nim builds.
+ ];
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin $out/etc
+
+ cp -r config $out/etc/nim
+
+ for binpath in ${nim'}/bin/nim?*; do
+ local binname=`basename $binpath`
+ makeWrapper \
+ $binpath $out/bin/${targetPlatform.config}-$binname \
+ $wrapperArgs
+ ln -s $out/bin/${targetPlatform.config}-$binname $out/bin/$binname
+ done
- for binpath in ${nim'}/bin/nim?*; do
- local binname=`basename $binpath`
makeWrapper \
- $binpath $out/bin/${targetPlatform.config}-$binname \
+ ${nim'}/nim/bin/nim $out/bin/${targetPlatform.config}-nim \
+ --set-default CC $(command -v $CC) \
+ --set-default CXX $(command -v $CXX) \
$wrapperArgs
- ln -s $out/bin/${targetPlatform.config}-$binname $out/bin/$binname
- done
+ ln -s $out/bin/${targetPlatform.config}-nim $out/bin/nim
- makeWrapper \
- ${nim'}/nim/bin/nim $out/bin/${targetPlatform.config}-nim \
- --set-default CC $(command -v $CC) \
- --set-default CXX $(command -v $CXX) \
- $wrapperArgs
- ln -s $out/bin/${targetPlatform.config}-nim $out/bin/nim
+ makeWrapper \
+ ${nim'}/bin/testament $out/bin/${targetPlatform.config}-testament \
+ $wrapperArgs
+ ln -s $out/bin/${targetPlatform.config}-testament $out/bin/testament
- makeWrapper \
- ${nim'}/bin/testament $out/bin/${targetPlatform.config}-testament \
- $wrapperArgs
- ln -s $out/bin/${targetPlatform.config}-testament $out/bin/testament
+ makeWrapper \
+ ${nimble'}/bin/nimble $out/bin/${targetPlatform.config}-nimble \
+ --suffix PATH : $out/bin
+ ln -s $out/bin/${targetPlatform.config}-nimble $out/bin/nimble
- makeWrapper \
- ${nimble'}/bin/nimble $out/bin/${targetPlatform.config}-nimble \
- --suffix PATH : $out/bin
- ln -s $out/bin/${targetPlatform.config}-nimble $out/bin/nimble
+ runHook postInstall
+ '';
- runHook postInstall
- '';
+ passthru = {
+ nim = nim';
+ nimble = nimble';
+ };
- passthru = {
- nim = nim';
- nimble = nimble';
- };
-
- meta = nim'.meta // {
- description = nim'.meta.description
- + " (${targetPlatform.config} wrapper)";
- platforms = with lib.platforms; unix ++ genode;
+ meta = nim'.meta // {
+ description = nim'.meta.description
+ + " (${targetPlatform.config} wrapper)";
+ platforms = with lib.platforms; unix ++ genode;
+ };
};
+ in self // {
+ pkgs = callPackage ../../../top-level/nim-packages.nix { nim = self; };
};
}
diff --git a/third_party/nixpkgs/pkgs/development/interpreters/npiet/default.nix b/third_party/nixpkgs/pkgs/development/interpreters/npiet/default.nix
new file mode 100644
index 0000000000..c0e2c3ade2
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/interpreters/npiet/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, stdenv
+, fetchurl
+, gd
+, giflib
+, groff
+, libpng
+, tk
+}:
+
+stdenv.mkDerivation rec {
+ pname = "npiet";
+ version = "1.3f";
+
+ src = fetchurl {
+ url = "https://www.bertnase.de/npiet/npiet-${version}.tar.gz";
+ sha256 = "sha256-Le2FYGKr1zWZ6F4edozmvGC6LbItx9aptidj3KBLhVo=";
+ };
+
+ buildInputs = [ gd giflib libpng ];
+
+ nativeBuildInputs = [ groff ];
+
+ postPatch = ''
+ # malloc.h is not needed because stdlib.h is already included.
+ # On macOS, malloc.h does not even exist, resulting in an error.
+ substituteInPlace npiet-foogol.c \
+ --replace '#include ' ""
+
+ substituteInPlace npietedit \
+ --replace 'exec wish' 'exec ${tk}/bin/wish'
+ '';
+
+ meta = with lib; {
+ description = "An interpreter for piet programs. Also includes npietedit and npiet-foogol";
+ longDescription = ''
+ npiet is an interpreter for the piet programming language.
+ Instead of text, piet programs are pictures. Commands are determined based on changes in color.
+ '';
+ homepage = "https://www.bertnase.de/npiet/";
+ license = licenses.gpl2Only;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ Luflosi ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/eccodes/default.nix b/third_party/nixpkgs/pkgs/development/libraries/eccodes/default.nix
index 1050490a22..ad8ee222f7 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/eccodes/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/eccodes/default.nix
@@ -1,39 +1,51 @@
-{ fetchurl, lib, stdenv
-, cmake, netcdf, openjpeg, libpng, gfortran
-, enablePython ? false, pythonPackages
+{ fetchurl
+, lib
+, stdenv
+, cmake
+, netcdf
+, openjpeg
+, libpng
+, gfortran
+, perl
+, enablePython ? false
+, pythonPackages
, enablePosixThreads ? false
-, enableOpenMPThreads ? false}:
-with lib;
+, enableOpenMPThreads ? false
+}:
+
stdenv.mkDerivation rec {
pname = "eccodes";
- version = "2.12.5";
+ version = "2.23.0";
src = fetchurl {
url = "https://confluence.ecmwf.int/download/attachments/45757960/eccodes-${version}-Source.tar.gz";
- sha256 = "0576fccng4nvmq5gma1nb1v00if5cwl81w4nv5zkb80q5wicn50c";
+ sha256 = "sha256-y9yFMlN+loLxqT3bA0QEFrZpBqTMJd7Dy9c5QNGUvww=";
};
postPatch = ''
substituteInPlace cmake/FindOpenJPEG.cmake --replace openjpeg-2.1 ${openjpeg.incDir}
'';
- nativeBuildInputs = [ cmake ];
+ nativeBuildInputs = [ cmake perl ];
- buildInputs = [ netcdf
- openjpeg
- libpng
- gfortran
- ];
- propagatedBuildInputs = optionals enablePython [
- pythonPackages.python
- pythonPackages.numpy
- ];
+ buildInputs = [
+ netcdf
+ openjpeg
+ libpng
+ gfortran
+ ];
- cmakeFlags = [ "-DENABLE_PYTHON=${if enablePython then "ON" else "OFF"}"
- "-DENABLE_PNG=ON"
- "-DENABLE_ECCODES_THREADS=${if enablePosixThreads then "ON" else "OFF"}"
- "-DENABLE_ECCODES_OMP_THREADS=${if enableOpenMPThreads then "ON" else "OFF"}"
- ];
+ propagatedBuildInputs = lib.optionals enablePython [
+ pythonPackages.python
+ pythonPackages.numpy
+ ];
+
+ cmakeFlags = [
+ "-DENABLE_PYTHON=${if enablePython then "ON" else "OFF"}"
+ "-DENABLE_PNG=ON"
+ "-DENABLE_ECCODES_THREADS=${if enablePosixThreads then "ON" else "OFF"}"
+ "-DENABLE_ECCODES_OMP_THREADS=${if enableOpenMPThreads then "ON" else "OFF"}"
+ ];
doCheck = true;
@@ -44,7 +56,7 @@ stdenv.mkDerivation rec {
ctest -R "eccodes_t_(definitions|calendar|unit_tests|md5|uerra|grib_2nd_order_numValues|julian)" -VV
'';
- meta = {
+ meta = with lib; {
homepage = "https://confluence.ecmwf.int/display/ECC/";
license = licenses.asl20;
maintainers = with maintainers; [ knedlsepp ];
diff --git a/third_party/nixpkgs/pkgs/development/libraries/folly/default.nix b/third_party/nixpkgs/pkgs/development/libraries/folly/default.nix
index c9ccff7dea..dcb0fc0704 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/folly/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/folly/default.nix
@@ -19,13 +19,13 @@
stdenv.mkDerivation (rec {
pname = "folly";
- version = "2021.09.13.00";
+ version = "2021.09.20.00";
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
rev = "v${version}";
- sha256 = "sha256-UZfCGvhi6cWUUa56GIYMOgFHn3Ifu9uIHs983SbZCcY=";
+ sha256 = "sha256-aFTFUtRQOGCDR3pbpw1ViuMFm02GSq04u9GgE9pq33A=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/libraries/glibc/locales.nix b/third_party/nixpkgs/pkgs/development/libraries/glibc/locales.nix
index 325e0d0993..208eedd719 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/glibc/locales.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/glibc/locales.nix
@@ -34,9 +34,9 @@ callPackage ./common.nix { inherit stdenv; } {
+ lib.optionalString (!allLocales) ''
# Check that all locales to be built are supported
echo -n '${lib.concatMapStrings (s: s + " \\\n") locales}' \
- | sort > locales-to-build.txt
+ | sort -u > locales-to-build.txt
cat ../glibc-2*/localedata/SUPPORTED | grep ' \\' \
- | sort > locales-supported.txt
+ | sort -u > locales-supported.txt
comm -13 locales-supported.txt locales-to-build.txt \
> locales-unsupported.txt
if [[ $(wc -c locales-unsupported.txt) != "0 locales-unsupported.txt" ]]; then
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libbfd/default.nix b/third_party/nixpkgs/pkgs/development/libraries/libbfd/default.nix
index 1e2938d3a8..45fe337d85 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/libbfd/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/libbfd/default.nix
@@ -1,6 +1,6 @@
{ lib, stdenv
, fetchpatch, gnu-config, autoreconfHook, bison, binutils-unwrapped
-, libiberty, zlib
+, libiberty, libintl, zlib
}:
stdenv.mkDerivation {
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
strictDeps = true;
nativeBuildInputs = [ autoreconfHook bison ];
- buildInputs = [ libiberty zlib.dev ];
+ buildInputs = [ libiberty zlib ] ++ lib.optionals stdenv.isDarwin [ libintl ];
configurePlatforms = [ "build" "host" ];
configureFlags = [
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libdigidocpp/default.nix b/third_party/nixpkgs/pkgs/development/libraries/libdigidocpp/default.nix
index c7a7673dc1..4f80709652 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/libdigidocpp/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/libdigidocpp/default.nix
@@ -1,26 +1,26 @@
-{ lib, stdenv, fetchurl, cmake, libdigidoc, minizip, pcsclite, opensc, openssl
+{ lib, stdenv, fetchurl, cmake, minizip, pcsclite, opensc, openssl
, xercesc, xml-security-c, pkg-config, xsd, zlib, xalanc, xxd }:
stdenv.mkDerivation rec {
- version = "3.14.6";
+ version = "3.14.7";
pname = "libdigidocpp";
src = fetchurl {
url = "https://github.com/open-eid/libdigidocpp/releases/download/v${version}/libdigidocpp-${version}.tar.gz";
- sha256 = "sha256-zDMxJyL/T3cXrqgMT15yZlCozgyOt5nNreottuuiGHk=";
+ sha256 = "sha256-QdctW2+T8kPNUJv30pXZ/qfnw1Uhq6gScSjUI+bZMfY=";
};
nativeBuildInputs = [ cmake pkg-config xxd ];
buildInputs = [
- libdigidoc minizip pcsclite opensc openssl xercesc
+ minizip pcsclite opensc openssl xercesc
xml-security-c xsd zlib xalanc
];
meta = with lib; {
description = "Library for creating DigiDoc signature files";
homepage = "http://www.id.ee/";
- license = licenses.lgpl2;
+ license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libopenaptx/default.nix b/third_party/nixpkgs/pkgs/development/libraries/libopenaptx/default.nix
index 9cc57d1a46..33a5cadb71 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/libopenaptx/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/libopenaptx/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libopenaptx";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchFromGitHub {
owner = "pali";
repo = "libopenaptx";
rev = version;
- sha256 = "nTpw4vWgJ765FM6Es3SzaaaZr0YDydXglb0RWLbiigI=";
+ sha256 = "sha256-4FYKxw1U+efCfzKOPSDJH8a/dG0KV+anJDgxjqzD80k=";
};
makeFlags = [
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Audio Processing Technology codec (aptX)";
- license = licenses.lgpl21Plus;
+ license = licenses.gpl3Plus;
homepage = "https://github.com/pali/libopenaptx";
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/astpatternmatching/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/astpatternmatching/default.nix
new file mode 100644
index 0000000000..6f1137ac70
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/astpatternmatching/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "krux02";
+ repo = "ast-pattern-matching";
+ rev = "87f7d163421af5a4f5e5cb6da7b93278e6897e96";
+ sha256 = "19mb5bb6riia8380p5dpc3q0vwgrj958dd6p7vw8vkvwiqrzg6zq";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/build-nim-package/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/build-nim-package/default.nix
new file mode 100644
index 0000000000..6c7aafd22c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/build-nim-package/default.nix
@@ -0,0 +1,43 @@
+{ lib, stdenv, nim, nim_builder }:
+
+{ strictDeps ? true, nativeBuildInputs ? [ ], configurePhase ? null
+, buildPhase ? null, checkPhase ? null, installPhase ? null, meta ? { }, ...
+}@attrs:
+
+stdenv.mkDerivation (attrs // {
+ inherit strictDeps;
+ nativeBuildInputs = [ nim nim_builder ] ++ nativeBuildInputs;
+
+ configurePhase = if isNull configurePhase then ''
+ runHook preConfigure
+ find $NIX_BUILD_TOP -name .attrs.json
+ nim_builder --phase:configure
+ runHook postConfigure
+ '' else
+ buildPhase;
+
+ buildPhase = if isNull buildPhase then ''
+ runHook preBuild
+ nim_builder --phase:build
+ runHook postBuild
+ '' else
+ buildPhase;
+
+ checkPhase = if isNull checkPhase then ''
+ runHook preCheck
+ nim_builder --phase:check
+ runHook postCheck
+ '' else
+ checkPhase;
+
+ installPhase = if isNull installPhase then ''
+ runHook preInstall
+ nim_builder --phase:install
+ runHook postInstall
+ '' else
+ installPhase;
+
+ meta = meta // {
+ maintainers = (meta.maintainers or [ ]) ++ [ lib.maintainers.ehmry ];
+ };
+})
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/bumpy/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/bumpy/default.nix
new file mode 100644
index 0000000000..9579d87d9d
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/bumpy/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "bumpy";
+ version = "1.0.3";
+ hash = "sha256-mDmDlhOGoYYjKgF5j808oT2NqRlfcOdLSDE3WtdJFQ0=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/c2nim/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/c2nim/default.nix
new file mode 100644
index 0000000000..408e4fbee9
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/c2nim/default.nix
@@ -0,0 +1,19 @@
+{ lib, buildNimPackage, fetchFromGitHub, SDL2 }:
+
+buildNimPackage rec {
+ pname = "c2nim";
+ version = "0.9.18";
+ nimBinOnly = true;
+ src = fetchFromGitHub {
+ owner = "nim-lang";
+ repo = pname;
+ rev = version;
+ hash = "sha256-127ux36mfC+PnS2HIQffw+z0TSvzdQXnKRxqYV3XahU=";
+ };
+ meta = with lib;
+ src.meta // {
+ description = "Tool to translate Ansi C code to Nim";
+ license = licenses.mit;
+ maintainers = [ maintainers.ehmry ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/chroma/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/chroma/default.nix
new file mode 100644
index 0000000000..266cd0645f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/chroma/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "chroma";
+ version = "0.2.5";
+ hash = "sha256-6lNHpO2aMorgkaPfo6kRcOs9r5R6T/kislVmkeoulw8=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/docopt/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/docopt/default.nix
new file mode 100644
index 0000000000..38465384fb
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/docopt/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "docopt";
+ repo = "docopt.nim";
+ rev = "v0.6.7";
+ sha256 = "1ga7ckg21fzwwvh26jp2phn2h3pvkn8g8sm13dxif33rp471bv37";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/builder.sh b/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/builder.sh
new file mode 100644
index 0000000000..693ab33940
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/builder.sh
@@ -0,0 +1,12 @@
+source $stdenv/setup
+export HOME=$NIX_BUILD_TOP
+
+nimble --accept --noSSLCheck develop "${pkgname}@${version}"
+# TODO: bring in the certificates for Nimble to verify the fetch of
+# the package list.
+
+pkgdir=${NIX_BUILD_TOP}/${pkgname}
+
+find "$pkgdir" -name .git -print0 | xargs -0 rm -rf
+
+cp -a "$pkgdir" "$out"
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/default.nix
new file mode 100644
index 0000000000..ccdacc8e27
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/fetch-nimble/default.nix
@@ -0,0 +1,20 @@
+{ lib, makeOverridable, stdenv, gitMinimal, nim, cacert }:
+
+makeOverridable (
+
+ { pname, version, hash ? lib.fakeHash,
+
+ meta ? { }, passthru ? { }, preferLocalBuild ? true }:
+ stdenv.mkDerivation {
+ inherit version meta passthru preferLocalBuild;
+ pname = pname + "-src";
+ pkgname = pname;
+ builder = ./builder.sh;
+ nativeBuildInputs = [ gitMinimal nim ];
+ outputHash = hash;
+ outputHashAlgo = null;
+ outputHashMode = "recursive";
+ impureEnvVars = lib.fetchers.proxyImpureEnvVars
+ ++ [ "GIT_PROXY_COMMAND" "SOCKS_SERVER" ];
+ GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";
+ })
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/flatty/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/flatty/default.nix
new file mode 100644
index 0000000000..241b59f823
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/flatty/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "flatty";
+ version = "0.2.1";
+ hash = "sha256-TqNnRh2+i6n98ktLRVQxt9CVw17FGLNYq29rJoMus/0=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/frosty/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/frosty/default.nix
new file mode 100644
index 0000000000..6394c455d0
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/frosty/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "disruptek";
+ repo = "frosty";
+ rev = "0.3.1";
+ sha256 = "0hd6484ihjgl57gmqyp5xfq5prycb49k0313fqky600mhz71nmyz";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/hts-nim/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/hts-nim/default.nix
new file mode 100644
index 0000000000..960a9e63d2
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/hts-nim/default.nix
@@ -0,0 +1,13 @@
+{ buildNimPackage, fetchFromGitHub, htslib }:
+
+buildNimPackage rec {
+ pname = "hts-nim";
+ version = "0.3.4";
+ src = fetchFromGitHub {
+ owner = "brentp";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0670phk1bq3l9j2zaa8i5wcpc5dyfrc0l2a6c21g0l2mmdczffa7";
+ };
+ propagatedBuildInputs = [ htslib ];
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/jester/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/jester/default.nix
new file mode 100644
index 0000000000..21646f3667
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/jester/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "dom96";
+ repo = "jester";
+ rev = "v0.5.0";
+ sha256 = "0m8a4ss4460jd2lcbqcbdd68jhcy35xg7qdyr95mh8rflwvmcvhk";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/jsonschema/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/jsonschema/default.nix
new file mode 100644
index 0000000000..8dc195b8b8
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/jsonschema/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "PMunch";
+ repo = "jsonschema";
+ rev = "7b41c03e3e1a487d5a8f6b940ca8e764dc2cbabf";
+ sha256 = "1js64jqd854yjladxvnylij4rsz7212k31ks541pqrdzm6hpblbz";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/karax/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/karax/default.nix
new file mode 100644
index 0000000000..35a5c78ee5
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/karax/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "karaxnim";
+ repo = "karax";
+ rev = "1.1.2";
+ sha256 = "07ykrd21hd76vlmkqpvv5xvaxw6aaq87bky47p2420ni85a6d94j";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/lscolors/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/lscolors/default.nix
new file mode 100644
index 0000000000..5a72c46e4c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/lscolors/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "joachimschmidt557";
+ repo = "nim-lscolors";
+ rev = "v0.3.3";
+ sha256 = "0526hqh46lcfsvymb67ldsc8xbfn24vicn3b8wrqnh6mag8wynf4";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/markdown/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/markdown/default.nix
new file mode 100644
index 0000000000..c893ff0e41
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/markdown/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "soasme";
+ repo = "nim-markdown";
+ rev = "abdbe5e";
+ sha256 = "0f3c1sxvhbbds43c9l8cz69pfpf984msj1lv4pb7bzpxb5zil2wy";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/default.nix
new file mode 100644
index 0000000000..34da4dfa61
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/default.nix
@@ -0,0 +1,19 @@
+{ lib, stdenv, nim }:
+
+stdenv.mkDerivation {
+ pname = "nim_builder";
+ inherit (nim) version;
+ dontUnpack = true;
+ nativeBuildInputs = [ nim ];
+ buildPhase = ''
+ cp ${./nim_builder.nim} nim_builder.nim
+ nim c --nimcache:$TMPDIR nim_builder
+ '';
+ installPhase = ''
+ install -Dt $out/bin nim_builder
+ '';
+ meta = {
+ description = "Internal Nixpkgs utility for buildNimPackage.";
+ maintainers = [ lib.maintainers.ehmry ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/nim_builder.nim b/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/nim_builder.nim
new file mode 100644
index 0000000000..b8881b7000
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/nim_builder/nim_builder.nim
@@ -0,0 +1,166 @@
+# SPDX-FileCopyrightText: 2021 Nixpkgs/NixOS contributors
+## Custom Nim builder for Nixpkgs.
+
+import std/[os, osproc, parseutils, sequtils, streams, strutils]
+
+proc findNimbleFile(): string =
+ ## Copied from Nimble.
+ ## Copyright (c) 2015, Dominik Picheta
+ ## BSD3
+ let dir = getCurrentDir()
+ result = ""
+ var hits = 0
+ for kind, path in walkDir(dir):
+ if kind in {pcFile, pcLinkToFile}:
+ let ext = path.splitFile.ext
+ if ext == ".nimble":
+ result = path
+ inc hits
+ if hits >= 2:
+ quit("Only one .nimble file should be present in " & dir)
+ elif hits == 0:
+ quit("Could not find a file with a .nimble extension in " & dir)
+
+proc getEnvBool(key: string; default = false): bool =
+ ## Parse a boolean environmental variable.
+ let val = getEnv(key)
+ if val == "": default
+ else: parseBool(val)
+
+proc getNimbleFilePath(): string =
+ ## Get the Nimble file for the current package.
+ if existsEnv"nimbleFile":
+ getEnv"nimbleFile"
+ else:
+ findNimbleFile()
+
+proc getNimbleValue(filePath, key: string; default = ""): string =
+ ## Extract a string value from the Nimble file at ``filePath``.
+ var
+ fs = newFileStream(filePath, fmRead)
+ line: string
+ if fs.isNil:
+ quit("could not open " & filePath)
+ while fs.readline(line):
+ if line.startsWith(key):
+ var i = key.len
+ i.inc skipWhile(line, Whitespace, i)
+ if line[i] == '=':
+ inc i
+ i.inc skipWhile(line, Whitespace, i)
+ discard parseUntil(line, result, Newlines, i)
+ if result.len > 0 and result[0] == '"':
+ result = result.unescape
+ return
+ default
+
+proc getNimbleValues(filePath, key: string): seq[string] =
+ ## Extract a string sequence from the Nimble file at ``filePath``.
+ var gunk = getNimbleValue(filePath, key)
+ result = gunk.strip(chars = {'@', '[', ']'}).split(',')
+ if result == @[""]: reset result
+ apply(result) do (s: var string):
+ s = s.strip()
+ if s.len > 0 and s[0] == '"':
+ s = s.unescape()
+
+proc configurePhase*() =
+ ## Generate "config.nims" which will be read by the Nim
+ ## compiler during later phases.
+ const configFilePath = "config.nims"
+ echo "generating ", configFilePath
+ let
+ nf = getNimbleFilePath()
+ mode =
+ if fileExists configFilePath: fmAppend
+ else: fmWrite
+ var cfg = newFileStream(configFilePath, mode)
+ proc switch(key, val: string) =
+ cfg.writeLine("switch(", key.escape, ",", val.escape, ")")
+ switch("backend", nf.getNimbleValue("backend", "c"))
+ switch("nimcache", getEnv("NIX_BUILD_TOP", ".") / "nimcache")
+ if getEnvBool("nimRelease", true):
+ switch("define", "release")
+ for def in getEnv("nimDefines").split:
+ if def != "":
+ switch("define", def)
+ for input in getEnv("buildInputs").split:
+ if input != "":
+ for nimbleFile in walkFiles(input / "*.nimble"):
+ let inputSrc = normalizedPath(
+ input / nimbleFile.getNimbleValue("srcDir", "."))
+ echo "found nimble input ", inputSrc
+ switch("path", inputSrc)
+ close(cfg)
+
+proc buildPhase*() =
+ ## Build the programs listed in the Nimble file and
+ ## optionally some documentation.
+ var cmds: seq[string]
+ proc before(idx: int) =
+ echo "build job ", idx, ": ", cmds[idx]
+ let
+ nf = getNimbleFilePath()
+ bins = nf.getNimbleValues("bin")
+ srcDir = nf.getNimbleValue("srcDir", ".")
+ binDir = getenv("outputBin", getenv("out", "/dev/null")) / "bin"
+ if bins != @[]:
+ for bin in bins:
+ cmds.add("nim compile $# --outdir:$# $#" %
+ [getenv"nimFlags", binDir, normalizedPath(srcDir / bin)])
+ if getEnvBool"nimDoc":
+ echo "generating documentation"
+ let docDir = getenv("outputDoc", (getenv("out", "/dev/null") / "doc"))
+ for path in walkFiles(srcDir / "*.nim"):
+ cmds.add("nim doc --outdir:$# $#" % [docDir, path])
+ if cmds.len > 0:
+ let err = execProcesses(
+ cmds, n = 1,
+ beforeRunEvent = before)
+ if err != 0: quit("build phase failed", err)
+
+proc installPhase*() =
+ ## Install the Nim sources if ``nimBinOnly`` is not
+ ## set in the environment.
+ if not getEnvBool"nimBinOnly":
+ let
+ nf = getNimbleFilePath()
+ srcDir = nf.getNimbleValue("srcDir", ".")
+ devDir = getenv("outputDev", getenv("out", "/dev/null"))
+ echo "Install ", srcDir, " to ", devDir
+ copyDir(normalizedPath(srcDir), normalizedPath(devDir / srcDir))
+ copyFile(nf, devDir / nf.extractFilename)
+
+proc checkPhase*() =
+ ## Build and run the tests in ``tests``.
+ var cmds: seq[string]
+ proc before(idx: int) =
+ echo "check job ", idx, ": ", cmds[idx]
+ for path in walkPattern("tests/t*.nim"):
+ cmds.add("nim r $#" % [path])
+ let err = execProcesses(
+ cmds, n = 1,
+ beforeRunEvent = before)
+ if err != 0: quit("check phase failed", err)
+
+when isMainModule:
+ import std/parseopt
+ var phase: string
+
+ for kind, key, val in getopt():
+ case kind
+ of cmdLongOption:
+ case key.toLowerAscii
+ of "phase":
+ if phase != "": quit("only a single phase may be specified")
+ phase = val
+ else: quit("unhandled argument " & key)
+ of cmdEnd: discard
+ else: quit("unhandled argument " & key)
+
+ case phase
+ of "configure": configurePhase()
+ of "build": buildPhase()
+ of "install": installPhase()
+ of "check": checkPhase()
+ else: quit("unhandled phase " & phase)
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/nimbox/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/nimbox/default.nix
new file mode 100644
index 0000000000..53663c6428
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/nimbox/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "dom96";
+ repo = "nimbox";
+ rev = "6a56e76c01481176f16ae29b7d7c526bd83f229b";
+ sha256 = "15x1sdfxa1xcqnr68705jfnlv83lm0xnp2z9iz3pgc4bz5vwn4x1";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/nimcrypto/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/nimcrypto/default.nix
new file mode 100644
index 0000000000..6c212ef45f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/nimcrypto/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "cheatfate";
+ repo = "nimcrypto";
+ rev = "a5742a9a214ac33f91615f3862c7b099aec43b00";
+ sha256 = "0al0jsaicm8vyr63n909dq1glhvpra1n9sllmj0r7lsjsdb59wsz";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/nimsimd/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/nimsimd/default.nix
new file mode 100644
index 0000000000..9ccd964535
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/nimsimd/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "nimsimd";
+ version = "1.0.0";
+ hash = "sha256-kp61fylAJ6MSN9hLYLi7CU2lxVR/lbrNCvZTe0LJLGo=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/noise/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/noise/default.nix
new file mode 100644
index 0000000000..7931467dbb
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/noise/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "jangko";
+ repo = "nim-noise";
+ rev = "v0.1.14";
+ sha256 = "0wndiphznfyb1pac6zysi3bqljwlfwj6ziarcwnpf00sw2zni449";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/packedjson/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/packedjson/default.nix
new file mode 100644
index 0000000000..9edad962d5
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/packedjson/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "Araq";
+ repo = "packedjson";
+ rev = "7198cc8";
+ sha256 = "1ay2zd88q8hvpvigsg8h0y5vc65hk3lk0d48fy9hwg4lcng19mp1";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/pixie/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/pixie/default.nix
new file mode 100644
index 0000000000..2262ccf237
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/pixie/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "pixie";
+ version = "1.1.3";
+ hash = "sha256-xKIejVxOd19mblL1ZwpJH91dgKQS5g8U08EL8lGGelA=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/redis/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/redis/default.nix
new file mode 100644
index 0000000000..1768bf1976
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/redis/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "zedeus";
+ repo = "redis";
+ rev = "94bcbf1";
+ sha256 = "1p9zv4f4lqrjqa8fk98cb89b9fzlf866jc584ll9sws14904i80j";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/redpool/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/redpool/default.nix
new file mode 100644
index 0000000000..ef14854b32
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/redpool/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "zedeus";
+ repo = "redpool";
+ rev = "57aeb25";
+ sha256 = "0fph7qlia6fvya1zqzbgvww2hk5pd0vq1wlf9ij9jyn655mg0w3q";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/regex/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/regex/default.nix
new file mode 100644
index 0000000000..d89fbdd605
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/regex/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "nitely";
+ repo = "nim-regex";
+ rev = "2e32fdc";
+ sha256 = "1hrl40mwql7nh4wc7sdhmk8bj5728b93v5a93j49v660l0rn4qx8";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/sass/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/sass/default.nix
new file mode 100644
index 0000000000..79885ed9ec
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/sass/default.nix
@@ -0,0 +1,13 @@
+{ buildNimPackage, fetchFromGitHub, libsass }:
+
+buildNimPackage rec {
+ pname = "sass";
+ version = "e683aa1";
+ src = fetchFromGitHub {
+ owner = "dom96";
+ repo = pname;
+ rev = version;
+ sha256 = "0qvly5rilsqqsyvr67pqhglm55ndc4nd6v90jwswbnigxiqf79lc";
+ };
+ propagatedBuildInputs = [ libsass ];
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/sdl2/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/sdl2/default.nix
new file mode 100644
index 0000000000..ddcdf072c6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/sdl2/default.nix
@@ -0,0 +1,17 @@
+{ lib, buildNimPackage, fetchNimble, SDL2 }:
+
+buildNimPackage rec {
+ pname = "sdl2";
+ version = "2.0.4";
+ src = fetchNimble {
+ inherit pname version;
+ hash = "sha256-Vtcj8goI4zZPQs2TbFoBFlcR5UqDtOldaXSH/+/xULk=";
+ };
+ propagatedBuildInputs = [ SDL2 ];
+ doCheck = true;
+ meta = {
+ description = "Nim wrapper for SDL 2.x";
+ platforms = lib.platforms.linux; # Problems with Darwin.
+ license = [ lib.licenses.mit ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/segmentation/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/segmentation/default.nix
new file mode 100644
index 0000000000..c695cd00ca
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/segmentation/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "nitely";
+ repo = "nim-segmentation";
+ rev = "v0.1.0";
+ sha256 = "007bkx8dwy8n340zbp6wyqfsq9bh6q5ykav1ywdlwykyp1n909bh";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/supersnappy/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/supersnappy/default.nix
new file mode 100644
index 0000000000..471543eca4
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/supersnappy/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "guzba";
+ repo = "supersnappy";
+ rev = "1.1.5";
+ sha256 = "1y26sgnszvdf5sn7j0jx2dpd4i03mvbk9i9ni9kbyrs798bjwi6z";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/typography/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/typography/default.nix
new file mode 100644
index 0000000000..59037cbd9d
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/typography/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "typography";
+ version = "0.7.9";
+ hash = "sha256-IYjw3PCp5XzVed2fGGCt9Hb60cxFeF0BUZ7L5PedTLU=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/unicodedb/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/unicodedb/default.nix
new file mode 100644
index 0000000000..8b60710e82
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/unicodedb/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "nitely";
+ repo = "nim-unicodedb";
+ rev = "v0.9.0";
+ sha256 = "06j8d0bjbpv1iibqlmrac4qb61ggv17hvh6nv4pbccqk1rlpxhsq";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/unicodeplus/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/unicodeplus/default.nix
new file mode 100644
index 0000000000..772524eaf9
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/unicodeplus/default.nix
@@ -0,0 +1,8 @@
+{ fetchFromGitHub }:
+
+fetchFromGitHub {
+ owner = "nitely";
+ repo = "nim-unicodeplus";
+ rev = "v0.8.0";
+ sha256 = "181wzwivfgplkqn5r4crhnaqgsza7x6fi23i86djb2dxvm7v6qxk";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/vmath/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/vmath/default.nix
new file mode 100644
index 0000000000..9ca48c43d7
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/vmath/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "vmath";
+ version = "1.0.3";
+ hash = "sha256-zzSKXjuTZ46HTFUs0N47mxEKTKIdS3dwr+60sQYSdn0=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/nim-packages/zippy/default.nix b/third_party/nixpkgs/pkgs/development/nim-packages/zippy/default.nix
new file mode 100644
index 0000000000..230892b688
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/nim-packages/zippy/default.nix
@@ -0,0 +1,7 @@
+{ fetchNimble }:
+
+fetchNimble {
+ pname = "zippy";
+ version = "0.5.6";
+ hash = "sha256-axp4t9+8TFSpvnATlRKZyuOGLA0e/XKfvrVSwreXpC4=";
+}
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/default.nix b/third_party/nixpkgs/pkgs/development/node-packages/default.nix
index 8ad9f2e54a..5858dc0e7f 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/default.nix
+++ b/third_party/nixpkgs/pkgs/development/node-packages/default.nix
@@ -46,6 +46,17 @@ let
'';
};
+ carbon-now-cli = super.carbon-now-cli.override ({
+ nativeBuildInputs = [ pkgs.makeWrapper ];
+ prePatch = ''
+ export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
+ '';
+ postInstall = ''
+ wrapProgram $out/bin/carbon-now \
+ --set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium.outPath}/bin/chromium
+ '';
+ });
+
deltachat-desktop = super."deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop".override {
meta.broken = true; # use the top-level package instead
};
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
index 8d34fd4e0c..ad23817fbf 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
@@ -27,6 +27,7 @@
, "browserify"
, "btc-rpc-explorer"
, "castnow"
+, "carbon-now-cli"
, "cdk8s-cli"
, "cdktf-cli"
, "clean-css-cli"
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
index 2feb1c7722..bb5097fe89 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
@@ -1633,22 +1633,22 @@ let
sha512 = "htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA==";
};
};
- "@cdktf/hcl2cdk-0.6.2" = {
+ "@cdktf/hcl2cdk-0.6.3" = {
name = "_at_cdktf_slash_hcl2cdk";
packageName = "@cdktf/hcl2cdk";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.6.2.tgz";
- sha512 = "apQgyFFMDNiuOcTUVgyRaELtkU+KAZEnzleGfJgsmeEJARxTFHjvtDAtMY5P5K2ozvQCYmoB7NmBkIQSljqmNQ==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.6.3.tgz";
+ sha512 = "HlftsTONtdqtn3y/vjGWAPoyZGKSAkz7NAE+xo4ukdbH7HRYCmb5nrh5t40bIKiWtXe4kdYGxRWsNC0VHCOt5A==";
};
};
- "@cdktf/hcl2json-0.6.2" = {
+ "@cdktf/hcl2json-0.6.3" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.6.2.tgz";
- sha512 = "d77n8iXu7g6vMgG0Mi5aWFrV5Zvdh4ezlUBJX6/nKHqVy8IcLni9ifEfVyB1KPis1aJP0B5WmJI1cLRlT1KC3g==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.6.3.tgz";
+ sha512 = "DVHTsD13IoNPFDFMXg8PzCI9qUp8hKHvhmysDECbTIMqQ5CzkdM3u9CMojTdco5HEbdmymFkaVX07xn+9ITKQA==";
};
};
"@chemzqm/neovim-5.4.0" = {
@@ -2209,22 +2209,22 @@ let
sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==";
};
};
- "@expo/config-5.0.9" = {
+ "@expo/config-6.0.0" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
- version = "5.0.9";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config/-/config-5.0.9.tgz";
- sha512 = "eZj+cf03wkQQdHSpYvrmiqAsn2dJV10uhHIwXyeFBaFvhds0NgThOldJZfOppQ4QUaGobB/vaJ7UqUa3B0PCMw==";
+ url = "https://registry.npmjs.org/@expo/config/-/config-6.0.0.tgz";
+ sha512 = "pL4ZZbue6oU4Prcxew96Vpg2OApD5IE8Otk+eIKZKo0aS5BGnWEic/GszXLOAhPgGiHyP/jmylQ+GPNztz1TUA==";
};
};
- "@expo/config-plugins-3.1.0" = {
+ "@expo/config-plugins-4.0.0" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
- version = "3.1.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.1.0.tgz";
- sha512 = "V5qxaxCAExBM0TXmbU1QKiZcAGP3ecu7KXede8vByT15cro5PkcWu2sSdJCYbHQ/gw6Vf/i8sr8gKlN8V8TSLg==";
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.0.0.tgz";
+ sha512 = "6pNLI8L8oV4MfyM/w2DDx9zvzO258Jl2QfDdHI+T1QAAShupqzXdqjkRMj6+6n3CrUaeqUadSMnjqSTUF9XZlQ==";
};
};
"@expo/config-types-42.0.0" = {
@@ -2236,22 +2236,22 @@ let
sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w==";
};
};
- "@expo/dev-server-0.1.84" = {
+ "@expo/dev-server-0.1.85" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.84";
+ version = "0.1.85";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.84.tgz";
- sha512 = "6N5Vw8PZgnXvjdXm0Lo7v68nIeoPtIV8+G2YGtImaIw4SRshLaTidKefkJNH+JmvXMyEwqLG02xFAQa/I2v3jA==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.85.tgz";
+ sha512 = "Jz8kqbpdBBx01Pu00eXy/ZfEz7hTeaQRwRsyQndVdDIUYddb0R/NI/m1aCk+JdnIZv1Et5krgw/ADdDUwWz6kQ==";
};
};
- "@expo/dev-tools-0.13.115" = {
+ "@expo/dev-tools-0.13.116" = {
name = "_at_expo_slash_dev-tools";
packageName = "@expo/dev-tools";
- version = "0.13.115";
+ version = "0.13.116";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.115.tgz";
- sha512 = "wxA7SuWXEHrQDn/9Z8E3JnLicUSZvdSMtq++5KAFIKndOlTZ6KC9oGwlsgXzBPktQUHUMglaRxgSmx5fOKPJGQ==";
+ url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.116.tgz";
+ sha512 = "n+H/2JgFmYxPxiJJcpzKJDziJJ3omj0rROJAVrfMaZSHvrL6qf/nFDXm4UDaFQvw+oHSkrz9vJaSIKVYm6Gwow==";
};
};
"@expo/devcert-1.0.0" = {
@@ -2281,13 +2281,13 @@ let
sha512 = "CDnhjdirUs6OdN5hOSTJ2y3i9EiJMk7Z5iDljC5xyCHCrUex7oyI8vbRsZEojAahxZccgL/PrO+CjakiFFWurg==";
};
};
- "@expo/metro-config-0.1.84" = {
+ "@expo/metro-config-0.2.0" = {
name = "_at_expo_slash_metro-config";
packageName = "@expo/metro-config";
- version = "0.1.84";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.84.tgz";
- sha512 = "xWSfM0+AxcKw0H8mc1RuKs4Yy4JT4SJfn4yDnGLAlKkHlEC+D2seZvb/Tdd173e/LANmcarNd+OcDYu03AmVWA==";
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.2.0.tgz";
+ sha512 = "p2N8V/zByM1e7YmBSWQ7eUAs6ALYFMjSa2ebMwJUr2i63b1p9A7aInGOP3rCgEiroRcwdyTIq/tUQC4rlsNRWw==";
};
};
"@expo/osascript-2.0.30" = {
@@ -2308,22 +2308,22 @@ let
sha512 = "guFnGAiNLW/JsienEq3NkZk5khTP+RdT/czk/teJUiYLkBy0hLmMTJsNXurGgFwI33+ScEbDvFmN5IOEBGpUDQ==";
};
};
- "@expo/plist-0.0.14" = {
+ "@expo/plist-0.0.15" = {
name = "_at_expo_slash_plist";
packageName = "@expo/plist";
- version = "0.0.14";
+ version = "0.0.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.14.tgz";
- sha512 = "bb4Ua1M/OdNgS8KiGdSDUjZ/bbPfv3xdPY/lz8Ctp/adlj/QgB8xA7tVPeqSSfJPZqFRwU0qLCnRhpUOnP51VQ==";
+ url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.15.tgz";
+ sha512 = "LDxiS0KNZAGJu4fIJhbEKczmb+zeftl1NU0LE0tj0mozoMI5HSKdMUchgvnBm35bwBl8ekKkAfJJ0ONxljWQjQ==";
};
};
- "@expo/prebuild-config-2.1.0" = {
+ "@expo/prebuild-config-3.0.0" = {
name = "_at_expo_slash_prebuild-config";
packageName = "@expo/prebuild-config";
- version = "2.1.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.1.0.tgz";
- sha512 = "obpbnV0+Otv7Dbx8kkbSd62xL9HYZRDPdmdcVWuML7lv7Zo4r+OyS6vYpUmln9htp0gtjuc6+X9FiC74bbGkVA==";
+ url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.0.0.tgz";
+ sha512 = "/6Un2nN9oiL2IVGDin00wwJfEGZbG4IRe/ycBeZbCIA5xux+ovVaiuGNJklTvlUVRxSboG5mXWt+drfa0GUwtw==";
};
};
"@expo/results-1.0.0" = {
@@ -2371,13 +2371,13 @@ let
sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==";
};
};
- "@expo/webpack-config-0.15.0" = {
+ "@expo/webpack-config-0.16.0" = {
name = "_at_expo_slash_webpack-config";
packageName = "@expo/webpack-config";
- version = "0.15.0";
+ version = "0.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.15.0.tgz";
- sha512 = "AcZiRs+7RwHM05uR4qdTGAU6kpQRPZ3U0yedtVe391i4NRM80sBe+sIc7LuhFN9aZL89+ZjqN3fDoA0ZNIgIfQ==";
+ url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.0.tgz";
+ sha512 = "IwzXvzvjd5+Zc10+3K6fvjY3d5ECEH81fukka0qRyIHgCtxivl2tBlJftAQB3tfN3L32xeNTbj6iKXtAolCDvQ==";
};
};
"@expo/xcpretty-3.1.4" = {
@@ -2569,13 +2569,13 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/import-6.4.0" = {
+ "@graphql-tools/import-6.4.1" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.4.0";
+ version = "6.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.0.tgz";
- sha512 = "jfE01oPcmc4vzAcYLs6xT7XC4jJWrM1HNtIwc7HyyHTxrC3nf36XrF3txEZ2l20GT53+OWnMgYx1HhauLGdJmA==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.1.tgz";
+ sha512 = "nFWo2dI9XXs0hsBscHnTSJNfgFq2gA1bw0qbCXyQga1PJclZViO8SxcHqCf2JmShRpTFsyzsDjKA8xGKDDs8PQ==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -2623,13 +2623,13 @@ let
sha512 = "kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw==";
};
};
- "@graphql-tools/mock-8.3.1" = {
+ "@graphql-tools/mock-8.4.0" = {
name = "_at_graphql-tools_slash_mock";
packageName = "@graphql-tools/mock";
- version = "8.3.1";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.3.1.tgz";
- sha512 = "iJ3GeQ10Vqa0Tg4QJHiulxUUI4r84RAvltM3Sc+XPj07QlrLzMHOHO/goO7FC4TN2/HVncj7pWHwrmLPT9du/Q==";
+ url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.4.0.tgz";
+ sha512 = "RKcqmw7P5pC2ULh2/kg/erxxsd7lEV/wnI5jNgahkCw8wiSC8OI3SwNMwjfrlpYogs7eEhiXi7Ix6abCiFUURw==";
};
};
"@graphql-tools/schema-7.1.5" = {
@@ -2686,13 +2686,13 @@ let
sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==";
};
};
- "@graphql-tools/utils-8.2.2" = {
+ "@graphql-tools/utils-8.2.3" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "8.2.2";
+ version = "8.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz";
- sha512 = "29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.3.tgz";
+ sha512 = "RR+aiusf2gIfnPmrDIH1uA45QuPiHB54RD+BmWyMcl88tWAjeJtqZeWPqUTq/1EXrNeocJAJQqogHV4Fbbzx3A==";
};
};
"@graphql-tools/wrap-7.0.8" = {
@@ -3991,13 +3991,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.212" = {
+ "@microsoft/load-themed-styles-1.10.214" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.212";
+ version = "1.10.214";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.212.tgz";
- sha512 = "92kEfM+8eFg35DNnlxumrscxctwCM9aXExIha4WbAm03k7C69rFer3e7op5cszWBHTwbw9LZJLqQ165pPlWgCQ==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.214.tgz";
+ sha512 = "Bv3nSwBF0po+VbmFfbHzkCectTW9bjd1Pi6jq8WPNI83w7dgfMcPj18npfZGM2UqKNeykW7Sb/Y2Lr718dy4FQ==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -4072,13 +4072,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-18.11.2" = {
+ "@netlify/build-18.12.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "18.11.2";
+ version = "18.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-18.11.2.tgz";
- sha512 = "YwqABbzBZ0eSbltdDYXvyp6YoZxh4KoMCayxiOQvRUTGFDVky8EBZkR9Fcvvcb14TIaYQd8PK3xV7SJk2QKtzQ==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-18.12.0.tgz";
+ sha512 = "PkITXAq3l5pyL5bG6JLGnwYPOi5SIr+n/9YbOcZZdoUIiLa4mTBUjee3y3lcsNUOLduMVkF4PTVLHz6F/6tyNA==";
};
};
"@netlify/cache-utils-2.0.3" = {
@@ -4666,13 +4666,13 @@ let
sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==";
};
};
- "@octokit/openapi-types-10.2.2" = {
+ "@octokit/openapi-types-10.4.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "10.2.2";
+ version = "10.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.2.2.tgz";
- sha512 = "EVcXQ+ZrC04cg17AMg1ofocWMxHDn17cB66ZHgYc0eUwjFtxS0oBzkyw2VqIrHBwVgtfoYrq1WMQfQmMjUwthw==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.4.0.tgz";
+ sha512 = "iA88Ke8FKnQ/HdAJ8J5X2mSwkp6zKCyKqXC161z7Xgnh0kJWWXXcDr8MNxkkGfPkaZ9RhnlDjKCoAasAvTTb1A==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4684,13 +4684,13 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-2.16.3" = {
+ "@octokit/plugin-paginate-rest-2.16.4" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "2.16.3";
+ version = "2.16.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.3.tgz";
- sha512 = "kdc65UEsqze/9fCISq6BxLzeB9qf0vKvKojIfzgwf4tEF+Wy6c9dXnPFE6vgpoDFB1Z5Jek5WFVU6vL1w22+Iw==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.4.tgz";
+ sha512 = "33UFvlgJP1zQVcbkeMQhzUeEXMOOr1U/3i8GDJqzw9MMRy90P/J+PXfgQvhE0N/rfX01DnY2IQMb2Q/L01EL0A==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -4702,13 +4702,13 @@ let
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
};
};
- "@octokit/plugin-rest-endpoint-methods-5.10.4" = {
+ "@octokit/plugin-rest-endpoint-methods-5.11.1" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.10.4";
+ version = "5.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.4.tgz";
- sha512 = "Dh+EAMCYR9RUHwQChH94Skl0lM8Fh99auT8ggck/xTzjJrwVzvsd0YH68oRPqp/HxICzmUjLfaQ9sy1o1sfIiA==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.11.1.tgz";
+ sha512 = "EE69SuO08wtnIy9q/HftGDr7/Im1txzDfeYr+I4T/JkMSNEiedUUE5RuCWkEQAwwbeEU4kVTwSEQZb9Af77/PA==";
};
};
"@octokit/plugin-retry-3.0.9" = {
@@ -4738,22 +4738,22 @@ let
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
};
};
- "@octokit/rest-18.10.0" = {
+ "@octokit/rest-18.11.0" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "18.10.0";
+ version = "18.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.10.0.tgz";
- sha512 = "esHR5OKy38bccL/sajHqZudZCvmv4yjovMJzyXlphaUo7xykmtOdILGJ3aAm0mFHmMLmPFmDMJXf39cAjNJsrw==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.11.0.tgz";
+ sha512 = "e30+ERbA4nXkzkaCDgfxS9H1A43Z1GvV5nqLfkxS81rYKbFE6+sEsrXsTRzV1aWLsRIQ+B75Vgnyzjw/ioTyVA==";
};
};
- "@octokit/types-6.28.1" = {
+ "@octokit/types-6.30.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.28.1";
+ version = "6.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.28.1.tgz";
- sha512 = "XlxDoQLFO5JnFZgKVQTYTvXRsQFfr/GwDUU108NJ9R5yFPkA2qXhTJjYuul3vE4eLXP40FA2nysOu2zd6boE+w==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.30.0.tgz";
+ sha512 = "aQ8kUJLOwbIXP9Sz1fDGsdNf9cLiOmvim3gUgRmDOJVwTV3/JfKawQi2W2csku9mAzaalER+DYhsjyaqnmVcSw==";
};
};
"@opencensus/core-0.0.8" = {
@@ -5152,13 +5152,13 @@ let
sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ==";
};
};
- "@pm2/agent-2.0.0" = {
+ "@pm2/agent-2.0.1" = {
name = "_at_pm2_slash_agent";
packageName = "@pm2/agent";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@pm2/agent/-/agent-2.0.0.tgz";
- sha512 = "W1LvdyF1tGaVU5f/hV8DjpI5joI7MEgXiQMLZnTwZlFwDVP00O9s86571Q8xSiweTcFZFyye0F4wORN/PjSgGA==";
+ url = "https://registry.npmjs.org/@pm2/agent/-/agent-2.0.1.tgz";
+ sha512 = "QKHMm6yexcvdDfcNE7PL9D6uEjoQPGRi+8dh+rc4Hwtbpsbh5IAvZbz3BVGjcd4HaX6pt2xGpOohG7/Y2L4QLw==";
};
};
"@pm2/io-5.0.0" = {
@@ -5296,13 +5296,13 @@ let
sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570";
};
};
- "@putdotio/api-client-8.17.0" = {
+ "@putdotio/api-client-8.18.0" = {
name = "_at_putdotio_slash_api-client";
packageName = "@putdotio/api-client";
- version = "8.17.0";
+ version = "8.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.17.0.tgz";
- sha512 = "iLLe3tgQd9W8ZMbfaMXIzoWj/wc5xg5cwys5WEV39RDRL5x7uP6YvELJ0QDNxQTX9S+bT6SzwJiBEmX8DADPHA==";
+ url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.18.0.tgz";
+ sha512 = "EpIGWaGI6t3uy3hP1XUUURCZ5ma+9fiknqFu1IL7wemJoBLz0wVpAmZxv+sKo32RtI+qfQwrA3ZKoCNFPaEGXA==";
};
};
"@reach/router-1.3.4" = {
@@ -5341,6 +5341,15 @@ let
sha512 = "XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q==";
};
};
+ "@react-native/normalize-color-2.0.0" = {
+ name = "_at_react-native_slash_normalize-color";
+ packageName = "@react-native/normalize-color";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.0.0.tgz";
+ sha512 = "Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==";
+ };
+ };
"@redocly/ajv-8.6.2" = {
name = "_at_redocly_slash_ajv";
packageName = "@redocly/ajv";
@@ -5350,13 +5359,13 @@ let
sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w==";
};
};
- "@redocly/openapi-core-1.0.0-beta.60" = {
+ "@redocly/openapi-core-1.0.0-beta.61" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.60";
+ version = "1.0.0-beta.61";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.60.tgz";
- sha512 = "XxpHcdIc50f/yqNu9zObo/gF2QVkWe1QqC6l7ju05bj35fhf2fUcx+XAroPeyJpEePCeT6FeM/rID40dM1c5Nw==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.61.tgz";
+ sha512 = "/OgtozUxy7SvHVBZ3Iygu6brDTOFTOlkzpDQyykpa0lK2cPBeYjkJP5foBlHKeHl+TvxfPuzh1CSGSShSc+IBg==";
};
};
"@redocly/react-dropdown-aria-2.0.12" = {
@@ -5485,13 +5494,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-3.17.0" = {
+ "@serverless/components-3.17.1" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "3.17.0";
+ version = "3.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-3.17.0.tgz";
- sha512 = "F0ReVFmwnbSDyH9PaifjrxvR0HvnKS37VyoEOCagj/31vGrksyrvuwI8BxC0YwPReRDb4n99+CtGkDsdGb9AQg==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-3.17.1.tgz";
+ sha512 = "Ra0VVpivEWB816ZAca4UCNzOxQqxveEp4h+RzUX5vaAsZrxpotPUFZi96w9yZGQk3OTxxscRqrsBLxGDtOu8SA==";
};
};
"@serverless/core-1.1.2" = {
@@ -5566,13 +5575,13 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-5.14.0" = {
+ "@serverless/utils-5.15.0" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "5.14.0";
+ version = "5.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.14.0.tgz";
- sha512 = "70DGJLQuPOxCP0sTqI0qqH1wJ3Zk7/D7OXZ+0ABMBeu+S/L5ZVF1/ZijauemxIA80TVOM9CeOuc/bUyfIFjP2g==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.15.0.tgz";
+ sha512 = "KH7sHbTRWCPNewp3Jg+CmmDox82L1xqr18byex3R6s0nAHSNmNwKJl30fIS1Co4u9qKOLCl4/rWjtofKJTFbCg==";
};
};
"@serverless/utils-china-1.1.4" = {
@@ -5674,6 +5683,15 @@ let
sha512 = "VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==";
};
};
+ "@sindresorhus/jimp-0.3.0" = {
+ name = "_at_sindresorhus_slash_jimp";
+ packageName = "@sindresorhus/jimp";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sindresorhus/jimp/-/jimp-0.3.0.tgz";
+ sha512 = "ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw==";
+ };
+ };
"@sindresorhus/slugify-1.1.2" = {
name = "_at_sindresorhus_slash_slugify";
packageName = "@sindresorhus/slugify";
@@ -6385,13 +6403,13 @@ let
sha512 = "kM2g9Fdk/du24fKuuQhA/LBleFR4Z4JP2MVKpLxQQSzofF1uJ06D+c05zfLDAkkDO55aEeNwJih0gHrE/Ci20A==";
};
};
- "@types/emoji-mart-3.0.5" = {
+ "@types/emoji-mart-3.0.6" = {
name = "_at_types_slash_emoji-mart";
packageName = "@types/emoji-mart";
- version = "3.0.5";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.5.tgz";
- sha512 = "bsMEXVPrasIJ03u61msIKMMiL7Hh6dGQ3Gcz3CjytTxTQKQRdf/g0owWTSSL5mvKNgu9UfgornrF6qqClPk1Jw==";
+ url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.6.tgz";
+ sha512 = "TbFLFkWvhZUeYkII94fB8bplhtRTUxekBjZehcKu7leq9gvg8IG7F9NBh0YJdH3XRiu+uk0Drviy+GzfcMkMCw==";
};
};
"@types/engine.io-3.1.7" = {
@@ -6511,13 +6529,13 @@ let
sha512 = "FKVPOCFbhCvZxpVAMhdBdTfVfXUpsh15wFHgqOKxh9N9vzWZVuWCSijZ5T4U34XYNnuj2oduh6xcs1i+LPI+BQ==";
};
};
- "@types/fs-extra-9.0.12" = {
+ "@types/fs-extra-9.0.13" = {
name = "_at_types_slash_fs-extra";
packageName = "@types/fs-extra";
- version = "9.0.12";
+ version = "9.0.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.12.tgz";
- sha512 = "I+bsBr67CurCGnSenZZ7v94gd3tc3+Aj2taxMT4yu4ABLuOgOjeFxX3dokG24ztSRg5tnT00sL8BszO7gSMoIw==";
+ url = "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz";
+ sha512 = "nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==";
};
};
"@types/geojson-7946.0.8" = {
@@ -6925,13 +6943,13 @@ let
sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==";
};
};
- "@types/node-12.20.25" = {
+ "@types/node-12.20.26" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.20.25";
+ version = "12.20.26";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.20.25.tgz";
- sha512 = "hcTWqk7DR/HrN9Xe7AlJwuCaL13Vcd9/g/T54YrJz4Q3ESM5mr33YCzW2bOfzSIc3aZMeGBvbLGvgN6mIJ0I5Q==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.20.26.tgz";
+ sha512 = "gIt+h4u2uTho2bsH1K250fUv5fHU71ET1yWT7bM4523zV/XrFb9jlWBOV4DO8FpscY+Sz/WEr1EEjIP2H4yumQ==";
};
};
"@types/node-14.11.1" = {
@@ -6943,13 +6961,13 @@ let
sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==";
};
};
- "@types/node-14.17.17" = {
+ "@types/node-14.17.18" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.17.17";
+ version = "14.17.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.17.17.tgz";
- sha512 = "niAjcewgEYvSPCZm3OaM9y6YQrL2SEPH9PymtE6fuZAvFiP6ereCcvApGl2jKTq7copTIguX3PBvfP08LN4LvQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.17.18.tgz";
+ sha512 = "haYyibw4pbteEhkSg0xdDLAI3679L75EJ799ymVrPxOA922bPx3ML59SoDsQ//rHlvqpu+e36kcbR3XRQtFblA==";
};
};
"@types/node-15.14.9" = {
@@ -6997,13 +7015,13 @@ let
sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==";
};
};
- "@types/node-16.9.4" = {
+ "@types/node-16.9.6" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.9.4";
+ version = "16.9.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.9.4.tgz";
- sha512 = "KDazLNYAGIuJugdbULwFZULF9qQ13yNWEBFnfVpqlpgAAo6H/qnM9RjBgh0A0kmHf3XxAKLdN5mTIng9iUvVLA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.9.6.tgz";
+ sha512 = "YHUZhBOMTM3mjFkXVcK+WwAcYmyhe1wL4lfqNtzI0b3qAy7yuSetnM7QJazgE5PFmgVTNGiLOgRFfJMqW7XpSQ==";
};
};
"@types/node-6.14.13" = {
@@ -7825,31 +7843,31 @@ let
sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA==";
};
};
- "@vue/compiler-core-3.2.12" = {
+ "@vue/compiler-core-3.2.13" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.2.12";
+ version = "3.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.12.tgz";
- sha512 = "IGJ0JmrAaAl5KBBegPAKkoXvsfDFgN/h7K1t/+0MxqpZF1fTDVUOp3tG7q9gWa7fwzGEaIsPhjtT5C3qztdLKg==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.13.tgz";
+ sha512 = "H8MUuKVCfAT6C0vth/+1LAriKnM+RTFo/5MoFycwRPwworTvkpWq/EuGoIXdLBblo8Y2/bNsOmIBEEoOtrb/bQ==";
};
};
- "@vue/compiler-dom-3.2.12" = {
+ "@vue/compiler-dom-3.2.13" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.2.12";
+ version = "3.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.12.tgz";
- sha512 = "MulvKilA2USm8ubPfvXvNY55HVTn+zHERsXeNg437TXrmM4FRCis6zjWW47QZ3ZyxEkCdqOmuiFCtXbpnuthyw==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.13.tgz";
+ sha512 = "5+2dYgQyNzM97EEgbdAusUpLjulcKkvLM26jOGpd14+qwEcW/KCnns5DGjlZD/tsdEwToOoTDCm+mjx7cO/G1Q==";
};
};
- "@vue/shared-3.2.12" = {
+ "@vue/shared-3.2.13" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.2.12";
+ version = "3.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.12.tgz";
- sha512 = "5CkaifUCJwcTuru7FDwKFacPJuEoGUTw0LKSa5bw40B23s0TS+MGlYR1285nbV/ju3QUGlA6d6PD+GJkWy7uFg==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.13.tgz";
+ sha512 = "F/gs3kHQ8Xeo24F6EImOvBiIoYQsBjF9qoLzvk+LHxYN6ZhIDEL1NWrBFYzdFQ7NphjEYd4EvPZ+Qee+WX8P6w==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -9490,15 +9508,6 @@ let
sha1 = "a78f1c98995087ad36192a41298e4db49e3dfc45";
};
};
- "analytics-node-3.5.0" = {
- name = "analytics-node";
- packageName = "analytics-node";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/analytics-node/-/analytics-node-3.5.0.tgz";
- sha512 = "XgQq6ejZHCehUSnZS4V7QJPLIP7S9OAWwQDYl4WTLtsRvc5fCxIwzK/yihzmIW51v9PnyBmrl9dMcqvwfOE8WA==";
- };
- };
"anchor-markdown-header-0.5.7" = {
name = "anchor-markdown-header";
packageName = "anchor-markdown-header";
@@ -10156,6 +10165,15 @@ let
sha512 = "pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==";
};
};
+ "app-path-2.2.0" = {
+ name = "app-path";
+ packageName = "app-path";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/app-path/-/app-path-2.2.0.tgz";
+ sha1 = "2af5c2b544a40e15fc1ac55548314397460845d0";
+ };
+ };
"appdata-path-1.0.0" = {
name = "appdata-path";
packageName = "appdata-path";
@@ -11191,13 +11209,13 @@ let
sha512 = "XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg==";
};
};
- "async-append-only-log-3.0.11" = {
+ "async-append-only-log-3.1.0" = {
name = "async-append-only-log";
packageName = "async-append-only-log";
- version = "3.0.11";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.0.11.tgz";
- sha512 = "wAPal2HNuPe1UVkXl4DnHXjjFmBpdvuam98qNnN4F7OS4yppGIZrJEoqul0DMyd9g4LIGvhlgwfSI/wTi9zy8w==";
+ url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.1.0.tgz";
+ sha512 = "vEnzpbpfnMvWK7xweZ4mX+Y4H6eYMtEvVLctsLleXjN3lWewCcGxPxSAscBq05MxH3Veh7q9JHnOfuOIoeJYVw==";
};
};
"async-done-1.3.2" = {
@@ -11524,13 +11542,13 @@ let
sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg==";
};
};
- "aws-sdk-2.991.0" = {
+ "aws-sdk-2.993.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.991.0";
+ version = "2.993.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.991.0.tgz";
- sha512 = "TybluMJhRBZ0h5HGupHPTfamwtsJlW56HddJpMbsIjvmh4LGupajrkEwLQYW7osFXQ1S/xuE+0QIy6vWgOpT0g==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.993.0.tgz";
+ sha512 = "uAxPVkGM0+hWt+OmFUtNgQmmo3tQUW1MJD8wBWFpfw97QpG2WPMv6fEFBJmuaVt0LkElgTs+9oKJsu9WkPIC9Q==";
};
};
"aws-sign2-0.6.0" = {
@@ -11884,13 +11902,13 @@ let
sha512 = "kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==";
};
};
- "babel-plugin-polyfill-corejs3-0.2.4" = {
+ "babel-plugin-polyfill-corejs3-0.2.5" = {
name = "babel-plugin-polyfill-corejs3";
packageName = "babel-plugin-polyfill-corejs3";
- version = "0.2.4";
+ version = "0.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz";
- sha512 = "z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz";
+ sha512 = "ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==";
};
};
"babel-plugin-polyfill-regenerator-0.2.2" = {
@@ -12739,6 +12757,15 @@ let
sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
};
};
+ "bignumber.js-2.4.0" = {
+ name = "bignumber.js";
+ packageName = "bignumber.js";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz";
+ sha1 = "838a992da9f9d737e0f4b2db0be62bb09dd0c5e8";
+ };
+ };
"bignumber.js-9.0.0" = {
name = "bignumber.js";
packageName = "bignumber.js";
@@ -13306,6 +13333,15 @@ let
sha512 = "vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q==";
};
};
+ "bmp-js-0.0.3" = {
+ name = "bmp-js";
+ packageName = "bmp-js";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.3.tgz";
+ sha1 = "64113e9c7cf1202b376ed607bf30626ebe57b18a";
+ };
+ };
"bmutex-0.1.6" = {
name = "bmutex";
packageName = "bmutex";
@@ -13927,13 +13963,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.17.0" = {
+ "browserslist-4.17.1" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.17.0";
+ version = "4.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz";
- sha512 = "g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.1.tgz";
+ sha512 = "aLD0ZMDSnF4lUt4ZDNgqi5BUn9BZ7YdQdI/cYlILrhdSSZJLU9aNZoD5/NBmM4SK34APB2e83MOsRt1EnkuyaQ==";
};
};
"brq-0.1.8" = {
@@ -15134,22 +15170,22 @@ let
sha512 = "mThFg5t92Vu/pSpZVXppaokkSVIdFFnIN8pUoojIaiYL5gD1mG37IY1xt2+FDM6nncl1q6IzjKWipnGOoJYlcQ==";
};
};
- "cdk8s-plus-17-1.0.0-beta.74" = {
- name = "cdk8s-plus-17";
- packageName = "cdk8s-plus-17";
- version = "1.0.0-beta.74";
+ "cdk8s-plus-22-1.0.0-beta.2" = {
+ name = "cdk8s-plus-22";
+ packageName = "cdk8s-plus-22";
+ version = "1.0.0-beta.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-17/-/cdk8s-plus-17-1.0.0-beta.74.tgz";
- sha512 = "+7+iKqt9Ump9DUm91VouW2H9R7H7cBvbb/hPu8zRflC4OwvSZJb1ONzdUDLahqzFp+l2VQ0zcGMFfD8ONlFMjA==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.2.tgz";
+ sha512 = "KEGELreMBrDAdcidb8aUtBMoi7zfKIC4re8+aVoDXFDyxzR/NSPDx0ompH/qHcRt9TtA8nV4/31OmL3dNupOUw==";
};
};
- "cdktf-0.6.2" = {
+ "cdktf-0.6.3" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.6.2.tgz";
- sha512 = "Kj4ZfWbhsBPPqG1oLIypCgblSVZI+ERpBsHIau6yEsbN+9Frj05PaznfrYwgvobrgNXmUwjkB3jsbqo0vFW9bQ==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.6.3.tgz";
+ sha512 = "N0JxulsgED3uQQFjlKgl1sLzDtjX0sdDMpj9Zd8ejsH/JRhLDKOCqRWKukOFfW0X43TtU9r8SiLn3MagLmVG5w==";
};
};
"center-align-0.1.3" = {
@@ -16070,13 +16106,13 @@ let
sha512 = "AXxiCe2a0Lm0VN+9L0jzmfQSkcZm5EYspfqXKaSIQKqIk+0hnkZ3/v1E9B39mkD6vYhKih3c/RPsJBSwq9O99Q==";
};
};
- "cli-progress-footer-2.0.2" = {
+ "cli-progress-footer-2.1.1" = {
name = "cli-progress-footer";
packageName = "cli-progress-footer";
- version = "2.0.2";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.0.2.tgz";
- sha512 = "FQbhQKqyRG463NbIj+XOIODJYNAf6juqIzZ5YvN1+25mvfWw+gdLzN/a64hYLlxr8OUlA5gzgxoqQTyKemko7g==";
+ url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.1.1.tgz";
+ sha512 = "fBEAKLDp/CCMzQSeEbvz4POvomCekmT0LodI/mchzrjIPeLXQHJ9Gb28leAqEjdc9wyV40cjsB2aWpvO5MA7Pw==";
};
};
"cli-spinner-0.2.10" = {
@@ -17645,15 +17681,6 @@ let
sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
};
};
- "consola-2.15.3" = {
- name = "consola";
- packageName = "consola";
- version = "2.15.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz";
- sha512 = "9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==";
- };
- };
"console-browserify-1.1.0" = {
name = "console-browserify";
packageName = "console-browserify";
@@ -17726,13 +17753,13 @@ let
sha512 = "IwOwekzrASFC3qt4ozCtV09rteAIAesuCGsW0p+uBfqHd2XcvA5CXqJjgf4eUqm6g8e/noXlVCMDWwC8GaLtrg==";
};
};
- "constructs-3.3.149" = {
+ "constructs-3.3.150" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.149";
+ version = "3.3.150";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.149.tgz";
- sha512 = "3xs+rn1+dd/HFERX3zhcJgY/acW/phSZba3Uxw3DVHDKIRT3qc2pE14GaPFTqstr41NkQfGnUvZwcqUgC8q/+Q==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.150.tgz";
+ sha512 = "i++Z38CgBF7kDsKJ2PtdRpXbqL4vwule8tSxcI/PkCbj6LXmokyr7givjzPavgfMhYncDB6J4RoBjfLFMOKRxA==";
};
};
"consume-http-header-1.0.0" = {
@@ -21246,6 +21273,15 @@ let
sha512 = "LFsIFEeLPlKvAKXu7j3ssIG6RT0TbI7/GhsqrI0DnHASEQjXQ0LUSYcjJteGgRGmZbl1TnMSxpNQIAiJ7Du5TQ==";
};
};
+ "del-3.0.0" = {
+ name = "del";
+ packageName = "del";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/del/-/del-3.0.0.tgz";
+ sha1 = "53ecf699ffcbcb39637691ab13baf160819766e5";
+ };
+ };
"del-4.1.1" = {
name = "del";
packageName = "del";
@@ -22110,31 +22146,31 @@ let
sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ==";
};
};
- "dockerfile-ast-0.3.2" = {
+ "dockerfile-ast-0.3.4" = {
name = "dockerfile-ast";
packageName = "dockerfile-ast";
- version = "0.3.2";
+ version = "0.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.2.tgz";
- sha512 = "xh5xPW7YohEr/NjqkQ4IW6hjzqlTh0GIwgNZ1ezwCWyU3IJgOaN2z5Vyh9rLMGfdY+5fQF38gkj8+y9l7I11VA==";
+ url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.4.tgz";
+ sha512 = "QjNH/VnTrWjlDekJtk5GBKbypcFUBdGexd+eOAeivwwSWky6bIJps1cw/qw1jU5K3TDMgtufAHaBh7OV5X/EqA==";
};
};
- "dockerfile-language-service-0.7.1" = {
+ "dockerfile-language-service-0.7.2" = {
name = "dockerfile-language-service";
packageName = "dockerfile-language-service";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.7.1.tgz";
- sha512 = "10utkoAyysjMJQaIGBE61qA1DRbm/+pwQfy/HzfHVgTY66JjbRKMrvW+qvHFhjC7nL/A2zMs90dvSOCMxIVD6w==";
+ url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.7.2.tgz";
+ sha512 = "kG2/HrdNz4Hp6O9F2akKSODufQ0BTwXE4hd4kCUOp99de47+r8GpWKOyqpJswr+kbvttPmxcnVdV8wT77c2p5g==";
};
};
- "dockerfile-utils-0.9.0" = {
+ "dockerfile-utils-0.9.2" = {
name = "dockerfile-utils";
packageName = "dockerfile-utils";
- version = "0.9.0";
+ version = "0.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.9.0.tgz";
- sha512 = "DIZO2fRVbRx5C9LcDZcF1FSFwMYYxQJ6NjLNlKtatQXO79+dAaWW+bvtBuiaUkhVgmWbkSfs0rpv/yr2X37cJw==";
+ url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.9.2.tgz";
+ sha512 = "QgcYXSZFBBbPuiQskEAVnW3qSShSCSisLNt2wQZXupBQ/x1lFIyvVfWXk4OQqWoatHyAfUBiXDNx9eRXkmSALQ==";
};
};
"doctoc-2.0.1" = {
@@ -22920,13 +22956,22 @@ let
sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A==";
};
};
- "electron-to-chromium-1.3.845" = {
+ "electron-to-chromium-1.3.846" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.845";
+ version = "1.3.846";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.845.tgz";
- sha512 = "y0RorqmExFDI4RjLEC6j365bIT5UAXf9WIRcknvSFHVhbC/dRnCgJnPA3DUUW6SCC85QGKEafgqcHJ6uPdEP1Q==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.846.tgz";
+ sha512 = "2jtSwgyiRzybHRxrc2nKI+39wH3AwQgn+sogQ+q814gv8hIFwrcZbV07Ea9f8AmK0ufPVZUvvAG1uZJ+obV4Jw==";
+ };
+ };
+ "electron-to-chromium-1.3.847" = {
+ name = "electron-to-chromium";
+ packageName = "electron-to-chromium";
+ version = "1.3.847";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.847.tgz";
+ sha512 = "u2VQOKACHgflbu9TAAiJ9UPaQj6AD0dijL79wdqTAzFz86GXSTTPyaoxP3gZflH+r0DAlY0jD4G0TqzHzLN6Vg==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -24767,6 +24812,15 @@ let
sha512 = "8ORl1YRygYGPdR+zcClMqzaU+JQuvdNIw/s0RNwYluxNecEHkDEcXFmO6A5T79p7e48KI8iXJYt6KIn4Z9z4bg==";
};
};
+ "exif-parser-0.1.12" = {
+ name = "exif-parser";
+ packageName = "exif-parser";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz";
+ sha1 = "58a9d2d72c02c1f6f02a0ef4a9166272b7760922";
+ };
+ };
"exit-0.1.2" = {
name = "exit";
packageName = "exit";
@@ -24857,13 +24911,13 @@ let
sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929";
};
};
- "expo-pwa-0.0.94" = {
+ "expo-pwa-0.0.95" = {
name = "expo-pwa";
packageName = "expo-pwa";
- version = "0.0.94";
+ version = "0.0.95";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.94.tgz";
- sha512 = "r/AYEtdRMrvPafgFxxIv7FXQQYgYFFm2YzxOVFBX2/ODs4HU/fNcxZ77kICn2jY9SHSmXps4TluHLpkr76Paxg==";
+ url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.95.tgz";
+ sha512 = "GV9rnBQ1HBwT2jPif11BoFdP9QXd0fFGq0QJd49U2/3UDT8IZIHj7np3StpbA6cz6h+l1aPo3jwXBB+kb/7xFQ==";
};
};
"express-2.5.11" = {
@@ -25784,6 +25838,24 @@ let
sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==";
};
};
+ "file-exists-5.0.1" = {
+ name = "file-exists";
+ packageName = "file-exists";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-exists/-/file-exists-5.0.1.tgz";
+ sha512 = "TeBMgeKbdSsQtcY2XqKY/yTa4BciMD/Gw8YcND0XMDZt4CDj87l1Wl4x7K0ravZ80tZcyIGMD0hj2VSRPR8M8Q==";
+ };
+ };
+ "file-extension-4.0.5" = {
+ name = "file-extension";
+ packageName = "file-extension";
+ version = "4.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-extension/-/file-extension-4.0.5.tgz";
+ sha512 = "l0rOL3aKkoi6ea7MNZe6OHgqYYpn48Qfflr8Pe9G9JPPTx5A+sfboK91ZufzIs59/lPqh351l0eb6iKU9J5oGg==";
+ };
+ };
"file-loader-3.0.1" = {
name = "file-loader";
packageName = "file-loader";
@@ -28196,6 +28268,15 @@ let
sha512 = "OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==";
};
};
+ "glob-7.2.0" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz";
+ sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==";
+ };
+ };
"glob-base-0.3.0" = {
name = "glob-base";
packageName = "glob-base";
@@ -33031,6 +33112,15 @@ let
sha512 = "2Xj8sA0zDrAcaoWfBiNmc6VPWAgKDpim0T3J9Djq7vbm1UjwbUWzeuLu/FwC46g3cBbAn0E5R0xwVtOobM6Xxg==";
};
};
+ "is-path-cwd-1.0.0" = {
+ name = "is-path-cwd";
+ packageName = "is-path-cwd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz";
+ sha1 = "d225ec23132e89edd38fda767472e62e65f1106d";
+ };
+ };
"is-path-cwd-2.2.0" = {
name = "is-path-cwd";
packageName = "is-path-cwd";
@@ -33040,6 +33130,15 @@ let
sha512 = "w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==";
};
};
+ "is-path-in-cwd-1.0.1" = {
+ name = "is-path-in-cwd";
+ packageName = "is-path-in-cwd";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz";
+ sha512 = "FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==";
+ };
+ };
"is-path-in-cwd-2.1.0" = {
name = "is-path-in-cwd";
packageName = "is-path-in-cwd";
@@ -33877,6 +33976,15 @@ let
sha1 = "d03f666ca4e6130138565997cacea54164203156";
};
};
+ "iterm2-version-3.0.0" = {
+ name = "iterm2-version";
+ packageName = "iterm2-version";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterm2-version/-/iterm2-version-3.0.0.tgz";
+ sha512 = "R2SE/AQrE4IhlyRbBp7ASIjFO+Wlpfra2Q7GMZkOjQb890MLtKyINPawJ7fr+Z7CPgHoXj2J3BNyebBIbVn8PQ==";
+ };
+ };
"jade-0.26.3" = {
name = "jade";
packageName = "jade";
@@ -34129,6 +34237,15 @@ let
sha512 = "Apz3AqpJhToFlo70mwnlbVyqhJRagzhNKKp84ZMeTqe/Ay9oIno8unm7eFepdlR8m8wz/9JXJQxUjK/3Ku/cpg==";
};
};
+ "jpeg-js-0.2.0" = {
+ name = "jpeg-js";
+ packageName = "jpeg-js";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.2.0.tgz";
+ sha1 = "53e448ec9d263e683266467e9442d2c5a2ef5482";
+ };
+ };
"jpeg-js-0.4.3" = {
name = "jpeg-js";
packageName = "jpeg-js";
@@ -34147,6 +34264,16 @@ let
sha1 = "f6f9f099f9882bad84585c6b1004344d6fadb33c";
};
};
+ "jpgjs-git://github.com/notmasteryet/jpgjs" = {
+ name = "jpgjs";
+ packageName = "jpgjs";
+ version = "1.0.0";
+ src = fetchgit {
+ url = "git://github.com/notmasteryet/jpgjs";
+ rev = "f1d30922fda93417669246f5a25cf2393dd9c108";
+ sha256 = "c1b7d85fad2ff0b6a2d1ed1140142c0450e3240a371703ad66d60cb3b5f612b6";
+ };
+ };
"jquery-3.6.0" = {
name = "jquery";
packageName = "jquery";
@@ -34183,13 +34310,13 @@ let
sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==";
};
};
- "js-base64-3.7.1" = {
+ "js-base64-3.7.2" = {
name = "js-base64";
packageName = "js-base64";
- version = "3.7.1";
+ version = "3.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.1.tgz";
- sha512 = "XyYXEUTP3ykPPnGPoesMr4yBygopit99iXW52yT1EWrkzwzvtAor/pbf+EBuDkwqSty7K10LeTjCkUn8c166aQ==";
+ url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz";
+ sha512 = "NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==";
};
};
"js-beautify-1.14.0" = {
@@ -34498,13 +34625,13 @@ let
sha512 = "GOGAy5b+zCGeyYziBoNVXgamL2CEZKMj5moeemkyN4AUHUqugNk3fSul2Zdbxs2S13Suk0D9iYAgChDxew0bOw==";
};
};
- "jsii-srcmak-0.1.350" = {
+ "jsii-srcmak-0.1.351" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.350";
+ version = "0.1.351";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.350.tgz";
- sha512 = "SVrE9jpwomQc6S+nk0aETasXIrcH6vfORCgU6ROhUhsLzOMch00tOcE/HYcnCCOpIMqFfPPg77rzzT3c0bBJ0g==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.351.tgz";
+ sha512 = "ZiXB7nvNrxylnbf8gUWgcHwciizWLGrVlO9xVdqoAOqAxSEwLPZk721nYwp7LHTi6c4HAiBtAHsNZC4Dd4As5Q==";
};
};
"json-bigint-1.0.0" = {
@@ -34795,13 +34922,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.2.26" = {
+ "json2jsii-0.2.27" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.2.26";
+ version = "0.2.27";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.26.tgz";
- sha512 = "Xz6y4Ss4UG37rIjrYSWVjmhTCGoR6oIbCrD2Jn9KPccjCncz9upi5U11z4i4JUKu9DcYp8hfEgq0DQbw0YvLIA==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.27.tgz";
+ sha512 = "dl1jji4Z+YHm08ckQdW2f6gS7WF+f4UEEqPbduFpP8wTAxBvKnYFxuzPEUQCONi2MjSLBBPHgmtisUYqCONTYw==";
};
};
"json3-3.2.6" = {
@@ -34930,6 +35057,15 @@ let
sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
};
};
+ "jsonfile-5.0.0" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz";
+ sha512 = "NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==";
+ };
+ };
"jsonfile-6.1.0" = {
name = "jsonfile";
packageName = "jsonfile";
@@ -36460,6 +36596,15 @@ let
sha512 = "rWrS5lO2oZhLbts7R58QDh1Hf/A/QIGA8Jew0iZrIFix9afiz3+xwJi5LFkB0nIaFnWvpOeFP4deDq3ADcF3Hw==";
};
};
+ "load-bmfont-1.4.1" = {
+ name = "load-bmfont";
+ packageName = "load-bmfont";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz";
+ sha512 = "8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==";
+ };
+ };
"load-ip-set-2.2.1" = {
name = "load-ip-set";
packageName = "load-ip-set";
@@ -37981,13 +38126,13 @@ let
sha512 = "em5ojIhU18fIMOw/333mD+ZLE2fis0EzXl1ZwHx4iQzmpQi6odNiY/t+ITNr33JZhT9/KEaH+UPIipr6a9EjWg==";
};
};
- "logform-2.2.0" = {
+ "logform-2.3.0" = {
name = "logform";
packageName = "logform";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz";
- sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==";
+ url = "https://registry.npmjs.org/logform/-/logform-2.3.0.tgz";
+ sha512 = "graeoWUH2knKbGthMtuG1EfaSPMZFZBIrhuJHhkS5ZseFBrc7DupCzihOQAzsK/qIKPQaPJ/lFQFctILUY5ARQ==";
};
};
"logidrom-0.3.1" = {
@@ -41636,6 +41781,15 @@ let
sha512 = "7sBZo9wthqNJ7QXnfVXZL7fkKJLN55GLOdX+RyZT34UOvxxnFtJe/c7K0ZRLAKOvaY1xJThFFn0Usw2H9R6Frg==";
};
};
+ "nanocolors-0.1.6" = {
+ name = "nanocolors";
+ packageName = "nanocolors";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanocolors/-/nanocolors-0.1.6.tgz";
+ sha512 = "2pvTw6vYRaBLGir2xR7MxaJtyWkrn+C53EpW8yPotG+pdAwBvt0Xwk4VJ6VHLY0aLthVZPvDfm9TdZvrvAm5UQ==";
+ };
+ };
"nanoguard-1.3.0" = {
name = "nanoguard";
packageName = "nanoguard";
@@ -42529,13 +42683,13 @@ let
sha512 = "V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==";
};
};
- "node-fetch-2.6.4" = {
+ "node-fetch-2.6.5" = {
name = "node-fetch";
packageName = "node-fetch";
- version = "2.6.4";
+ version = "2.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.4.tgz";
- sha512 = "aD1fO+xtLiSCc9vuD+sYMxpIuQyhHscGSkBEo2o5LTV/3bTEAYvdUii29n8LlO5uLCmWdGP7uVUVXFo5SRdkLA==";
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz";
+ sha512 = "mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==";
};
};
"node-fetch-h2-2.3.0" = {
@@ -45149,6 +45303,15 @@ let
sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==";
};
};
+ "p-map-1.2.0" = {
+ name = "p-map";
+ packageName = "p-map";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz";
+ sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==";
+ };
+ };
"p-map-2.1.0" = {
name = "p-map";
packageName = "p-map";
@@ -45599,6 +45762,33 @@ let
sha1 = "d3460bf1ddd0dfaeed42da754242e65fb684a81f";
};
};
+ "parse-bmfont-ascii-1.0.6" = {
+ name = "parse-bmfont-ascii";
+ packageName = "parse-bmfont-ascii";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz";
+ sha1 = "11ac3c3ff58f7c2020ab22769079108d4dfa0285";
+ };
+ };
+ "parse-bmfont-binary-1.0.6" = {
+ name = "parse-bmfont-binary";
+ packageName = "parse-bmfont-binary";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz";
+ sha1 = "d038b476d3e9dd9db1e11a0b0e53a22792b69006";
+ };
+ };
+ "parse-bmfont-xml-1.1.4" = {
+ name = "parse-bmfont-xml";
+ packageName = "parse-bmfont-xml";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz";
+ sha512 = "bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==";
+ };
+ };
"parse-conflict-json-1.1.1" = {
name = "parse-conflict-json";
packageName = "parse-conflict-json";
@@ -46580,6 +46770,15 @@ let
sha512 = "YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w==";
};
};
+ "phin-2.9.3" = {
+ name = "phin";
+ packageName = "phin";
+ version = "2.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz";
+ sha512 = "CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==";
+ };
+ };
"physical-cpu-count-2.0.0" = {
name = "physical-cpu-count";
packageName = "physical-cpu-count";
@@ -46778,6 +46977,15 @@ let
sha512 = "WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==";
};
};
+ "pixelmatch-4.0.2" = {
+ name = "pixelmatch";
+ packageName = "pixelmatch";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz";
+ sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854";
+ };
+ };
"pixiv-api-client-0.25.0" = {
name = "pixiv-api-client";
packageName = "pixiv-api-client";
@@ -47238,6 +47446,15 @@ let
sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==";
};
};
+ "postcss-8.3.7" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "8.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.3.7.tgz";
+ sha512 = "9SaY7nnyQ63/WittqZYAvkkYPyKxchMKH71UDzeTmWuLSvxTRpeEeABZAzlCi55cuGcoFyoV/amX2BdsafQidQ==";
+ };
+ };
"postcss-calc-7.0.5" = {
name = "postcss-calc";
packageName = "postcss-calc";
@@ -48192,15 +48409,6 @@ let
sha512 = "973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==";
};
};
- "pretty-time-1.1.0" = {
- name = "pretty-time";
- packageName = "pretty-time";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz";
- sha512 = "28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==";
- };
- };
"prettyjson-1.2.1" = {
name = "prettyjson";
packageName = "prettyjson";
@@ -49749,6 +49957,15 @@ let
sha512 = "l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==";
};
};
+ "puppeteer-1.20.0" = {
+ name = "puppeteer";
+ packageName = "puppeteer";
+ version = "1.20.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz";
+ sha512 = "bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ==";
+ };
+ };
"puppeteer-10.4.0" = {
name = "puppeteer";
packageName = "puppeteer";
@@ -53394,13 +53611,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.56.3" = {
+ "rollup-2.57.0" = {
name = "rollup";
packageName = "rollup";
- version = "2.56.3";
+ version = "2.57.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.56.3.tgz";
- sha512 = "Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.57.0.tgz";
+ sha512 = "bKQIh1rWKofRee6mv8SrF2HdP6pea5QkwBZSMImJysFj39gQuiV8MEPBjXOCpzk3wSYp63M2v2wkWBmFC8O/rg==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -53871,6 +54088,15 @@ let
sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
};
};
+ "safe-stable-stringify-1.1.1" = {
+ name = "safe-stable-stringify";
+ packageName = "safe-stable-stringify";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-1.1.1.tgz";
+ sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==";
+ };
+ };
"safer-buffer-2.1.2" = {
name = "safer-buffer";
packageName = "safer-buffer";
@@ -53952,13 +54178,13 @@ let
sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182";
};
};
- "sass-1.42.0" = {
+ "sass-1.42.1" = {
name = "sass";
packageName = "sass";
- version = "1.42.0";
+ version = "1.42.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.42.0.tgz";
- sha512 = "kcjxsemgaOnfl43oZgO/IePLvXQI0ZKzo0/xbCt6uyrg3FY/FF8hVK9YoO8GiZBcEG2Ebl79EKnUc+aiE4f2Vw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz";
+ sha512 = "/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==";
};
};
"sax-0.5.8" = {
@@ -56661,13 +56887,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.5.2" = {
+ "ssb-db2-2.6.0" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.5.2";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.5.2.tgz";
- sha512 = "S0eTxwG2BrjZRQsLG/7DfFW5KsFQRuamj+1sUTkneKAEixOnCrK/oQQV//w+EQHrhIVuMUMUgbpzzT0LByjtoQ==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.6.0.tgz";
+ sha512 = "xQq//UoHFdXObMFGMaMH4a2M2CTCY++1YmvXkD8RXZ/KdxmQx4UqrfI9gAr+EepUYWYoAV/sSphmTUoX39gm6Q==";
};
};
"ssb-ebt-5.6.7" = {
@@ -56967,13 +57193,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.72" = {
+ "sscaff-1.2.73" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.72";
+ version = "1.2.73";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.72.tgz";
- sha512 = "+EVS+sM+3xDVFc7jIb8A44vnExYtpdfCRkPzCKFomGJXFuDoo52Dg3eIu9S6ueNSm2BLc9SM15/MGRpCtiXJYw==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.73.tgz";
+ sha512 = "mOFmcSfJq6Ck4G+qE3CcZzNFUhYsG9aonMN4fNY65aiiLQL9pufMVj/s85BjMrLmdVavnh7/CZ/FXYldPeBUjA==";
};
};
"ssh-config-1.1.6" = {
@@ -57255,15 +57481,6 @@ let
sha1 = "161c7dac177659fd9811f43771fa99381478628c";
};
};
- "std-env-2.3.0" = {
- name = "std-env";
- packageName = "std-env";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/std-env/-/std-env-2.3.0.tgz";
- sha512 = "4qT5B45+Kjef2Z6pE0BkskzsH0GO7GrND0wGlTM1ioUe3v0dGYx9ZJH0Aro/YyA8fqQ5EyIKDRjZojJYMFTflw==";
- };
- };
"stealthy-require-1.1.1" = {
name = "stealthy-require";
packageName = "stealthy-require";
@@ -57615,13 +57832,13 @@ let
sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
};
};
- "streamx-2.11.1" = {
+ "streamx-2.11.2" = {
name = "streamx";
packageName = "streamx";
- version = "2.11.1";
+ version = "2.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/streamx/-/streamx-2.11.1.tgz";
- sha512 = "GG/cBcuwhKEu2MxJIdlFnrstgtwERx0yX0tjZUVFHmmq65ROrCEAVrfoYbNQnXdq76rH0Y/SuO9VcgW+ZPkeMQ==";
+ url = "https://registry.npmjs.org/streamx/-/streamx-2.11.2.tgz";
+ sha512 = "CoIBTrCoMKzhTMXZlMwlkjxCH+8e5H5C7WeuWKSlY5ldtCUMkkrLh5UT2+2OHAnpTPrjTimKQl/aXxgbhZtH5Q==";
};
};
"strftime-0.10.0" = {
@@ -59443,6 +59660,15 @@ let
sha1 = "597afac2fa6369a6f17860bce9c5f66d6ea0ca96";
};
};
+ "term-img-3.0.0" = {
+ name = "term-img";
+ packageName = "term-img";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/term-img/-/term-img-3.0.0.tgz";
+ sha512 = "ZXwggmsv+mheSNZ0yOtpOBS5kTSosGPVcTeS9didqs2VRW0sIByYr2cLS1N2vlpGAjq5PKqmy6Z3hZEgcCG4Wg==";
+ };
+ };
"term-size-1.2.0" = {
name = "term-size";
packageName = "term-size";
@@ -59461,6 +59687,15 @@ let
sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==";
};
};
+ "terminal-image-0.1.2" = {
+ name = "terminal-image";
+ packageName = "terminal-image";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/terminal-image/-/terminal-image-0.1.2.tgz";
+ sha512 = "2dNHutFy2+EM93JGKw23avlgO9Uf1iBdKR87Lv9SYHUwPJmmDM9cN7mkyo65bLYP3AHMU9gDZV4HKTRbr99AAw==";
+ };
+ };
"terminal-kit-1.49.4" = {
name = "terminal-kit";
packageName = "terminal-kit";
@@ -60037,6 +60272,15 @@ let
sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164";
};
};
+ "tinycolor2-1.4.2" = {
+ name = "tinycolor2";
+ packageName = "tinycolor2";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz";
+ sha512 = "vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==";
+ };
+ };
"tinyqueue-2.0.3" = {
name = "tinyqueue";
packageName = "tinyqueue";
@@ -63134,6 +63378,15 @@ let
sha1 = "d52b2fd632a99eca8d9d4a39eece014a6a2b0048";
};
};
+ "utif-1.3.0" = {
+ name = "utif";
+ packageName = "utif";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utif/-/utif-1.3.0.tgz";
+ sha512 = "Rv9/OsKlBgMlLGai2EAoVheIbdBlndMunkXH4BuU81R2+Nky24I670OdGIb+NMpCbuHGyKjk9OQ7hdyOxuNXgw==";
+ };
+ };
"util-0.10.3" = {
name = "util";
packageName = "util";
@@ -63611,13 +63864,13 @@ let
sha1 = "cfde751860a15822db3b132bc59b116a4adaf01b";
};
};
- "vega-5.20.2" = {
+ "vega-5.21.0" = {
name = "vega";
packageName = "vega";
- version = "5.20.2";
+ version = "5.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega/-/vega-5.20.2.tgz";
- sha512 = "qmH7aD9GGPpssVdxL1xgcdxTbQzyRUeRR16Os385ymvQhiwCYQNA6+eXUPAZDTVLfk0RXu6Jzj6kUE5jQ80EVw==";
+ url = "https://registry.npmjs.org/vega/-/vega-5.21.0.tgz";
+ sha512 = "yqqRa9nAqYoAxe7sVhRpsh0b001fly7Yx05klPkXmrvzjxXd07gClW1mOuGgSnVQqo7jTp/LYgbO1bD37FbEig==";
};
};
"vega-canvas-1.2.6" = {
@@ -63665,6 +63918,15 @@ let
sha512 = "UwCu50Sqd8kNZ1X/XgiAY+QAyQUmGFAwyDu7y0T5fs6/TPQnDo/Bo346NgSgINBEhEKOAMY1Nd/rPOk4UEm/ew==";
};
};
+ "vega-event-selector-3.0.0" = {
+ name = "vega-event-selector";
+ packageName = "vega-event-selector";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.0.tgz";
+ sha512 = "Gls93/+7tEJGE3kUuUnxrBIxtvaNeF01VIFB2Q2Of2hBIBvtHX74jcAdDtkh5UhhoYGD8Q1J30P5cqEBEwtPoQ==";
+ };
+ };
"vega-expression-4.0.1" = {
name = "vega-expression";
packageName = "vega-expression";
@@ -63674,6 +63936,15 @@ let
sha512 = "ZrDj0hP8NmrCpdLFf7Rd/xMUHGoSYsAOTaYp7uXZ2dkEH5x0uPy5laECMc8TiQvL8W+8IrN2HAWCMRthTSRe2Q==";
};
};
+ "vega-expression-5.0.0" = {
+ name = "vega-expression";
+ packageName = "vega-expression";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.0.tgz";
+ sha512 = "y5+c2frq0tGwJ7vYXzZcfVcIRF/QGfhf2e+bV1Z0iQs+M2lI1II1GPDdmOcMKimpoCVp/D61KUJDIGE1DSmk2w==";
+ };
+ };
"vega-force-4.0.7" = {
name = "vega-force";
packageName = "vega-force";
@@ -63692,13 +63963,13 @@ let
sha512 = "oTAeub3KWm6nKhXoYCx1q9G3K43R6/pDMXvqDlTSUtjoY7b/Gixm8iLcir5S9bPjvH40n4AcbZsPmNfL/Up77A==";
};
};
- "vega-functions-5.12.0" = {
+ "vega-functions-5.12.1" = {
name = "vega-functions";
packageName = "vega-functions";
- version = "5.12.0";
+ version = "5.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.12.0.tgz";
- sha512 = "3hljmGs+gR7TbO/yYuvAP9P5laKISf1GKk4yRHLNdM61fWgKm8pI3f6LY2Hvq9cHQFTiJ3/5/Bx2p1SX5R4quQ==";
+ url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.12.1.tgz";
+ sha512 = "7cHfcjXOj27qEbh2FTzWDl7FJK4xGcMFF7+oiyqa0fp7BU/wNT5YdNV0t5kCX9WjV7mfJWACKV74usLJbyM6GA==";
};
};
"vega-geo-4.3.8" = {
@@ -63719,31 +63990,31 @@ let
sha512 = "4XaWK6V38/QOZ+vllKKTafiwL25m8Kd+ebHmDV+Q236ONHmqc/gv82wwn9nBeXPEfPv4FyJw2SRoqa2Jol6fug==";
};
};
- "vega-label-1.0.0" = {
+ "vega-label-1.1.0" = {
name = "vega-label";
packageName = "vega-label";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-label/-/vega-label-1.0.0.tgz";
- sha512 = "hCdm2pcHgkKgxnzW9GvX5JmYNiUMlOXOibtMmBzvFBQHX3NiV9giQ5nsPiQiFbV08VxEPtM+VYXr2HyrIcq5zQ==";
+ url = "https://registry.npmjs.org/vega-label/-/vega-label-1.1.0.tgz";
+ sha512 = "LAThIiDEsZxYvbSkvPLJ93eJF+Ts8RXv1IpBh8gmew8XGmaLJvVkzdsMe7WJJwuaVEsK7ZZFyB/Inkp842GW6w==";
};
};
- "vega-loader-4.4.0" = {
+ "vega-loader-4.4.1" = {
name = "vega-loader";
packageName = "vega-loader";
- version = "4.4.0";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-loader/-/vega-loader-4.4.0.tgz";
- sha512 = "e5enQECdau7rJob0NFB5pGumh3RaaSWWm90+boxMy3ay2b4Ki/3XIvo+C4F1Lx04qSxvQF7tO2LJcklRm6nqRA==";
+ url = "https://registry.npmjs.org/vega-loader/-/vega-loader-4.4.1.tgz";
+ sha512 = "dj65i4qlNhK0mOmjuchHgUrF5YUaWrYpx0A8kXA68lBk5Hkx8FNRztkcl07CZJ1+8V81ymEyJii9jzGbhEX0ag==";
};
};
- "vega-parser-6.1.3" = {
+ "vega-parser-6.1.4" = {
name = "vega-parser";
packageName = "vega-parser";
- version = "6.1.3";
+ version = "6.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.1.3.tgz";
- sha512 = "8oiVhhW26GQ4GZBvolId8FVFvhn3s1KGgPlD7Z+4P2wkV+xe5Nqu0TEJ20F/cn3b88fd0Vj48X3BH3dlSeKNFg==";
+ url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.1.4.tgz";
+ sha512 = "tORdpWXiH/kkXcpNdbSVEvtaxBuuDtgYp9rBunVW9oLsjFvFXbSWlM1wvJ9ZFSaTfx6CqyTyGMiJemmr1QnTjQ==";
};
};
"vega-projection-1.4.5" = {
@@ -63791,22 +64062,22 @@ let
sha512 = "QaegQzbFE2yhYLNWAmHwAuguW3yTtQrmwvfxYT8tk0g+KKodrQ5WSmNrphWXhqwtsgVSvtdZkfp2IPeumcOQJg==";
};
};
- "vega-selections-5.3.0" = {
+ "vega-selections-5.3.1" = {
name = "vega-selections";
packageName = "vega-selections";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.3.0.tgz";
- sha512 = "vC4NPsuN+IffruFXfH0L3i2A51RgG4PqpLv85TvrEAIYnSkyKDE4bf+wVraR3aPdnLLkc3+tYuMi6le5FmThIA==";
+ url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.3.1.tgz";
+ sha512 = "cm4Srw1WHjcLGXX7GpxiUlfESv8XPu5b6Vh3mqMDPU94P2FO91SR9gei+EtRdt+KCFgIjr//MnRUjg/hAWwjkQ==";
};
};
- "vega-statistics-1.7.9" = {
+ "vega-statistics-1.7.10" = {
name = "vega-statistics";
packageName = "vega-statistics";
- version = "1.7.9";
+ version = "1.7.10";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.7.9.tgz";
- sha512 = "T0sd2Z08k/mHxr1Vb4ajLWytPluLFYnsYqyk4SIS5czzUs4errpP2gUu63QJ0B7CKNu33vnS9WdOMOo/Eprr/Q==";
+ url = "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.7.10.tgz";
+ sha512 = "QLb12gcfpDZ9K5h3TLGrlz4UXDH9wSPyg9LLfOJZacxvvJEPohacUQNrGEAVtFO9ccUCerRfH9cs25ZtHsOZrw==";
};
};
"vega-time-2.0.4" = {
@@ -63827,13 +64098,13 @@ let
sha512 = "JGBhm5Bf6fiGTUSB5Qr5ckw/KU9FJcSV5xIe/y4IobM/i/KNwI1i1fP45LzP4F4yZc0DMTwJod2UvFHGk9plKA==";
};
};
- "vega-typings-0.21.0" = {
+ "vega-typings-0.22.0" = {
name = "vega-typings";
packageName = "vega-typings";
- version = "0.21.0";
+ version = "0.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.21.0.tgz";
- sha512 = "dG0RtnJUn3+BQMO4NjjTdcp5UTBR56yQsLXPPCAFUHeLuycEVKlyhBa/kbvAZv2r+QxdeEYwKUNYy9CQotF5KA==";
+ url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.22.0.tgz";
+ sha512 = "TgBGRkZHQgcduGsoFKq3Scpn6eNY4L3p0YKRhgCPVU3HEaCeYkPFGaR8ynK+XrKmvrqpDv0YHIOwCt7Gn3RpCA==";
};
};
"vega-util-1.16.1" = {
@@ -63845,6 +64116,15 @@ let
sha512 = "FdgD72fmZMPJE99FxvFXth0IL4BbLA93WmBg/lvcJmfkK4Uf90WIlvGwaIUdSePIsdpkZjBPyQcHMQ8OcS8Smg==";
};
};
+ "vega-util-1.17.0" = {
+ name = "vega-util";
+ packageName = "vega-util";
+ version = "1.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vega-util/-/vega-util-1.17.0.tgz";
+ sha512 = "HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w==";
+ };
+ };
"vega-view-5.10.1" = {
name = "vega-view";
packageName = "vega-view";
@@ -64259,13 +64539,13 @@ let
sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09";
};
};
- "vsce-1.99.0" = {
+ "vsce-1.100.0" = {
name = "vsce";
packageName = "vsce";
- version = "1.99.0";
+ version = "1.100.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-1.99.0.tgz";
- sha512 = "fyzOLcmcgBmA+CYg0NyYU3JMmcOBcf94ZzZZYi83mIoXBRU391mYByoJEPnkl8xZGa3/OW5lH438/JOThlYPNA==";
+ url = "https://registry.npmjs.org/vsce/-/vsce-1.100.0.tgz";
+ sha512 = "sY1NVSZkesioir/1w04igdSPKKHb4QAn7AngOQIKvNTvtFUFuEE/KrcURcld9Gai9W5167zaeifW5rWUsX3rLg==";
};
};
"vscode-css-languageservice-3.0.13" = {
@@ -64979,13 +65259,13 @@ let
sha512 = "hQ/cVKsNqGZ/UbZB/oakOGFqic00YAMM5/PEj3Bt4vKarv2jWIWzDbqlwT94qMs/exAQAsvMOq99sZblV92zxQ==";
};
};
- "walk-2.3.14" = {
+ "walk-2.3.15" = {
name = "walk";
packageName = "walk";
- version = "2.3.14";
+ version = "2.3.15";
src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz";
- sha512 = "5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==";
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.15.tgz";
+ sha512 = "4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==";
};
};
"walk-sync-0.3.4" = {
@@ -65186,13 +65466,13 @@ let
sha512 = "8G0xBj05hqZybCqBtW7RPZ/hWEtP3DiLTauQzGJZuZYfVRgw7qj7iaZ+8djNqJ4VPrdOO+pS2dR1JsTbsLxdYg==";
};
};
- "web3-utils-1.5.2" = {
+ "web3-utils-1.5.3" = {
name = "web3-utils";
packageName = "web3-utils";
- version = "1.5.2";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.2.tgz";
- sha512 = "quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==";
+ url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.3.tgz";
+ sha512 = "56nRgA+Ad9SEyCv39g36rTcr5fpsd4L9LgV3FK0aB66nAMazLAA6Qz4lH5XrUKPDyBIPGJIR+kJsyRtwcu2q1Q==";
};
};
"webassemblyjs-1.11.1" = {
@@ -65465,15 +65745,6 @@ let
sha512 = "kFMnDzFTzyvVmn4ajaj0xEJavvYizd3I/KmQ6C5aUstcAkNwZUidxkk/uEaEPSydaAn66v8ZcP1+bhKSshNJUQ==";
};
};
- "webpackbar-4.0.0" = {
- name = "webpackbar";
- packageName = "webpackbar";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/webpackbar/-/webpackbar-4.0.0.tgz";
- sha512 = "k1qRoSL/3BVuINzngj09nIwreD8wxV4grcuhHTD8VJgUbGcy8lQSPqv+bM00B7F+PffwIsQ8ISd4mIwRbr23eQ==";
- };
- };
"webrtc-adapter-7.7.1" = {
name = "webrtc-adapter";
packageName = "webrtc-adapter";
@@ -66455,13 +66726,13 @@ let
sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==";
};
};
- "xdl-59.1.0" = {
+ "xdl-59.2.0" = {
name = "xdl";
packageName = "xdl";
- version = "59.1.0";
+ version = "59.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xdl/-/xdl-59.1.0.tgz";
- sha512 = "kEkXVds9GWYBV/oIPHvdhoTCQcP8bFG2H+OV6qfytw66gnGLrj0qYSfEvlg+0U0GLChONR37iukGCj19oFnYig==";
+ url = "https://registry.npmjs.org/xdl/-/xdl-59.2.0.tgz";
+ sha512 = "jeG34Ul/cHtMv8ZTcRd5Hvgs6Udj83VVlJWodb+sH/K/arG8zKKW9/JhJqBrcI9paxB0Fn/1osFsvv4akKYsrg==";
};
};
"xenvar-0.5.1" = {
@@ -66563,6 +66834,15 @@ let
sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==";
};
};
+ "xml-parse-from-string-1.0.1" = {
+ name = "xml-parse-from-string";
+ packageName = "xml-parse-from-string";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz";
+ sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28";
+ };
+ };
"xml2js-0.2.4" = {
name = "xml2js";
packageName = "xml2js";
@@ -68232,10 +68512,10 @@ in
"@bitwarden/cli" = nodeEnv.buildNodePackage {
name = "_at_bitwarden_slash_cli";
packageName = "@bitwarden/cli";
- version = "1.18.0";
+ version = "1.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.18.0.tgz";
- sha512 = "U3d1PHdlBE68r2t0p3GS+IA9BzrZXl7haTCiTwHBOoxKY5gL4Frm//duwCxfT1d8p9ucCiuAW6tDQsldSI5xhg==";
+ url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.18.1.tgz";
+ sha512 = "se1jAVO97eBE8JqBsqmFsUVaDL9h0eR45mra+Y5ebj5dXogfu9tMfLMqJ7O6/cC6fECgDuJF3hOZZ+99L7xk1A==";
};
dependencies = [
sources."@tootallnate/once-1.1.2"
@@ -68316,7 +68596,7 @@ in
sources."mimic-fn-2.1.0"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
- (sources."node-fetch-2.6.4" // {
+ (sources."node-fetch-2.6.5" // {
dependencies = [
sources."tr46-0.0.3"
sources."webidl-conversions-3.0.1"
@@ -68622,7 +68902,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -69012,7 +69292,7 @@ in
sources."stream-collector-1.0.1"
sources."stream-equal-1.1.1"
sources."stream-shift-1.0.1"
- sources."streamx-2.11.1"
+ sources."streamx-2.11.2"
(sources."string-width-2.1.1" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -69131,15 +69411,15 @@ in
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.2.2"
- sources."@octokit/plugin-paginate-rest-2.16.3"
+ sources."@octokit/openapi-types-10.4.0"
+ sources."@octokit/plugin-paginate-rest-2.16.4"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.10.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.11.1"
sources."@octokit/plugin-retry-3.0.9"
sources."@octokit/request-5.6.1"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.10.0"
- sources."@octokit/types-6.28.1"
+ sources."@octokit/rest-18.11.0"
+ sources."@octokit/types-6.30.0"
sources."@sideway/address-4.1.2"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
@@ -69184,7 +69464,7 @@ in
sources."mimic-fn-2.1.0"
sources."ms-2.1.2"
sources."netrc-0.1.4"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-version-1.2.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
@@ -69266,7 +69546,7 @@ in
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -69301,7 +69581,7 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
@@ -69324,7 +69604,6 @@ in
sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."commander-4.1.1"
sources."concat-map-0.0.1"
@@ -69332,7 +69611,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.846"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.3" // {
@@ -69431,6 +69710,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mute-stream-0.0.8"
+ sources."nanocolors-0.1.6"
sources."neo-async-2.6.2"
sources."node-emoji-1.10.0"
sources."node-releases-1.1.76"
@@ -69803,7 +70083,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -69818,13 +70098,13 @@ in
})
sources."@vue/cli-ui-addon-webpack-4.5.13"
sources."@vue/cli-ui-addon-widgets-4.5.13"
- (sources."@vue/compiler-core-3.2.12" // {
+ (sources."@vue/compiler-core-3.2.13" // {
dependencies = [
sources."source-map-0.6.1"
];
})
- sources."@vue/compiler-dom-3.2.12"
- sources."@vue/shared-3.2.12"
+ sources."@vue/compiler-dom-3.2.13"
+ sources."@vue/shared-3.2.13"
sources."@wry/equality-0.1.11"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -69892,7 +70172,7 @@ in
sources."babel-core-7.0.0-bridge.0"
sources."babel-plugin-dynamic-import-node-2.3.3"
sources."babel-plugin-polyfill-corejs2-0.2.2"
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
@@ -69926,7 +70206,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -69981,7 +70261,6 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -70074,7 +70353,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -70382,6 +70661,7 @@ in
sources."mkdirp-0.5.5"
sources."ms-2.0.0"
sources."mute-stream-0.0.8"
+ sources."nanocolors-0.1.6"
sources."nanoid-2.1.11"
(sources."nanomatch-1.2.13" // {
dependencies = [
@@ -70399,7 +70679,7 @@ in
sources."neo-async-2.6.2"
sources."nice-try-1.0.5"
sources."node-dir-0.1.17"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-ipc-9.2.1"
sources."node-modules-regexp-1.0.0"
(sources."node-notifier-9.0.1" // {
@@ -71090,19 +71370,18 @@ in
sources."async-3.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."caniuse-lite-1.0.30001259"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."commander-8.2.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -71148,6 +71427,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."ms-2.1.2"
+ sources."nanocolors-0.1.6"
sources."node-releases-1.1.76"
sources."node.extend-2.0.2"
(sources."nomnom-1.8.1" // {
@@ -71196,7 +71476,7 @@ in
dependencies = [
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -71224,18 +71504,18 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.3.4";
+ version = "10.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.4.tgz";
- sha512 = "EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.5.tgz";
+ sha512 = "2H5kQSsyoOMdIehTzIt/sC9ZDIgWqlkG/dbevm9B9xQZ1TDPBHpNUDW5ENqqQQzuaBWEo75JkV0LJe+o5Lnr5g==";
};
dependencies = [
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."caniuse-lite-1.0.30001259"
- sources."colorette-1.4.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."escalade-3.1.1"
sources."fraction.js-4.1.1"
+ sources."nanocolors-0.1.6"
sources."node-releases-1.1.76"
sources."normalize-range-0.1.2"
sources."postcss-value-parser-4.1.0"
@@ -71260,14 +71540,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.991.0" // {
+ (sources."aws-sdk-2.993.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -71483,7 +71763,7 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.3.7" // {
dependencies = [
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
];
})
sources."@grpc/proto-loader-0.6.4"
@@ -71970,7 +72250,7 @@ in
sources."process-nextick-args-2.0.1"
(sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
];
})
sources."proxy-addr-2.0.7"
@@ -73311,7 +73591,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -73713,18 +73993,616 @@ in
bypassCache = true;
reconstructLock = true;
};
+ carbon-now-cli = nodeEnv.buildNodePackage {
+ name = "carbon-now-cli";
+ packageName = "carbon-now-cli";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/carbon-now-cli/-/carbon-now-cli-1.4.0.tgz";
+ sha512 = "VVwArD/VAKG2p7Om8x5E7eEHNS/7b2agp8o7zM6i0XXento1XTkLynaQRsuwCtjJwSSvOvNTyRN/akiFQhGBDA==";
+ };
+ dependencies = [
+ sources."@mrmlnc/readdir-enhanced-2.2.1"
+ sources."@nodelib/fs.stat-1.1.3"
+ sources."@samverschueren/stream-to-observable-0.3.1"
+ (sources."@sindresorhus/jimp-0.3.0" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."agent-base-4.3.0"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.2.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."any-observable-0.3.0"
+ (sources."app-path-2.2.0" // {
+ dependencies = [
+ sources."execa-0.4.0"
+ sources."npm-run-path-1.0.0"
+ sources."path-key-1.0.0"
+ ];
+ })
+ sources."arch-2.2.0"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-find-index-1.0.2"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.3.2"
+ sources."arrify-1.0.1"
+ sources."assign-symbols-1.0.0"
+ sources."async-limiter-1.0.1"
+ sources."atob-2.1.2"
+ sources."balanced-match-1.0.2"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-js-1.5.1"
+ sources."bignumber.js-2.4.0"
+ sources."bmp-js-0.0.3"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-from-1.1.2"
+ sources."bytes-3.1.0"
+ sources."cache-base-1.0.1"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."camelcase-keys-4.2.0"
+ sources."capture-stack-trace-1.0.1"
+ sources."chalk-2.4.2"
+ sources."chardet-0.7.0"
+ sources."ci-info-1.6.0"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ (sources."cli-truncate-0.2.1" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."cli-width-2.2.1"
+ sources."clipboardy-1.2.3"
+ sources."code-point-at-1.1.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."component-emitter-1.3.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.5"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.3"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."cross-spawn-async-2.2.5"
+ sources."crypto-random-string-1.0.0"
+ sources."currently-unhandled-0.4.1"
+ sources."date-fns-1.30.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ (sources."decamelize-keys-1.1.0" // {
+ dependencies = [
+ sources."map-obj-1.0.1"
+ ];
+ })
+ sources."decode-uri-component-0.2.0"
+ sources."deep-extend-0.6.0"
+ sources."define-property-2.0.2"
+ (sources."del-3.0.0" // {
+ dependencies = [
+ (sources."globby-6.1.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ ];
+ })
+ sources."depd-1.1.2"
+ sources."dir-glob-2.0.0"
+ sources."dom-walk-0.1.2"
+ sources."dot-prop-4.2.1"
+ sources."duplexer3-0.1.4"
+ sources."elegant-spinner-1.0.1"
+ sources."error-ex-1.3.2"
+ sources."es6-promise-4.2.8"
+ sources."es6-promisify-5.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.8.0"
+ sources."exif-parser-0.1.12"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-3.1.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."extract-zip-1.7.0"
+ sources."fast-glob-2.2.7"
+ sources."fd-slicer-1.1.0"
+ sources."figures-2.0.0"
+ sources."file-exists-5.0.1"
+ sources."file-extension-4.0.5"
+ sources."file-type-3.9.0"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."filter-obj-1.1.0"
+ sources."find-up-2.1.0"
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."get-stdin-6.0.0"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ sources."glob-7.1.7"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
+ sources."glob-to-regexp-0.3.0"
+ sources."global-4.4.0"
+ sources."global-dirs-0.1.1"
+ sources."globby-8.0.2"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.2.8"
+ sources."has-1.0.3"
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
+ sources."has-flag-3.0.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hosted-git-info-2.8.9"
+ sources."http-errors-1.7.3"
+ (sources."https-proxy-agent-2.2.4" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ sources."ms-2.1.3"
+ ];
+ })
+ sources."iconv-lite-0.4.24"
+ sources."ignore-3.3.10"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-3.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."inquirer-6.5.2"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-ci-1.2.1"
+ sources."is-core-module-2.6.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-function-1.0.2"
+ sources."is-glob-4.0.1"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-obj-1.0.1"
+ sources."is-observable-1.1.0"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.2.2"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.2.0"
+ sources."is-stream-1.1.0"
+ sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."iterm2-version-3.0.0"
+ sources."jpeg-js-0.2.0"
+ sources."jpgjs-git://github.com/notmasteryet/jpgjs"
+ sources."json-parse-better-errors-1.0.2"
+ sources."jsonfile-5.0.0"
+ sources."kind-of-6.0.3"
+ sources."latest-version-3.1.0"
+ (sources."listr-0.14.3" // {
+ dependencies = [
+ sources."p-map-2.1.0"
+ ];
+ })
+ sources."listr-silent-renderer-1.1.1"
+ (sources."listr-update-renderer-0.5.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."figures-1.7.0"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."listr-verbose-renderer-0.5.0"
+ (sources."load-bmfont-1.4.1" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ sources."load-json-file-4.0.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.21"
+ (sources."log-symbols-1.0.2" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."log-update-2.3.0"
+ sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.5"
+ sources."make-dir-1.3.0"
+ sources."map-cache-0.2.2"
+ sources."map-obj-2.0.0"
+ sources."map-visit-1.0.0"
+ sources."meow-5.0.0"
+ sources."merge2-1.4.1"
+ sources."micromatch-3.1.10"
+ sources."mime-2.5.2"
+ sources."mimic-fn-1.2.0"
+ sources."min-document-2.19.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ sources."minimist-options-3.0.2"
+ (sources."mixin-deep-1.3.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."mkdirp-0.5.5"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nanoid-2.1.11"
+ sources."nanomatch-1.2.13"
+ sources."normalize-package-data-2.5.0"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opn-5.5.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-map-1.2.0"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ sources."pako-1.0.11"
+ sources."parse-bmfont-ascii-1.0.6"
+ sources."parse-bmfont-binary-1.0.6"
+ sources."parse-bmfont-xml-1.1.4"
+ sources."parse-headers-2.0.4"
+ sources."parse-json-4.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-parse-1.0.7"
+ sources."path-type-3.0.0"
+ sources."pend-1.2.0"
+ sources."phin-2.9.3"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pixelmatch-4.0.2"
+ (sources."plist-3.0.4" // {
+ dependencies = [
+ sources."xmlbuilder-9.0.7"
+ ];
+ })
+ sources."pngjs-3.4.0"
+ sources."posix-character-classes-0.1.1"
+ sources."prepend-http-1.0.4"
+ sources."process-0.11.10"
+ sources."process-nextick-args-2.0.1"
+ sources."progress-2.0.3"
+ sources."proxy-from-env-1.1.0"
+ sources."pseudomap-1.0.2"
+ (sources."puppeteer-1.20.0" // {
+ dependencies = [
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."query-string-6.14.1"
+ sources."quick-lru-1.1.0"
+ sources."raw-body-2.4.1"
+ sources."rc-1.2.8"
+ sources."read-pkg-3.0.0"
+ sources."read-pkg-up-3.0.0"
+ sources."readable-stream-2.3.7"
+ sources."redent-2.0.0"
+ sources."regex-not-1.0.2"
+ sources."registry-auth-token-3.4.0"
+ sources."registry-url-3.1.0"
+ sources."repeat-element-1.1.4"
+ sources."repeat-string-1.6.1"
+ sources."resolve-1.20.0"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
+ sources."rimraf-2.7.1"
+ sources."run-async-2.4.1"
+ sources."rxjs-6.6.7"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.7.1"
+ sources."semver-diff-2.1.0"
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."setprototypeof-1.1.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.4"
+ sources."slash-1.0.0"
+ sources."slice-ansi-0.0.4"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.3"
+ sources."source-map-url-0.4.1"
+ sources."spdx-correct-3.1.1"
+ sources."spdx-exceptions-2.3.0"
+ sources."spdx-expression-parse-3.0.1"
+ sources."spdx-license-ids-3.0.10"
+ sources."split-on-first-1.1.0"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."statuses-1.5.0"
+ sources."strict-uri-encode-2.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ (sources."strip-ansi-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ ];
+ })
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-2.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.2.0"
+ sources."temp-dir-1.0.0"
+ sources."tempy-0.2.1"
+ sources."term-img-3.0.0"
+ (sources."term-size-1.2.0" // {
+ dependencies = [
+ sources."execa-0.7.0"
+ ];
+ })
+ sources."terminal-image-0.1.2"
+ sources."through-2.3.8"
+ sources."timed-out-4.0.1"
+ sources."tinycolor2-1.4.2"
+ sources."tmp-0.0.33"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."toidentifier-1.0.0"
+ sources."trim-newlines-2.0.0"
+ sources."tslib-1.14.1"
+ sources."typedarray-0.0.6"
+ sources."union-value-1.0.1"
+ sources."unique-string-1.0.0"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.5.0"
+ sources."urix-0.1.0"
+ sources."url-parse-lax-1.0.0"
+ sources."use-3.1.1"
+ sources."utif-1.3.0"
+ sources."util-deprecate-1.0.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.1"
+ (sources."wrap-ansi-3.0.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.4.3"
+ sources."ws-6.2.2"
+ sources."xdg-basedir-3.0.0"
+ sources."xhr-2.6.0"
+ sources."xml-parse-from-string-1.0.1"
+ sources."xml2js-0.4.23"
+ sources."xmlbuilder-11.0.1"
+ sources."xtend-4.0.2"
+ sources."yallist-2.1.2"
+ sources."yargs-parser-10.1.0"
+ sources."yauzl-2.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Beautiful images of your code — from right inside your terminal.";
+ homepage = "https://github.com/mixn/carbon-now-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "1.0.0-beta.52";
+ version = "1.0.0-beta.53";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.52.tgz";
- sha512 = "fpmL+BLmLgsNcgf7Nv/zBMZqnk0A2s64ij2Ets/CNplXuP2H+ZK8T7pWKGRPIC1smNQngHkz89RyeK7TQuX8bg==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.53.tgz";
+ sha512 = "capf4GLjMJ0LDCI/AwmhTGjlNvw4ZPSR+jOxwSY3LazA7GuQMpPGAhaLqVVafZSXtlpdTKetnNnQexDbDh1Y3A==";
};
dependencies = [
sources."@jsii/check-node-1.34.0"
sources."@jsii/spec-1.34.0"
- sources."@types/node-12.20.25"
+ sources."@types/node-12.20.26"
sources."@xmldom/xmldom-0.7.5"
sources."ajv-8.6.3"
sources."ansi-regex-5.0.1"
@@ -73735,7 +74613,7 @@ in
sources."camelcase-6.2.0"
sources."case-1.6.3"
sources."cdk8s-1.0.0-beta.46"
- sources."cdk8s-plus-17-1.0.0-beta.74"
+ sources."cdk8s-plus-22-1.0.0-beta.2"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -73748,7 +74626,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.149"
+ sources."constructs-3.3.150"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-5.0.0"
@@ -73826,14 +74704,14 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.350" // {
+ (sources."jsii-srcmak-0.1.351" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.3.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.2.26"
+ sources."json2jsii-0.2.27"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -73871,7 +74749,7 @@ in
sources."snake-case-3.0.4"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.72"
+ sources."sscaff-1.2.73"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -73921,10 +74799,10 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.6.2.tgz";
- sha512 = "Wjwl2i/KE52uuDqaALmcIKGrAlmPdzbWxH9R5EqBUtUi/Haj8HGjSwUm9A2ZQ1qVZw39ppRp0K5Gz/WgEPjrvA==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.6.3.tgz";
+ sha512 = "bWY44GnPyUQGixmM6daB1xB2MqOunwQ0W/6K3NUCV6rZnl/mljWXfoIECEmbBonYxu02ojZQ60s7i7zryBBJ7g==";
};
dependencies = [
sources."@apollo/client-3.4.13"
@@ -73951,14 +74829,14 @@ in
sources."@babel/parser-7.15.7"
sources."@babel/template-7.15.4"
sources."@babel/types-7.15.6"
- sources."@cdktf/hcl2cdk-0.6.2"
- sources."@cdktf/hcl2json-0.6.2"
+ sources."@cdktf/hcl2cdk-0.6.3"
+ sources."@cdktf/hcl2json-0.6.3"
(sources."@graphql-tools/graphql-file-loader-6.2.7" // {
dependencies = [
sources."tslib-2.1.0"
];
})
- sources."@graphql-tools/import-6.4.0"
+ sources."@graphql-tools/import-6.4.1"
(sources."@graphql-tools/load-6.2.8" // {
dependencies = [
sources."tslib-2.2.0"
@@ -73969,15 +74847,15 @@ in
sources."@graphql-tools/utils-8.0.2"
];
})
- (sources."@graphql-tools/mock-8.3.1" // {
+ (sources."@graphql-tools/mock-8.4.0" // {
dependencies = [
- sources."@graphql-tools/utils-8.2.2"
+ sources."@graphql-tools/utils-8.2.3"
];
})
(sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
sources."@graphql-tools/merge-8.1.2"
- sources."@graphql-tools/utils-8.2.2"
+ sources."@graphql-tools/utils-8.2.3"
];
})
(sources."@graphql-tools/utils-7.10.0" // {
@@ -74013,7 +74891,7 @@ in
sources."@types/express-serve-static-core-4.17.24"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."@types/node-fetch-2.5.12"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -74045,7 +74923,7 @@ in
sources."apollo-server-caching-3.1.0"
(sources."apollo-server-core-3.3.0" // {
dependencies = [
- sources."@graphql-tools/utils-8.2.2"
+ sources."@graphql-tools/utils-8.2.3"
];
})
sources."apollo-server-env-4.0.3"
@@ -74091,7 +74969,7 @@ in
];
})
sources."case-1.6.3"
- sources."cdktf-0.6.2"
+ sources."cdktf-0.6.3"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -74338,7 +75216,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.350" // {
+ (sources."jsii-srcmak-0.1.351" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."camelcase-5.3.1"
@@ -74400,7 +75278,7 @@ in
sources."ncp-2.0.0"
sources."negotiator-0.6.2"
sources."no-case-3.0.4"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."normalize-path-2.1.1"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -74505,7 +75383,7 @@ in
sources."sort-json-2.0.0"
sources."source-map-0.5.7"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.72"
+ sources."sscaff-1.2.73"
(sources."stack-utils-2.0.5" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
@@ -75026,7 +75904,7 @@ in
};
dependencies = [
sources."isexe-2.0.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."tr46-0.0.3"
sources."tslib-2.3.1"
sources."vscode-languageserver-textdocument-1.0.1"
@@ -75336,7 +76214,7 @@ in
})
sources."ncp-2.0.0"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
sources."object-inspect-1.11.0"
@@ -75612,7 +76490,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -76411,10 +77289,10 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.168";
+ version = "1.1.170";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.168.tgz";
- sha512 = "kxOGpkN7YmdFOgmBzWnkHcqFdsQN448iIGGfHAvbicpQVal2a7vOYLUuzeoDGqmdKugWWig8TotfMs5EZ5BKHQ==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.170.tgz";
+ sha512 = "s1ZMe4l790xph8cu+/nkoIpi2WVQibR8tFVpcDnT5EP2Hy7esFvjgz9NAHg+gFilQXVFg2d7Tm2+J1V+A7cZfw==";
};
dependencies = [
sources."pyright-1.1.170"
@@ -76619,7 +77497,7 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
@@ -76661,7 +77539,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -76758,6 +77636,7 @@ in
];
})
sources."ms-2.1.2"
+ sources."nanocolors-0.1.6"
sources."node-releases-1.1.76"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
@@ -77633,7 +78512,6 @@ in
sources."core-util-is-1.0.3"
sources."enabled-2.0.0"
sources."eventemitter3-4.0.7"
- sources."fast-safe-stringify-2.1.1"
sources."fecha-4.2.1"
sources."fn.name-1.1.0"
sources."follow-redirects-1.14.4"
@@ -77643,7 +78521,7 @@ in
sources."is-stream-2.0.1"
sources."isarray-1.0.0"
sources."kuler-2.0.0"
- sources."logform-2.2.0"
+ sources."logform-2.3.0"
sources."ms-2.1.3"
sources."one-time-1.0.0"
sources."process-nextick-args-2.0.1"
@@ -77651,6 +78529,7 @@ in
sources."readable-stream-3.6.0"
sources."requires-port-1.0.0"
sources."safe-buffer-5.2.1"
+ sources."safe-stable-stringify-1.1.1"
sources."simple-swizzle-0.2.2"
sources."stack-trace-0.0.10"
sources."strftime-0.10.0"
@@ -78522,7 +79401,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -78893,7 +79772,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -79867,7 +80746,7 @@ in
"deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage {
name = "deltachat-desktop";
packageName = "deltachat-desktop";
- version = "1.21.1";
+ version = "1.22.1";
src = ../../applications/networking/instant-messengers/deltachat-desktop;
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -80004,11 +80883,11 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@types/debounce-1.2.1"
sources."@types/dom4-2.0.2"
- sources."@types/emoji-mart-3.0.5"
+ sources."@types/emoji-mart-3.0.6"
sources."@types/geojson-7946.0.8"
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
sources."@types/rc-1.2.0"
@@ -80039,7 +80918,7 @@ in
sources."atob-2.1.2"
sources."babel-plugin-dynamic-import-node-2.3.3"
sources."babel-plugin-polyfill-corejs2-0.2.2"
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
(sources."base-0.11.2" // {
dependencies = [
@@ -80054,7 +80933,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."cache-base-1.0.1"
@@ -80090,7 +80969,6 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."component-emitter-1.3.0"
(sources."concat-stream-1.6.2" // {
@@ -80134,7 +81012,7 @@ in
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
sources."electron-13.4.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -80309,9 +81187,10 @@ in
sources."ms-2.1.2"
sources."murmurhash-js-1.0.0"
sources."nan-2.15.0"
+ sources."nanocolors-0.1.6"
sources."nanomatch-1.2.13"
sources."napi-macros-2.0.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-gyp-build-4.3.0"
sources."node-releases-1.1.76"
sources."normalize-path-3.0.0"
@@ -80412,7 +81291,7 @@ in
sources."rw-0.1.4"
sources."safe-buffer-5.2.1"
sources."safe-regex-1.1.0"
- (sources."sass-1.42.0" // {
+ (sources."sass-1.42.1" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -80676,15 +81555,15 @@ in
dockerfile-language-server-nodejs = nodeEnv.buildNodePackage {
name = "dockerfile-language-server-nodejs";
packageName = "dockerfile-language-server-nodejs";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.7.0.tgz";
- sha512 = "45XvooVfz1e8dUSGo1Nuyb61meY2nV+8lRBRp90T3I0nZGcAh5DJ9ioKsBhvsesBG+2rXwl5WK4OviFLlyyfDA==";
+ url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.7.1.tgz";
+ sha512 = "mk1FkdckiNi0gxm/KIsgOJRpPROOqq27fF90f8CtetbaqRvL/mwKDTN2umLeRenJ4ayxdz/Gpf7gWOOQz1kZ1Q==";
};
dependencies = [
- sources."dockerfile-ast-0.3.2"
- sources."dockerfile-language-service-0.7.1"
- sources."dockerfile-utils-0.9.0"
+ sources."dockerfile-ast-0.3.4"
+ sources."dockerfile-language-service-0.7.2"
+ sources."dockerfile-utils-0.9.2"
sources."vscode-jsonrpc-8.0.0-next.2"
sources."vscode-languageserver-8.0.0-next.2"
sources."vscode-languageserver-protocol-3.17.0-next.8"
@@ -80712,7 +81591,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -80915,7 +81794,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.2"
sources."abbrev-1.1.1"
@@ -81259,7 +82138,7 @@ in
})
sources."node-addon-api-3.2.1"
sources."node-api-version-0.1.4"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-gyp-8.2.0"
sources."node-gyp-build-4.3.0"
sources."nopt-5.0.0"
@@ -81576,7 +82455,7 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."caller-callsite-2.0.0"
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
@@ -81592,7 +82471,6 @@ in
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
(sources."conf-7.1.2" // {
@@ -81612,7 +82490,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -81701,6 +82579,7 @@ in
sources."minimist-1.2.5"
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
+ sources."nanocolors-0.1.6"
sources."nice-try-1.0.5"
sources."node-releases-1.1.76"
sources."normalize-package-data-2.5.0"
@@ -81870,7 +82749,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.212"
+ sources."@microsoft/load-themed-styles-1.10.214"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -83125,7 +84004,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.42.0" // {
+ (sources."sass-1.42.1" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -83889,10 +84768,10 @@ in
expo-cli = nodeEnv.buildNodePackage {
name = "expo-cli";
packageName = "expo-cli";
- version = "4.11.0";
+ version = "4.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.11.0.tgz";
- sha512 = "yGe0VODAZSgkXdENysg5bupr0xe2r4Uap4OlnnVM39AnT1NBzzRy+JZT8skHVa395ZHMou8ThTKlfd29Bj9rOQ==";
+ url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.12.0.tgz";
+ sha512 = "cDRfs9blUWPPicoWQ9FCGn7XPzuHfz6oQ63KIpDLMBnerMxNqwEjSQ9jvH5RbclRgKFIQcbDiaBagSIkn07g5g==";
};
dependencies = [
sources."@babel/code-frame-7.10.4"
@@ -83909,7 +84788,7 @@ in
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."semver-6.3.0"
];
})
@@ -84006,14 +84885,14 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@expo/apple-utils-0.0.0-alpha.25"
sources."@expo/bunyan-4.0.0"
- sources."@expo/config-5.0.9"
- (sources."@expo/config-plugins-3.1.0" // {
+ sources."@expo/config-6.0.0"
+ (sources."@expo/config-plugins-4.0.0" // {
dependencies = [
sources."semver-7.3.5"
];
})
sources."@expo/config-types-42.0.0"
- (sources."@expo/dev-server-0.1.84" // {
+ (sources."@expo/dev-server-0.1.85" // {
dependencies = [
sources."body-parser-1.19.0"
sources."bytes-3.1.0"
@@ -84030,7 +84909,7 @@ in
sources."temp-dir-2.0.0"
];
})
- sources."@expo/dev-tools-0.13.115"
+ sources."@expo/dev-tools-0.13.116"
(sources."@expo/devcert-1.0.0" // {
dependencies = [
sources."debug-3.2.7"
@@ -84045,7 +84924,7 @@ in
];
})
sources."@expo/json-file-8.2.33"
- sources."@expo/metro-config-0.1.84"
+ sources."@expo/metro-config-0.2.0"
sources."@expo/osascript-2.0.30"
(sources."@expo/package-manager-0.0.47" // {
dependencies = [
@@ -84054,12 +84933,12 @@ in
sources."semver-5.7.1"
];
})
- (sources."@expo/plist-0.0.14" // {
+ (sources."@expo/plist-0.0.15" // {
dependencies = [
sources."xmlbuilder-14.0.0"
];
})
- sources."@expo/prebuild-config-2.1.0"
+ sources."@expo/prebuild-config-3.0.0"
sources."@expo/results-1.0.0"
(sources."@expo/rudder-sdk-node-1.0.7" // {
dependencies = [
@@ -84075,7 +84954,7 @@ in
})
sources."@expo/sdk-runtime-versions-1.0.0"
sources."@expo/spawn-async-1.5.0"
- (sources."@expo/webpack-config-0.15.0" // {
+ (sources."@expo/webpack-config-0.16.0" // {
dependencies = [
(sources."@babel/core-7.9.0" // {
dependencies = [
@@ -84140,6 +85019,7 @@ in
sources."supports-color-7.2.0"
];
})
+ sources."@react-native/normalize-color-2.0.0"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sideway/address-4.1.2"
sources."@sideway/formula-3.0.0"
@@ -84213,11 +85093,6 @@ in
sources."ajv-errors-1.0.1"
sources."ajv-keywords-3.5.2"
sources."alphanum-sort-1.0.2"
- (sources."analytics-node-3.5.0" // {
- dependencies = [
- sources."uuid-3.4.0"
- ];
- })
(sources."ansi-align-3.0.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
@@ -84286,6 +85161,7 @@ in
(sources."babel-loader-8.1.0" // {
dependencies = [
sources."loader-utils-1.4.0"
+ sources."schema-utils-2.7.1"
];
})
sources."babel-plugin-dynamic-import-node-2.3.3"
@@ -84294,7 +85170,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0"
sources."babel-preset-fbjs-3.4.0"
@@ -84400,7 +85276,6 @@ in
sources."chokidar-3.5.2"
sources."chownr-2.0.0"
sources."chrome-trace-event-1.0.3"
- sources."ci-info-3.2.0"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -84462,7 +85337,6 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
@@ -84489,7 +85363,6 @@ in
];
})
sources."connect-history-api-fallback-1.6.0"
- sources."consola-2.15.3"
sources."console-browserify-1.2.0"
sources."console-control-strings-1.1.0"
sources."constants-browserify-1.0.0"
@@ -84516,6 +85389,7 @@ in
];
})
sources."pkg-dir-4.2.0"
+ sources."schema-utils-2.7.1"
sources."semver-6.3.0"
sources."serialize-javascript-4.0.0"
];
@@ -84523,7 +85397,7 @@ in
sources."core-js-3.18.0"
(sources."core-js-compat-3.18.0" // {
dependencies = [
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."semver-7.0.0"
];
})
@@ -84551,6 +85425,7 @@ in
dependencies = [
sources."camelcase-5.3.1"
sources."loader-utils-1.4.0"
+ sources."schema-utils-2.7.1"
sources."semver-6.3.0"
];
})
@@ -84657,7 +85532,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -84736,7 +85611,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."expo-pwa-0.0.94" // {
+ (sources."expo-pwa-0.0.95" // {
dependencies = [
sources."commander-2.20.0"
];
@@ -84763,13 +85638,15 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.1.1"
sources."fastq-1.13.0"
sources."faye-websocket-0.10.0"
sources."fecha-4.2.1"
sources."figgy-pudding-3.5.2"
- sources."figures-3.2.0"
- sources."file-loader-6.0.0"
+ (sources."file-loader-6.0.0" // {
+ dependencies = [
+ sources."schema-utils-2.7.1"
+ ];
+ })
sources."file-uri-to-path-1.0.0"
sources."filesize-6.1.0"
sources."fill-range-7.0.1"
@@ -84905,7 +85782,11 @@ in
sources."hsl-regex-1.0.0"
sources."hsla-regex-1.0.0"
sources."html-entities-1.4.0"
- sources."html-loader-1.1.0"
+ (sources."html-loader-1.1.0" // {
+ dependencies = [
+ sources."schema-utils-2.7.1"
+ ];
+ })
(sources."html-minifier-terser-5.1.1" // {
dependencies = [
sources."commander-4.1.1"
@@ -84953,6 +85834,7 @@ in
sources."iferr-0.1.5"
sources."ignore-5.1.8"
sources."ignore-walk-3.0.4"
+ sources."image-size-1.0.0"
sources."immer-8.0.1"
(sources."import-fresh-2.0.0" // {
dependencies = [
@@ -85130,7 +86012,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."logform-2.2.0"
+ sources."logform-2.3.0"
sources."loglevel-1.7.1"
sources."loose-envify-1.4.0"
(sources."lower-case-2.0.2" // {
@@ -85251,6 +86133,7 @@ in
sources."mv-2.1.1"
sources."mz-2.7.0"
sources."nan-2.15.0"
+ sources."nanocolors-0.1.6"
sources."nanomatch-1.2.13"
sources."ncp-2.0.0"
(sources."needle-2.9.1" // {
@@ -85268,7 +86151,7 @@ in
];
})
sources."nocache-2.1.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-forge-0.10.0"
(sources."node-gyp-7.1.2" // {
dependencies = [
@@ -85612,7 +86495,6 @@ in
sources."color-name-1.1.4"
];
})
- sources."pretty-time-1.1.0"
sources."probe-image-size-6.0.0"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
@@ -85642,6 +86524,7 @@ in
sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
sources."querystringify-2.2.0"
+ sources."queue-6.0.2"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
sources."randombytes-2.1.0"
@@ -85757,9 +86640,10 @@ in
sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safe-regex-1.1.0"
+ sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
- sources."schema-utils-2.7.1"
+ sources."schema-utils-3.1.1"
sources."select-hose-2.0.0"
sources."selfsigned-1.10.11"
sources."semver-7.3.2"
@@ -85886,7 +86770,6 @@ in
];
})
sources."statuses-1.4.0"
- sources."std-env-2.3.0"
sources."stream-browserify-2.0.2"
sources."stream-buffers-2.2.0"
sources."stream-each-1.2.3"
@@ -85910,7 +86793,11 @@ in
sources."strip-ansi-6.0.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
- sources."style-loader-1.2.1"
+ (sources."style-loader-1.2.1" // {
+ dependencies = [
+ sources."schema-utils-2.7.1"
+ ];
+ })
(sources."stylehacks-4.0.3" // {
dependencies = [
sources."postcss-selector-parser-3.1.2"
@@ -85983,6 +86870,7 @@ in
];
})
sources."pkg-dir-4.2.0"
+ sources."schema-utils-2.7.1"
sources."semver-6.3.0"
sources."serialize-javascript-4.0.0"
sources."source-map-0.6.1"
@@ -86063,11 +86951,7 @@ in
];
})
sources."url-join-4.0.0"
- (sources."url-loader-4.1.1" // {
- dependencies = [
- sources."schema-utils-3.1.1"
- ];
- })
+ sources."url-loader-4.1.1"
sources."url-parse-1.5.3"
(sources."url-parse-lax-3.0.0" // {
dependencies = [
@@ -86237,15 +87121,6 @@ in
sources."source-map-0.6.1"
];
})
- (sources."webpackbar-4.0.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-2.4.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."wrap-ansi-6.2.0"
- ];
- })
sources."websocket-driver-0.6.5"
sources."websocket-extensions-0.1.4"
sources."whatwg-url-5.0.0"
@@ -86285,7 +87160,7 @@ in
sources."uuid-7.0.3"
];
})
- (sources."xdl-59.1.0" // {
+ (sources."xdl-59.2.0" // {
dependencies = [
sources."bplist-parser-0.3.0"
sources."chownr-1.1.4"
@@ -86378,7 +87253,7 @@ in
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -86397,7 +87272,7 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."caller-callsite-2.0.0"
@@ -86416,7 +87291,6 @@ in
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
@@ -86430,7 +87304,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -86497,7 +87371,8 @@ in
sources."minimist-options-4.1.0"
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
- sources."node-fetch-2.6.4"
+ sources."nanocolors-0.1.6"
+ sources."node-fetch-2.6.5"
sources."node-releases-1.1.76"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
@@ -87071,7 +87946,7 @@ in
];
})
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."normalize-url-2.0.1"
sources."npm-run-path-2.0.2"
sources."oauth-sign-0.9.0"
@@ -87361,7 +88236,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -87635,7 +88510,6 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fast-safe-stringify-2.1.1"
sources."fast-text-encoding-1.0.3"
(sources."fast-url-parser-1.1.3" // {
dependencies = [
@@ -87853,7 +88727,7 @@ in
sources."lodash.union-4.6.0"
sources."lodash.values-2.4.1"
sources."log-symbols-2.2.0"
- (sources."logform-2.2.0" // {
+ (sources."logform-2.3.0" // {
dependencies = [
sources."colors-1.4.0"
];
@@ -87913,7 +88787,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-emoji-1.11.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-forge-0.10.0"
(sources."node-gyp-8.2.0" // {
dependencies = [
@@ -88028,6 +88902,7 @@ in
];
})
sources."safe-buffer-5.2.1"
+ sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
sources."semver-5.7.1"
(sources."semver-diff-3.1.1" // {
@@ -88474,7 +89349,7 @@ in
dependencies = [
sources."@types/atob-2.1.2"
sources."@types/inquirer-6.5.0"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/through-0.0.30"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -88583,7 +89458,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."nedb-1.8.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
(sources."number-to-bn-1.7.0" // {
dependencies = [
sources."bn.js-4.11.6"
@@ -88648,7 +89523,7 @@ in
sources."utf8-3.0.0"
sources."uuid-3.4.0"
sources."verror-1.10.0"
- sources."web3-utils-1.5.2"
+ sources."web3-utils-1.5.3"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-module-2.0.0"
@@ -89264,7 +90139,7 @@ in
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/node-fetch-2.5.12"
sources."@types/responselike-1.0.0"
sources."@types/unist-2.0.6"
@@ -89316,7 +90191,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."bytes-3.1.0"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
@@ -89366,7 +90241,6 @@ in
sources."collapse-white-space-1.0.6"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."common-tags-1.8.0"
sources."concat-map-0.0.1"
@@ -89427,7 +90301,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -89659,11 +90533,12 @@ in
sources."mkdirp-0.5.5"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
+ sources."nanocolors-0.1.6"
sources."negotiator-0.6.2"
sources."nice-try-1.0.5"
sources."no-case-3.0.4"
sources."node-eta-0.9.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-object-hash-2.3.10"
sources."node-releases-1.1.76"
sources."normalize-path-3.0.0"
@@ -89948,10 +90823,10 @@ in
generator-code = nodeEnv.buildNodePackage {
name = "generator-code";
packageName = "generator-code";
- version = "1.6.0";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.0.tgz";
- sha512 = "AZQg3krSIoySkTfHUhcWdDAALT5rIRvlFI8EcbrFMjIgedYZk04HdxYtq8FGdsWD9D/3F2zQN++iuWXowQw8Ig==";
+ url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.1.tgz";
+ sha512 = "zTahNxes6nu0P0sXb1nQY7G30zYxEEEpI3z5TaWfn5T1jLY5Ui0ZAoRv6ry0exWpUK1DxoCTXWPskIuCcvk1tQ==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -89970,14 +90845,14 @@ in
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.2.2"
- sources."@octokit/plugin-paginate-rest-2.16.3"
+ sources."@octokit/openapi-types-10.4.0"
+ sources."@octokit/plugin-paginate-rest-2.16.4"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.10.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.11.1"
sources."@octokit/request-5.6.1"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.10.0"
- sources."@octokit/types-6.28.1"
+ sources."@octokit/rest-18.11.0"
+ sources."@octokit/types-6.30.0"
sources."@types/normalize-package-data-2.4.1"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
@@ -90031,7 +90906,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."ms-2.1.2"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -90142,7 +91017,7 @@ in
sources."has-flag-3.0.0"
sources."iterall-1.3.0"
sources."minimist-1.2.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."supports-color-5.5.0"
sources."tr46-0.0.3"
sources."webidl-conversions-3.0.1"
@@ -90605,7 +91480,7 @@ in
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."netmask-2.0.2"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."normalize-package-data-3.0.3"
sources."normalize-url-4.5.1"
sources."npm-run-path-4.0.1"
@@ -90833,7 +91708,7 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.4.0" // {
+ (sources."@graphql-tools/import-6.4.1" // {
dependencies = [
sources."tslib-2.3.1"
];
@@ -90862,7 +91737,7 @@ in
(sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
sources."@graphql-tools/merge-8.1.2"
- sources."@graphql-tools/utils-8.2.2"
+ sources."@graphql-tools/utils-8.2.3"
sources."tslib-2.3.1"
];
})
@@ -90893,7 +91768,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -92567,7 +93442,7 @@ in
sha512 = "ciCpeMEGZ7CbfK+MgK8ykV+wzUHz5he06mAiq8OQLuYN6pxFxZDAhwPwByirOYwdF3GV2M4s7spq2A/g/XMncQ==";
};
dependencies = [
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."async-3.2.0"
@@ -92595,7 +93470,7 @@ in
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."minimatch-3.0.4"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."once-1.4.0"
sources."parse-glob-3.0.4"
sources."path-is-absolute-1.0.1"
@@ -92838,7 +93713,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -92847,7 +93722,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.991.0"
+ sources."aws-sdk-2.993.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -93357,7 +94232,7 @@ in
sources."async-limiter-1.0.1"
sources."chrome-remote-interface-0.27.2"
sources."commander-2.11.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."semver-5.7.1"
sources."source-map-0.7.3"
sources."tr46-0.0.3"
@@ -94161,7 +95036,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.991.0" // {
+ (sources."aws-sdk-2.993.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -95939,7 +96814,7 @@ in
})
sources."@oclif/plugin-help-3.3.0"
sources."@oclif/screen-1.0.4"
- (sources."@putdotio/api-client-8.17.0" // {
+ (sources."@putdotio/api-client-8.18.0" // {
dependencies = [
sources."axios-0.21.4"
];
@@ -96186,7 +97061,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -96444,7 +97319,7 @@ in
sources."brace-expansion-1.1.11"
sources."browser-or-node-1.3.0"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-from-1.1.2"
sources."bytes-3.1.0"
sources."bytesish-0.4.4"
@@ -96458,7 +97333,6 @@ in
sources."clone-deep-4.0.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."commander-4.1.1"
sources."commondir-1.0.1"
@@ -96501,7 +97375,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."enquirer-2.3.6"
@@ -96626,9 +97500,10 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."ms-2.1.2"
+ sources."nanocolors-0.1.6"
sources."negotiator-0.6.2"
sources."node-environment-flags-1.0.6"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-localstorage-1.3.1"
sources."node-modules-regexp-1.0.0"
sources."node-releases-1.1.76"
@@ -97496,19 +98371,19 @@ in
];
})
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.2.2"
+ sources."@octokit/openapi-types-10.4.0"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-2.16.3"
+ sources."@octokit/plugin-paginate-rest-2.16.4"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.10.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.11.1"
(sources."@octokit/request-5.6.1" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.10.0"
- sources."@octokit/types-6.28.1"
+ sources."@octokit/rest-18.11.0"
+ sources."@octokit/types-6.30.0"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
@@ -97867,7 +98742,7 @@ in
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
sources."neo-async-2.6.2"
- (sources."node-fetch-2.6.4" // {
+ (sources."node-fetch-2.6.5" // {
dependencies = [
sources."tr46-0.0.3"
sources."webidl-conversions-3.0.1"
@@ -99180,7 +100055,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -99270,7 +100145,7 @@ in
sources."babel-plugin-minify-simplify-0.5.1"
sources."babel-plugin-minify-type-constructors-0.4.3"
sources."babel-plugin-polyfill-corejs2-0.2.2"
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-syntax-flow-6.18.0"
sources."babel-plugin-transform-flow-strip-types-6.22.0"
@@ -99337,7 +100212,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.2"
@@ -99402,7 +100277,6 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
(sources."combine-source-map-0.8.0" // {
dependencies = [
@@ -99477,7 +100351,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -99761,11 +100635,12 @@ in
})
sources."ms-2.1.2"
sources."nan-2.15.0"
+ sources."nanocolors-0.1.6"
sources."nanomatch-1.2.13"
sources."ncp-2.0.0"
sources."neo-async-2.6.2"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-int64-0.4.0"
(sources."node-libs-browser-2.2.1" // {
dependencies = [
@@ -100736,7 +101611,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -101094,7 +101969,7 @@ in
sources."log-symbols-4.1.0"
sources."mimic-fn-2.1.0"
sources."mute-stream-0.0.8"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."onetime-5.1.2"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
@@ -101193,10 +102068,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "6.9.11";
+ version = "6.9.12";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.11.tgz";
- sha512 = "73w6wTAwzuJ0eL7dS0kuO3eHHOB6SoAcvqxjM2+zjlKHnFq1Tpy6EBP9NvCAqk589g30tpnrMvmewU2t+bwKtw==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.12.tgz";
+ sha512 = "FSzZxQk0yaWMvsnrBqHkIiJ1V/wikNDk1SdlnM8NBuNdlDvH4FuuTa7qfO5CjTMq/T21o9ga69qMZZ8tOvi7lA==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -101331,7 +102206,7 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-26.6.2"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-18.11.2" // {
+ (sources."@netlify/build-18.12.0" // {
dependencies = [
sources."resolve-2.0.0-next.3"
];
@@ -101376,7 +102251,7 @@ in
sources."@netlify/open-api-2.5.0"
(sources."@netlify/plugin-edge-handlers-1.11.22" // {
dependencies = [
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
];
})
sources."@netlify/plugins-list-3.6.0"
@@ -101520,18 +102395,18 @@ in
];
})
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.2.2"
- sources."@octokit/plugin-paginate-rest-2.16.3"
+ sources."@octokit/openapi-types-10.4.0"
+ sources."@octokit/plugin-paginate-rest-2.16.4"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.10.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.11.1"
(sources."@octokit/request-5.6.1" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.10.0"
- sources."@octokit/types-6.28.1"
+ sources."@octokit/rest-18.11.0"
+ sources."@octokit/types-6.30.0"
sources."@rollup/plugin-babel-5.3.0"
(sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
@@ -101564,7 +102439,7 @@ in
sources."@types/istanbul-reports-3.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/node-fetch-2.5.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-1.17.1"
@@ -101666,7 +102541,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."backoff-2.5.0"
sources."balanced-match-1.0.2"
@@ -101700,7 +102575,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -101809,7 +102684,6 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-string-1.6.0"
- sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
@@ -101988,7 +102862,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -102435,7 +103309,7 @@ in
sources."wrap-ansi-3.0.1"
];
})
- (sources."logform-2.2.0" // {
+ (sources."logform-2.3.0" // {
dependencies = [
sources."ms-2.1.3"
];
@@ -102498,6 +103372,7 @@ in
];
})
sources."mute-stream-0.0.7"
+ sources."nanocolors-0.1.6"
sources."nanoid-3.1.25"
sources."nanomatch-1.2.13"
sources."natural-orderby-2.0.3"
@@ -102512,7 +103387,7 @@ in
sources."netlify-redirect-parser-11.0.2"
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-releases-1.1.76"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
@@ -102701,7 +103576,7 @@ in
sources."pinkie-promise-2.0.1"
sources."pkg-dir-5.0.0"
sources."posix-character-classes-0.1.1"
- sources."postcss-8.3.6"
+ sources."postcss-8.3.7"
sources."postcss-values-parser-2.0.1"
sources."precinct-8.1.0"
sources."precond-0.2.3"
@@ -102789,7 +103664,7 @@ in
sources."reusify-1.0.4"
sources."rfdc-1.3.0"
sources."rimraf-3.0.2"
- sources."rollup-2.56.3"
+ sources."rollup-2.57.0"
(sources."rollup-plugin-inject-3.0.2" // {
dependencies = [
sources."estree-walker-0.6.1"
@@ -102808,6 +103683,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safe-regex-1.1.0"
+ sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
sources."seek-bzip-1.0.6"
sources."semver-7.3.5"
@@ -103698,7 +104574,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
@@ -103951,7 +104827,7 @@ in
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
sources."node-addon-api-3.2.1"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-red-admin-2.2.0"
sources."nopt-5.0.0"
sources."normalize-url-6.1.0"
@@ -104251,7 +105127,7 @@ in
sources."core-util-is-1.0.2"
];
})
- sources."walk-2.3.14"
+ sources."walk-2.3.15"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
@@ -104465,7 +105341,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -105512,7 +106388,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."verror-1.10.0"
- sources."walk-2.3.14"
+ sources."walk-2.3.15"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
];
@@ -105759,7 +106635,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
(sources."babel-runtime-6.26.0" // {
dependencies = [
@@ -105804,7 +106680,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -105836,7 +106712,6 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
sources."commander-2.20.3"
@@ -105959,7 +106834,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -106208,6 +107083,7 @@ in
sources."mkdirp-0.5.5"
sources."ms-2.1.2"
sources."nan-2.15.0"
+ sources."nanocolors-0.1.6"
(sources."nanomatch-1.2.13" // {
dependencies = [
sources."define-property-2.0.2"
@@ -107743,7 +108619,7 @@ in
sources."semver-5.7.1"
];
})
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -107844,7 +108720,7 @@ in
sources."semver-5.7.1"
];
})
- (sources."@pm2/agent-2.0.0" // {
+ (sources."@pm2/agent-2.0.1" // {
dependencies = [
sources."semver-7.2.3"
];
@@ -107908,7 +108784,7 @@ in
sources."dayjs-1.8.36"
sources."debug-4.3.2"
sources."deep-is-0.1.4"
- sources."degenerator-2.2.0"
+ sources."degenerator-3.0.1"
sources."depd-1.1.2"
sources."emitter-listener-1.1.2"
sources."enquirer-2.3.6"
@@ -107980,8 +108856,8 @@ in
})
sources."once-1.4.0"
sources."optionator-0.8.3"
- sources."pac-proxy-agent-4.1.0"
- sources."pac-resolver-4.2.0"
+ sources."pac-proxy-agent-5.0.0"
+ sources."pac-resolver-5.0.0"
sources."pako-0.2.9"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
@@ -107994,7 +108870,7 @@ in
sources."pm2-sysmonit-1.2.8"
sources."prelude-ls-1.1.2"
sources."promptly-2.2.0"
- sources."proxy-agent-4.0.1"
+ sources."proxy-agent-5.0.0"
sources."proxy-from-env-1.1.0"
sources."raw-body-2.4.1"
sources."read-1.0.7"
@@ -108039,6 +108915,7 @@ in
sources."async-2.6.3"
];
})
+ sources."vm2-3.9.3"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
sources."ws-7.4.6"
@@ -108105,13 +108982,13 @@ in
postcss = nodeEnv.buildNodePackage {
name = "postcss";
packageName = "postcss";
- version = "8.3.6";
+ version = "8.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz";
- sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.3.7.tgz";
+ sha512 = "9SaY7nnyQ63/WittqZYAvkkYPyKxchMKH71UDzeTmWuLSvxTRpeEeABZAzlCi55cuGcoFyoV/amX2BdsafQidQ==";
};
dependencies = [
- sources."colorette-1.4.0"
+ sources."nanocolors-0.1.6"
sources."nanoid-3.1.25"
sources."source-map-js-0.6.2"
];
@@ -108868,7 +109745,7 @@ in
sources."ip-1.1.5"
sources."is-docker-2.2.1"
sources."is-wsl-2.2.0"
- sources."js-base64-3.7.1"
+ sources."js-base64-3.7.2"
sources."json-buffer-3.0.0"
sources."jsonfile-6.1.0"
sources."keyv-3.1.0"
@@ -109039,7 +109916,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."npm-run-path-2.0.2"
sources."number-is-nan-1.0.1"
sources."object-inspect-1.4.1"
@@ -109415,7 +110292,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -109509,7 +110386,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.4"
+ sources."babel-plugin-polyfill-corejs3-0.2.5"
sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-transform-react-remove-prop-types-0.4.24"
sources."babel-plugin-universal-import-4.0.2"
@@ -109569,7 +110446,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -109832,7 +110709,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -110264,6 +111141,7 @@ in
sources."mutation-observer-1.0.3"
sources."mute-stream-0.0.7"
sources."nan-2.15.0"
+ sources."nanocolors-0.1.6"
sources."nanomatch-1.2.13"
sources."negotiator-0.6.2"
sources."neo-async-2.6.2"
@@ -111227,9 +112105,9 @@ in
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.6"
sources."@redocly/ajv-8.6.2"
- (sources."@redocly/openapi-core-1.0.0-beta.60" // {
+ (sources."@redocly/openapi-core-1.0.0-beta.61" // {
dependencies = [
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
];
})
sources."@redocly/react-dropdown-aria-2.0.12"
@@ -111387,7 +112265,7 @@ in
sources."mobx-react-lite-3.2.1"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."node-fetch-h2-2.3.0"
sources."node-libs-browser-2.2.1"
sources."node-readfiles-0.2.0"
@@ -111713,10 +112591,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.56.3";
+ version = "2.57.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.56.3.tgz";
- sha512 = "Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.57.0.tgz";
+ sha512 = "bKQIh1rWKofRee6mv8SrF2HdP6pea5QkwBZSMImJysFj39gQuiV8MEPBjXOCpzk3wSYp63M2v2wkWBmFC8O/rg==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -111761,7 +112639,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
sources."@types/mocha-8.2.3"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."@types/node-fetch-2.5.12"
sources."@types/vscode-1.60.0"
sources."@typescript-eslint/eslint-plugin-4.31.2"
@@ -112029,7 +112907,7 @@ in
sources."mute-stream-0.0.8"
sources."nanoid-3.1.23"
sources."natural-compare-1.4.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."normalize-path-3.0.0"
sources."nth-check-2.0.1"
sources."object-inspect-1.11.0"
@@ -112136,7 +113014,7 @@ in
sources."url-join-1.1.0"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."vsce-1.99.0" // {
+ (sources."vsce-1.100.0" // {
dependencies = [
sources."chalk-2.4.2"
sources."commander-6.2.1"
@@ -112287,10 +113165,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.42.0";
+ version = "1.42.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.42.0.tgz";
- sha512 = "kcjxsemgaOnfl43oZgO/IePLvXQI0ZKzo0/xbCt6uyrg3FY/FF8hVK9YoO8GiZBcEG2Ebl79EKnUc+aiE4f2Vw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz";
+ sha512 = "/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -112496,7 +113374,7 @@ in
];
})
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-3.17.0" // {
+ (sources."@serverless/components-3.17.1" // {
dependencies = [
(sources."@serverless/utils-4.1.0" // {
dependencies = [
@@ -112538,7 +113416,7 @@ in
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-5.14.0" // {
+ (sources."@serverless/utils-5.15.0" // {
dependencies = [
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
@@ -112557,7 +113435,7 @@ in
sources."@types/keyv-3.1.3"
sources."@types/lodash-4.14.173"
sources."@types/long-4.0.1"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/request-2.48.7"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
@@ -112618,7 +113496,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.991.0" // {
+ (sources."aws-sdk-2.993.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -112708,7 +113586,7 @@ in
];
})
sources."cli-cursor-3.1.0"
- sources."cli-progress-footer-2.0.2"
+ sources."cli-progress-footer-2.1.1"
(sources."cli-sprintf-format-1.1.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -112841,7 +113719,6 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.1.1"
sources."fastest-levenshtein-1.0.12"
sources."fastq-1.13.0"
sources."fd-slicer-1.1.0"
@@ -113013,7 +113890,7 @@ in
sources."supports-color-8.1.1"
];
})
- (sources."logform-2.2.0" // {
+ (sources."logform-2.3.0" // {
dependencies = [
sources."ms-2.1.3"
];
@@ -113062,7 +113939,7 @@ in
];
})
sources."node-dir-0.1.17"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."noop-logger-0.1.1"
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
@@ -113154,6 +114031,7 @@ in
sources."run-parallel-limit-1.1.0"
sources."rxjs-6.6.7"
sources."safe-buffer-5.2.1"
+ sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."seek-bzip-1.0.6"
@@ -113983,10 +114861,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.717.0";
+ version = "1.720.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.717.0.tgz";
- sha512 = "OWVUEr1F24isElAGG7nxjEQnE6xaxpmgj3vDGLLz3ma2mvtgaUxjWT2fx5EopeEhe9tSk7uF6SUrgudCzrjUgQ==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.720.0.tgz";
+ sha512 = "NCy+57lvoggyM4WIzsNQyf2+fX6eZAqu2nznGq+RVfYBcwLgiDpg76oafrmp/rUtSIM1E+68cm1bJWSiNZqf7w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -114010,7 +114888,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -114266,7 +115144,7 @@ in
sources."array-unique-0.2.1"
sources."arrify-1.0.1"
sources."assign-symbols-1.0.0"
- (sources."async-append-only-log-3.0.11" // {
+ (sources."async-append-only-log-3.1.0" // {
dependencies = [
sources."push-stream-11.0.1"
];
@@ -114982,7 +115860,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.5.2" // {
+ (sources."ssb-db2-2.6.0" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -115250,7 +116128,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.991.0" // {
+ (sources."aws-sdk-2.993.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -116085,7 +116963,7 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
@@ -116127,7 +117005,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -116223,6 +117101,7 @@ in
];
})
sources."ms-2.1.2"
+ sources."nanocolors-0.1.6"
sources."node-releases-1.1.76"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
@@ -116369,7 +117248,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."ansi-styles-4.3.0"
@@ -116459,7 +117338,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."anymatch-3.1.2"
@@ -117276,7 +118155,7 @@ in
sources."module-alias-2.2.2"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."oauth-sign-0.9.0"
sources."p-limit-2.3.0"
sources."p-locate-3.0.0"
@@ -118625,7 +119504,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -119640,7 +120519,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-14.17.17"
+ sources."@types/node-14.17.18"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
@@ -119721,7 +120600,6 @@ in
sources."safe-buffer-5.2.1"
];
})
- sources."fast-safe-stringify-2.1.1"
sources."fecha-4.2.1"
sources."finalhandler-1.1.2"
sources."fn.name-1.1.0"
@@ -119763,7 +120641,7 @@ in
sources."latest-version-5.1.0"
sources."locks-0.2.2"
sources."lodash-4.17.21"
- (sources."logform-2.2.0" // {
+ (sources."logform-2.3.0" // {
dependencies = [
sources."ms-2.1.3"
];
@@ -119830,6 +120708,7 @@ in
sources."responselike-1.0.2"
sources."rimraf-3.0.2"
sources."safe-buffer-5.1.2"
+ sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
(sources."semver-7.3.5" // {
dependencies = [
@@ -119921,7 +120800,7 @@ in
sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w==";
};
dependencies = [
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -120066,13 +120945,14 @@ in
vega-cli = nodeEnv.buildNodePackage {
name = "vega-cli";
packageName = "vega-cli";
- version = "5.20.2";
+ version = "5.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.20.2.tgz";
- sha512 = "dp7CncooBn6zSacyoSRdlm+fS1mQ6PsCT2pFILUgsDzn3e/e56iQA2mjmob8DOqM1n/0xbVziVelH31M8fcYXw==";
+ url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.21.0.tgz";
+ sha512 = "UuxW79x2n0bYBexa3vblI2o4CPhIJTBGvA0remuNm74RjkjMkDHMXDriCs5sYQ7jYyekvROmvmC9t/Pn0g0+6Q==";
};
dependencies = [
sources."@mapbox/node-pre-gyp-1.0.5"
+ sources."@types/estree-0.0.50"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
sources."ansi-regex-2.1.1"
@@ -120152,7 +121032,7 @@ in
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
sources."nan-2.15.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."nopt-5.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -120180,32 +121060,32 @@ in
sources."topojson-client-3.1.0"
sources."tr46-0.0.3"
sources."util-deprecate-1.0.2"
- sources."vega-5.20.2"
+ sources."vega-5.21.0"
sources."vega-canvas-1.2.6"
sources."vega-crossfilter-4.0.5"
sources."vega-dataflow-5.7.4"
sources."vega-encode-4.8.3"
- sources."vega-event-selector-2.0.6"
- sources."vega-expression-4.0.1"
+ sources."vega-event-selector-3.0.0"
+ sources."vega-expression-5.0.0"
sources."vega-force-4.0.7"
sources."vega-format-1.0.4"
- sources."vega-functions-5.12.0"
+ sources."vega-functions-5.12.1"
sources."vega-geo-4.3.8"
sources."vega-hierarchy-4.0.9"
- sources."vega-label-1.0.0"
- sources."vega-loader-4.4.0"
- sources."vega-parser-6.1.3"
+ sources."vega-label-1.1.0"
+ sources."vega-loader-4.4.1"
+ sources."vega-parser-6.1.4"
sources."vega-projection-1.4.5"
sources."vega-regression-1.0.9"
sources."vega-runtime-6.1.3"
sources."vega-scale-7.1.1"
sources."vega-scenegraph-4.9.4"
- sources."vega-selections-5.3.0"
- sources."vega-statistics-1.7.9"
+ sources."vega-selections-5.3.1"
+ sources."vega-statistics-1.7.10"
sources."vega-time-2.0.4"
sources."vega-transforms-4.9.4"
- sources."vega-typings-0.21.0"
- sources."vega-util-1.16.1"
+ sources."vega-typings-0.22.0"
+ sources."vega-util-1.17.0"
sources."vega-view-5.10.1"
sources."vega-view-transforms-4.5.8"
sources."vega-voronoi-4.1.5"
@@ -120224,7 +121104,7 @@ in
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- (sources."yargs-16.2.0" // {
+ (sources."yargs-17.1.1" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -120301,7 +121181,7 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@vercel/build-utils-2.12.2"
sources."@vercel/go-1.2.3"
sources."@vercel/node-1.12.1"
@@ -120887,7 +121767,7 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-stdout-1.3.1"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
@@ -120932,7 +121812,7 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-4.2.2"
sources."domutils-2.8.0"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.3"
@@ -121033,6 +121913,7 @@ in
sources."mocha-8.4.0"
sources."ms-2.1.3"
sources."mute-stream-0.0.8"
+ sources."nanocolors-0.1.6"
sources."nanoid-3.1.20"
sources."neo-async-2.6.2"
sources."node-releases-1.1.76"
@@ -121130,7 +122011,7 @@ in
sources."url-join-1.1.0"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."vsce-1.99.0" // {
+ (sources."vsce-1.100.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -121507,7 +122388,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -122562,7 +123443,7 @@ in
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
sources."nan-2.15.0"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."nopt-5.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -122700,7 +123581,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/yauzl-2.9.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.2"
@@ -123272,7 +124153,7 @@ in
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -123294,13 +124175,12 @@ in
sources."acorn-import-assertions-1.7.6"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.17.0"
+ sources."browserslist-4.17.1"
sources."buffer-from-1.1.2"
sources."caniuse-lite-1.0.30001259"
sources."chrome-trace-event-1.0.3"
- sources."colorette-1.4.0"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.845"
+ sources."electron-to-chromium-1.3.847"
sources."enhanced-resolve-5.8.3"
sources."es-module-lexer-0.7.1"
sources."escalade-3.1.1"
@@ -123324,6 +124204,7 @@ in
sources."merge-stream-2.0.0"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
+ sources."nanocolors-0.1.6"
sources."neo-async-2.6.2"
sources."node-releases-1.1.76"
sources."p-limit-3.1.0"
@@ -123440,7 +124321,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/http-proxy-1.17.7"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/retry-0.12.1"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -123528,7 +124409,7 @@ in
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-stream-6.0.1"
- sources."glob-7.1.7"
+ sources."glob-7.2.0"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
sources."graceful-fs-4.2.8"
@@ -123816,7 +124697,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
sources."ansi-regex-5.0.1"
@@ -123933,7 +124814,7 @@ in
sources."get-browser-rtc-1.1.0"
sources."get-caller-file-2.0.5"
sources."get-stdin-8.0.0"
- sources."glob-7.1.7"
+ sources."glob-7.2.0"
sources."has-flag-4.0.0"
sources."he-1.2.0"
sources."http-node-git://github.com/feross/http-node#webtorrent"
@@ -124072,7 +124953,7 @@ in
sources."stream-to-blob-2.0.1"
sources."stream-to-blob-url-3.0.2"
sources."stream-with-known-length-to-buffer-1.0.4"
- sources."streamx-2.11.1"
+ sources."streamx-2.11.2"
sources."string-width-4.2.2"
sources."string2compact-1.3.2"
sources."string_decoder-1.3.0"
@@ -124253,7 +125134,7 @@ in
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."get-caller-file-2.0.5"
- sources."glob-7.1.7"
+ sources."glob-7.2.0"
sources."graceful-fs-4.2.8"
sources."has-flag-4.0.0"
sources."ignore-5.1.8"
@@ -124552,7 +125433,7 @@ in
sources."get-stdin-4.0.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.7"
+ sources."glob-7.2.0"
sources."glob-parent-5.1.2"
(sources."global-agent-2.2.0" // {
dependencies = [
@@ -125128,7 +126009,7 @@ in
sources."pify-2.3.0"
];
})
- sources."walk-2.3.14"
+ sources."walk-2.3.15"
sources."walk-up-path-1.0.0"
sources."wcwidth-1.0.1"
sources."which-1.3.1"
@@ -125255,9 +126136,9 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/fs-extra-9.0.12"
+ sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.9.4"
+ sources."@types/node-16.9.6"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."array-union-3.0.1"
@@ -125293,7 +126174,7 @@ in
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."minimist-1.2.5"
- sources."node-fetch-2.6.4"
+ sources."node-fetch-2.6.5"
sources."path-type-4.0.0"
sources."pause-stream-0.0.11"
sources."picomatch-2.3.0"
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/Theano/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/Theano/default.nix
index e279100e9c..351f8dc9b7 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/Theano/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/Theano/default.nix
@@ -8,19 +8,15 @@
, nose
, numpy
, scipy
+, setuptools
, six
, libgpuarray
, cudaSupport ? false, cudatoolkit
, cudnnSupport ? false, cudnn
-, nvidia_x11
}:
assert cudnnSupport -> cudaSupport;
-assert cudaSupport -> nvidia_x11 != null
- && cudatoolkit != null
- && cudnn != null;
-
let
wrapped = command: buildTop: buildInputs:
runCommandCC "${command}-wrapped" { inherit buildInputs; } ''
@@ -81,7 +77,15 @@ in buildPythonPackage rec {
# keep Nose around since running the tests by hand is possible from Python or bash
checkInputs = [ nose ];
- propagatedBuildInputs = [ numpy numpy.blas scipy six libgpuarray_ ];
+ # setuptools needed for cuda support
+ propagatedBuildInputs = [
+ libgpuarray_
+ numpy
+ numpy.blas
+ scipy
+ setuptools
+ six
+ ];
pythonImportsCheck = [ "theano" ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/aioesphomeapi/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/aioesphomeapi/default.nix
index 44284ef78b..372865e69d 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/aioesphomeapi/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "aioesphomeapi";
- version = "9.1.0";
+ version = "9.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "esphome";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-MuQQ9IpLjsAStpdG8Q0uOzLQl02afStVb52/Rtd+IIs=";
+ sha256 = "1bkk6mj1h1zhhp4s1ps6g950vzgfbxdj9pw762fz238p48ccw90b";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/awscrt/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/awscrt/default.nix
index fa29e9f636..b6f44308b5 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/awscrt/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/awscrt/default.nix
@@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "awscrt";
- version = "0.12.0";
+ version = "0.12.2";
buildInputs = lib.optionals stdenv.isDarwin
(with darwin.apple_sdk.frameworks; [ CoreFoundation Security ]);
@@ -23,7 +23,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "65fa09ce78902319392bbb62991ddd3b33cebc0e3bbc81ad2c176072ab40de52";
+ sha256 = "c3a5aabac3d5dd5560f147fc8758034fa17bbd2d06793f6e6a30d99eeab2cbda";
};
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
index 9d83e092f5..45158b8015 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "azure-mgmt-containerinstance";
- version = "8.0.0";
+ version = "9.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "7aeb380af71fc35a71d6752fa25eb5b95fdb2a0027fa32e6f50bce87e2622916";
+ sha256 = "041431c5a768ac652aac318a17f2a53b90db968494c79abbafec441d0be387ff";
};
propagatedBuildInputs = [
@@ -31,6 +31,8 @@ buildPythonPackage rec {
# has no tests
doCheck = false;
+ pythonImportsCheck = [ "azure.mgmt.containerinstance" ];
+
meta = with lib; {
description = "This is the Microsoft Azure Container Instance Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-kusto/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
index fb82c33ba9..eeec10b5ea 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
@@ -6,13 +6,13 @@
}:
buildPythonPackage rec {
- version = "2.0.0";
+ version = "2.1.0";
pname = "azure-mgmt-kusto";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
- sha256 = "81601479e2b6da3e69654462674ef1474218c4415ef25c1d9892939721732153";
+ sha256 = "171ea8719f543bd0dd4f3d6fa2277162d763182fe8e61b4db03f02668c1685b5";
extension = "zip";
};
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
index 5dd689b976..28102aca73 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "azure-mgmt-servicebus";
- version = "7.0.0";
+ version = "7.1.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "ee859efec2ec9fc8d059811967b1cb17836f4f5786e7406494a42f51f0667822";
+ sha256 = "d8ae7905fb7d3e24822daa20aa7bc5014f41aa18b48ea2d0161e997fc11a3d36";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-file-share/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-file-share/default.nix
index eb2fb40b33..b6c639b624 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-file-share/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-file-share/default.nix
@@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "azure-storage-file-share";
- version = "12.5.0";
+ version = "12.6.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "ed82e9bf8d25d62e50996604fce701cec6a39ec0ceba6efbf8790f7f8b7746a8";
+ sha256 = "7eb0cde00fbbb6b780da8bdd81312ab79de706c4a2601e4eded1bc430da680a8";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
index f39e775fc2..f189572f12 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
@@ -4,12 +4,12 @@
}:
buildPythonPackage rec {
- version = "1.8.2";
+ version = "1.8.3";
pname = "bids-validator";
src = fetchPypi {
inherit pname version;
- sha256 = "7969d55e9ed07f6cf7dfd72ed696a05abe56a2f35e81a1ef677f3694b2adf606";
+ sha256 = "a2940b447fdbea084311de55d415a1538299ad40ee1cc6ae711319c0734dc401";
};
# needs packages which are not available in nixpkgs
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/casbin/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/casbin/default.nix
index 47a6a48eac..5dcdf1cf3f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/casbin/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/casbin/default.nix
@@ -4,11 +4,12 @@
, simpleeval
, isPy27
, coveralls
+, wcmatch
}:
buildPythonPackage rec {
pname = "casbin";
- version = "1.7.0";
+ version = "1.8.1";
disabled = isPy27;
@@ -16,11 +17,12 @@ buildPythonPackage rec {
owner = pname;
repo = "pycasbin";
rev = "v${version}";
- sha256 = "1qwns8ph8w5bb26hzkk1dadm2bjq74g65wm6g971llb5jdq9a8z9";
+ sha256 = "16s1bd8z400cmwz0igai9fdv9qlafwp2fllhy84cfi90yxwh1flp";
};
propagatedBuildInputs = [
simpleeval
+ wcmatch
];
checkInputs = [
@@ -31,10 +33,14 @@ buildPythonPackage rec {
coverage run -m unittest discover -s tests -t tests
'';
+ pythonImportsCheck = [
+ "casbin"
+ ];
+
meta = with lib; {
description = "An authorization library that supports access control models like ACL, RBAC, ABAC in Python";
homepage = "https://github.com/casbin/pycasbin";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ costrouc ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/chart-studio/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/chart-studio/default.nix
index 9d8c6ecb84..2873b7e99e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/chart-studio/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/chart-studio/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "chart-studio";
- version = "5.3.0";
+ version = "5.3.1";
# chart-studio was split from plotly
src = fetchFromGitHub {
owner = "plotly";
repo = "plotly.py";
rev = "v${version}";
- sha256 = "059rq278r5zb2sngby7jzh8kd9c48sd82b6b7s5bbrmzj42sds3n";
+ sha256 = "11jazr5s2rmcxbkpb79gllwlyxvji3f0ryfrj7mkbyvfnfv43gly";
};
sourceRoot = "source/packages/python/chart-studio";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/check-manifest/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/check-manifest/default.nix
index de833e18be..608f3a0cac 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/check-manifest/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/check-manifest/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "check-manifest";
- version = "0.46";
+ version = "0.47";
src = fetchPypi {
inherit pname version;
- sha256 = "5895e42a012989bdc51854a02c82c8d6898112a4ab11f2d7878200520b49d428";
+ sha256 = "56dadd260a9c7d550b159796d2894b6d0bcc176a94cbc426d9bb93e5e48d12ce";
};
# Test requires filesystem access
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/commoncode/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/commoncode/default.nix
index e7dfb65e79..136a638c35 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/commoncode/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/commoncode/default.nix
@@ -14,11 +14,11 @@
}:
buildPythonPackage rec {
pname = "commoncode";
- version = "21.8.27";
+ version = "21.8.31";
src = fetchPypi {
inherit pname version;
- sha256 = "789ee1798cd74ab4516d2e547473d69717d3b2ed7ee180ab2746e0bdfd0d88a4";
+ sha256 = "0e74c61226834393801e921ab125eae3b52361340278fb9a468c5c691d286c32";
};
dontConfigure = true;
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/deezer-py/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/deezer-py/default.nix
index 07e0991dda..a79a30da82 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/deezer-py/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/deezer-py/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "deezer-py";
- version = "1.2.2";
+ version = "1.2.3";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "a491af5fcc9e44a2a28be8832169e703a920dae42c78539f45cad59075700ac9";
+ sha256 = "f4dd648e5bf251cb13316145e243d3a08d870840e0ac1525309926e640c91ea9";
};
propagatedBuildInputs = [ requests ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/django/3.nix b/third_party/nixpkgs/pkgs/development/python-modules/django/3.nix
index 7ee41a962c..48ed4d6d0e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/django/3.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/django/3.nix
@@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "Django";
- version = "3.2.5";
+ version = "3.2.7";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "1kam3301jl53vm0mhflwwsqy5d7kb5dksmjanlaj7v7xakm5z81x";
+ sha256 = "95b318319d6997bac3595517101ad9cc83fe5672ac498ba48d1a410f47afecd2";
};
patches = lib.optional withGdal
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/django_environ/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/django_environ/default.nix
index 6baaf58e7d..7c36db1d11 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/django_environ/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/django_environ/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "django-environ";
- version = "0.5.0";
+ version = "0.7.0";
src = fetchPypi {
inherit pname version;
- sha256 = "a8726675c1ebefa4706b36398c4d3c5c790d335ffe55c4a10378f6bfd57ad8d0";
+ sha256 = "b99bd3704221f8b717c8517d8146e53fdee509d9e99056be560060003b92213e";
};
# The testsuite fails to modify the base environment
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/dropbox/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/dropbox/default.nix
index 91317eb9f0..5b46c8183c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/dropbox/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/dropbox/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "dropbox";
- version = "11.19.0";
+ version = "11.20.0";
src = fetchPypi {
inherit pname version;
- sha256 = "a56d200c47d7cd19f697e232a616342b224079f43abf4748bc55fb0c1de4346f";
+ sha256 = "1aa351ec8bbb11cf3560e731b81d25f39c7edcb5fa92c06c5d68866cb9f90d54";
};
postPatch = ''
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/env-canada/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/env-canada/default.nix
index 3b6ba03365..5e9492f904 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/env-canada/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/env-canada/default.nix
@@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "env-canada";
- version = "0.5.12";
+ version = "0.5.13";
src = fetchFromGitHub {
owner = "michaeldavie";
repo = "env_canada";
rev = "v${version}";
- sha256 = "sha256-yrvH0A/+QA9HiKa/ohw5q0IIyWff9s9zu6tT08mIT7w=";
+ sha256 = "sha256-Z/5YRvHcZgRuSQnaMbNIT93uSYvRzMWpdMy0M7tD2QI=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix
new file mode 100644
index 0000000000..3b6b42a767
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix
@@ -0,0 +1,64 @@
+{ lib
+, beautifulsoup4
+, buildPythonPackage
+, click
+, colorama
+, fetchFromGitHub
+, html2text
+, lxml
+, pytestCheckHook
+, python-dateutil
+, pytz
+, requests
+, simplejson
+, tabulate
+}:
+
+buildPythonPackage rec {
+ pname = "faraday-plugins";
+ version = "1.5.3";
+
+ src = fetchFromGitHub {
+ owner = "infobyte";
+ repo = "faraday_plugins";
+ rev = "v${version}";
+ sha256 = "0nyywpsyw7akwdah75s9mz5nz11y1hbynp08pvqifwdw49crih02";
+ };
+
+ propagatedBuildInputs = [
+ beautifulsoup4
+ click
+ colorama
+ html2text
+ lxml
+ python-dateutil
+ pytz
+ requests
+ simplejson
+ tabulate
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ disabledTestPaths = [
+ # faraday itself is currently not available
+ "tests/test_report_collection.py"
+ ];
+
+ disabledTests = [
+ # Fail because of missing faraday
+ "test_detect_report"
+ "test_process_report_summary"
+ ];
+
+ pythonImportsCheck = [ "faraday_plugins" ];
+
+ meta = with lib; {
+ description = "Security tools report parsers for Faraday";
+ homepage = "https://github.com/infobyte/faraday_plugins";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/fastavro/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/fastavro/default.nix
new file mode 100644
index 0000000000..0bc1246eb3
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/fastavro/default.nix
@@ -0,0 +1,59 @@
+{ buildPythonPackage
+, cython
+, fetchFromGitHub
+, isPy38
+, lib
+, lz4
+, numpy
+, pandas
+, pytestCheckHook
+, python-dateutil
+, python-snappy
+, pythonOlder
+, zstandard
+}:
+
+buildPythonPackage rec {
+ pname = "fastavro";
+ version = "1.4.4";
+
+ disabled = pythonOlder "3.6";
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = version;
+ sha256 = "1sf8nqifwp0cggk59s22ygj3rm1nysa8b91xl8bpv2knqyjy1q32";
+ };
+
+ preBuild = ''
+ export FASTAVRO_USE_CYTHON=1
+ '';
+
+ nativeBuildInputs = [ cython ];
+
+ checkInputs = [
+ lz4
+ numpy
+ pandas
+ pytestCheckHook
+ python-dateutil
+ python-snappy
+ zstandard
+ ];
+
+ # Fails with "AttributeError: module 'fastavro._read_py' has no attribute
+ # 'CYTHON_MODULE'." Doesn't appear to be serious. See https://github.com/fastavro/fastavro/issues/112#issuecomment-387638676.
+ disabledTests = [ "test_cython_python" ];
+
+ # CLI tests are broken on Python 3.8. See https://github.com/fastavro/fastavro/issues/558.
+ disabledTestPaths = lib.optionals isPy38 [ "tests/test_main_cli.py" ];
+
+ pythonImportsCheck = [ "fastavro" ];
+
+ meta = with lib; {
+ description = "Fast read/write of AVRO files";
+ homepage = "https://github.com/fastavro/fastavro";
+ license = licenses.mit;
+ maintainers = with maintainers; [ samuela ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/fpyutils/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/fpyutils/default.nix
index 0120391aee..0da2ef18a8 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/fpyutils/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/fpyutils/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "fpyutils";
- version = "2.0.0";
+ version = "2.0.1";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "frnmst";
repo = pname;
rev = version;
- sha256 = "1n15fvd6191ixxsza49fdd8j43hs0agagg8k9v6rc7by1ffqnl2b";
+ sha256 = "sha256-VYknHuBoU7XWkm6mt8ckBzFLMcYTPW5CXMGdOn3perY=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/furo/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/furo/default.nix
index e516612378..c584ce4332 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/furo/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/furo/default.nix
@@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "furo";
- version = "2021.8.11b42";
+ version = "2021.9.22";
format = "flit";
disable = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-rhi2T57EfidQV1IHBkplCbzLlBCC5gVGmbkCf40s0qU=";
+ sha256 = "sha256-749l6cXyGbIarXXJmiCU0DsWQwrvH1dobOGePyT5VK8=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/geoip2/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/geoip2/default.nix
index 7cb37780a5..995db06361 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/geoip2/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/geoip2/default.nix
@@ -8,13 +8,13 @@
}:
buildPythonPackage rec {
- version = "4.2.0";
+ version = "4.3.0";
pname = "geoip2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "906a1dbf15a179a1af3522970e8420ab15bb3e0afc526942cc179e12146d9c1d";
+ sha256 = "599914784cea08b50fb50c22ed6a59143b5ff2d027ba782d2d5b6f3668293821";
};
patchPhase = ''
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/html5-parser/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/html5-parser/default.nix
index d20f0a9abf..3909c35218 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/html5-parser/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/html5-parser/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "html5-parser";
- version = "0.4.9";
+ version = "0.4.10";
src = fetchPypi {
inherit pname version;
- sha256 = "25fe8f6848cbc15187f6748c0695df32bcf1b37df6420b6a01b4ebe1ec1ed48f";
+ sha256 = "f9294418c0da95c2d5facc19d3dc32941093a6b8e3b3e4b36cc7b5a1697fbca4";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ibm-watson/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ibm-watson/default.nix
index 9e5198a1cb..a0c1275806 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ibm-watson/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ibm-watson/default.nix
@@ -14,13 +14,13 @@
buildPythonPackage rec {
pname = "ibm-watson";
- version = "5.2.3";
+ version = "5.3.0";
src = fetchFromGitHub {
owner = "watson-developer-cloud";
repo = "python-sdk";
rev = "v${version}";
- sha256 = "0i0zs38hqgh2510b3690nrq2pvx7wcdlv9iyjgsrfl7gid8qi3ng";
+ sha256 = "0g63h7rf0710bxcsr115857bvz69sl2g5d13k5a7qi7hjh33bxrk";
};
checkInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix
index cd598d602a..306d242d68 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/iminuit/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "iminuit";
- version = "2.8.2";
+ version = "2.8.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "ffba627a638fe233bbef03e91af6063c1e5d62405327219b03f0abf50196a95b";
+ sha256 = "8e22d81a53ce3316f0253bf0b7831bd72ac1122ca78896c2ee2e585178c5c9ae";
};
nativeBuildInputs = [ cmake ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/in-place/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/in-place/default.nix
new file mode 100644
index 0000000000..6490aea359
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/in-place/default.nix
@@ -0,0 +1,33 @@
+{ buildPythonPackage
+, fetchFromGitHub
+, lib
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "in-place";
+ version = "0.5.0";
+ format = "pyproject";
+
+ src = fetchFromGitHub {
+ owner = "jwodder";
+ repo = "inplace";
+ rev = "v${version}";
+ sha256 = "1w6q3d0gqz4mxvspd08l1nhsrw6rpzv1gnyj4ckx61b24f84p5gk";
+ };
+
+ postPatch = ''
+ substituteInPlace tox.ini --replace "--cov=in_place --no-cov-on-fail" ""
+ '';
+
+ checkInputs = [ pytestCheckHook ];
+
+ pythonImportsCheck = [ "in_place" ];
+
+ meta = with lib; {
+ description = "In-place file processing";
+ homepage = "https://github.com/jwodder/inplace";
+ license = licenses.mit;
+ maintainers = with maintainers; [ samuela ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/influxdb-client/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/influxdb-client/default.nix
index 437c10c3d8..6d2f9f30a4 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/influxdb-client/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/influxdb-client/default.nix
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "influxdb-client";
- version = "1.20.0";
+ version = "1.21.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb-client-python";
rev = "v${version}";
- sha256 = "sha256-VBKGzoLn71BQ5drbdiDjbpfHuYKGqHhuSwq0iNwdfh4=";
+ sha256 = "081pwd3aa7kbgxqcl1hfi2ny4iapnxkcp9ypsfslr69d0khvfc4s";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/libgpuarray/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/libgpuarray/default.nix
index d061356490..2be115ae36 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/libgpuarray/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/libgpuarray/default.nix
@@ -1,5 +1,6 @@
{ stdenv
, lib
+, addOpenGLRunpath
, buildPythonPackage
, fetchFromGitHub
, cmake
@@ -8,13 +9,10 @@
, six
, nose
, Mako
-, cudaSupport ? false, cudatoolkit , nvidia_x11
+, cudaSupport ? false, cudatoolkit
, openclSupport ? true, ocl-icd, clblas
}:
-assert cudaSupport -> nvidia_x11 != null
- && cudatoolkit != null;
-
buildPythonPackage rec {
pname = "libgpuarray";
version = "0.7.6";
@@ -32,8 +30,7 @@ buildPythonPackage rec {
configurePhase = "cmakeConfigurePhase";
libraryPath = lib.makeLibraryPath (
- []
- ++ lib.optionals cudaSupport [ cudatoolkit.lib cudatoolkit.out nvidia_x11 ]
+ lib.optionals cudaSupport [ cudatoolkit.lib cudatoolkit.out ]
++ lib.optionals openclSupport ([ clblas ] ++ lib.optional (!stdenv.isDarwin) ocl-icd)
);
@@ -55,6 +52,8 @@ buildPythonPackage rec {
}
fixRunPath $out/lib/libgpuarray.so
+ '' + lib.optionalString cudaSupport ''
+ addOpenGLRunpath $out/lib/libgpuarray.so
'';
propagatedBuildInputs = [
@@ -63,7 +62,12 @@ buildPythonPackage rec {
Mako
];
- nativeBuildInputs = [ cmake ];
+ nativeBuildInputs = [
+ cmake
+ ] ++ lib.optionals cudaSupport [
+ addOpenGLRunpath
+ ];
+
buildInputs = [
cython
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/maxcube-api/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/maxcube-api/default.nix
new file mode 100644
index 0000000000..36bcc35fc0
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/maxcube-api/default.nix
@@ -0,0 +1,42 @@
+{ lib
+, buildPythonPackage
+, pythonOlder
+, fetchFromGitHub
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "maxcube-api";
+ version = "0.4.3";
+ format = "setuptools";
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "hackercowboy";
+ repo = "python-${pname}";
+ rev = "V${version}";
+ sha256 = "10k61gfpnqljf3p3qxr97xq7j67a9cr4ivd9v72hdni0znrbx6ym";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py --replace "license=license" "license='MIT'"
+ '';
+
+ pythonImportsCheck = [
+ "maxcube"
+ "maxcube.cube"
+ ];
+
+ checkPhase = ''
+ runHook preCheck
+ ${python.interpreter} -m unittest discover
+ runHook postCheck
+ '';
+
+ meta = with lib; {
+ description = "eQ-3/ELV MAX! Cube Python API";
+ homepage = "https://github.com/hackercowboy/python-maxcube-api";
+ license = licenses.mit;
+ maintainers = with maintainers; [ hexa ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/maxminddb/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/maxminddb/default.nix
index d101cdfd0c..f33e63db02 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/maxminddb/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/maxminddb/default.nix
@@ -7,13 +7,13 @@
}:
buildPythonPackage rec {
- version = "2.0.3";
+ version = "2.1.0";
pname = "maxminddb";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "47e86a084dd814fac88c99ea34ba3278a74bc9de5a25f4b815b608798747c7dc";
+ sha256 = "c47b8acba98d03b8c762684d899623c257976f3eb0c9d557ff865d20cddc9d6b";
};
buildInputs = [ libmaxminddb ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/mechanize/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/mechanize/default.nix
index 5309855fb4..aa309ff33c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/mechanize/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/mechanize/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "mechanize";
- version = "0.4.6";
+ version = "0.4.7";
src = fetchPypi {
inherit pname version;
- sha256 = "d16cea241253b5eb6380bf8a46627cad91d1f2c3f93a33279a31ce276d6c5d44";
+ sha256 = "1773a8f5818398e0010e781dc0f942cd88b107a57424c904d545cd827c216809";
};
propagatedBuildInputs = [ html5lib ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
index d16d858c22..f9c0033951 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "mypy-boto3-s3";
- version = "1.18.29";
+ version = "1.18.46";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "efee8defd50c441f1daec39fe415a81ded16b828678b4606ee8f9dd677bfe53e";
+ sha256 = "4061100ba506866c3ac530733bdefd302acbd67add17daeb22ca02ce3105fcf0";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/notus-scanner/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/notus-scanner/default.nix
new file mode 100644
index 0000000000..dbf01f3698
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/notus-scanner/default.nix
@@ -0,0 +1,56 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, fetchpatch
+, paho-mqtt
+, poetry-core
+, psutil
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "notus-scanner";
+ version = "unstable-2021-09-05";
+ format = "pyproject";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "greenbone";
+ repo = pname;
+ rev = "049f9a5e6439e4e5113e3b8f30b25ead12d42a56";
+ sha256 = "1fjxyn8wg2kf6xy3pbh7d7yn20dk529p03xpqyz7s40n9nsxhnza";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ propagatedBuildInputs = [
+ paho-mqtt
+ psutil
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ patches = [
+ # Switch to poetry-core, https://github.com/greenbone/notus-scanner/pull/31
+ (fetchpatch {
+ name = "switch-to-poetry-core.patch";
+ url = "https://github.com/greenbone/notus-scanner/commit/b52eea317faca30d411096044f9e5ea20b58da65.patch";
+ sha256 = "0q11aslhva47kkpsnpayra7spa849j894vqv34pjqhcnlyipqw6d";
+ })
+ ];
+
+ pythonImportsCheck = [ "notus.scanner" ];
+
+ meta = with lib; {
+ description = "Helper to create results from local security checks";
+ homepage = "https://github.com/greenbone/notus-scanner";
+ license = with licenses; [ agpl3Plus ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pybullet/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pybullet/default.nix
index 4d97b53560..3a5d68f37e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pybullet/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pybullet/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "pybullet";
- version = "3.1.8";
+ version = "3.1.9";
src = fetchPypi {
inherit pname version;
- sha256 = "a7e6c7c77cab39e1559c98e4290c5138247b15d3a26a76a23b2737c159f3f905";
+ sha256 = "6fb4d48d5ba9c09cdd1ed732e8a1d48b41bca379e072268af3831774d8391300";
};
buildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyp/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyp/default.nix
new file mode 100644
index 0000000000..4ef79bc907
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyp/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, coreutils
+, pythonOlder
+, astunparse
+, jq
+, bc
+}:
+
+buildPythonPackage rec {
+ pname = "pyp";
+ version = "0.3.4";
+
+ src = fetchFromGitHub {
+ owner = "hauntsaninja";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-K9dGmvy4siurmhqwNfg1dT0TWc6tCSaxfPyaJkYM2Vw=";
+ };
+
+ propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [
+ astunparse
+ ];
+
+ preCheck = ''
+ export PATH=$out/bin:$PATH
+ '';
+ checkInputs = [
+ pytestCheckHook
+ coreutils
+ jq
+ bc
+ ];
+
+ meta = with lib; {
+ description = "Easily run Python at the shell! Magical, but never mysterious.";
+ homepage = "https://github.com/hauntsaninja/pyp";
+ license = licenses.mit;
+ maintainers = with maintainers; [ rmcgibbo ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyro4/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyro4/default.nix
index 3de7afd966..ffb8584f94 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyro4/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyro4/default.nix
@@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "Pyro4";
- version = "4.80";
+ version = "4.81";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
- sha256 = "46847ca703de3f483fbd0b2d22622f36eff03e6ef7ec7704d4ecaa3964cb2220";
+ sha256 = "e130da06478b813173b959f7013d134865e07fbf58cc5f1a2598f99479cdac5f";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pysdl2/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pysdl2/default.nix
index 26aece1afb..10515ed7a6 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pysdl2/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pysdl2/default.nix
@@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "PySDL2";
- version = "0.9.8";
+ version = "0.9.9";
# The tests use OpenGL using find_library, which would have to be
# patched; also they seem to actually open X windows and test stuff
# like "screensaver disabling", which would have to be cleverly
@@ -11,7 +11,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "4dfa3168e4e4e9301a2cd5904bdcea15e2bf62a1c9abb5d3f92d9122ea22c26e";
+ sha256 = "45879ae588038d7cf7cb0289ae47af60722b394d0efa527bf4327103dc4dc918";
};
# Deliberately not in propagated build inputs; users can decide
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pytest-testmon/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pytest-testmon/default.nix
index d7b0b660be..94f5879997 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pytest-testmon/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pytest-testmon/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "pytest-testmon";
- version = "1.1.2";
+ version = "1.2.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "91f4513f7e5a1cf4f1eda25ab7f310497abe30e5f19b612fd80ba7d5f60b58a6";
+ sha256 = "2c61ae6185ea7dc07ea0d4db3984be62f1a176a5c16615fd208c5945aa411599";
};
propagatedBuildInputs = [ coverage ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/python-hosts/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/python-hosts/default.nix
index 861addf81e..934f15a7a4 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/python-hosts/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/python-hosts/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "python-hosts";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "5b9749ce807170fb340d044d3f971e1da4dac0ae6af8ce8db00b6758a920a2bc";
+ sha256 = "8f827da4a1bf69d4f4f881f7d7ebc8b378967b60924aa4baea2c9d1debedf5fc";
};
# win_inet_pton is required for windows support
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/python-status/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/python-status/default.nix
new file mode 100644
index 0000000000..2633d93c31
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/python-status/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "python-status";
+ version = "1.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0lryrvmi04g7d38ilm4wfw717m0ddhylrzb5cm59lrp3ai3q572f";
+ };
+
+ # Project doesn't ship tests yet
+ doCheck = false;
+
+ pythonImportsCheck = [ "status" ];
+
+ meta = with lib; {
+ description = "HTTP Status for Humans";
+ homepage = "https://github.com/avinassh/status/";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/r2pipe/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/r2pipe/default.nix
index 9218cc5939..fb767e5c46 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/r2pipe/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/r2pipe/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "r2pipe";
- version = "1.6.0";
+ version = "1.6.2";
postPatch = let
r2lib = "${lib.getOutput "lib" radare2}/lib";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "f7d1f629130fac597dc444df57168cf011a18abb1be2f690c8993fc5fb4c78a0";
+ sha256 = "088e1a0778f8021af90b9458c9b706ae3d303a3e6a5064e1ca25d4fd737dc3c7";
};
# Tiny sanity check to make sure r2pipe finds radare2 (since r2pipe doesn't
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/requests-cache/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/requests-cache/default.nix
index 787e9a6e27..ca6cb7d230 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/requests-cache/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/requests-cache/default.nix
@@ -1,6 +1,8 @@
{ lib
+, appdirs
, attrs
, buildPythonPackage
+, bson
, cattrs
, fetchFromGitHub
, itsdangerous
@@ -18,15 +20,16 @@
buildPythonPackage rec {
pname = "requests-cache";
- version = "0.7.4";
- disabled = pythonOlder "3.6";
+ version = "0.8.1";
format = "pyproject";
+ disabled = pythonOlder "3.7";
+
src = fetchFromGitHub {
owner = "reclosedev";
repo = "requests-cache";
rev = "v${version}";
- sha256 = "sha256-FndKFdmEsp3TF2W4b7nhARi9ZOutlE43vvzYxiwbL08=";
+ sha256 = "sha256-HzOcPWmvUhqPtb/7Mnw6wWY7a4CwGRwPgq+7QoHJAc8=";
};
nativeBuildInputs = [
@@ -34,7 +37,9 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
+ appdirs
attrs
+ bson
cattrs
itsdangerous
pyyaml
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/scikit-learn-extra/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/scikit-learn-extra/default.nix
new file mode 100644
index 0000000000..a91f4ed74f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/scikit-learn-extra/default.nix
@@ -0,0 +1,57 @@
+{ lib
+, fetchFromGitHub
+, buildPythonPackage
+, numpy
+, cython
+, scipy
+, scikit-learn
+, matplotlib
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "scikit-learn-extra";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "scikit-learn-contrib";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "09v7a9jdycdrlqq349m1gbn8ppzv1bl5g3l72k6ywsx2xb01qw13";
+ };
+
+ nativeBuildInputs = [ numpy cython ];
+ propagatedBuildInputs = [ numpy scipy scikit-learn ];
+ checkInputs = [ matplotlib pytestCheckHook ];
+
+ preCheck = ''
+ # Remove the package in the build dir, because Python defaults to it and
+ # ignores the one in Nix store with cythonized modules.
+ rm -r sklearn_extra
+ '';
+
+ pytestFlagsArray = [ "--pyargs sklearn_extra" ];
+ disabledTestPaths = [
+ "benchmarks"
+ "examples"
+ "doc"
+ ];
+ disabledTests = [
+ "build" # needs network connection
+ ];
+
+ # Check packages with cythonized modules
+ pythonImportsCheck = [
+ "sklearn_extra"
+ "sklearn_extra.cluster"
+ "sklearn_extra.robust"
+ "sklearn_extra.utils"
+ ];
+
+ meta = {
+ description = "A set of tools for scikit-learn";
+ homepage = "https://github.com/scikit-learn-contrib/scikit-learn-extra";
+ license = lib.licenses.bsd3;
+ maintainers = with lib.maintainers; [ yl3dy ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/scrapy-deltafetch/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/scrapy-deltafetch/default.nix
index 006c8ed030..95091a0be7 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/scrapy-deltafetch/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/scrapy-deltafetch/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "scrapy-deltafetch";
- version = "1.2.1";
+ version = "2.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1m511psddvlapg492ny36l8rzy7z4i39yx6a1agxzfz6s9b83fq8";
+ sha256 = "13f7968bd0ffae133e2a1dede215e683b8c95285f046260603a5c3e25f2d57b0";
};
propagatedBuildInputs = [ bsddb3 scrapy ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/sentry-sdk/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/sentry-sdk/default.nix
index ff58edbeb3..2f8930cd67 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/sentry-sdk/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/sentry-sdk/default.nix
@@ -29,11 +29,11 @@
buildPythonPackage rec {
pname = "sentry-sdk";
- version = "1.3.1";
+ version = "1.4.1";
src = fetchPypi {
inherit pname version;
- sha256 = "0v72zzghlk6kvjg7fg4c4mfr1kasnwlpjzk1wyqd864nz9293sgb";
+ sha256 = "4297555ddc37c7136740e6b547b7d68f5bca0b4832f94ac097e5d531a4c77528";
};
checkInputs = [ blinker botocore chalice django flask tornado bottle rq falcon sqlalchemy werkzeug trytond
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix
new file mode 100644
index 0000000000..b9b1cbe7b0
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix
@@ -0,0 +1,55 @@
+{ lib
+, asynctest
+, buildPythonPackage
+, fetchFromGitHub
+, httpx
+, pytest-asyncio
+, pytest-httpserver
+, pytestCheckHook
+, python-slugify
+, python-status
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "simple-rest-client";
+ version = "1.0.8";
+
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "allisson";
+ repo = "python-simple-rest-client";
+ rev = version;
+ sha256 = "12qxhrjhlbyyr1pkvwfkcxbsmyns5b0mfdn42vz310za5x76ldj3";
+ };
+
+ propagatedBuildInputs = [
+ httpx
+ python-slugify
+ python-status
+ ];
+
+ checkInputs = [
+ asynctest
+ pytest-asyncio
+ pytest-httpserver
+ pytestCheckHook
+ ];
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "pytest-runner" ""
+ substituteInPlace pytest.ini \
+ --replace " --cov=simple_rest_client --cov-report=term-missing" ""
+ '';
+
+ pythonImportsCheck = [ "simple_rest_client" ];
+
+ meta = with lib; {
+ description = "Simple REST client for Python";
+ homepage = "https://github.com/allisson/python-simple-rest-client";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/skytemple-files/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/skytemple-files/default.nix
index d1ea00b7f3..f1be3dad3f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/skytemple-files/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/skytemple-files/default.nix
@@ -4,13 +4,13 @@
buildPythonPackage rec {
pname = "skytemple-files";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
- sha256 = "1gpmgdas7x1zmszs9hlxjb6nk683901cy1kc0gyhz0rzdn5jg3lb";
+ sha256 = "04n2g2lbff0fr3mkqma39j6acpbj73dbizz9hw5m15110idc577h";
fetchSubmodules = true;
};
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/slack-sdk/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/slack-sdk/default.nix
index ec0bfe9320..7d2391daad 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/slack-sdk/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/slack-sdk/default.nix
@@ -20,14 +20,14 @@
buildPythonPackage rec {
pname = "slack-sdk";
- version = "3.11.1";
+ version = "3.11.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "slackapi";
repo = "python-slack-sdk";
rev = "v${version}";
- sha256 = "sha256-csWVzQZAujCLzfLJkUOSHwJZMRqC5GcU4s4kce15qms=";
+ sha256 = "sha256-jfFNka+PZXXYz6r7gwoxoqK7SX2RRcDNlCSqVG3JPY0=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/smbprotocol/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/smbprotocol/default.nix
index 93f158508e..05825c6c96 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/smbprotocol/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/smbprotocol/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "smbprotocol";
- version = "1.6.2";
+ version = "1.7.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jborean93";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-nSWZfhZD++I5hM2ijqft2U95kyEe3h/nrSfiT3sQiKE=";
+ sha256 = "sha256-4nhgt9/LgoGucNehZkgs4XcneCq+fihWQHtwMbuSp2s=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/sopel/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/sopel/default.nix
index d4052d8b12..ec4947ebfc 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/sopel/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/sopel/default.nix
@@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "sopel";
- version = "7.1.3";
+ version = "7.1.4";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
- sha256 = "0f9e673a7eac9dd3619c2e398e58fa2d8117afca5adb550ba07c66e16a90dbdb";
+ sha256 = "d778ec2b92866eddf97d0809968bc5f9887cb5a000a518a4b67d8eb999cb775c";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/sseclient-py/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/sseclient-py/default.nix
index 05c3fc8074..54dfdd9d94 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/sseclient-py/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/sseclient-py/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "sseclient-py";
- version = "1.7";
+ version = "1.7.2";
src = fetchFromGitHub {
owner = "mpetazzoni";
repo = "sseclient";
rev = "sseclient-py-${version}";
- sha256 = "0iar4w8gryhjzqwy5k95q9gsv6xpmnwxkpz33418nw8hxlp86wfl";
+ sha256 = "096spyv50jir81xiwkg9l88ycp1897d3443r6gi1by8nkp4chvix";
};
# based on tox.ini
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/tasklib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/tasklib/default.nix
index 591f4cdabe..8cb2a2f027 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/tasklib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/tasklib/default.nix
@@ -8,11 +8,11 @@ wsl_stub = writeShellScriptBin "wsl" "true";
in buildPythonPackage rec {
pname = "tasklib";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "7fe8676acb4559129c4e958be7704c12dccdbae302fff47c5398bc0dd1c9e563";
+ sha256 = "3645594147107c92780e19ac437f09eb8b8eac950209fb92d3f71869a721234e";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/tempest/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/tempest/default.nix
index 760c9fd5e3..c85e4f5b29 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/tempest/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/tempest/default.nix
@@ -29,11 +29,11 @@
buildPythonApplication rec {
pname = "tempest";
- version = "28.0.0";
+ version = "29.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "24fcc0baa2044454b17b6b4aa2b1b19682cf95eb92ca38a2f289d3cbc488b170";
+ sha256 = "2045963560f91241c56940af741f081e59212c65c9867dfcdabfe07f9dd4d255";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/transmission-rpc/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/transmission-rpc/default.nix
index 7f6ef31d31..1a06448db9 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/transmission-rpc/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/transmission-rpc/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "transmission-rpc";
- version = "3.2.7";
+ version = "3.2.8";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "36c022fddb45084c0d9f63db34abf79b66a0f2bab6484f4ac32eb2744a06fa15";
+ sha256 = "821eda19809dca7ad50eaf42ed8debb72ec0e3b1f04f63b8b2414a05075c132e";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/trimesh/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/trimesh/default.nix
index c9ee24470f..1da8a14e43 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/trimesh/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/trimesh/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "trimesh";
- version = "3.9.30";
+ version = "3.9.31";
src = fetchPypi {
inherit pname version;
- sha256 = "ad1585906cdb49bd780f51f01e4c9946cc77fc0cfb0eb4a9a98cfbd12d7f1a3d";
+ sha256 = "cdb7e5b996a2ea180a53b283ac8fac4a8978ae31c860b55c14a205fc772144c2";
};
propagatedBuildInputs = [ numpy ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/types-requests/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/types-requests/default.nix
index 2d7ccc0522..798dbd6c42 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/types-requests/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/types-requests/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "types-requests";
- version = "2.25.6";
+ version = "2.25.8";
src = fetchPypi {
inherit pname version;
- sha256 = "1vh203dppi6457lwv7z46dc8rpanjlahk4v3394nq1jwyp0425g2";
+ sha256 = "sha256-IlrC6GVJtu86ikS/lV+AtJVYVXBKFdKIPYRFyN9jckI=";
};
# Modules doesn't have tests
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
index e7fc0f62d5..d4ddd6fa3c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "velbus-aio";
- version = "2021.9.1";
+ version = "2021.9.2";
disabled = pythonOlder "3.7";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "Cereal2nd";
repo = pname;
rev = version;
- sha256 = "0q7jrjljp65lrazv2yjsiw69240vmhcss3dqrgxhq79dpyck6zfl";
+ sha256 = "sha256-pFVhWrMygCwAsAYPnqtoaPcgh6y0Tf9vROYfn0M+g2E=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/wadllib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/wadllib/default.nix
index fcddf538d8..b169a93ff8 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/wadllib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/wadllib/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "wadllib";
- version = "1.3.5";
+ version = "1.3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "84fecbaec2fef5ae2d7717a8115d271f18c6b5441eac861c58be8ca57f63c1d3";
+ sha256 = "acd9ad6a2c1007d34ca208e1da6341bbca1804c0e6850f954db04bdd7666c5fc";
};
propagatedBuildInputs = [ setuptools lazr-uri ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/wsgiprox/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/wsgiprox/default.nix
new file mode 100644
index 0000000000..af35c23e45
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/wsgiprox/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, six
+, certauth
+}:
+
+buildPythonPackage rec {
+ pname = "wsgiprox";
+ version = "1.5.2";
+
+ src = fetchFromGitHub {
+ owner = "webrecorder";
+ repo = "wsgiprox";
+ # https://github.com/webrecorder/wsgiprox/issues/8
+ rev = "004870a87959e68ff28ff4362e4f0df28ec22030";
+ sha256 = "sha256-EquddaNrVceyJHuQMCajKHGZX2Q7ebR0Zhvi2pl2WEw=";
+ };
+
+ propagatedBuildInputs = [
+ six
+ certauth
+ ];
+
+ pythonImportsCheck = [ "wsgiprox" ];
+
+ # See https://github.com/webrecorder/wsgiprox/issues/6
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Python WSGI Middleware for adding HTTP/S proxy support to any WSGI Application";
+ homepage = "https://github.com/webrecorder/wsgiprox";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ Luflosi ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/youtube-search-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/youtube-search-python/default.nix
index 818baf6b36..8f31c892d0 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/youtube-search-python/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/youtube-search-python/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "youtube-search-python";
- version = "1.4.7";
+ version = "1.4.8";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "7f93d9ecfd9b965dc93782d8174b1c1888f8900e2a303254037ba34e1d0ebed4";
+ sha256 = "aafa940d77ecd37bb7af802da53caed9be8861c6abe3004abb04315155b4a3ad";
};
propagatedBuildInputs = [ httpx ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/zarr/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/zarr/default.nix
index a26fa1dfef..cc47fe9e5a 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/zarr/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/zarr/default.nix
@@ -12,12 +12,12 @@
buildPythonPackage rec {
pname = "zarr";
- version = "2.9.4";
+ version = "2.10.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
- sha256 = "5544c47bc2a35f8e8af58bee92378518018b484ba550e997759d18f40fa75719";
+ sha256 = "8ca8e505cadb4f7f97aab4e4193bb302b6338bf54593c98fe7581bf574ed864c";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/zeroconf/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
index f5613352d1..46377a238b 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "zeroconf";
- version = "0.36.6";
+ version = "0.36.7";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "jstasiak";
repo = "python-zeroconf";
rev = version;
- sha256 = "sha256-Ignbms6/M36cK1fwm2ejMPDkYrANmQ7CcSqM+ISoZig=";
+ sha256 = "sha256-jGbYd56JCXYUE4N2He5Ds8vVcgfny1kUYbd1rL7upcM=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/cvehound/default.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/cvehound/default.nix
new file mode 100644
index 0000000000..05073bba75
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/cvehound/default.nix
@@ -0,0 +1,41 @@
+{ lib, fetchFromGitHub, coccinelle, gnugrep, python3Packages }:
+
+with python3Packages;
+
+buildPythonApplication rec {
+ pname = "cvehound";
+ version = "1.0.4";
+
+ src = fetchFromGitHub {
+ owner = "evdenis";
+ repo = "cvehound";
+ rev = version;
+ sha256 = "sha256-m8vpea02flQ8elSvGWv9FqBhsEcBzRYjcUk+dc4kb2M=";
+ };
+
+ makeWrapperArgs = [
+ "--prefix PATH : ${lib.makeBinPath [ coccinelle gnugrep ]}"
+ ];
+
+ propagatedBuildInputs = [
+ psutil
+ setuptools
+ sympy
+ ];
+
+ checkInputs = [
+ GitPython
+ pytestCheckHook
+ ];
+
+ # Tries to clone the kernel sources
+ doCheck = false;
+
+ meta = with lib; {
+ description = "tool to check linux kernel source dump for known CVEs";
+ homepage = "https://github.com/evdenis/cvehound";
+ # See https://github.com/evdenis/cvehound/issues/22
+ license = with licenses; [ gpl2Only gpl3Only ];
+ maintainers = with maintainers; [ ambroisie ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/default.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/default.nix
index efbc464482..75541dc112 100644
--- a/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/default.nix
@@ -1,27 +1,36 @@
-{ fetchurl, lib, stdenv, pkg-config, libxml2, llvm, perl }:
+{ callPackage, fetchurl, lib, stdenv, gtk3, pkg-config, libxml2, llvm, perl, sqlite }:
-stdenv.mkDerivation rec {
+let
+ GCC_BASE = "${stdenv.cc.cc}/lib/gcc/${stdenv.hostPlatform.uname.processor}-unknown-linux-gnu/${stdenv.cc.cc.version}";
+in stdenv.mkDerivation rec {
pname = "sparse";
- version = "0.5.0";
+ version = "0.6.3";
src = fetchurl {
url = "mirror://kernel/software/devel/sparse/dist/${pname}-${version}.tar.xz";
- sha256 = "1mc86jc5xdrdmv17nqj2cam2yqygnj6ar1iqkwsx2y37ij8wy7wj";
+ sha256 = "16d8c4dhipjzjf8z4z7pix1pdpqydz0v4r7i345f5s09hjnxpxnl";
};
preConfigure = ''
- sed -i Makefile -e "s|^PREFIX=.*$|PREFIX=$out|g"
+ sed -i 's|"/usr/include"|"${stdenv.cc.libc.dev}/include"|' pre-process.c
+ sed -i 's|qx(\$ccom -print-file-name=)|"${GCC_BASE}"|' cgcc
+ makeFlags+=" PREFIX=$out"
'';
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ libxml2 llvm perl ];
+ buildInputs = [ gtk3 libxml2 llvm perl sqlite ];
doCheck = true;
+ buildFlags = "GCC_BASE:=${GCC_BASE}";
- meta = {
+ passthru.tests = {
+ simple-execution = callPackage ./tests.nix { };
+ };
+
+ meta = with lib; {
description = "Semantic parser for C";
homepage = "https://git.kernel.org/cgit/devel/sparse/sparse.git/";
- license = lib.licenses.mit;
- platforms = lib.platforms.linux;
- maintainers = [ lib.maintainers.thoughtpolice ];
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ thoughtpolice jkarlson ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/tests.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/tests.nix
new file mode 100644
index 0000000000..5eba254e53
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/sparse/tests.nix
@@ -0,0 +1,24 @@
+{ runCommand, gcc, sparse, writeText }:
+let
+ src = writeText "CODE.c" ''
+ #include
+ #include
+ #include
+
+ int main(int argc, char *argv[]) {
+ return EXIT_SUCCESS;
+ }
+ '';
+in
+ runCommand "${sparse.pname}-tests" { buildInputs = [ gcc sparse ]; meta.timeout = 3; }
+''
+ set -eu
+ ${sparse}/bin/cgcc ${src} > output 2>&1 || ret=$?
+ if [[ -z $(