diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 122dbc34c62..0a0de3d980a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1760,6 +1760,12 @@ githubId = 28444296; name = "Benjamin Hougland"; }; + bigzilla = { + email = "m.billyzaelani@gmail.com"; + github = "bigzilla"; + githubId = 20436235; + name = "Billy Zaelani Malik"; + }; billewanick = { email = "bill@ewanick.com"; github = "billewanick"; @@ -3613,6 +3619,12 @@ githubId = 10198051; name = "Drew Risinger"; }; + dritter = { + email = "dritter03@googlemail.com"; + github = "dritter"; + githubId = 1544760; + name = "Dominik Ritter"; + }; drperceptron = { email = "92106371+drperceptron@users.noreply.github.com"; github = "drperceptron"; diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml index 5b9e561fd48..ec0afe73eb4 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml @@ -216,6 +216,13 @@ services.hadoop.hbase. + + + Please, + a Sudo clone written in Rust. Available as + security.please + + Sachet, diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md index 6bdd19d8e41..1028a975f30 100644 --- a/nixos/doc/manual/release-notes/rl-2211.section.md +++ b/nixos/doc/manual/release-notes/rl-2211.section.md @@ -79,6 +79,8 @@ In addition to numerous new and upgraded packages, this release has the followin - [HBase cluster](https://hbase.apache.org/), a distributed, scalable, big data store. Available as [services.hadoop.hbase](options.html#opt-services.hadoop.hbase.enable). +- [Please](https://github.com/edneville/please), a Sudo clone written in Rust. Available as [security.please](#opt-security.please.enable) + - [Sachet](https://github.com/messagebird/sachet/), an SMS alerting tool for the Prometheus Alertmanager. Available as [services.prometheus.sachet](#opt-services.prometheus.sachet.enable). - [infnoise](https://github.com/leetronics/infnoise), a hardware True Random Number Generator dongle. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 9fc3af4b1ce..c400fadef3a 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -263,6 +263,7 @@ ./security/pam.nix ./security/pam_usb.nix ./security/pam_mount.nix + ./security/please.nix ./security/polkit.nix ./security/rngd.nix ./security/rtkit.nix diff --git a/nixos/modules/security/please.nix b/nixos/modules/security/please.nix new file mode 100644 index 00000000000..88bb9cba2bf --- /dev/null +++ b/nixos/modules/security/please.nix @@ -0,0 +1,122 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.security.please; + ini = pkgs.formats.ini { }; +in +{ + options.security.please = { + enable = mkEnableOption (mdDoc '' + please, a Sudo clone which allows a users to execute a command or edit a + file as another user + ''); + + package = mkOption { + type = types.package; + default = pkgs.please; + defaultText = literalExpression "pkgs.please"; + description = mdDoc '' + Which package to use for {command}`please`. + ''; + }; + + wheelNeedsPassword = mkOption { + type = types.bool; + default = true; + description = lib.mdDoc '' + Whether users of the `wheel` group must provide a password to run + commands or edit files with {command}`please` and + {command}`pleaseedit` respectively. + ''; + }; + + settings = mkOption { + type = ini.type; + default = { }; + example = { + jim_run_any_as_root = { + name = "jim"; + type = "run"; + target = "root"; + rule = ".*"; + require_pass = false; + }; + jim_edit_etc_hosts_as_root = { + name = "jim"; + type = "edit"; + target = "root"; + rule = "/etc/hosts"; + editmode = 644; + require_pass = true; + }; + }; + description = mdDoc '' + Please configuration. Refer to + for + details. + ''; + }; + }; + + config = mkIf cfg.enable { + security.wrappers = + let + owner = "root"; + group = "root"; + setuid = true; + in + { + please = { + source = "${cfg.package}/bin/please"; + inherit owner group setuid; + }; + pleaseedit = { + source = "${cfg.package}/bin/pleaseedit"; + inherit owner group setuid; + }; + }; + + security.please.settings = rec { + # The "wheel" group is allowed to do anything by default but this can be + # overridden. + wheel_run_as_any = { + type = "run"; + group = true; + name = "wheel"; + target = ".*"; + rule = ".*"; + require_pass = cfg.wheelNeedsPassword; + }; + wheel_edit_as_any = wheel_run_as_any // { type = "edit"; }; + wheel_list_as_any = wheel_run_as_any // { type = "list"; }; + }; + + environment = { + systemPackages = [ cfg.package ]; + + etc."please.ini".source = ini.generate "please.ini" + (cfg.settings // (rec { + # The "root" user is allowed to do anything by default and this cannot + # be overridden. + root_run_as_any = { + type = "run"; + name = "root"; + target = ".*"; + rule = ".*"; + require_pass = false; + }; + root_edit_as_any = root_run_as_any // { type = "edit"; }; + root_list_as_any = root_run_as_any // { type = "list"; }; + })); + }; + + security.pam.services.please = { + sshAgentAuth = true; + usshAuth = true; + }; + + meta.maintainers = with maintainers; [ azahi ]; + }; +} diff --git a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py index 5398ef6b84e..68da2061591 100644 --- a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py +++ b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py @@ -175,22 +175,22 @@ def get_specialisations(profile: Optional[str], generation: int, _: Optional[str def remove_old_entries(gens: List[SystemIdentifier]) -> None: rex_profile = re.compile("^@efiSysMountPoint@/loader/entries/nixos-(.*)-generation-.*\.conf$") - rex_generation = re.compile("^@efiSysMountPoint@/loader/entries/nixos.*-generation-(.*)\.conf$") + rex_generation = re.compile("^@efiSysMountPoint@/loader/entries/nixos.*-generation-([0-9]+)(-specialisation-.*)?\.conf$") known_paths = [] for gen in gens: known_paths.append(copy_from_profile(*gen, "kernel", True)) known_paths.append(copy_from_profile(*gen, "initrd", True)) for path in glob.iglob("@efiSysMountPoint@/loader/entries/nixos*-generation-[1-9]*.conf"): + if rex_profile.match(path): + prof = rex_profile.sub(r"\1", path) + else: + prof = None try: - if rex_profile.match(path): - prof = rex_profile.sub(r"\1", path) - else: - prof = "system" gen_number = int(rex_generation.sub(r"\1", path)) - if not (prof, gen_number) in gens: - os.unlink(path) except ValueError: - pass + continue + if not (prof, gen_number, None) in gens: + os.unlink(path) for path in glob.iglob("@efiSysMountPoint@/efi/nixos/*"): if not path in known_paths and not os.path.isdir(path): os.unlink(path) diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index bc1037427a0..0fc08e841ec 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -117,7 +117,7 @@ in { ceph-single-node = handleTestOn ["x86_64-linux"] ./ceph-single-node.nix {}; ceph-single-node-bluestore = handleTestOn ["x86_64-linux"] ./ceph-single-node-bluestore.nix {}; certmgr = handleTest ./certmgr.nix {}; - cfssl = handleTestOn ["x86_64-linux"] ./cfssl.nix {}; + cfssl = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cfssl.nix {}; charliecloud = handleTest ./charliecloud.nix {}; chromium = (handleTestOn ["aarch64-linux" "x86_64-linux"] ./chromium.nix {}).stable or {}; cinnamon = handleTest ./cinnamon.nix {}; @@ -147,7 +147,7 @@ in { corerad = handleTest ./corerad.nix {}; coturn = handleTest ./coturn.nix {}; couchdb = handleTest ./couchdb.nix {}; - cri-o = handleTestOn ["x86_64-linux"] ./cri-o.nix {}; + cri-o = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cri-o.nix {}; custom-ca = handleTest ./custom-ca.nix {}; croc = handleTest ./croc.nix {}; deluge = handleTest ./deluge.nix {}; @@ -160,8 +160,8 @@ in { dnscrypt-wrapper = handleTestOn ["x86_64-linux"] ./dnscrypt-wrapper {}; dnsdist = handleTest ./dnsdist.nix {}; doas = handleTest ./doas.nix {}; - docker = handleTestOn ["x86_64-linux"] ./docker.nix {}; - docker-rootless = handleTestOn ["x86_64-linux"] ./docker-rootless.nix {}; + docker = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker.nix {}; + docker-rootless = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker-rootless.nix {}; docker-registry = handleTest ./docker-registry.nix {}; docker-tools = handleTestOn ["x86_64-linux"] ./docker-tools.nix {}; docker-tools-cross = handleTestOn ["x86_64-linux" "aarch64-linux"] ./docker-tools-cross.nix {}; @@ -253,7 +253,7 @@ in { herbstluftwm = handleTest ./herbstluftwm.nix {}; installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests {}); invidious = handleTest ./invidious.nix {}; - oci-containers = handleTestOn ["x86_64-linux"] ./oci-containers.nix {}; + oci-containers = handleTestOn ["aarch64-linux" "x86_64-linux"] ./oci-containers.nix {}; odoo = handleTest ./odoo.nix {}; # 9pnet_virtio used to mount /nix partition doesn't support # hibernation. This test happens to work on x86_64-linux but @@ -491,13 +491,14 @@ in { plasma5 = handleTest ./plasma5.nix {}; plasma5-systemd-start = handleTest ./plasma5-systemd-start.nix {}; plausible = handleTest ./plausible.nix {}; + please = handleTest ./please.nix {}; pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix {}; plikd = handleTest ./plikd.nix {}; plotinus = handleTest ./plotinus.nix {}; podgrab = handleTest ./podgrab.nix {}; - podman = handleTestOn ["x86_64-linux"] ./podman/default.nix {}; - podman-dnsname = handleTestOn ["x86_64-linux"] ./podman/dnsname.nix {}; - podman-tls-ghostunnel = handleTestOn ["x86_64-linux"] ./podman/tls-ghostunnel.nix {}; + podman = handleTestOn ["aarch64-linux" "x86_64-linux"] ./podman/default.nix {}; + podman-dnsname = handleTestOn ["aarch64-linux" "x86_64-linux"] ./podman/dnsname.nix {}; + podman-tls-ghostunnel = handleTestOn ["aarch64-linux" "x86_64-linux"] ./podman/tls-ghostunnel.nix {}; polaris = handleTest ./polaris.nix {}; pomerium = handleTestOn ["x86_64-linux"] ./pomerium.nix {}; postfix = handleTest ./postfix.nix {}; @@ -631,8 +632,7 @@ in { tmate-ssh-server = handleTest ./tmate-ssh-server.nix { }; tomcat = handleTest ./tomcat.nix {}; tor = handleTest ./tor.nix {}; - # traefik test relies on docker-containers - traefik = handleTestOn ["x86_64-linux"] ./traefik.nix {}; + traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {}; trafficserver = handleTest ./trafficserver.nix {}; transmission = handleTest ./transmission.nix {}; # tracee requires bpf diff --git a/nixos/tests/please.nix b/nixos/tests/please.nix new file mode 100644 index 00000000000..2437cfe1613 --- /dev/null +++ b/nixos/tests/please.nix @@ -0,0 +1,66 @@ +import ./make-test-python.nix ({ lib, ... }: +{ + name = "please"; + meta.maintainers = with lib.maintainers; [ azahi ]; + + nodes.machine = + { ... }: + { + users.users = with lib; mkMerge [ + (listToAttrs (map + (n: nameValuePair n { isNormalUser = true; }) + (genList (x: "user${toString x}") 6))) + { + user0.extraGroups = [ "wheel" ]; + } + ]; + + security.please = { + enable = true; + wheelNeedsPassword = false; + settings = { + user2_run_true_as_root = { + name = "user2"; + target = "root"; + rule = "/run/current-system/sw/bin/true"; + require_pass = false; + }; + user4_edit_etc_hosts_as_root = { + name = "user4"; + type = "edit"; + target = "root"; + rule = "/etc/hosts"; + editmode = 644; + require_pass = false; + }; + }; + }; + }; + + testScript = '' + with subtest("root: can run anything by default"): + machine.succeed('please true') + with subtest("root: can edit anything by default"): + machine.succeed('EDITOR=cat pleaseedit /etc/hosts') + + with subtest("user0: can run as root because it's in the wheel group"): + machine.succeed('su - user0 -c "please -u root true"') + with subtest("user1: cannot run as root because it's not in the wheel group"): + machine.fail('su - user1 -c "please -u root true"') + + with subtest("user0: can edit as root"): + machine.succeed('su - user0 -c "EDITOR=cat pleaseedit /etc/hosts"') + with subtest("user1: cannot edit as root"): + machine.fail('su - user1 -c "EDITOR=cat pleaseedit /etc/hosts"') + + with subtest("user2: can run 'true' as root"): + machine.succeed('su - user2 -c "please -u root true"') + with subtest("user3: cannot run 'true' as root"): + machine.fail('su - user3 -c "please -u root true"') + + with subtest("user4: can edit /etc/hosts"): + machine.succeed('su - user4 -c "EDITOR=cat pleaseedit /etc/hosts"') + with subtest("user5: cannot edit /etc/hosts"): + machine.fail('su - user5 -c "EDITOR=cat pleaseedit /etc/hosts"') + ''; +}) diff --git a/nixos/tests/vscodium.nix b/nixos/tests/vscodium.nix index 3bdb99947a4..ee884cc4295 100644 --- a/nixos/tests/vscodium.nix +++ b/nixos/tests/vscodium.nix @@ -70,15 +70,15 @@ let # Save the file machine.send_key('ctrl-s') - machine.wait_for_text('Save') + machine.wait_for_text('(Save|Desktop|alice|Size)') machine.screenshot('save_window') machine.send_key('ret') # (the default filename is the first line of the file) machine.wait_for_file(f'/home/alice/{test_string}') - machine.send_key('ctrl-q') - machine.wait_until_fails('pgrep -x codium') + # machine.send_key('ctrl-q') + # machine.wait_until_fails('pgrep -x codium') ''; }); diff --git a/pkgs/applications/accessibility/mousetweaks/default.nix b/pkgs/applications/accessibility/mousetweaks/default.nix index 9e18904ff65..815b956da8e 100644 --- a/pkgs/applications/accessibility/mousetweaks/default.nix +++ b/pkgs/applications/accessibility/mousetweaks/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, pkg-config , glib, gtk3, gnome, gsettings-desktop-schemas, wrapGAppsHook -, libX11, libXtst, libXfixes, libXcursor +, xorg }: stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib gtk3 gsettings-desktop-schemas - libX11 libXtst libXfixes libXcursor + xorg.libX11 xorg.libXtst xorg.libXfixes xorg.libXcursor ]; passthru = { diff --git a/pkgs/applications/accessibility/wvkbd/default.nix b/pkgs/applications/accessibility/wvkbd/default.nix index e44b68f966d..44a60257613 100644 --- a/pkgs/applications/accessibility/wvkbd/default.nix +++ b/pkgs/applications/accessibility/wvkbd/default.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "wvkbd"; - version = "0.10"; + version = "0.11"; src = fetchFromGitHub { owner = "jjsullivan5196"; repo = pname; rev = "v${version}"; - sha256 = "sha256-h/hXHQfLiDkVKYZFsjyq2+w1Pnn3lR6H+r+fXYkP5ZY="; + sha256 = "sha256-rMaJzePtT7K0X9o9/yT1hfKIo07W2CLEZKqHwfCLQBE="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/applications/audio/carla/default.nix b/pkgs/applications/audio/carla/default.nix index 291c3875cea..82259d563ce 100644 --- a/pkgs/applications/audio/carla/default.nix +++ b/pkgs/applications/audio/carla/default.nix @@ -15,13 +15,13 @@ assert withGtk3 -> gtk3 != null; stdenv.mkDerivation rec { pname = "carla"; - version = "2.5.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "falkTX"; repo = pname; rev = "v${version}"; - sha256 = "sha256-KcwEuiy58wjTr+RWPmpMaPgM0olzxiWp9MMYiKwmIcI="; + sha256 = "sha256-SN+9Q5v0bv+kQcYLBJmSCd9WIGSeQuOZze8LVwF20EA="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/audio/tagger/default.nix b/pkgs/applications/audio/tagger/default.nix new file mode 100644 index 00000000000..b7708299d30 --- /dev/null +++ b/pkgs/applications/audio/tagger/default.nix @@ -0,0 +1,67 @@ +{ lib +, stdenv +, fetchFromGitHub +, meson +, ninja +, pkg-config +, jsoncpp +, taglib +, curl +, curlpp +, glib +, gtk4 +, libadwaita +, wrapGAppsHook4 +, desktop-file-utils +, chromaprint # fpcalc +}: + +stdenv.mkDerivation rec { + pname = "tagger"; + version = "2022.10.3"; + + src = fetchFromGitHub { + owner = "nlogozzo"; + repo = "NickvisionTagger"; + rev = version; + hash = "sha256-dyp2XzTnDs08tTTbCnjWh061UXnH4Q0Gnt0jofgVm2U="; + }; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wrapGAppsHook4 + desktop-file-utils + ]; + + buildInputs = [ + glib + gtk4 + libadwaita + jsoncpp + taglib + curl + curlpp + ]; + + # Don't install compiled binary + postPatch = '' + sed -i '/fpcalc/d' meson.build + ''; + + preFixup = '' + gappsWrapperArgs+=( + --prefix PATH : "${lib.makeBinPath [ chromaprint ]}" + ) + ''; + + meta = with lib; { + description = "An easy-to-use music tag (metadata) editor"; + homepage = "https://github.com/nlogozzo/NickvisionTagger"; + mainProgram = "org.nickvision.tagger"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ zendo ]; + }; +} diff --git a/pkgs/applications/blockchains/masari/default.nix b/pkgs/applications/blockchains/masari/default.nix index 175cd7a31bd..7cc0b2a593e 100644 --- a/pkgs/applications/blockchains/masari/default.nix +++ b/pkgs/applications/blockchains/masari/default.nix @@ -1,25 +1,35 @@ { lib, stdenv, fetchFromGitHub, cmake, pkg-config, unbound, openssl, boost -, lmdb, miniupnpc, readline }: +, lmdb, miniupnpc, readline, git, zeromq, libsodium, rapidjson, cppzmq }: stdenv.mkDerivation rec { pname = "masari"; - version = "0.1.4.0"; + version = "unstable-2022-10-09"; src = fetchFromGitHub { owner = "masari-project"; repo = "masari"; - rev = "v${version}"; - sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3"; + rev = "ff71f52220858b84a4403dab9a14339bcad57826"; + sha256 = "sha256-GunNFqZNgpLfyAA9BiBC98axgTQuK76z3BUl5T0iJqs="; }; - nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ boost miniupnpc openssl lmdb unbound readline ]; + postPatch = '' + # remove vendored libraries + rm -r external/{miniupnpc,rapidjson} + ''; + + nativeBuildInputs = [ cmake pkg-config git ]; + + buildInputs = [ + boost miniupnpc openssl unbound + zeromq readline libsodium + rapidjson cppzmq + ]; meta = with lib; { description = "scalability-focused, untraceable, secure, and fungible cryptocurrency using the RingCT protocol"; homepage = "https://www.getmasari.org/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ matthewcroughan ]; platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/greetd/default.nix b/pkgs/applications/display-managers/greetd/default.nix similarity index 100% rename from pkgs/os-specific/linux/greetd/default.nix rename to pkgs/applications/display-managers/greetd/default.nix diff --git a/pkgs/os-specific/linux/dlm/default.nix b/pkgs/applications/display-managers/greetd/dlm.nix similarity index 100% rename from pkgs/os-specific/linux/dlm/default.nix rename to pkgs/applications/display-managers/greetd/dlm.nix diff --git a/pkgs/os-specific/linux/gtkgreet/default.nix b/pkgs/applications/display-managers/greetd/gtkgreet.nix similarity index 100% rename from pkgs/os-specific/linux/gtkgreet/default.nix rename to pkgs/applications/display-managers/greetd/gtkgreet.nix diff --git a/pkgs/os-specific/linux/tuigreet/default.nix b/pkgs/applications/display-managers/greetd/tuigreet.nix similarity index 100% rename from pkgs/os-specific/linux/tuigreet/default.nix rename to pkgs/applications/display-managers/greetd/tuigreet.nix diff --git a/pkgs/os-specific/linux/wlgreet/default.nix b/pkgs/applications/display-managers/greetd/wlgreet.nix similarity index 100% rename from pkgs/os-specific/linux/wlgreet/default.nix rename to pkgs/applications/display-managers/greetd/wlgreet.nix diff --git a/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix b/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix index e84f305526b..cd406686df8 100644 --- a/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix +++ b/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchFromGitHub, pkg-config, linkFarm, lightdm-enso-os-greeter -, dbus, pcre, libepoxy, libXdmcp, at-spi2-core, libxklavier, libxkbcommon, libpthreadstubs -, gtk3, vala, cmake, libgee, libX11, lightdm, gdk-pixbuf, clutter-gtk, wrapGAppsHook, librsvg }: +, dbus, pcre, libepoxy, xorg, at-spi2-core, libxklavier, libxkbcommon +, gtk3, vala, cmake, libgee, lightdm, gdk-pixbuf, clutter-gtk, wrapGAppsHook, librsvg }: stdenv.mkDerivation { pname = "lightdm-enso-os-greeter"; @@ -30,15 +30,15 @@ stdenv.mkDerivation { pcre libepoxy libgee - libX11 + xorg.libX11 lightdm - libXdmcp + xorg.libXdmcp gdk-pixbuf clutter-gtk libxklavier at-spi2-core libxkbcommon - libpthreadstubs + xorg.libpthreadstubs librsvg ]; diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index b2713def5bb..c795cc30b39 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -183,7 +183,7 @@ let with on-the-fly code analysis, error prevention and automated refactorings for PHP and JavaScript code. ''; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ dritter ]; }; }); diff --git a/pkgs/applications/emulators/maiko/default.nix b/pkgs/applications/emulators/maiko/default.nix index e78b680d617..27f2a38f77a 100644 --- a/pkgs/applications/emulators/maiko/default.nix +++ b/pkgs/applications/emulators/maiko/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, cmake, libX11 }: +{ lib, stdenv, fetchFromGitHub, cmake, xorg }: stdenv.mkDerivation rec { pname = "maiko"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { hash = "sha256-Y+ngep/xHw6RCU8XVRYSWH6S+9hJ74z50pGpIqS2CjM="; }; nativeBuildInputs = [ cmake ]; - buildInputs = [ libX11 ]; + buildInputs = [ xorg.libX11 ]; installPhase = '' runHook preInstall find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \; @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { homepage = "https://interlisp.org/"; license = licenses.mit; maintainers = with maintainers; [ ehmry ]; - inherit (libX11.meta) platforms; + inherit (xorg.libX11.meta) platforms; }; } diff --git a/pkgs/applications/graphics/epick/default.nix b/pkgs/applications/graphics/epick/default.nix index fda56c0d8cb..c82f4f4d5f8 100644 --- a/pkgs/applications/graphics/epick/default.nix +++ b/pkgs/applications/graphics/epick/default.nix @@ -4,11 +4,7 @@ , stdenv , python3 , libGL -, libX11 -, libXcursor -, libXi -, libXrandr -, libxcb +, xorg , libxkbcommon , AppKit , IOKit @@ -31,11 +27,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.isLinux [ libGL - libX11 - libXcursor - libXi - libXrandr - libxcb + xorg.libX11 + xorg.libXcursor + xorg.libXi + xorg.libXrandr + xorg.libxcb libxkbcommon ] ++ lib.optionals stdenv.isDarwin [ AppKit diff --git a/pkgs/applications/graphics/hydrus/default.nix b/pkgs/applications/graphics/hydrus/default.nix index 06cab430bc3..32f6ac97fa3 100644 --- a/pkgs/applications/graphics/hydrus/default.nix +++ b/pkgs/applications/graphics/hydrus/default.nix @@ -10,14 +10,14 @@ python3Packages.buildPythonPackage rec { pname = "hydrus"; - version = "501"; + version = "502"; format = "other"; src = fetchFromGitHub { owner = "hydrusnetwork"; repo = "hydrus"; rev = "refs/tags/v${version}"; - sha256 = "sha256-dmQD3CAAAhE6IOfT38PHUIlHdDFdk6HZ6ZEZmKw7+WM="; + sha256 = "sha256-f3VnPmrRdo4PLQvS5pUafOh6ppq4hiwolz/FVVBNgxI="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/graphics/menyoki/default.nix b/pkgs/applications/graphics/menyoki/default.nix index 5615044b90e..1f25332e852 100644 --- a/pkgs/applications/graphics/menyoki/default.nix +++ b/pkgs/applications/graphics/menyoki/default.nix @@ -6,8 +6,7 @@ , stdenv , withSixel ? false , libsixel -, libX11 -, libXrandr +, xorg , AppKit , withSki ? true }: @@ -29,7 +28,7 @@ rustPlatform.buildRustPackage rec { ++ lib.optional stdenv.isLinux pkg-config; buildInputs = lib.optional withSixel libsixel - ++ lib.optionals stdenv.isLinux [ libX11 libXrandr ] + ++ lib.optionals stdenv.isLinux (with xorg; [ libX11 libXrandr ]) ++ lib.optional stdenv.isDarwin AppKit; buildNoDefaultFeatures = !withSki; diff --git a/pkgs/applications/misc/bfcal/default.nix b/pkgs/applications/misc/bfcal/default.nix index 9b77d1ebe3c..695f5bc69b0 100644 --- a/pkgs/applications/misc/bfcal/default.nix +++ b/pkgs/applications/misc/bfcal/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "bfcal"; - version = "1.0"; + version = "1.0.1"; src = fetchFromSourcehut { owner = "~bitfehler"; repo = "bfcal"; rev = "v${version}"; - sha256 = "sha256-2z5ICVEZ55omwcoVWpac/HPwyKF9jDCYO78S9p21VMU="; + sha256 = "sha256-5xyBU+0XUNFUGgvw7U8YE64zncw6SvPmbJhc1LY2u/g="; }; nativeBuildInputs = [ @@ -27,15 +27,11 @@ stdenv.mkDerivation rec { qtbase ]; - postInstall = '' - mkdir -p $out/bin - install bfcal $out/bin - ''; - meta = with lib; { description = "Quickly display a calendar"; homepage = "https://git.sr.ht/~bitfehler/bfcal"; license = licenses.gpl3Plus; + platforms = qtbase.meta.platforms; maintainers = with maintainers; [ laalsaas ]; }; } diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index da230acbbe6..ada160015bf 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { pname = "calibre"; - version = "6.6.1"; + version = "6.7.0"; src = fetchurl { url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz"; - hash = "sha256-jJMHliPTRqiI4Wx5N9qbSryoARcGBisSq6awXIaTk5g="; + hash = "sha256-R1poU9qhqf1DYZJ9tkupJrPR99pn5nTpkS6vkMzrwCg="; }; # https://sources.debian.org/patches/calibre/${version}+dfsg-1 diff --git a/pkgs/applications/misc/inlyne/default.nix b/pkgs/applications/misc/inlyne/default.nix index 6d78dd559c2..a68ec733ab7 100644 --- a/pkgs/applications/misc/inlyne/default.nix +++ b/pkgs/applications/misc/inlyne/default.nix @@ -4,12 +4,8 @@ , stdenv , pkg-config , fontconfig -, libXcursor -, libXi -, libXrandr -, libxcb +, xorg , libGL -, libX11 , openssl , AppKit , ApplicationServices @@ -42,10 +38,10 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.isLinux [ fontconfig - libXcursor - libXi - libXrandr - libxcb + xorg.libXcursor + xorg.libXi + xorg.libXrandr + xorg.libxcb openssl ] ++ lib.optionals stdenv.isDarwin [ AppKit @@ -64,7 +60,7 @@ rustPlatform.buildRustPackage rec { postFixup = lib.optionalString stdenv.isLinux '' patchelf $out/bin/inlyne \ - --add-rpath ${lib.makeLibraryPath [ libGL libX11 ]} + --add-rpath ${lib.makeLibraryPath [ libGL xorg.libX11 ]} ''; meta = with lib; { diff --git a/pkgs/applications/misc/kanboard/default.nix b/pkgs/applications/misc/kanboard/default.nix index 8f66eb87c24..85b409fe5ef 100644 --- a/pkgs/applications/misc/kanboard/default.nix +++ b/pkgs/applications/misc/kanboard/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "kanboard"; - version = "1.2.23"; + version = "1.2.24"; src = fetchFromGitHub { owner = "kanboard"; repo = "kanboard"; rev = "v${version}"; - sha256 = "sha256-Sr20WAJLKy/vaCw76abq8qoKWZbuVgqjlCTZom/puPU="; + sha256 = "sha256-s//GkCKvppqJ+7x8pNwVEaBsUOCKCGt+wLj9P+3N9hc="; }; dontBuild = true; diff --git a/pkgs/applications/misc/latte-dock/0001-Disable-autostart.patch b/pkgs/applications/misc/latte-dock/0001-Disable-autostart.patch new file mode 100644 index 00000000000..a639b465c92 --- /dev/null +++ b/pkgs/applications/misc/latte-dock/0001-Disable-autostart.patch @@ -0,0 +1,34 @@ +From ad3f083de2dca2b2c5189430d33a78acfbd9d694 Mon Sep 17 00:00:00 2001 +From: Lana Black +Date: Wed, 8 Jun 2022 12:42:31 +0000 +Subject: [PATCH] Disable autostart. + +--- + app/settings/universalsettings.cpp | 11 ----------- + 1 file changed, 11 deletions(-) + +diff --git a/app/settings/universalsettings.cpp b/app/settings/universalsettings.cpp +index c95371db..4efd3ffe 100644 +--- a/app/settings/universalsettings.cpp ++++ b/app/settings/universalsettings.cpp +@@ -74,17 +74,6 @@ UniversalSettings::~UniversalSettings() + + void UniversalSettings::load() + { +- //! check if user has set the autostart option +- bool autostartUserSet = m_universalGroup.readEntry("userConfiguredAutostart", false); +- +- if (!autostartUserSet && !autostart()) { +- //! the first time the application is running and autostart is not set, autostart is enabled +- //! and from now own it will not be recreated in the beginning +- +- setAutostart(true); +- m_universalGroup.writeEntry("userConfiguredAutostart", true); +- } +- + //! init screen scales + m_screenScalesGroup = m_universalGroup.group("ScreenScales"); + +-- +2.36.1 + diff --git a/pkgs/applications/misc/latte-dock/0001-close-user-autostart.patch b/pkgs/applications/misc/latte-dock/0001-close-user-autostart.patch deleted file mode 100644 index 63d5ecd798a..00000000000 --- a/pkgs/applications/misc/latte-dock/0001-close-user-autostart.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a162c54ed1fcc39434edf8666c72c305d05e79e6 Mon Sep 17 00:00:00 2001 -From: diffumist -Date: Mon, 4 Oct 2021 16:58:37 +0800 -Subject: [PATCH] close user config autostart - ---- - app/settings/universalsettings.cpp | 3 --- - 1 file changed, 3 deletions(-) - -diff --git a/app/settings/universalsettings.cpp b/app/settings/universalsettings.cpp -index e0010542..82b9e785 100644 ---- a/app/settings/universalsettings.cpp -+++ b/app/settings/universalsettings.cpp -@@ -77,9 +77,6 @@ void UniversalSettings::load() - //! check if user has set the autostart option - bool autostartUserSet = m_universalGroup.readEntry("userConfiguredAutostart", false); - -- if (!autostartUserSet && !autostart()) { -- setAutostart(true); -- } - - //! init screen scales - m_screenScalesGroup = m_universalGroup.group("ScreenScales"); --- -2.33.0 diff --git a/pkgs/applications/misc/latte-dock/default.nix b/pkgs/applications/misc/latte-dock/default.nix index 695fe938a9e..7e48781f5c4 100644 --- a/pkgs/applications/misc/latte-dock/default.nix +++ b/pkgs/applications/misc/latte-dock/default.nix @@ -1,24 +1,27 @@ -{ mkDerivation, lib, cmake, xorg, plasma-framework, fetchurl -, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, kcrash, knewstuff }: +{ mkDerivation, lib, cmake, xorg, plasma-framework, plasma-wayland-protocols, fetchFromGitLab +, extra-cmake-modules, karchive, kwindowsystem, qtx11extras, qtwayland, kcrash, knewstuff, wayland }: mkDerivation rec { pname = "latte-dock"; - version = "0.10.4"; + version = "unstable-2022-09-06"; - src = fetchurl { - url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz"; - sha256 = "XRop+MNcbeCcbnL2LM1i67QvMudW3CjWYEPLkT/qbGM="; - name = "${pname}-${version}.tar.xz"; + src = fetchFromGitLab { + domain = "invent.kde.org"; + owner = "plasma"; + repo = "latte-dock"; + rev = "cd36798a61a37652eb549d7dfcdf06d2028eddc4"; + sha256 = "sha256-X2PzI2XJje4DpPh7gTtYnMIwerR1IDY53HImvEtFmF4="; }; - buildInputs = [ plasma-framework xorg.libpthreadstubs xorg.libXdmcp xorg.libSM ]; + buildInputs = [ plasma-framework plasma-wayland-protocols qtwayland xorg.libpthreadstubs xorg.libXdmcp xorg.libSM wayland ]; nativeBuildInputs = [ extra-cmake-modules cmake karchive kwindowsystem qtx11extras kcrash knewstuff ]; patches = [ - ./0001-close-user-autostart.patch + ./0001-Disable-autostart.patch ]; + fixupPhase = '' mkdir -p $out/etc/xdg/autostart cp $out/share/applications/org.kde.latte-dock.desktop $out/etc/xdg/autostart @@ -26,7 +29,7 @@ mkDerivation rec { meta = with lib; { description = "Dock-style app launcher based on Plasma frameworks"; - homepage = "https://github.com/psifidotos/Latte-Dock"; + homepage = "https://invent.kde.org/plasma/latte-dock"; license = licenses.gpl2; platforms = platforms.unix; maintainers = [ maintainers.ysndr ]; diff --git a/pkgs/applications/misc/remarkable/rmapi/default.nix b/pkgs/applications/misc/remarkable/rmapi/default.nix index 624da925cc7..cca6c5b4887 100644 --- a/pkgs/applications/misc/remarkable/rmapi/default.nix +++ b/pkgs/applications/misc/remarkable/rmapi/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "rmapi"; - version = "0.0.20"; + version = "0.0.21"; src = fetchFromGitHub { owner = "juruen"; repo = "rmapi"; rev = "v${version}"; - sha256 = "sha256-khQ4Q2y/MJdz5EpfTSrLBROCX2QP2+3PXRO+x+FaXro="; + sha256 = "sha256-PObuO+Aea2MS1DW3/uOS7GajtFUPolDnPgwxYehGPlA="; }; - vendorSha256 = "sha256-gu+BU2tL/xZ7D6lZ1ueO/9IB9H3NNm4mloCZaGqZskU="; + vendorSha256 = "sha256-LmKcHV0aq7NDEwaL+u8zXkbKzzdWD8zmnAGw5xShDYo="; doCheck = false; diff --git a/pkgs/applications/misc/rlaunch/default.nix b/pkgs/applications/misc/rlaunch/default.nix index 206c32987cc..5622c94d427 100644 --- a/pkgs/applications/misc/rlaunch/default.nix +++ b/pkgs/applications/misc/rlaunch/default.nix @@ -1,9 +1,7 @@ { lib , fetchFromGitHub , rustPlatform -, libX11 -, libXft -, libXinerama +, xorg }: rustPlatform.buildRustPackage rec { @@ -21,7 +19,7 @@ rustPlatform.buildRustPackage rec { # The x11_dl crate dlopen()s these libraries, so we have to inject them into rpath. postFixup = '' - patchelf --set-rpath ${lib.makeLibraryPath [ libX11 libXft libXinerama ]} $out/bin/rlaunch + patchelf --set-rpath ${lib.makeLibraryPath (with xorg; [ libX11 libXft libXinerama ])} $out/bin/rlaunch ''; meta = with lib; { diff --git a/pkgs/applications/misc/trenchbroom/default.nix b/pkgs/applications/misc/trenchbroom/default.nix index 5ee13bb5ee3..9a93edb30f6 100644 --- a/pkgs/applications/misc/trenchbroom/default.nix +++ b/pkgs/applications/misc/trenchbroom/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchFromGitHub , cmake, ninja, git, pandoc, pkg-config -, libGL, libGLU, libXxf86vm, freeimage +, libGL, libGLU, freeimage , catch2, fmt, glew, miniz, tinyxml-2, xorg , qtbase, wrapQtAppsHook , copyDesktopItems, makeDesktopItem @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake git pandoc wrapQtAppsHook copyDesktopItems pkg-config ]; buildInputs = [ - libGL libGLU libXxf86vm freeimage qtbase catch2 fmt glew miniz tinyxml-2 + libGL libGLU xorg.libXxf86vm freeimage qtbase catch2 fmt glew miniz tinyxml-2 xorg.libSM ]; QT_PLUGIN_PATH = "${qtbase}/${qtbase.qtPluginPrefix}"; diff --git a/pkgs/applications/misc/wordnet/default.nix b/pkgs/applications/misc/wordnet/default.nix index 27694174d70..5b52caeaf1a 100644 --- a/pkgs/applications/misc/wordnet/default.nix +++ b/pkgs/applications/misc/wordnet/default.nix @@ -50,5 +50,6 @@ stdenv.mkDerivation rec { }; maintainers = [ ]; platforms = with lib.platforms; linux ++ darwin; + mainProgram = "wn"; }; } diff --git a/pkgs/applications/misc/xastir/default.nix b/pkgs/applications/misc/xastir/default.nix index 294beb06c5b..1af9f8e249e 100644 --- a/pkgs/applications/misc/xastir/default.nix +++ b/pkgs/applications/misc/xastir/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config , curl, db, libgeotiff -, libXpm, libXt, motif, pcre +, xorg, motif, pcre , perl, proj, rastermagick, shapelib }: @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ curl db libgeotiff - libXpm libXt motif pcre + xorg.libXpm xorg.libXt motif pcre perl proj rastermagick shapelib ]; diff --git a/pkgs/applications/misc/xfontsel/default.nix b/pkgs/applications/misc/xfontsel/default.nix index d056dd66e8d..ecafb9d5118 100644 --- a/pkgs/applications/misc/xfontsel/default.nix +++ b/pkgs/applications/misc/xfontsel/default.nix @@ -2,7 +2,7 @@ # at https://www.x.org/releases/individual/. # That is why this expression is not inside pkgs.xorg -{ lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }: +{ lib, stdenv, fetchurl, makeWrapper, xorg, pkg-config }: stdenv.mkDerivation rec { pname = "xfontsel"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config makeWrapper ]; - buildInputs = [ libX11 libXaw ]; + buildInputs = [ xorg.libX11 xorg.libXaw ]; # Without this, it gets Xmu as a dependency, but without rpath entry NIX_LDFLAGS = "-lXmu"; diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 2571e3eefd3..6602e53eff0 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -19,9 +19,9 @@ } }, "beta": { - "version": "107.0.5304.29", - "sha256": "1gid36r4hdl3wg2dbdvp847vnzggd2jga4i3pl5mdnvd3f1z0jpd", - "sha256bin64": "039b1yc5x5xgfj8sbc843lpizgmrkppcnmdzqq36zgihhj4mqkrg", + "version": "107.0.5304.36", + "sha256": "1jr5jncc44jqryhg90zc7pnp590qwqdvbc9nkd28418vs0dx98r4", + "sha256bin64": "0lczdihl955vcabr8f46ncglgis4ci8rnjga7dv7wxs4vlyxkhv8", "deps": { "gn": { "version": "2022-09-14", @@ -32,9 +32,9 @@ } }, "dev": { - "version": "108.0.5343.2", - "sha256": "1xg982z01zrv2lfr5qygn4391906m1z3ksi7k1l0i86g777f0ahg", - "sha256bin64": "0pgk3hsw1dxd6z63gpgx5ivjq49lyk608rkidp8i0acmwrvf0fqm", + "version": "108.0.5355.0", + "sha256": "185mj5sm6q2ahf0im52vkys9pcf0zxx849yrnghix3k487z959na", + "sha256bin64": "11gns3f7k1qj3asy5skrc8z3pb6var8lbqqra47c9gs1jby60d6l", "deps": { "gn": { "version": "2022-10-05", diff --git a/pkgs/applications/networking/cluster/driftctl/default.nix b/pkgs/applications/networking/cluster/driftctl/default.nix index ad26d4f6cba..0c9d90cd8aa 100644 --- a/pkgs/applications/networking/cluster/driftctl/default.nix +++ b/pkgs/applications/networking/cluster/driftctl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "driftctl"; - version = "0.37.0"; + version = "0.38.1"; src = fetchFromGitHub { owner = "snyk"; repo = "driftctl"; rev = "v${version}"; - sha256 = "sha256-Abp5JetsMqIXZK8BxNa22OBFCxquoLoy3npv6XxCWGo="; + sha256 = "sha256-etH/92Nhl5ZkmBeDtgFN0pLUOzgWhd3lClW4+zXYPr4="; }; - vendorSha256 = "sha256-uWPnBqT6lZSRClw2RyxHEOzue1Azj9VpPaulMA3qlug="; + vendorSha256 = "sha256-tvl0VlMUD7rVlB/OjyptYyllx6brX+ycGTp4In9yEvE="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/applications/networking/cluster/gatekeeper/default.nix b/pkgs/applications/networking/cluster/gatekeeper/default.nix index 192f37228a7..13a4d05f527 100644 --- a/pkgs/applications/networking/cluster/gatekeeper/default.nix +++ b/pkgs/applications/networking/cluster/gatekeeper/default.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "gatekeeper"; - version = "3.9.1"; + version = "3.9.2"; src = fetchFromGitHub { owner = "open-policy-agent"; repo = "gatekeeper"; rev = "v${version}"; - sha256 = "sha256-XZASej26Mn4tq9c4nvjQNhQZWtu3L6jIgMNhyYyh5IE="; + sha256 = "sha256-g6OwUCUR/F4v62yt3cCnAcys0tYYYrYVHC8vZZF5OQ4="; }; vendorSha256 = null; diff --git a/pkgs/applications/networking/cluster/kubernetes/default.nix b/pkgs/applications/networking/cluster/kubernetes/default.nix index 66a11329d41..983aeaba194 100644 --- a/pkgs/applications/networking/cluster/kubernetes/default.nix +++ b/pkgs/applications/networking/cluster/kubernetes/default.nix @@ -21,13 +21,13 @@ buildGoModule rec { pname = "kubernetes"; - version = "1.23.12"; + version = "1.23.13"; src = fetchFromGitHub { owner = "kubernetes"; repo = "kubernetes"; rev = "v${version}"; - sha256 = "sha256-PuSjMyve7YxxuVr3ztM6nM86gl3GpcIa+LHajzfXODU="; + sha256 = "sha256-Te31+geLT2hzyDfSGkCoXS0pXC1gbIJmpfC0DNDecAI="; }; vendorSha256 = null; diff --git a/pkgs/applications/networking/cluster/kubeseal/default.nix b/pkgs/applications/networking/cluster/kubeseal/default.nix index 136828be503..b109932fb2d 100644 --- a/pkgs/applications/networking/cluster/kubeseal/default.nix +++ b/pkgs/applications/networking/cluster/kubeseal/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "kubeseal"; - version = "0.18.5"; + version = "0.19.0"; src = fetchFromGitHub { owner = "bitnami-labs"; repo = "sealed-secrets"; rev = "v${version}"; - sha256 = "sha256-Ij+NNaAq3woHze7o14WT3cqKYLD99dU8C6TUsdG2U54="; + sha256 = "sha256-CQlyAgnEWeAfOn6xXeDFEGuSnaGZpGewg1tYYDCw8qE="; }; - vendorSha256 = "sha256-Iry8ZE/HwZEnro7p36KTdy3phydA+fjM4EFg8DneSuA="; + vendorSha256 = "sha256-505nUMuFteOfIurGYRGHqo9diTSEa56tmQZ3jIGtULQ="; subPackages = [ "cmd/kubeseal" ]; diff --git a/pkgs/applications/networking/cluster/kuma/default.nix b/pkgs/applications/networking/cluster/kuma/default.nix index 1fa66767931..20bba7d405d 100644 --- a/pkgs/applications/networking/cluster/kuma/default.nix +++ b/pkgs/applications/networking/cluster/kuma/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { inherit pname ; - version = "1.8.0"; + version = "1.8.1"; tags = lib.optionals enableGateway ["gateway"]; vendorSha256 = "sha256-69uXHvpQMeFwQbejMpfQPS8DDXJyVsnn59WUEJpSeng="; @@ -24,7 +24,7 @@ buildGoModule rec { owner = "kumahq"; repo = "kuma"; rev = version; - sha256 = "sha256-5459Fl7AbzuNGIOfDpVYlhvzLzfLT2Ckhr5omxZr76w="; + sha256 = "sha256-hNfgiMX3aMb8yjXjFKz73MczOeJyOI3Tna/NRSJBSzs="; }; doCheck = false; diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index feba95f58db..8ca12f13263 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -479,13 +479,13 @@ "version": "1.29.0" }, "gridscale": { - "hash": "sha256-vbFrwAZBazZok4LwXTTa4QIZpHxIPKv3x6vUyVt2S2I=", + "hash": "sha256-3JB82wbZ6mosFJZ96rGOnv/f1VFhHk6WEfm2u6sop2E=", "owner": "gridscale", "provider-source-address": "registry.terraform.io/gridscale/gridscale", "repo": "terraform-provider-gridscale", - "rev": "v1.15.0", + "rev": "v1.16.0", "vendorHash": null, - "version": "1.15.0" + "version": "1.16.0" }, "hcloud": { "hash": "sha256-DWDM3yWKkRV9FJMzKK7JJQdI0WvFILF/bsZFv2CjrvM=", @@ -669,13 +669,13 @@ "version": "0.7.0" }, "linode": { - "hash": "sha256-FtJYpHmXkXBIcxlrUN9hOid3x4wMSk5NI2CFzmwniu4=", + "hash": "sha256-bwVHrgcxc2W5Lx1aheqkdgwfrFfk4YAhD5bqvHdcxtI=", "owner": "linode", "provider-source-address": "registry.terraform.io/linode/linode", "repo": "terraform-provider-linode", - "rev": "v1.29.3", + "rev": "v1.29.4", "vendorHash": "sha256-D7WZ2Ep/W8aCCFOVgsveJKAIg/j5l9fEnnXLMobICnc=", - "version": "1.29.3" + "version": "1.29.4" }, "linuxbox": { "hash": "sha256-MzasMVtXO7ZeZ+qEx2Z+7881fOIA0SFzSvXVHeEROtg=", @@ -777,13 +777,13 @@ "version": "0.6.12" }, "newrelic": { - "hash": "sha256-2JYRvlpHqEU5VPVhZlBkMYD88L7vMjELFWDY9eJYkK8=", + "hash": "sha256-Sm5GwfILRCg0/gTNJtrDrWZY+uBXvuTYtrrtTnugP9Q=", "owner": "newrelic", "provider-source-address": "registry.terraform.io/newrelic/newrelic", "repo": "terraform-provider-newrelic", - "rev": "v3.4.4", - "vendorHash": "sha256-vtpRDE6tAhJGtYDG65NvtKx/fyt0yBqJTg5s5kXls+8=", - "version": "3.4.4" + "rev": "v3.5.0", + "vendorHash": "sha256-1D66m18oWwuXgBIWstRWvjfy9iGrmO3gyVBucdPps2c=", + "version": "3.5.0" }, "nomad": { "hash": "sha256-HhocWB3ZCFdeYgmA64hv1CYwqIf4EB/Q+vNrFKVB31I=", @@ -1012,13 +1012,13 @@ "version": "1.2.1" }, "selectel": { - "hash": "sha256-27Sdez4coJ4Enc1zTg4lr1SzlW3r6wCjciC5ID8vo0w=", + "hash": "sha256-2PwqVzwl8UIO+334lp9zkwkr2zAdI8S/rO+6iqTLu+I=", "owner": "selectel", "provider-source-address": "registry.terraform.io/selectel/selectel", "repo": "terraform-provider-selectel", - "rev": "v3.8.4", - "vendorHash": "sha256-kmsO9jFoR/93PkOeIo0pkS/OjE+m3QbIspobAv/9+KI=", - "version": "3.8.4" + "rev": "v3.8.5", + "vendorHash": "sha256-/7YQa84hOrOAGQSW1kVE27aM2253IB4pvA0ASAJe8VQ=", + "version": "3.8.5" }, "sentry": { "hash": "sha256-dNyUp+gXrOvMQu5tEnv2dOsXihyd19gdYakIo7+h3pY=", diff --git a/pkgs/applications/networking/feedreaders/newsflash/default.nix b/pkgs/applications/networking/feedreaders/newsflash/default.nix index 301e0ed8622..34b1409a071 100644 --- a/pkgs/applications/networking/feedreaders/newsflash/default.nix +++ b/pkgs/applications/networking/feedreaders/newsflash/default.nix @@ -21,19 +21,19 @@ stdenv.mkDerivation (finalAttrs: { pname = "newsflash"; - version = "2.1.0"; + version = "2.1.2"; src = fetchFromGitLab { owner = "news-flash"; repo = "news_flash_gtk"; rev = "refs/tags/v.${finalAttrs.version}"; - sha256 = "sha256-QDGoA22olhafL2geLf1Jxriqc4++3yxGN/ZnNyEAqjA="; + sha256 = "sha256-Q9KCzzBM0BzdmBUs8vJ4DR0e5XAHoAxrTpMvsKnuIAQ="; }; cargoDeps = rustPlatform.fetchCargoTarball { name = "${finalAttrs.pname}-${finalAttrs.version}"; src = finalAttrs.src; - sha256 = "sha256-21v/4VAgolk/12mj7CTu8d5CKMCovE1FQuGyMar8idY="; + sha256 = "sha256-GxRuN5ufzSB/XOb6TWLlvgg7KBNgZ+oJpOowR9Ze9OQ="; }; patches = [ diff --git a/pkgs/applications/networking/instant-messengers/alfaview/default.nix b/pkgs/applications/networking/instant-messengers/alfaview/default.nix index b8995aa8759..40eedd5a7d0 100644 --- a/pkgs/applications/networking/instant-messengers/alfaview/default.nix +++ b/pkgs/applications/networking/instant-messengers/alfaview/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "alfaview"; - version = "8.53.1"; + version = "8.54.0"; src = fetchurl { url = "https://production-alfaview-assets.alfaview.com/stable/linux/${pname}_${version}.deb"; - sha256 = "sha256-nohChte0jtqIlDulxUi+S04unR4xqeg8DCuYfHwMzP4="; + sha256 = "sha256-wvuBGBWM0tTXyrruYqifn+fl7NnIwmLhm9ePqspukaU="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/chatty/default.nix b/pkgs/applications/networking/instant-messengers/chatty/default.nix index 9728ea65c36..541bcc72f5a 100644 --- a/pkgs/applications/networking/instant-messengers/chatty/default.nix +++ b/pkgs/applications/networking/instant-messengers/chatty/default.nix @@ -29,15 +29,16 @@ stdenv.mkDerivation rec { pname = "chatty"; - version = "0.6.7"; + version = "unstable-2022-09-20"; src = fetchFromGitLab { domain = "source.puri.sm"; owner = "Librem5"; repo = "chatty"; - rev = "v${version}"; + # https://source.puri.sm/Librem5/chatty/-/tree/247c53fd990f7472ddd1a92c2f9e1299ae3ef4e4 + rev = "247c53fd990f7472ddd1a92c2f9e1299ae3ef4e4"; fetchSubmodules = true; - hash = "sha256-W4w/00mRgjfyQmLQ81/EAN+80qk7kDkBmMPJnOU+AIc="; + hash = "sha256-9hgQC0vLmmJJxrBWTdTIrJbSSwLS23uVoJri2ieCj4E="; }; postPatch = '' @@ -87,7 +88,5 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ dotlambda tomfitzhenry ]; platforms = platforms.linux; - # Requires upgrade to libsoup3 - broken = true; }; } diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix index 1905fd1b4f3..e68941d2a51 100644 --- a/pkgs/applications/networking/instant-messengers/profanity/default.nix +++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { pname = "profanity"; - version = "0.13.0"; + version = "0.13.1"; src = fetchFromGitHub { owner = "profanity-im"; repo = "profanity"; rev = version; - hash = "sha256-cTkNtj1mN5EuCyniFibKNzY2fxe3NKpRXt8acO/p6WY="; + hash = "sha256-A9ZgHliLb4v/3W5tm5zD0WN8mRmxLE/MUSTBXGvBCCM="; }; patches = [ diff --git a/pkgs/applications/networking/irc/ii/default.nix b/pkgs/applications/networking/irc/ii/default.nix index e39f7b75bb5..8fcbdce9729 100644 --- a/pkgs/applications/networking/irc/ii/default.nix +++ b/pkgs/applications/networking/irc/ii/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "ii"; - version = "1.9"; + version = "2.0"; src = fetchurl { url = "https://dl.suckless.org/tools/${pname}-${version}.tar.gz"; - sha256 = "sha256-hQyzI7WD0mG1G9qZk+5zMzQ1Ko5soeLwK1fBVL9WjBc="; + sha256 = "sha256-T2evzSCMB5ObiKrb8hSXpwKtCgf5tabOhh+fOf/lQls="; }; makeFlags = [ "CC:=$(CC)" ]; diff --git a/pkgs/applications/networking/juju/default.nix b/pkgs/applications/networking/juju/default.nix index a3f00ab2474..22ea41ec434 100644 --- a/pkgs/applications/networking/juju/default.nix +++ b/pkgs/applications/networking/juju/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "juju"; - version = "2.9.34"; + version = "2.9.35"; src = fetchFromGitHub { owner = "juju"; repo = "juju"; rev = "juju-${version}"; - sha256 = "sha256-oytnWzIsxLOeQvy1iSWysyMQuJ3vTnv7Ot9izOvgPHg="; + sha256 = "sha256-tRuT4freMDtFjmZuBV9WD9jQFUat8QAias5d+AN7IVo="; }; - vendorSha256 = "sha256-1/EnIPUufPwJqH24mqok5ijMenaPUldHBx8dOydECj8="; + vendorSha256 = "sha256-2MevXSjjwXDjmiMhiZyv45a3OgDrliVcvHbXGRIOu1s="; # Disable tests because it attempts to use a mongodb instance doCheck = false; diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index a40e998618a..1e47c68526a 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -11,7 +11,7 @@ , enableSpellcheck ? true # Arguments to include external libraries -, enableLibSM ? true, libSM +, enableLibSM ? true, xorg , enableGnuTLS ? true, gnutls , enableEnchant ? enableSpellcheck, enchant , enableDbus ? true, dbus, dbus-glib @@ -76,7 +76,7 @@ let { flags = [ "ldap" ]; enabled = enableLdap; deps = [ openldap ]; } { flags = [ "libetpan" ]; enabled = enableLibetpan; deps = [ libetpan ]; } { flags = [ "libravatar-plugin" ]; enabled = enablePluginLibravatar; } - { flags = [ "libsm" ]; enabled = enableLibSM; deps = [ libSM ]; } + { flags = [ "libsm" ]; enabled = enableLibSM; deps = [ xorg.libSM ]; } { flags = [ "litehtml_viewer-plugin" ]; enabled = enablePluginLitehtmlViewer; deps = [ gumbo ]; } { flags = [ "mailmbox-plugin" ]; enabled = enablePluginMailmbox; } { flags = [ "managesieve-plugin" ]; enabled = enablePluginManageSieve; } diff --git a/pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix b/pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix index 64ebb78a12d..3ba78c74392 100644 --- a/pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix +++ b/pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchFromGitHub, pkg-config, glib, notmuch }: let - version = "9"; + version = "10"; in stdenv.mkDerivation { pname = "notmuch-addrlookup"; @@ -11,7 +11,7 @@ stdenv.mkDerivation { owner = "aperezdc"; repo = "notmuch-addrlookup-c"; rev ="v${version}"; - sha256 = "1j3zdx161i1x4w0nic14ix5i8hd501rb31daf8api0k8855sx4rc"; + sha256 = "sha256-Z59MAptJw95azdK0auOuUyxBrX4PtXwnRNPkhjgI6Ro="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/applications/office/paperless-ngx/default.nix b/pkgs/applications/office/paperless-ngx/default.nix index d3faa478e49..6fa29c1dbbd 100644 --- a/pkgs/applications/office/paperless-ngx/default.nix +++ b/pkgs/applications/office/paperless-ngx/default.nix @@ -61,12 +61,12 @@ let in python.pkgs.pythonPackages.buildPythonApplication rec { pname = "paperless-ngx"; - version = "1.9.1"; + version = "1.9.2"; # Fetch the release tarball instead of a git ref because it contains the prebuilt fontend src = fetchurl { url = "https://github.com/paperless-ngx/paperless-ngx/releases/download/v${version}/${pname}-v${version}.tar.xz"; - hash = "sha256-KWq3zUES8klXexNO9krlqZKZEajOhkTHF13t/3rxrPc="; + hash = "sha256-fafjVXRfzFrINzI/Ivfm1VY4YpemHkHwThBP54XoXM4="; }; format = "other"; diff --git a/pkgs/applications/radio/cubicsdr/default.nix b/pkgs/applications/radio/cubicsdr/default.nix index 23b64e124c5..400927aed4d 100644 --- a/pkgs/applications/radio/cubicsdr/default.nix +++ b/pkgs/applications/radio/cubicsdr/default.nix @@ -1,5 +1,6 @@ { lib, stdenv, fetchFromGitHub, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp, - pkg-config, soapysdr-with-plugins, wxGTK31-gtk3, enableDigitalLab ? false }: + pkg-config, soapysdr-with-plugins, wxGTK32, enableDigitalLab ? false, + Cocoa, WebKit }: stdenv.mkDerivation rec { pname = "cubicsdr"; @@ -14,7 +15,9 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK31-gtk3 ]; + buildInputs = [ fftw hamlib liquid-dsp soapysdr-with-plugins wxGTK32 ] + ++ lib.optionals stdenv.isLinux [ libpulseaudio libGL libX11 ] + ++ lib.optionals stdenv.isDarwin [ Cocoa WebKit ]; cmakeFlags = [ "-DUSE_HAMLIB=ON" ] ++ lib.optional enableDigitalLab "-DENABLE_DIGITAL_LAB=ON"; @@ -24,6 +27,6 @@ stdenv.mkDerivation rec { description = "Software Defined Radio application"; license = licenses.gpl2Plus; maintainers = with maintainers; [ lasandell ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/science/biology/angsd/default.nix b/pkgs/applications/science/biology/angsd/default.nix index ec714fa7a26..799ba87f073 100644 --- a/pkgs/applications/science/biology/angsd/default.nix +++ b/pkgs/applications/science/biology/angsd/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "angsd"; - version = "0.938"; + version = "0.940"; src = fetchFromGitHub { owner = "ANGSD"; repo = "angsd"; - sha256 = "sha256-hNELuPim2caJCzJ63fQ7kIB0ZZnXcC8JIbk4dFcCs2U="; + sha256 = "sha256-Ppxgy54pAnqJUzNX5c12NHjKTQyEEcPSpCEEVOyZ/LA="; rev = "${version}"; }; diff --git a/pkgs/applications/science/logic/abc/default.nix b/pkgs/applications/science/logic/abc/default.nix index 4f37651a171..bf7bffd1159 100644 --- a/pkgs/applications/science/logic/abc/default.nix +++ b/pkgs/applications/science/logic/abc/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { pname = "abc-verifier"; - version = "2022.07.27"; + version = "unstable-2022-09-08"; src = fetchFromGitHub { owner = "yosyshq"; repo = "abc"; - rev = "7cc11f7f0c49d4ce7e0ed88950d1c4c8abb1cba4"; - hash = "sha256-6m8XpSYWT0uMpYHXm3ExnH7RMg923YqZAJPTBeFXMzg="; + rev = "ab5b16ede2ff3a4ab5209df24db2c76700899684"; + hash = "sha256-G4MnBViwIosFDiPfUimGqf6fq1KJlxj+LozmgoKaH3A="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/applications/terminal-emulators/alacritty/default.nix b/pkgs/applications/terminal-emulators/alacritty/default.nix index 9eff1604563..7c0bd8b6410 100644 --- a/pkgs/applications/terminal-emulators/alacritty/default.nix +++ b/pkgs/applications/terminal-emulators/alacritty/default.nix @@ -16,12 +16,7 @@ , fontconfig , freetype , libGL -, libX11 -, libXcursor -, libXi -, libXrandr -, libXxf86vm -, libxcb +, xorg , libxkbcommon , wayland , xdg-utils @@ -41,12 +36,12 @@ let fontconfig freetype libGL - libX11 - libXcursor - libXi - libXrandr - libXxf86vm - libxcb + xorg.libX11 + xorg.libXcursor + xorg.libXi + xorg.libXrandr + xorg.libXxf86vm + xorg.libxcb ] ++ lib.optionals stdenv.isLinux [ libxkbcommon wayland diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index 056a2413844..2783795f3e5 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -39,6 +39,8 @@ stdenv.mkDerivation rec { fcitx ibus + ] ++ lib.optionals (stdenv.system != "aarch64-linux") [ + # FIXME Currently broken on aarch64-linux uim ]; @@ -118,5 +120,6 @@ stdenv.mkDerivation rec { license = licenses.bsd3; maintainers = with maintainers; [ vrthra ramkromberg atemu ]; platforms = with platforms; linux ++ darwin; + broken = stdenv.system == "aarch64-darwin"; # https://github.com/arakiken/mlterm/issues/51 }; } diff --git a/pkgs/applications/version-management/git-and-tools/lefthook/default.nix b/pkgs/applications/version-management/git-and-tools/lefthook/default.nix index 0359ed7ac60..c06172aa216 100644 --- a/pkgs/applications/version-management/git-and-tools/lefthook/default.nix +++ b/pkgs/applications/version-management/git-and-tools/lefthook/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "lefthook"; - version = "1.1.1"; + version = "1.1.2"; src = fetchFromGitHub { rev = "v${version}"; owner = "evilmartians"; repo = "lefthook"; - sha256 = "sha256-Ic2AsPFdRk3XdTVGbPBByxcHRAGGQfYoQm9GlgmSvA4="; + sha256 = "sha256-YgW0Q1s3V9WvhYQJlAszD7DdEbfggV5w1uMKXhDrn0s="; }; vendorSha256 = "sha256-NTZz0EDIjGdh8dD9jxbNVdWb7NFJsdtnMp7H6Ni0EbQ="; diff --git a/pkgs/applications/virtualization/firecracker/default.nix b/pkgs/applications/virtualization/firecracker/default.nix index 877bcc2f8b0..66932260886 100644 --- a/pkgs/applications/virtualization/firecracker/default.nix +++ b/pkgs/applications/virtualization/firecracker/default.nix @@ -1,7 +1,7 @@ { fetchurl, lib, stdenv }: let - version = "1.1.1"; + version = "1.1.2"; suffix = { x86_64-linux = "x86_64"; @@ -22,7 +22,7 @@ stdenv.mkDerivation { sourceRoot = "."; src = dlbin { - x86_64-linux = "sha256-KRlOE4iDWMYzKZUZnuKIwIGooj5o8ARpROS7f2VIr1c="; + x86_64-linux = "sha256-RkFlc+atTB9zHRAjQSqe4nJ9N7I9FE/RBeEcXoCk0T8="; aarch64-linux = "sha256-AqVFqUbMtjPmOsSgAaJ2AFNc0McC708fAD36qLz0VAc="; }; diff --git a/pkgs/data/fonts/cherry/default.nix b/pkgs/data/fonts/cherry/default.nix index 53d9149091e..2e957775155 100644 --- a/pkgs/data/fonts/cherry/default.nix +++ b/pkgs/data/fonts/cherry/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, fonttosfnt, mkfontdir }: +{ lib, stdenv, fetchFromGitHub, xorg }: stdenv.mkDerivation rec { pname = "cherry"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "13zkxwp6r6kcxv4x459vwscr0n0sik4a3kcz5xnmlpvcdnbxi586"; }; - nativeBuildInputs = [ fonttosfnt mkfontdir ]; + nativeBuildInputs = [ xorg.fonttosfnt xorg.mkfontdir ]; buildPhase = '' patchShebangs make.sh diff --git a/pkgs/data/fonts/clearlyU/default.nix b/pkgs/data/fonts/clearlyU/default.nix index 5c97d3b7134..9799955d05f 100644 --- a/pkgs/data/fonts/clearlyU/default.nix +++ b/pkgs/data/fonts/clearlyU/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, fonttosfnt, mkfontscale, libfaketime }: +{ lib, stdenv, fetchurl, xorg, libfaketime }: stdenv.mkDerivation rec { pname = "clearlyU"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1xn14jbv3m1khy7ydvad9ydkn7yygdbhjy9wm1v000jzjwr3lv21"; }; - nativeBuildInputs = [ fonttosfnt mkfontscale libfaketime ]; + nativeBuildInputs = [ xorg.fonttosfnt xorg.mkfontscale libfaketime ]; buildPhase = '' # convert bdf fonts to otb diff --git a/pkgs/data/fonts/creep/default.nix b/pkgs/data/fonts/creep/default.nix index d4748544af5..d25464da813 100644 --- a/pkgs/data/fonts/creep/default.nix +++ b/pkgs/data/fonts/creep/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchFromGitHub, libfaketime -, fonttosfnt, mkfontscale +, xorg }: stdenv.mkDerivation rec { @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "0zs21kznh1q883jfdgz74bb63i4lxlv98hj3ipp0wvsi6zw0vs8n"; }; - nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ]; + nativeBuildInputs = [ libfaketime xorg.fonttosfnt xorg.mkfontscale ]; buildPhase = '' faketime -f "1970-01-01 00:00:01" fonttosfnt -g 2 -m 2 -o creep.otb creep.bdf diff --git a/pkgs/data/fonts/dina/default.nix b/pkgs/data/fonts/dina/default.nix index 3b5d75acb50..509a37556ce 100644 --- a/pkgs/data/fonts/dina/default.nix +++ b/pkgs/data/fonts/dina/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, unzip -, bdftopcf, mkfontscale, fonttosfnt +, bdftopcf, xorg }: stdenv.mkDerivation { @@ -14,7 +14,7 @@ stdenv.mkDerivation { }; nativeBuildInputs = - [ unzip bdftopcf mkfontscale fonttosfnt ]; + [ unzip bdftopcf xorg.mkfontscale xorg.fonttosfnt ]; postPatch = '' sed -i 's/microsoft-cp1252/ISO8859-1/' *.bdf diff --git a/pkgs/data/fonts/envypn-font/default.nix b/pkgs/data/fonts/envypn-font/default.nix index dbfb85f881f..b80067baff0 100644 --- a/pkgs/data/fonts/envypn-font/default.nix +++ b/pkgs/data/fonts/envypn-font/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, libfaketime -, fonttosfnt, mkfontscale +, xorg }: stdenv.mkDerivation { @@ -10,7 +10,7 @@ stdenv.mkDerivation { sha256 = "bda67b6bc6d5d871a4d46565d4126729dfb8a0de9611dae6c68132a7b7db1270"; }; - nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ]; + nativeBuildInputs = [ libfaketime xorg.fonttosfnt xorg.mkfontscale ]; unpackPhase = '' tar -xzf $src --strip-components=1 diff --git a/pkgs/data/fonts/gohufont/default.nix b/pkgs/data/fonts/gohufont/default.nix index e72bed4ae41..37fb622e131 100644 --- a/pkgs/data/fonts/gohufont/default.nix +++ b/pkgs/data/fonts/gohufont/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, fetchFromGitHub -, mkfontscale, bdf2psf, bdftopcf -, fonttosfnt, libfaketime +, xorg, bdf2psf, bdftopcf +, libfaketime }: stdenv.mkDerivation rec { @@ -15,8 +15,8 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = - [ mkfontscale bdf2psf bdftopcf - fonttosfnt libfaketime + [ xorg.mkfontscale bdf2psf bdftopcf + xorg.fonttosfnt libfaketime ]; buildPhase = '' diff --git a/pkgs/data/fonts/profont/default.nix b/pkgs/data/fonts/profont/default.nix index 3570bf7bf91..da12347af06 100644 --- a/pkgs/data/fonts/profont/default.nix +++ b/pkgs/data/fonts/profont/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchzip, mkfontscale }: +{ lib, stdenv, fetchzip, xorg }: stdenv.mkDerivation { pname = "profont"; @@ -20,7 +20,7 @@ stdenv.mkDerivation { dontBuild = true; - nativeBuildInputs = [ mkfontscale ]; + nativeBuildInputs = [ xorg.mkfontscale ]; installPhase = '' mkdir -p "$out/share/fonts/misc" diff --git a/pkgs/data/fonts/siji/default.nix b/pkgs/data/fonts/siji/default.nix index adc6a79f10f..e83c79cca5f 100644 --- a/pkgs/data/fonts/siji/default.nix +++ b/pkgs/data/fonts/siji/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, libfaketime, fonttosfnt, mkfontscale }: +{ lib, stdenv, fetchFromGitHub, libfaketime, xorg }: stdenv.mkDerivation rec { name = "siji-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1408g4nxwdd682vjqpmgv0cp0bfnzzzwls62cjs9zrds16xa9dpf"; }; - nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ]; + nativeBuildInputs = [ libfaketime xorg.fonttosfnt xorg.mkfontscale ]; buildPhase = '' # compress pcf fonts diff --git a/pkgs/data/fonts/spleen/default.nix b/pkgs/data/fonts/spleen/default.nix index 162197006ba..737a799438f 100644 --- a/pkgs/data/fonts/spleen/default.nix +++ b/pkgs/data/fonts/spleen/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchurl, mkfontscale }: +{ lib, fetchurl, xorg }: let pname = "spleen"; @@ -17,7 +17,7 @@ in fetchurl { install -m644 fonts.alias-spleen $d/fonts.alias # create fonts.dir so NixOS xorg module adds to fp - ${mkfontscale}/bin/mkfontdir "$d" + ${xorg.mkfontscale}/bin/mkfontdir "$d" ''; sha256 = "sha256-6Imsa0ku8On63di0DOo0QxBa0t+tbtPRxM531EIiG94="; diff --git a/pkgs/data/fonts/tamsyn/default.nix b/pkgs/data/fonts/tamsyn/default.nix index 6f0886e1d97..64955efd62e 100644 --- a/pkgs/data/fonts/tamsyn/default.nix +++ b/pkgs/data/fonts/tamsyn/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, fontforge, mkfontscale }: +{ lib, stdenv, fetchurl, fontforge, xorg }: let version = "1.11"; @@ -11,7 +11,7 @@ in stdenv.mkDerivation { sha256 = "0kpjzdj8sv5871b8827mjgj9dswk75h94jj5iia2bds18ih1pglp"; }; - nativeBuildInputs = [ fontforge mkfontscale ]; + nativeBuildInputs = [ fontforge xorg.mkfontscale ]; unpackPhase = '' tar -xzf $src --strip-components=1 diff --git a/pkgs/data/fonts/tamzen/default.nix b/pkgs/data/fonts/tamzen/default.nix index 80212a14aeb..8fcfe694299 100644 --- a/pkgs/data/fonts/tamzen/default.nix +++ b/pkgs/data/fonts/tamzen/default.nix @@ -1,4 +1,4 @@ -{ fetchFromGitHub, mkfontscale, lib, stdenv }: +{ fetchFromGitHub, xorg, lib, stdenv }: stdenv.mkDerivation rec { pname = "tamzen-font"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "00x5fipzqimglvshhqwycdhaqslbvn3rl06jnswhyxfvz16ymj7s"; }; - nativeBuildInputs = [ mkfontscale ]; + nativeBuildInputs = [ xorg.mkfontscale ]; installPhase = '' install -m 644 -D otb/*.otb pcf/*.pcf -t "$out/share/fonts/misc" diff --git a/pkgs/data/fonts/terminus-font/default.nix b/pkgs/data/fonts/terminus-font/default.nix index 9ccf0371f19..348f341cea5 100644 --- a/pkgs/data/fonts/terminus-font/default.nix +++ b/pkgs/data/fonts/terminus-font/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, python3 -, bdftopcf, mkfontscale +, bdftopcf, xorg }: stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { patches = [ ./SOURCE_DATE_EPOCH-for-otb.patch ]; nativeBuildInputs = - [ python3 bdftopcf mkfontscale ]; + [ python3 bdftopcf xorg.mkfontscale ]; enableParallelBuilding = true; diff --git a/pkgs/data/fonts/tewi/default.nix b/pkgs/data/fonts/tewi/default.nix index 1cf31b5affe..3e68042631c 100644 --- a/pkgs/data/fonts/tewi/default.nix +++ b/pkgs/data/fonts/tewi/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchFromGitHub, python3 -, bdftopcf, mkfontscale -, libfaketime, fonttosfnt +, bdftopcf, xorg +, libfaketime, }: stdenv.mkDerivation rec { @@ -15,8 +15,8 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = - [ python3 bdftopcf mkfontscale - libfaketime fonttosfnt + [ python3 bdftopcf xorg.mkfontscale + libfaketime xorg.fonttosfnt ]; postPatch = '' diff --git a/pkgs/data/fonts/ucs-fonts/default.nix b/pkgs/data/fonts/ucs-fonts/default.nix index 7bb9930ccfc..e9d78dd03a7 100644 --- a/pkgs/data/fonts/ucs-fonts/default.nix +++ b/pkgs/data/fonts/ucs-fonts/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, bdftopcf -, libfaketime, fonttosfnt, mkfontscale +, libfaketime, xorg }: stdenv.mkDerivation { @@ -24,8 +24,8 @@ stdenv.mkDerivation { sourceRoot = "."; nativeBuildInputs = - [ bdftopcf libfaketime fonttosfnt - mkfontscale + [ bdftopcf libfaketime xorg.fonttosfnt + xorg.mkfontscale ]; buildPhase = '' diff --git a/pkgs/data/fonts/uni-vga/default.nix b/pkgs/data/fonts/uni-vga/default.nix index fea90e8b8e7..1239b123883 100644 --- a/pkgs/data/fonts/uni-vga/default.nix +++ b/pkgs/data/fonts/uni-vga/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, perl, kbd, bdftopcf -, libfaketime, fonttosfnt, mkfontscale +, libfaketime, xorg }: stdenv.mkDerivation { @@ -12,7 +12,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ bdftopcf libfaketime - fonttosfnt mkfontscale + xorg.fonttosfnt xorg.mkfontscale ] ++ lib.optionals stdenv.isLinux [ perl kbd ]; postPatch = "patchShebangs ."; diff --git a/pkgs/data/fonts/unifont/default.nix b/pkgs/data/fonts/unifont/default.nix index 03ec6092ad1..1cd20a1c189 100644 --- a/pkgs/data/fonts/unifont/default.nix +++ b/pkgs/data/fonts/unifont/default.nix @@ -1,5 +1,5 @@ -{ lib, stdenv, fetchurl, mkfontscale -, libfaketime, fonttosfnt +{ lib, stdenv, fetchurl, xorg +, libfaketime }: stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { hash = "sha256-77rkcU0YajAVugWHnGscaFvcFTgWm+1WPLknQZvTjN0="; }; - nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ]; + nativeBuildInputs = [ libfaketime xorg.fonttosfnt xorg.mkfontscale ]; dontUnpack = true; diff --git a/pkgs/data/fonts/uw-ttyp0/default.nix b/pkgs/data/fonts/uw-ttyp0/default.nix index a3c3f7b68aa..f8006516e27 100644 --- a/pkgs/data/fonts/uw-ttyp0/default.nix +++ b/pkgs/data/fonts/uw-ttyp0/default.nix @@ -1,6 +1,5 @@ { lib, stdenv, fetchurl, perl -, bdftopcf, bdf2psf, mkfontdir -, fonttosfnt +, bdftopcf, bdf2psf, xorg , targetsDat ? null , variantsDat ? null }: @@ -17,7 +16,7 @@ stdenv.mkDerivation rec { # remove for version >1.3 patches = [ ./determinism.patch ]; - nativeBuildInputs = [ perl bdftopcf bdf2psf fonttosfnt mkfontdir ]; + nativeBuildInputs = [ perl bdftopcf bdf2psf xorg.fonttosfnt xorg.mkfontdir ]; # configure sizes, encodings and variants preConfigure = diff --git a/pkgs/desktops/gnome/apps/seahorse/default.nix b/pkgs/desktops/gnome/apps/seahorse/default.nix index 07e39248bb7..60de418f1e4 100644 --- a/pkgs/desktops/gnome/apps/seahorse/default.nix +++ b/pkgs/desktops/gnome/apps/seahorse/default.nix @@ -1,4 +1,5 @@ -{ lib, stdenv +{ stdenv +, lib , fetchurl , vala , meson @@ -11,7 +12,8 @@ , wrapGAppsHook , itstool , gnupg -, libsoup +, desktop-file-utils +, libsoup_3 , gnome , gpgme , python3 @@ -27,11 +29,11 @@ stdenv.mkDerivation rec { pname = "seahorse"; - version = "42.0"; + version = "43.0"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; - hash = "sha256-xQys6/jeen4uXx2uC5gjIRR0Epar6NVD45I9YqFT1jA="; + hash = "sha256-Wx0b+6dPNlgifzyC4pbzMN0PzR70Y2tqIYIo/uXqgy0="; }; nativeBuildInputs = [ @@ -44,6 +46,7 @@ stdenv.mkDerivation rec { python3 openssh gnupg + desktop-file-utils gcr # error: Package `...' not found in specified Vala API directories or GObject-Introspection GIR directories # TODO: the vala setuphook should look for vala filess in targetOffset instead of hostOffset @@ -60,7 +63,7 @@ stdenv.mkDerivation rec { gpgme libsecret avahi - libsoup + libsoup_3 p11-kit openldap libpwquality @@ -70,7 +73,7 @@ stdenv.mkDerivation rec { doCheck = true; postPatch = '' - patchShebangs build-aux/ + patchShebangs build-aux/gpg_check_version.py ''; preCheck = '' diff --git a/pkgs/development/compilers/closure/default.nix b/pkgs/development/compilers/closure/default.nix index 9d08a4b85c3..2e7397b26fd 100644 --- a/pkgs/development/compilers/closure/default.nix +++ b/pkgs/development/compilers/closure/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "closure-compiler"; - version = "20220905"; + version = "20221004"; src = fetchurl { url = "mirror://maven/com/google/javascript/closure-compiler/v${version}/closure-compiler-v${version}.jar"; - sha256 = "sha256-+1f6ILeoMO+6a+uL3y95PAbcyr2KXh0yMQfzsUcCg0E="; + sha256 = "sha256-r2m5nfNWg5aGJBRLVZwmgilpgc4epLWY4qx34pRIi6Q="; }; dontUnpack = true; diff --git a/pkgs/development/compilers/yosys/default.nix b/pkgs/development/compilers/yosys/default.nix index 44f56d36602..34c76b48384 100644 --- a/pkgs/development/compilers/yosys/default.nix +++ b/pkgs/development/compilers/yosys/default.nix @@ -72,18 +72,27 @@ let in stdenv.mkDerivation rec { pname = "yosys"; - version = "0.20"; + version = "0.22"; src = fetchFromGitHub { owner = "YosysHQ"; repo = "yosys"; rev = "${pname}-${version}"; - hash = "sha256-0oDF6wLcWlDG2hWFjIL+oQmICQl/H6YAwDzgTiuF298="; + hash = "sha256-us4GiulqkzcwD2iuNXB5eTd3iqgUdvj9Nd2p/9TJerQ="; }; enableParallelBuilding = true; nativeBuildInputs = [ pkg-config bison flex ]; - buildInputs = [ tcl readline libffi python3 protobuf zlib ]; + buildInputs = [ + tcl + readline + libffi + protobuf + zlib + (python3.withPackages (pp: with pp; [ + click + ])) + ]; makeFlags = [ "ENABLE_PROTOBUF=1" "PREFIX=${placeholder "out"}"]; diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 3914d09e9d0..6d3c677397d 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -1,6 +1,15 @@ -{ pkgs }: - -with pkgs; +{ __splicedPackages +, callPackage +, config +, darwin +, db +, lib +, libffiBoot +, newScope +, pythonPackagesExtensions +, splicePackages +, stdenv +}: (let @@ -79,11 +88,11 @@ with pkgs; extra = _: {}; optionalExtensions = cond: as: if cond then as else []; python2Extension = import ../../../top-level/python2-packages.nix; - extensions = lib.composeManyExtensions ((optionalExtensions (!self.isPy3k) [python2Extension]) ++ pkgs.pythonPackagesExtensions ++ [ overrides ]); + extensions = lib.composeManyExtensions ((optionalExtensions (!self.isPy3k) [python2Extension]) ++ pythonPackagesExtensions ++ [ overrides ]); aliases = self: super: lib.optionalAttrs config.allowAliases (import ../../../top-level/python-aliases.nix lib self super); in lib.makeScopeWithSplicing - pkgs.splicePackages - pkgs.newScope + splicePackages + newScope otherSplices keep extra @@ -150,7 +159,7 @@ with pkgs; in { python27 = callPackage ./cpython/2.7 { - self = python27; + self = __splicedPackages.python27; sourceVersion = { major = "2"; minor = "7"; @@ -163,7 +172,7 @@ in { }; python37 = callPackage ./cpython { - self = python37; + self = __splicedPackages.python37; sourceVersion = { major = "3"; minor = "7"; @@ -176,7 +185,7 @@ in { }; python38 = callPackage ./cpython { - self = python38; + self = __splicedPackages.python38; sourceVersion = { major = "3"; minor = "8"; @@ -189,19 +198,19 @@ in { }; python39 = callPackage ./cpython ({ - self = python39; + self = __splicedPackages.python39; inherit (darwin) configd; inherit passthruFun; } // sources.python39); python310 = callPackage ./cpython ({ - self = python310; + self = __splicedPackages.python310; inherit (darwin) configd; inherit passthruFun; } // sources.python310); python311 = callPackage ./cpython { - self = python311; + self = __splicedPackages.python311; sourceVersion = { major = "3"; minor = "11"; @@ -215,7 +224,7 @@ in { # Minimal versions of Python (built without optional dependencies) python3Minimal = (callPackage ./cpython ({ - self = python3Minimal; + self = __splicedPackages.python3Minimal; inherit passthruFun; pythonAttr = "python3Minimal"; # strip down that python version as much as possible @@ -226,7 +235,7 @@ in { sqlite = null; configd = null; tzdata = null; - libffi = pkgs.libffiBoot; # without test suite + libffi = libffiBoot; # without test suite stripConfig = true; stripIdlelib = true; stripTests = true; @@ -244,7 +253,7 @@ in { }); pypy27 = callPackage ./pypy { - self = pypy27; + self = __splicedPackages.pypy27; sourceVersion = { major = "7"; minor = "3"; @@ -253,14 +262,14 @@ in { sha256 = "sha256-wERP2YcwWMHA2Z4TqTTpIoXLBZksmWi/Ujwyv5vsCp0="; pythonVersion = "2.7"; db = db.override { dbmSupport = !stdenv.isDarwin; }; - python = python27; + python = __splicedPackages.python27; inherit passthruFun; inherit (darwin) libunwind; inherit (darwin.apple_sdk.frameworks) Security; }; pypy38 = callPackage ./pypy { - self = pypy38; + self = __splicedPackages.pypy38; sourceVersion = { major = "7"; minor = "3"; @@ -269,20 +278,20 @@ in { sha256 = "sha256-Ia4zn09QFtbKcwAwXz47VUNzg1yzw5qQQf4w5oEcgMY="; pythonVersion = "3.8"; db = db.override { dbmSupport = !stdenv.isDarwin; }; - python = python27; + python = __splicedPackages.python27; inherit passthruFun; inherit (darwin) libunwind; inherit (darwin.apple_sdk.frameworks) Security; }; - pypy37 = pypy38.override { - self = pythonInterpreters.pypy37; + pypy37 = __splicedPackages.pypy38.override { + self = __splicedPackages.pythonInterpreters.pypy37; pythonVersion = "3.7"; sha256 = "sha256-LtAqyecQhZxBvILer7CGGXkruaJ+6qFnbHQe3t0hTdc="; }; pypy27_prebuilt = callPackage ./pypy/prebuilt_2_7.nix { # Not included at top-level - self = pythonInterpreters.pypy27_prebuilt; + self = __splicedPackages.pythonInterpreters.pypy27_prebuilt; sourceVersion = { major = "7"; minor = "3"; @@ -295,7 +304,7 @@ in { pypy38_prebuilt = callPackage ./pypy/prebuilt.nix { # Not included at top-level - self = pythonInterpreters.pypy38_prebuilt; + self = __splicedPackages.pythonInterpreters.pypy38_prebuilt; sourceVersion = { major = "7"; minor = "3"; diff --git a/pkgs/development/java-modules/postgresql_jdbc/default.nix b/pkgs/development/java-modules/postgresql_jdbc/default.nix index f58441beedb..7c20e42d4cc 100644 --- a/pkgs/development/java-modules/postgresql_jdbc/default.nix +++ b/pkgs/development/java-modules/postgresql_jdbc/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "postgresql-jdbc"; - version = "42.2.20"; + version = "42.5.0"; src = fetchMavenArtifact { artifactId = "postgresql"; groupId = "org.postgresql"; - sha256 = "0kjilsrz9shymfki48kg1q84la1870ixlh2lnfw347x8mqw2k2vh"; + sha256 = "sha256-pNGLWrGuuShaixezZfQk8mhEUinKv45BIRXbYVK33uM="; inherit version; }; diff --git a/pkgs/development/libraries/audio/libmysofa/default.nix b/pkgs/development/libraries/audio/libmysofa/default.nix index 5626c5fa8f8..61680220214 100644 --- a/pkgs/development/libraries/audio/libmysofa/default.nix +++ b/pkgs/development/libraries/audio/libmysofa/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "libmysofa"; - version = "1.2.1"; + version = "1.3.1"; src = fetchFromGitHub { owner = "hoene"; repo = "libmysofa"; rev = "v${version}"; - sha256 = "sha256-SCyeicZ+JkJU1x2X3efOvxUXT2qF2IiUsj+anLg5Lsg="; + sha256 = "sha256-QEfkeofsVxB9gyISL/P7bvnbcBuG7Q3A4UoAyQAXxgE="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/development/libraries/db/generic.nix b/pkgs/development/libraries/db/generic.nix index a2b9314ca9c..59df0e8469c 100644 --- a/pkgs/development/libraries/db/generic.nix +++ b/pkgs/development/libraries/db/generic.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (rec { ''; meta = with lib; { - homepage = "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/index.html"; + homepage = "https://www.oracle.com/database/technologies/related/berkeleydb.html"; description = "Berkeley DB"; license = license; platforms = platforms.unix; diff --git a/pkgs/development/libraries/gcr/4.nix b/pkgs/development/libraries/gcr/4.nix index f452d00b40d..a7f5b66a60e 100644 --- a/pkgs/development/libraries/gcr/4.nix +++ b/pkgs/development/libraries/gcr/4.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { pname = "gcr"; - version = "3.92.0"; + version = "4.0.0"; outputs = [ "out" "bin" "dev" "devdoc" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "iWq/jh2w9A6ygHPzZPNqcjhayKv4zRNisQFul3If9Rg="; + sha256 = "xFhVkk8O57q0Pi3Ti/r9KsgVxumGQ0HAFh4XEXPc7Hw="; }; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/geis/default.nix b/pkgs/development/libraries/geis/default.nix index 1c1d4cfe507..e8476b0fefb 100644 --- a/pkgs/development/libraries/geis/default.nix +++ b/pkgs/development/libraries/geis/default.nix @@ -10,10 +10,7 @@ , gobject-introspection , grail , gtk3 -, libX11 -, libXext -, libXi -, libXtst +, xorg , pango , xorgserver }: @@ -38,7 +35,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config wrapGAppsHook python3Packages.wrapPython]; buildInputs = [ atk dbus evemu frame gdk-pixbuf gobject-introspection grail - gtk3 libX11 libXext libXi libXtst pango python3Packages.python xorgserver + gtk3 xorg.libX11 xorg.libXext xorg.libXi xorg.libXtst pango python3Packages.python xorgserver ]; patchPhase = '' diff --git a/pkgs/development/libraries/intel-media-sdk/default.nix b/pkgs/development/libraries/intel-media-sdk/default.nix index 288f12ac1fc..665fdb3f93e 100644 --- a/pkgs/development/libraries/intel-media-sdk/default.nix +++ b/pkgs/development/libraries/intel-media-sdk/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "intel-media-sdk"; - version = "22.5.3"; + version = "22.5.4"; src = fetchFromGitHub { owner = "Intel-Media-SDK"; repo = "MediaSDK"; rev = "intel-mediasdk-${version}"; - sha256 = "sha256-oWwES0XKjhVGPVsPo4t9WWorm+4J6lMPa+/pSY7r6I0="; + sha256 = "sha256-f9b0+BWUlekMM0huPdJ5Ms4tYr/ipgfLiQ310FQKAXA="; }; nativeBuildInputs = [ cmake pkg-config ]; diff --git a/pkgs/development/libraries/libcaca/default.nix b/pkgs/development/libraries/libcaca/default.nix index b0d09a5f749..71a800520ad 100644 --- a/pkgs/development/libraries/libcaca/default.nix +++ b/pkgs/development/libraries/libcaca/default.nix @@ -3,8 +3,7 @@ , fetchFromGitHub , autoreconfHook , imlib2 -, libX11 -, libXext +, xorg , ncurses , pkg-config , zlib @@ -32,8 +31,8 @@ stdenv.mkDerivation rec { zlib (imlib2.override { inherit x11Support; }) ] ++ lib.optionals x11Support [ - libX11 - libXext + xorg.libX11 + xorg.libXext ]; outputs = [ "bin" "dev" "out" "man" ]; diff --git a/pkgs/development/libraries/libcdr/default.nix b/pkgs/development/libraries/libcdr/default.nix index a8208820dff..b3087f0abea 100644 --- a/pkgs/development/libraries/libcdr/default.nix +++ b/pkgs/development/libraries/libcdr/default.nix @@ -2,22 +2,14 @@ stdenv.mkDerivation rec { pname = "libcdr"; - version = "0.1.6"; + version = "0.1.7"; src = fetchurl { url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.xz"; - sha256 = "0qgqlw6i25zfq1gf7f6r5hrhawlrgh92sg238kjpf2839aq01k81"; + hash = "sha256-VmYknWE0ZrmqHph+pBCcBDZYZuknfYD2zZZj6GuOzdQ="; }; - patches = [ - # Fix build with icu 68 - # Remove in next release - (fetchpatch { - name = "libcdr-fix-icu-68"; - url = "https://cgit.freedesktop.org/libreoffice/libcdr/patch/?id=bf3e7f3bbc414d4341cf1420c99293debf1bd894"; - sha256 = "0cgra10p8ibgwn8y5q31jrpan317qj0ribzjs4jq0bwavjq92w2k"; - }) - ]; + strictDeps = true; buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ]; diff --git a/pkgs/development/libraries/libgsf/default.nix b/pkgs/development/libraries/libgsf/default.nix index 6897ed5a097..b567a99d455 100644 --- a/pkgs/development/libraries/libgsf/default.nix +++ b/pkgs/development/libraries/libgsf/default.nix @@ -1,6 +1,8 @@ -{ fetchurl +{ fetchFromGitLab , lib , stdenv +, autoreconfHook +, gtk-doc , pkg-config , intltool , gettext @@ -21,12 +23,26 @@ stdenv.mkDerivation rec { outputs = [ "out" "dev" ]; - src = fetchurl { - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "bmwg0HeDOQadWDwNY3WdKX6BfqENDYl+u+ll8W4ujlI="; + src = fetchFromGitLab { + domain = "gitlab.gnome.org"; + owner = "GNOME"; + repo = "libgsf"; + rev = "LIBGSF_${lib.replaceStrings ["."] ["_"] version}"; + hash = "sha256-6RP2DJWcDQ8dkKtcPxAkRsS7jSvvLoDNZHXiDJwR8Eg="; }; + postPatch = '' + # Fix cross-compilation + substituteInPlace configure.ac \ + --replace "AC_PATH_PROG(PKG_CONFIG, pkg-config, no)" \ + "PKG_PROG_PKG_CONFIG" + ''; + + strictDeps = true; + nativeBuildInputs = [ + autoreconfHook + gtk-doc pkg-config intltool libintl diff --git a/pkgs/development/libraries/libnats-c/default.nix b/pkgs/development/libraries/libnats-c/default.nix index 5d3bf851f9e..781e62982b3 100644 --- a/pkgs/development/libraries/libnats-c/default.nix +++ b/pkgs/development/libraries/libnats-c/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "libnats"; - version = "3.4.0"; + version = "3.4.1"; src = fetchFromGitHub { owner = "nats-io"; repo = "nats.c"; rev = "v${version}"; - sha256 = "sha256-NtZjAXwp1JraoWsB750itKv1b+cfLwbr4XuxgIuZ+8A="; + sha256 = "sha256-Mbmd1bhFnc4feC0bnOa5mD15DxvY4Sgftx3Ep/7Cdp4="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/development/libraries/liquid-dsp/default.nix b/pkgs/development/libraries/liquid-dsp/default.nix index 144a215acb4..29fa134ba69 100644 --- a/pkgs/development/libraries/liquid-dsp/default.nix +++ b/pkgs/development/libraries/liquid-dsp/default.nix @@ -3,6 +3,8 @@ , fetchFromGitHub , autoreconfHook , cctools +, autoSignDarwinBinariesHook +, fixDarwinDylibNames }: stdenv.mkDerivation rec { @@ -17,7 +19,9 @@ stdenv.mkDerivation rec { }; configureFlags = lib.optionals stdenv.isDarwin [ "LIBTOOL=${cctools}/bin/libtool" ]; - nativeBuildInputs = [ autoreconfHook ] ++ lib.optionals stdenv.isDarwin [ cctools ]; + + nativeBuildInputs = [ autoreconfHook ] + ++ lib.optionals stdenv.isDarwin [ cctools autoSignDarwinBinariesHook fixDarwinDylibNames ]; meta = { homepage = "https://liquidsdr.org/"; diff --git a/pkgs/development/libraries/osip/default.nix b/pkgs/development/libraries/osip/default.nix index 92da6bbdd4a..f7cedc96b7c 100644 --- a/pkgs/development/libraries/osip/default.nix +++ b/pkgs/development/libraries/osip/default.nix @@ -1,9 +1,9 @@ {lib, stdenv, fetchurl}: stdenv.mkDerivation rec { - version = "5.3.0"; + version = "5.3.1"; src = fetchurl { url = "mirror://gnu/osip/libosip2-${version}.tar.gz"; - sha256 = "sha256-9HJZFsIs9RSWnvsVw8IHIz1kc5OD99QpVgOLePbK6Mg="; + sha256 = "sha256-/oL+hBYIJmrBWlwRGCFtoAxVTVAG4odaisN1Kx5q3Hk="; }; pname = "libosip2"; diff --git a/pkgs/development/libraries/plplot/default.nix b/pkgs/development/libraries/plplot/default.nix index fef1d2de324..66c498418d9 100644 --- a/pkgs/development/libraries/plplot/default.nix +++ b/pkgs/development/libraries/plplot/default.nix @@ -6,7 +6,7 @@ , wxGTK32 , Cocoa , enableXWin ? false -, libX11 +, xorg }: stdenv.mkDerivation rec { @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { buildInputs = lib.optional enableWX wxGTK32 ++ lib.optional (enableWX && stdenv.isDarwin) Cocoa - ++ lib.optional enableXWin libX11; + ++ lib.optional enableXWin xorg.libX11; passthru = { + inherit (xorg) libX11; inherit enableWX enableXWin - libX11 ; }; diff --git a/pkgs/development/libraries/science/math/ipopt/default.nix b/pkgs/development/libraries/science/math/ipopt/default.nix index d9341a96d3e..c544436af8e 100644 --- a/pkgs/development/libraries/science/math/ipopt/default.nix +++ b/pkgs/development/libraries/science/math/ipopt/default.nix @@ -12,13 +12,13 @@ assert (!blas.isILP64) && (!lapack.isILP64); stdenv.mkDerivation rec { pname = "ipopt"; - version = "3.14.9"; + version = "3.14.10"; src = fetchFromGitHub { owner = "coin-or"; repo = "Ipopt"; rev = "releases/${version}"; - sha256 = "sha256-mlRr1BjkWiJZSgpxQIc0k1tXGewJkHwxf6xe0edUHaY="; + sha256 = "sha256-4SHmqalrGeqp1nBx2BQLRnRWEYw5lJk5Yao67GQw3qM="; }; CXXDEFS = [ "-DHAVE_RAND" "-DHAVE_CSTRING" "-DHAVE_CSTDIO" ]; diff --git a/pkgs/development/libraries/wlroots/0.14.nix b/pkgs/development/libraries/wlroots/0.14.nix index 7fe678cb624..db10e57443c 100644 --- a/pkgs/development/libraries/wlroots/0.14.nix +++ b/pkgs/development/libraries/wlroots/0.14.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland-scanner , libGL, wayland, wayland-protocols, libinput, libxkbcommon, pixman -, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa -, libpng, ffmpeg_4, xcbutilrenderutil, seatd +, libcap, mesa, xorg +, libpng, ffmpeg_4, seatd , enableXWayland ? true, xwayland ? null }: @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { buildInputs = [ libGL wayland wayland-protocols libinput libxkbcommon pixman - xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa - libpng ffmpeg_4 xcbutilrenderutil seatd + xorg.xcbutilwm xorg.libX11 libcap xorg.xcbutilimage xorg.xcbutilerrors mesa + libpng ffmpeg_4 xorg.xcbutilrenderutil seatd ] ++ lib.optional enableXWayland xwayland ; diff --git a/pkgs/development/libraries/wlroots/0.15.nix b/pkgs/development/libraries/wlroots/0.15.nix index 7648ebe5d25..117b7ebdc5d 100644 --- a/pkgs/development/libraries/wlroots/0.15.nix +++ b/pkgs/development/libraries/wlroots/0.15.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchFromGitLab, meson, ninja, pkg-config, wayland-scanner , libGL, wayland, wayland-protocols, libinput, libxkbcommon, pixman -, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa -, libpng, ffmpeg_4, xcbutilrenderutil, seatd, vulkan-loader, glslang +,libcap, mesa, xorg +, libpng, ffmpeg_4, seatd, vulkan-loader, glslang , nixosTests , enableXWayland ? true, xwayland ? null @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { buildInputs = [ libGL wayland wayland-protocols libinput libxkbcommon pixman - xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa - libpng ffmpeg_4 xcbutilrenderutil seatd vulkan-loader + xorg.xcbutilwm xorg.libX11 libcap xorg.xcbutilimage xorg.xcbutilerrors mesa + libpng ffmpeg_4 xorg.xcbutilrenderutil seatd vulkan-loader ] ++ lib.optional enableXWayland xwayland ; diff --git a/pkgs/development/misc/brev-cli/default.nix b/pkgs/development/misc/brev-cli/default.nix index 0e5faa37bf5..99660c98e0a 100644 --- a/pkgs/development/misc/brev-cli/default.nix +++ b/pkgs/development/misc/brev-cli/default.nix @@ -5,13 +5,13 @@ buildGoModule rec { pname = "brev-cli"; - version = "0.6.118"; + version = "0.6.119"; src = fetchFromGitHub { owner = "brevdev"; repo = pname; rev = "v${version}"; - sha256 = "sha256-nUhVHVjhrZm+Y/kIF3D85orm/EECug2xYSpcItYCThU="; + sha256 = "sha256-IYFVju7OcCxdFJKWK6TiXPt4p16oiTuBi51gfpi9tAE="; }; vendorSha256 = "sha256-5P9oodntXn7RMpjKLoCXlnEZeW4/W0hfYPt7I3hjvGw="; diff --git a/pkgs/development/misc/msp430/newlib.nix b/pkgs/development/misc/msp430/newlib.nix index 4ea98bfc8b2..005d8f8cbd9 100644 --- a/pkgs/development/misc/msp430/newlib.nix +++ b/pkgs/development/misc/msp430/newlib.nix @@ -1,4 +1,4 @@ -{ stdenvNoCC, lndir, newlib, msp430GccSupport }: +{ stdenvNoCC, xorg, newlib, msp430GccSupport }: stdenvNoCC.mkDerivation { name = "msp430-${newlib.name}"; @@ -10,9 +10,9 @@ stdenvNoCC.mkDerivation { buildCommand = '' mkdir $out - ${lndir}/bin/lndir -silent $newlib $out - ${lndir}/bin/lndir -silent $msp430GccSupport/include $out/${newlib.incdir} - ${lndir}/bin/lndir -silent $msp430GccSupport/lib $out/${newlib.libdir} + ${xorg.lndir}/bin/lndir -silent $newlib $out + ${xorg.lndir}/bin/lndir -silent $msp430GccSupport/include $out/${newlib.incdir} + ${xorg.lndir}/bin/lndir -silent $msp430GccSupport/lib $out/${newlib.libdir} ''; passthru = { diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index d38a2809e98..e175de4d5f0 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -120,6 +120,7 @@ , "dockerfile-language-server-nodejs" , "elasticdump" , "@electron-forge/cli" +, "eas-cli" , "elm-oracle" , "emoj" , "emojione" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index c710f16c98a..6d5ce854445 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -373,13 +373,13 @@ let sha512 = "9Kt7EuS/7WbMAUv2gSziqjvxwDbFSg3Xeyfuj5laUODX8o/k/CpsAKiQ8W7/R88eXFTMbJYg6+7uAmOWNKmwnw=="; }; }; - "@apollo/protobufjs-1.2.4" = { + "@apollo/protobufjs-1.2.6" = { name = "_at_apollo_slash_protobufjs"; packageName = "@apollo/protobufjs"; - version = "1.2.4"; + version = "1.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.4.tgz"; - sha512 = "npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng=="; + url = "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.6.tgz"; + sha512 = "Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw=="; }; }; "@apollo/utils.dropunuseddefinitions-1.1.0" = { @@ -1507,13 +1507,13 @@ let sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; }; }; - "@babel/compat-data-7.19.3" = { + "@babel/compat-data-7.19.4" = { name = "_at_babel_slash_compat-data"; packageName = "@babel/compat-data"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz"; - sha512 = "prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw=="; + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz"; + sha512 = "CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw=="; }; }; "@babel/core-7.0.0" = { @@ -1552,13 +1552,13 @@ let sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; }; }; - "@babel/generator-7.19.3" = { + "@babel/generator-7.19.4" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz"; - sha512 = "fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ=="; + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.19.4.tgz"; + sha512 = "5T2lY5vXqS+5UEit/5TwcIUeCnwgCljcF8IQRT6XRQPBrvLeq5V8W+URv+GvwoF3FP8tkhp++evVyDzkDGzNmA=="; }; }; "@babel/helper-annotate-as-pure-7.18.6" = { @@ -1714,13 +1714,13 @@ let sha512 = "T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw=="; }; }; - "@babel/helper-simple-access-7.18.6" = { + "@babel/helper-simple-access-7.19.4" = { name = "_at_babel_slash_helper-simple-access"; packageName = "@babel/helper-simple-access"; - version = "7.18.6"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz"; - sha512 = "iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="; + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz"; + sha512 = "f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg=="; }; }; "@babel/helper-skip-transparent-expression-wrappers-7.18.9" = { @@ -1741,13 +1741,13 @@ let sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; }; }; - "@babel/helper-string-parser-7.18.10" = { + "@babel/helper-string-parser-7.19.4" = { name = "_at_babel_slash_helper-string-parser"; packageName = "@babel/helper-string-parser"; - version = "7.18.10"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"; - sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"; + sha512 = "nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="; }; }; "@babel/helper-validator-identifier-7.19.1" = { @@ -1777,13 +1777,13 @@ let sha512 = "txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg=="; }; }; - "@babel/helpers-7.19.0" = { + "@babel/helpers-7.19.4" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.19.0"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz"; - sha512 = "DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz"; + sha512 = "G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw=="; }; }; "@babel/highlight-7.18.6" = { @@ -1813,13 +1813,13 @@ let sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; }; }; - "@babel/parser-7.19.3" = { + "@babel/parser-7.19.4" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz"; - sha512 = "pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.4.tgz"; + sha512 = "qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA=="; }; }; "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { @@ -1957,13 +1957,13 @@ let sha512 = "14fhfoPcNu7itSen7Py1iGN0gEm87hX/B+8nZPqkdmANyyYWYMY2pjA3r8WXbWVKMzfnSNS0xY8GVS0IjXi/iw=="; }; }; - "@babel/plugin-proposal-object-rest-spread-7.18.9" = { + "@babel/plugin-proposal-object-rest-spread-7.19.4" = { name = "_at_babel_slash_plugin-proposal-object-rest-spread"; packageName = "@babel/plugin-proposal-object-rest-spread"; - version = "7.18.9"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz"; - sha512 = "kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz"; + sha512 = "wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q=="; }; }; "@babel/plugin-proposal-optional-catch-binding-7.18.6" = { @@ -2227,13 +2227,13 @@ let sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; }; }; - "@babel/plugin-transform-block-scoping-7.18.9" = { + "@babel/plugin-transform-block-scoping-7.19.4" = { name = "_at_babel_slash_plugin-transform-block-scoping"; packageName = "@babel/plugin-transform-block-scoping"; - version = "7.18.9"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz"; - sha512 = "5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz"; + sha512 = "934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ=="; }; }; "@babel/plugin-transform-classes-7.19.0" = { @@ -2254,13 +2254,13 @@ let sha512 = "+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="; }; }; - "@babel/plugin-transform-destructuring-7.18.13" = { + "@babel/plugin-transform-destructuring-7.19.4" = { name = "_at_babel_slash_plugin-transform-destructuring"; packageName = "@babel/plugin-transform-destructuring"; - version = "7.18.13"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz"; - sha512 = "TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz"; + sha512 = "t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA=="; }; }; "@babel/plugin-transform-dotall-regex-7.18.6" = { @@ -2596,13 +2596,13 @@ let sha512 = "Fnx1wWaWv2w2rl+VHxA9si//Da40941IQ29fKiRejVR7oN1FxSEL8+SyAX/2oKIye2gPvY/GBbJVEKQ/oi43zQ=="; }; }; - "@babel/preset-env-7.19.3" = { + "@babel/preset-env-7.19.4" = { name = "_at_babel_slash_preset-env"; packageName = "@babel/preset-env"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.3.tgz"; - sha512 = "ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w=="; + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.4.tgz"; + sha512 = "5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg=="; }; }; "@babel/preset-flow-7.18.6" = { @@ -2686,13 +2686,13 @@ let sha512 = "lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw=="; }; }; - "@babel/runtime-7.19.0" = { + "@babel/runtime-7.19.4" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; - version = "7.19.0"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz"; - sha512 = "eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA=="; + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz"; + sha512 = "EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA=="; }; }; "@babel/runtime-7.9.0" = { @@ -2713,13 +2713,13 @@ let sha512 = "Yww0jXgolNtkhcK+Txo5JN+DjBpNmmAtD7G99HOebhEjBzjnACG09Tip9C8lSOF6PrhA56OeJWeOZduNJaKxBA=="; }; }; - "@babel/runtime-corejs3-7.19.1" = { + "@babel/runtime-corejs3-7.19.4" = { name = "_at_babel_slash_runtime-corejs3"; packageName = "@babel/runtime-corejs3"; - version = "7.19.1"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz"; - sha512 = "j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g=="; + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.4.tgz"; + sha512 = "HzjQ8+dzdx7dmZy4DQ8KV8aHi/74AjEbBGTFutBmg/pd3dY5/q1sfuOGPTFGEytlQhWoeVXqcK5BwMgIkRkNDQ=="; }; }; "@babel/template-7.0.0" = { @@ -2740,13 +2740,13 @@ let sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; }; }; - "@babel/traverse-7.19.3" = { + "@babel/traverse-7.19.4" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz"; - sha512 = "qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.4.tgz"; + sha512 = "w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g=="; }; }; "@babel/types-7.18.4" = { @@ -2758,13 +2758,13 @@ let sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="; }; }; - "@babel/types-7.19.3" = { + "@babel/types-7.19.4" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.19.3"; + version = "7.19.4"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz"; - sha512 = "hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz"; + sha512 = "M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw=="; }; }; "@blueprintjs/colors-4.1.7" = { @@ -3424,13 +3424,13 @@ let sha512 = "MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g=="; }; }; - "@cspell/dict-software-terms-2.2.12" = { + "@cspell/dict-software-terms-2.2.13" = { name = "_at_cspell_slash_dict-software-terms"; packageName = "@cspell/dict-software-terms"; - version = "2.2.12"; + version = "2.2.13"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.12.tgz"; - sha512 = "wVVy4on8Uq5VAWm3cqrrhewTRRbpmNxtmTURGQ5rT6FqUtJvZ7W2Pj3QquzXsA9zSFZhGFQR3U7IdFesET9yAg=="; + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.13.tgz"; + sha512 = "8PSJkeOKqbxdjAkUa0J1C1nPCk8ucg/Mn5SaUaBzQyKlPwGnvOAC/BbtflTDYjxX0jTwkQ16KWZK1T5DaYadLQ=="; }; }; "@cspell/dict-sql-1.0.4" = { @@ -3982,22 +3982,22 @@ let sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; }; }; - "@eslint/eslintrc-1.3.2" = { + "@eslint/eslintrc-1.3.3" = { name = "_at_eslint_slash_eslintrc"; packageName = "@eslint/eslintrc"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz"; - sha512 = "AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ=="; + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"; + sha512 = "uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg=="; }; }; - "@exodus/schemasafe-1.0.0-rc.7" = { + "@exodus/schemasafe-1.0.0-rc.9" = { name = "_at_exodus_slash_schemasafe"; packageName = "@exodus/schemasafe"; - version = "1.0.0-rc.7"; + version = "1.0.0-rc.9"; src = fetchurl { - url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.7.tgz"; - sha512 = "+1mBLsa+vvlV0lwEAP1hwgmOPkjMnoJ8hyCMfCCJga0sVDwDzrPJjnxZwdDaUmOh/vbFHQGBTk+FxsVjoI/CjQ=="; + url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.9.tgz"; + sha512 = "dGGHpb61hLwifAu7sotuHFDBw6GTdpG8aKC0fsK17EuTzMRvUrH7lEAr6LTJ+sx3AZYed9yZ77rltVDHyg2hRg=="; }; }; "@expo/apple-utils-0.0.0-alpha.31" = { @@ -4009,6 +4009,15 @@ let sha512 = "lGJOS8eAPcZhaRl5GZFIg4ZNSRY1k10wYeYXjHUbHxbZGE9lkzrATY8OvrVpcu8qQh3lvPguel63V4mrnoAuOA=="; }; }; + "@expo/apple-utils-0.0.0-alpha.34" = { + name = "_at_expo_slash_apple-utils"; + packageName = "@expo/apple-utils"; + version = "0.0.0-alpha.34"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.34.tgz"; + sha512 = "GRHN1xhI3Yjb76aFVLhxE7o/Pdx8D78Gm2HaRHxdFRSSdYK5lPw2/1y1/GhDH7DoXqqGwo2uQSevd6ywlj657g=="; + }; + }; "@expo/bunyan-4.0.0" = { name = "_at_expo_slash_bunyan"; packageName = "@expo/bunyan"; @@ -4117,6 +4126,24 @@ let sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ=="; }; }; + "@expo/eas-build-job-0.2.94" = { + name = "_at_expo_slash_eas-build-job"; + packageName = "@expo/eas-build-job"; + version = "0.2.94"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.94.tgz"; + sha512 = "+tig8SczdGfjk2Tma5cVmESkx0bPBmR6dan2Bp5ITai3nhl8JN9mNZfEJPaBPCDlUe37sHvJwosh3GMfcq7QYg=="; + }; + }; + "@expo/eas-json-2.2.0" = { + name = "_at_expo_slash_eas-json"; + packageName = "@expo/eas-json"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-2.2.0.tgz"; + sha512 = "CwWv6kTTwRghWoKM/+r2hZYChwZqfZBpbC2rYmxKN9oMstPf/ItVKP7jNHtfoWG23qed6o/ZUYNtBseDBovxvw=="; + }; + }; "@expo/image-utils-0.3.20" = { name = "_at_expo_slash_image-utils"; packageName = "@expo/image-utils"; @@ -4171,6 +4198,15 @@ let sha512 = "QhOiotuzklalLbbsTMXJ5v4q4jffQ5xXhy1zsosgc2DL/ZzUr/Yhm3xUcOGnPQ2x7UyeY9Tl3njPHBOJJe7CSA=="; }; }; + "@expo/multipart-body-parser-1.1.0" = { + name = "_at_expo_slash_multipart-body-parser"; + packageName = "@expo/multipart-body-parser"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/multipart-body-parser/-/multipart-body-parser-1.1.0.tgz"; + sha512 = "XOaS79wFIJgx0J7oUzRb+kZsnZmFqGpisu0r8RPO3b0wjbW7xpWgiXmRR4RavKeGiVAPauZOi4vad7cJ3KCspg=="; + }; + }; "@expo/osascript-2.0.33" = { name = "_at_expo_slash_osascript"; packageName = "@expo/osascript"; @@ -4189,6 +4225,15 @@ let sha512 = "PGk34uz4XDyhoNIlPh2D+BDsiXYuW2jXavTiax8d32uvHlRO6FN0cAsqlWD6fx3H2hRn8cU/leTuc4M7pYovCQ=="; }; }; + "@expo/pkcs12-0.0.8" = { + name = "_at_expo_slash_pkcs12"; + packageName = "@expo/pkcs12"; + version = "0.0.8"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/pkcs12/-/pkcs12-0.0.8.tgz"; + sha512 = "VNZnmsu3PgdvZRqYLB0Ja8dNjKrgKpcqMvtUPINI4fJbF/ihDNI0A/LkHvnR2/21WRMHk2tm4QgMIkOQTfZ5kg=="; + }; + }; "@expo/plist-0.0.18" = { name = "_at_expo_slash_plist"; packageName = "@expo/plist"; @@ -4198,6 +4243,33 @@ let sha512 = "+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w=="; }; }; + "@expo/plugin-autocomplete-1.4.0" = { + name = "_at_expo_slash_plugin-autocomplete"; + packageName = "@expo/plugin-autocomplete"; + version = "1.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/plugin-autocomplete/-/plugin-autocomplete-1.4.0.tgz"; + sha512 = "HK+lq5kWXvP2NOg/mME9ZlbCWRzwvslIZmVvYHnoRmIGvPUXku7eoOtlSEpmOk77wM+wu/IoFRAY8kBYeAZEbQ=="; + }; + }; + "@expo/plugin-help-5.3.0" = { + name = "_at_expo_slash_plugin-help"; + packageName = "@expo/plugin-help"; + version = "5.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/plugin-help/-/plugin-help-5.3.0.tgz"; + sha512 = "dgh5zo2E2hOQ+5vCRWdrPRDp/omnDdTWpMcxFmco5CkCaRX21FRzMFEZdJVhoLlEeavDgX98VyzqWslJxXHn3w=="; + }; + }; + "@expo/plugin-warn-if-update-available-2.3.0" = { + name = "_at_expo_slash_plugin-warn-if-update-available"; + packageName = "@expo/plugin-warn-if-update-available"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.3.0.tgz"; + sha512 = "GBHwvWNt23aOrpFW2kw2RBkInnWKPa3j4h5gp09cxjYawcI3jl2FKyOEokxCiFhE+9QnIFTEm0fWJDceGmBe0w=="; + }; + }; "@expo/prebuild-config-4.0.3" = { name = "_at_expo_slash_prebuild-config"; packageName = "@expo/prebuild-config"; @@ -4216,6 +4288,15 @@ let sha512 = "G4j1H3WFjRaiQ+FgFNULrnIm7RsQyjc4xp6lLTP2ydBv79wO3x8wAdeZvaZh7eOkfu9BESpQzACT1uuJTag5jg=="; }; }; + "@expo/results-1.0.0" = { + name = "_at_expo_slash_results"; + packageName = "@expo/results"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/results/-/results-1.0.0.tgz"; + sha512 = "qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA=="; + }; + }; "@expo/rudder-sdk-node-1.1.1" = { name = "_at_expo_slash_rudder-sdk-node"; packageName = "@expo/rudder-sdk-node"; @@ -4252,6 +4333,24 @@ let sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; }; }; + "@expo/spawn-async-1.7.0" = { + name = "_at_expo_slash_spawn-async"; + packageName = "@expo/spawn-async"; + version = "1.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.0.tgz"; + sha512 = "sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ=="; + }; + }; + "@expo/timeago.js-1.0.0" = { + name = "_at_expo_slash_timeago.js"; + packageName = "@expo/timeago.js"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/timeago.js/-/timeago.js-1.0.0.tgz"; + sha512 = "PD45CGlCL8kG0U3YcH1NvYxQThw5XAS7qE9bgP4L7dakm8lsMz+p8BQ1IjBFMmImawVWsV3py6JZINaEebXLnw=="; + }; + }; "@expo/vector-icons-13.0.0" = { name = "_at_expo_slash_vector-icons"; packageName = "@expo/vector-icons"; @@ -4405,22 +4504,22 @@ let sha512 = "puklLc6Jvg279OGagqkSfuHML6ckBhw3gJakdvIZHKeJiduh+34U4Finl3K24yBSXzG2WsN+LwLTd1Vcociy+g=="; }; }; - "@fluentui/font-icons-mdl2-8.5.0" = { + "@fluentui/font-icons-mdl2-8.5.1" = { name = "_at_fluentui_slash_font-icons-mdl2"; packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.0"; + version = "8.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.0.tgz"; - sha512 = "EV9QFy/plJ0blnf6AKZ8s2UQMfzNTUEdtAm/nP2Z3cd7XdYyXBN7HDAWmxwNWhoGyZ6hhKrruj4ZW0C/qKYDMQ=="; + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.1.tgz"; + sha512 = "706EOX9EO28GkOchYq5Wb9ED7bAbrnKqt1hJgDXyXh7eL+87lSRacKHaS8kZETuqqC/MdOeHqiPo0NqIW/dA4A=="; }; }; - "@fluentui/foundation-legacy-8.2.20" = { + "@fluentui/foundation-legacy-8.2.21" = { name = "_at_fluentui_slash_foundation-legacy"; packageName = "@fluentui/foundation-legacy"; - version = "8.2.20"; + version = "8.2.21"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.20.tgz"; - sha512 = "iyJSr5Y/yYt0x9yBLP+aIy5U9tiDlgbxJZo6enNwFo0zEuBeWg/2L2IgAUzAwJB2vb73oQBlQt8In602R0Vj8w=="; + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.21.tgz"; + sha512 = "HY55Arf3Hxyclc/fsWusO1Yh1JEvkHqpMMbwhs9s3D8hiSLMAFNp8lgWew9x4yqDHeYYfdXJYJ5BSHqMAlTj+g=="; }; }; "@fluentui/keyboard-key-0.4.2" = { @@ -4441,22 +4540,22 @@ let sha512 = "bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw=="; }; }; - "@fluentui/react-8.97.2" = { + "@fluentui/react-8.98.0" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.97.2"; + version = "8.98.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.97.2.tgz"; - sha512 = "MwBFRydKfdu26F3yXqpCJxVUuWw8GDl1pEkjlWfKEKnBMiODmEmeMEsvSaI3BusXXz09q05+cdMqmD4lhuZlcw=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.98.0.tgz"; + sha512 = "BIClnchh0Ucv+DRp/qgkvNGoElpwgUzGyem9sz/W7OmmndL5UDxHIx9B7EBG5BM0Xmpiwhah1i17FO+j7WMnYQ=="; }; }; - "@fluentui/react-focus-8.8.5" = { + "@fluentui/react-focus-8.8.6" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.8.5"; + version = "8.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.5.tgz"; - sha512 = "+BNjLHKpA0IqUToY9MMARGpYg3ngBmW+1KhJeVxCUnAESNMwnzJ6hx/3MOYUA/FPbYfBvs8QnpTZrrOd7sLG/A=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.6.tgz"; + sha512 = "Ys4w9120o65Xx2SAs9yjgOEnU0YT9vpgx/61TWd2/KeUQMDRyzipVMVa7qEjpLnuDiNWzdfTCs2cGqApv8MbzQ=="; }; }; "@fluentui/react-hooks-8.6.11" = { @@ -4495,13 +4594,13 @@ let sha512 = "Vg20KZ0ufgWjxx6GFbqC5wiVxXZDUWgNT0r0By/Eyj4bUSb1jG6lmf5z1oY1dUX0YS6Cp5e6GnvbNdXg5E7orA=="; }; }; - "@fluentui/style-utilities-8.7.12" = { + "@fluentui/style-utilities-8.8.0" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.7.12"; + version = "8.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.7.12.tgz"; - sha512 = "Ayxyo5brZxNI3CK4la+esJ5yDUQFAD26+BqjbIZvXemKq6ZsZDb2875H//saSVHc+dRq8R6J80A1GGV0fJpIEA=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.0.tgz"; + sha512 = "wqntrpzOGvBNojAlnXVQB98hYQkS0g5ZckF/JxkNDWYRUcemu9bUTgBOg1hdiV9DM8nxyg34LE794oMxRIuLHA=="; }; }; "@fluentui/theme-2.6.16" = { @@ -4549,22 +4648,22 @@ let sha512 = "+GFtFqBhFzwKaKmeEfw1jWQgZJNX4q11CCx1fSPFJB49Fdjb7k3lx74jAyzHlX0UWnm6DMK+/cYT7j5t6G9LfA=="; }; }; - "@forge/bundler-3.1.1" = { + "@forge/bundler-3.1.2" = { name = "_at_forge_slash_bundler"; packageName = "@forge/bundler"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-3.1.1.tgz"; - sha512 = "30ozovWrcW04qXYLgqleW0V6VaG8qzntasEBlm4y+4dAFvvkGUcmrLjzprcOELXxE50+wQzLhn+aFGaE9WxeKg=="; + url = "https://registry.npmjs.org/@forge/bundler/-/bundler-3.1.2.tgz"; + sha512 = "dCceVDQ4hsuNMwqNlU0DwHJ3XaljNBp0ruKZIQ0phxhL3tAO1s1x0xjzQH5iWT4J3SdPvfiFZWjMyoJ1Pt9EZw=="; }; }; - "@forge/cli-shared-3.1.1" = { + "@forge/cli-shared-3.2.0" = { name = "_at_forge_slash_cli-shared"; packageName = "@forge/cli-shared"; - version = "3.1.1"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.1.1.tgz"; - sha512 = "OEy4Ty180+QGscY0KSMaiZXrAHOizWfgla/OSZE4E9BGnN37fe8qZooU/5M1l2V04S+RlEtiMLCrWNf03UQ1KQ=="; + url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.2.0.tgz"; + sha512 = "QWKBVNCIkWRZ9JgULvCnd5bHGPx+oX57gkvnWsbB3DUgqwu+q8amVWbQ94j91kzOMc/2TS7vHhpt6frujP6Z0g=="; }; }; "@forge/egress-1.1.1" = { @@ -4576,22 +4675,22 @@ let sha512 = "ycnIIOKyurzchlocjjvTwqtQNsCF98XRT+YvwVwZWwKZ0OmSzPcXPZImrIFw3dF1qySwRwRL31R0xZ1HYUEs8w=="; }; }; - "@forge/lint-3.2.5" = { + "@forge/lint-3.2.6" = { name = "_at_forge_slash_lint"; packageName = "@forge/lint"; - version = "3.2.5"; + version = "3.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.5.tgz"; - sha512 = "C9KArqoF88uqBE9MoLnsq1ZrorM66LEF2B4f6ZngMY9KNzDxH8WEOm6DLugOWHi77SeCES7evuJxRlUfIT3W/Q=="; + url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.6.tgz"; + sha512 = "yu7gjlMLbh/pigAWpk03knZHoL2F5rRz1lh4zb0CZnldccKzlQYiz/Sv2BfcuTikcCR9x4dRphy/0E43Z0dEKQ=="; }; }; - "@forge/manifest-4.3.0" = { + "@forge/manifest-4.4.0" = { name = "_at_forge_slash_manifest"; packageName = "@forge/manifest"; - version = "4.3.0"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.3.0.tgz"; - sha512 = "ICZHlvOiBeBv1QxnWunpDqFo4U3OEN95LWulYNeYrVhsgLP267UH5oy4scN6JkSZWAbIy4LveYHW+BCRcLox9Q=="; + url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.4.0.tgz"; + sha512 = "X0JvVhYX8Gfj2DdURrxhzdDlzfb37ZguX732s+BMsETovaYgVrNCQ32f45xAo62+levq0OXOA9N0LjnR/pdHJg=="; }; }; "@forge/storage-1.3.0" = { @@ -5602,13 +5701,13 @@ let sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; }; }; - "@jridgewell/trace-mapping-0.3.15" = { + "@jridgewell/trace-mapping-0.3.16" = { name = "_at_jridgewell_slash_trace-mapping"; packageName = "@jridgewell/trace-mapping"; - version = "0.3.15"; + version = "0.3.16"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz"; - sha512 = "oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="; + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.16.tgz"; + sha512 = "LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA=="; }; }; "@jridgewell/trace-mapping-0.3.9" = { @@ -5845,544 +5944,544 @@ let sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; }; }; - "@lerna/add-5.6.1" = { + "@lerna/add-5.6.2" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-5.6.1.tgz"; - sha512 = "cZvqMYoAclefw/KQwrRIpeQiKuj/KhbkNItWc6LnWcpweUmnrAm/AEfddIOnSagRHUgkSIY/pafjL2DGdIU25w=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-5.6.2.tgz"; + sha512 = "NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ=="; }; }; - "@lerna/bootstrap-5.6.1" = { + "@lerna/bootstrap-5.6.2" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.6.1.tgz"; - sha512 = "YMNDTDtAo5fpt/pmA/JOcU2HvgD/bdwiZAa80312HcRy6MortJqFDo6wOM6trfoqf0XkWOpcw+P7/d/8+b8SVw=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.6.2.tgz"; + sha512 = "S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA=="; }; }; - "@lerna/changed-5.6.1" = { + "@lerna/changed-5.6.2" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.6.1.tgz"; - sha512 = "YVXkTEXlQWW1BSyURwZHz4HDpfl/yAwkLQbRQ2OtEmknkh4QOK41PPBgX0q1SCWKs3OYdSuI30A2H3KY8LMkxg=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.6.2.tgz"; + sha512 = "uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ=="; }; }; - "@lerna/check-working-tree-5.6.1" = { + "@lerna/check-working-tree-5.6.2" = { name = "_at_lerna_slash_check-working-tree"; packageName = "@lerna/check-working-tree"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.6.1.tgz"; - sha512 = "pzM/d+009Yl7ThpbWPntao5WuHi4nb/T9WKTOG/CzS/yLQgceVaX1vRaf3fML92RYmV+XGFPq+PaVQXtwHdMkA=="; + url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.6.2.tgz"; + sha512 = "6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ=="; }; }; - "@lerna/child-process-5.6.1" = { + "@lerna/child-process-5.6.2" = { name = "_at_lerna_slash_child-process"; packageName = "@lerna/child-process"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.6.1.tgz"; - sha512 = "+86Z5EwBkdypTyV8z8Se3McbGCHh4wUBfGuOoNmar4NjeY2HVuiRCoaJsyqgoyNLoXJb1gqDGlWkG5LTuKvw/A=="; + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.6.2.tgz"; + sha512 = "QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A=="; }; }; - "@lerna/clean-5.6.1" = { + "@lerna/clean-5.6.2" = { name = "_at_lerna_slash_clean"; packageName = "@lerna/clean"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.6.1.tgz"; - sha512 = "af+jZ/JT5AKvnW3JwFjqcuZyOiV1MCdYCi8KwHGJbEOT3ak2u7jdgFyHYtTngYTYeFn+VOSi9+vnVZ8RhQ0DQg=="; + url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.6.2.tgz"; + sha512 = "A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g=="; }; }; - "@lerna/cli-5.6.1" = { + "@lerna/cli-5.6.2" = { name = "_at_lerna_slash_cli"; packageName = "@lerna/cli"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.6.1.tgz"; - sha512 = "y7GmT30rVovwJHKZQE+1aH5BbR+m9psNwzGhAl3bI3pIi3DPNwa+5Ag7XV+tzKItqwfNtNQbrGIt6u3xbVgR3Q=="; + url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.6.2.tgz"; + sha512 = "w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q=="; }; }; - "@lerna/collect-uncommitted-5.6.1" = { + "@lerna/collect-uncommitted-5.6.2" = { name = "_at_lerna_slash_collect-uncommitted"; packageName = "@lerna/collect-uncommitted"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.6.1.tgz"; - sha512 = "Z1I4BFBcbqxX3RRiHtPA3JU92NOyTeJF/pWB5DImWDL7i5AYXWYA6iW99HyKTGfIsA3GrS4BIL0UOmp4vP7Yvw=="; + url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.6.2.tgz"; + sha512 = "i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w=="; }; }; - "@lerna/collect-updates-5.6.1" = { + "@lerna/collect-updates-5.6.2" = { name = "_at_lerna_slash_collect-updates"; packageName = "@lerna/collect-updates"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.6.1.tgz"; - sha512 = "xY5nJ//ACDVU/k9zn45W//wWw9+Cf4HWN7nla8J1YHLsRmn79uJONZnyK3MBCjMpgVzSAmMe47wuDu+ZzqV/Ew=="; + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.6.2.tgz"; + sha512 = "DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA=="; }; }; - "@lerna/command-5.6.1" = { + "@lerna/command-5.6.2" = { name = "_at_lerna_slash_command"; packageName = "@lerna/command"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/command/-/command-5.6.1.tgz"; - sha512 = "QxJr73TUQQ4B+4mWfwH7kNNTxP3lBnNKN6zX9NnjanQ2u6Nij/SMbvym1L0T2EVgZMseFzZEQnXE3d+jbWn/aQ=="; + url = "https://registry.npmjs.org/@lerna/command/-/command-5.6.2.tgz"; + sha512 = "eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA=="; }; }; - "@lerna/conventional-commits-5.6.1" = { + "@lerna/conventional-commits-5.6.2" = { name = "_at_lerna_slash_conventional-commits"; packageName = "@lerna/conventional-commits"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.6.1.tgz"; - sha512 = "H86fO470tU/lnws+xrSxzeJFBehAo10dtI35+AC9kwub7XwWO19AhdbQjf4PwWhG8/CTl65Tn9UMg+kHYilmzA=="; + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.6.2.tgz"; + sha512 = "fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA=="; }; }; - "@lerna/create-5.6.1" = { + "@lerna/create-5.6.2" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-5.6.1.tgz"; - sha512 = "DSDprUvSszb6qedync3TFfDLrFzP264LNPdw+MBSw4o3lpZAmAGelzyw+xSQQQjLNoGC5q/UUePKiCiWps8aPw=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-5.6.2.tgz"; + sha512 = "+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ=="; }; }; - "@lerna/create-symlink-5.6.1" = { + "@lerna/create-symlink-5.6.2" = { name = "_at_lerna_slash_create-symlink"; packageName = "@lerna/create-symlink"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.6.1.tgz"; - sha512 = "u46aoyxdoHXiyOQ1vCsA8PPkPkyjZanKuiJxnqMXITMwpQFjo18FvSN9BvnZkbJ6Jwnj/boO1TjDUewrQ4wPjw=="; + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.6.2.tgz"; + sha512 = "0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw=="; }; }; - "@lerna/describe-ref-5.6.1" = { + "@lerna/describe-ref-5.6.2" = { name = "_at_lerna_slash_describe-ref"; packageName = "@lerna/describe-ref"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.6.1.tgz"; - sha512 = "VskLszuC3NoN5l31kSh3NiIt4cqaulBI75Ek1HDT+VcGXR2AJzsE1BweDWrh2xJBdqdK8cLp72R/vgUDbjKQCg=="; + url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.6.2.tgz"; + sha512 = "UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA=="; }; }; - "@lerna/diff-5.6.1" = { + "@lerna/diff-5.6.2" = { name = "_at_lerna_slash_diff"; packageName = "@lerna/diff"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.6.1.tgz"; - sha512 = "5JTxFUuLfEJZwtplAhWAbffv+FzJsP9ndsJFsmobdfKHZxxoyCvwc5fgMFRgQQMZcQue+lnZEYITJim078xy2A=="; + url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.6.2.tgz"; + sha512 = "aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A=="; }; }; - "@lerna/exec-5.6.1" = { + "@lerna/exec-5.6.2" = { name = "_at_lerna_slash_exec"; packageName = "@lerna/exec"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.6.1.tgz"; - sha512 = "nNZAm6yhbHG59xMOCnJjYjQRtjqZqwjSiWakWz8upj+2HBd2Z0eMnQvrX1j9GhurhgHzhG7AM7FLnJHyh1b3Tw=="; + url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.6.2.tgz"; + sha512 = "meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg=="; }; }; - "@lerna/filter-options-5.6.1" = { + "@lerna/filter-options-5.6.2" = { name = "_at_lerna_slash_filter-options"; packageName = "@lerna/filter-options"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.6.1.tgz"; - sha512 = "uii0ZDlv2j8e6d3D25wp59L0nRUh7C3B6ImCTOraEdkir6E1UEXZK7VmIzxWD44L78vnUW1kl+j/q7Kib3cP/g=="; + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.6.2.tgz"; + sha512 = "4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw=="; }; }; - "@lerna/filter-packages-5.6.1" = { + "@lerna/filter-packages-5.6.2" = { name = "_at_lerna_slash_filter-packages"; packageName = "@lerna/filter-packages"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.6.1.tgz"; - sha512 = "uKaIebxrx235wg78SqY8A0ZugValdW6PgwkDFjss/Y2m8/9c+PiAbfkBeF5Q8iv8VP7te2MsGcvV12UmIQKDdA=="; + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.6.2.tgz"; + sha512 = "el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw=="; }; }; - "@lerna/get-npm-exec-opts-5.6.1" = { + "@lerna/get-npm-exec-opts-5.6.2" = { name = "_at_lerna_slash_get-npm-exec-opts"; packageName = "@lerna/get-npm-exec-opts"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.6.1.tgz"; - sha512 = "y+Fzd9l1LM6tlarKrWxXQBKm02m7sjzj1T7vgiPW5uo324qEZVil89849iXgm2tLZt7/KD18Gqene2Hik0jmGQ=="; + url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.6.2.tgz"; + sha512 = "0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA=="; }; }; - "@lerna/get-packed-5.6.1" = { + "@lerna/get-packed-5.6.2" = { name = "_at_lerna_slash_get-packed"; packageName = "@lerna/get-packed"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.6.1.tgz"; - sha512 = "PI+WSCHXsBCF2+McaEUtcR3acZu/0JApUH+IJMz0TdYzspF4ewzEWhBn+4Gmw926oFsqnqfz37KInXNHGmBvCg=="; + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.6.2.tgz"; + sha512 = "pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg=="; }; }; - "@lerna/github-client-5.6.1" = { + "@lerna/github-client-5.6.2" = { name = "_at_lerna_slash_github-client"; packageName = "@lerna/github-client"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.6.1.tgz"; - sha512 = "XGAry8MX2fou8aAP3mf1+6oPP34QdgXzrRbdtXlCv8ksddbp/S1Tn5hNvorEJn2yDMNcjIDIdvrL/T4UiVzQjA=="; + url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.6.2.tgz"; + sha512 = "pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA=="; }; }; - "@lerna/gitlab-client-5.6.1" = { + "@lerna/gitlab-client-5.6.2" = { name = "_at_lerna_slash_gitlab-client"; packageName = "@lerna/gitlab-client"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.6.1.tgz"; - sha512 = "zNG27B1dNy4QF45tUPEywthNtsDbzvsUSiokMx847Gxq5qLHtRHRR8kK51Q2dJ6u2biZafGNyzHqT5CQ/0ndnQ=="; + url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.6.2.tgz"; + sha512 = "TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ=="; }; }; - "@lerna/global-options-5.6.1" = { + "@lerna/global-options-5.6.2" = { name = "_at_lerna_slash_global-options"; packageName = "@lerna/global-options"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.6.1.tgz"; - sha512 = "VgHVo0T2NC/YK/mR9nu8Z3DL65UtoamRclrnqK3HsaTub15UnqAlbcnEk2lB50e5TLsIZAp4TatDYrYNPKKJPQ=="; + url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.6.2.tgz"; + sha512 = "kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg=="; }; }; - "@lerna/has-npm-version-5.6.1" = { + "@lerna/has-npm-version-5.6.2" = { name = "_at_lerna_slash_has-npm-version"; packageName = "@lerna/has-npm-version"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.6.1.tgz"; - sha512 = "V6lt830kXnEm/1pHyFh9Pci4lgRbQcBr1eORAD8d03uxQDfxA7Z8Gu9afhH5m0rk+P8txNO/3pUe2pf5Ex4DGg=="; + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.6.2.tgz"; + sha512 = "kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g=="; }; }; - "@lerna/import-5.6.1" = { + "@lerna/import-5.6.2" = { name = "_at_lerna_slash_import"; packageName = "@lerna/import"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/import/-/import-5.6.1.tgz"; - sha512 = "cOLjRAWWfY1ezsiBRIbA6lN4THu89xjtS+wJ8WUqr/xbYbGZ/qr4DBAWnpWpMfLLWN6Eel6nEAhah+Ch1IKNog=="; + url = "https://registry.npmjs.org/@lerna/import/-/import-5.6.2.tgz"; + sha512 = "xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA=="; }; }; - "@lerna/info-5.6.1" = { + "@lerna/info-5.6.2" = { name = "_at_lerna_slash_info"; packageName = "@lerna/info"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/info/-/info-5.6.1.tgz"; - sha512 = "0ixkn6Z8jlesMozQBlG3vdivFOjleapCusjDFZ1F7quuEcWDQuW1bQ4i55ISsVhh5gLCTTwQiNEhPnDQzs7fww=="; + url = "https://registry.npmjs.org/@lerna/info/-/info-5.6.2.tgz"; + sha512 = "MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A=="; }; }; - "@lerna/init-5.6.1" = { + "@lerna/init-5.6.2" = { name = "_at_lerna_slash_init"; packageName = "@lerna/init"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/init/-/init-5.6.1.tgz"; - sha512 = "EPA3XCteadwZjb7GOqJFw+QcqwV/CrpWm9FZOEpo9uXNUCvOW8NqDlFzTEMrMiXBTldoP0H9SK9yM81c0Mip7Q=="; + url = "https://registry.npmjs.org/@lerna/init/-/init-5.6.2.tgz"; + sha512 = "ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ=="; }; }; - "@lerna/link-5.6.1" = { + "@lerna/link-5.6.2" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-5.6.1.tgz"; - sha512 = "iWr7HGviIK3N/WNUoAZVV0RRf0CQzpR9uJXmsfuVKXj5gN8IHqFOdGS8TIIN57ekC0DOpDtR21h65zZXD1TSHQ=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-5.6.2.tgz"; + sha512 = "hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg=="; }; }; - "@lerna/list-5.6.1" = { + "@lerna/list-5.6.2" = { name = "_at_lerna_slash_list"; packageName = "@lerna/list"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/list/-/list-5.6.1.tgz"; - sha512 = "4VyAvVwKZQC+ntfjJuL8PbFu5jeR/8t21BzFXVWRkrZc3/sGVxSNtzi+9Brgrxm4n8qir3+wiiC4LSHdYG8Mlw=="; + url = "https://registry.npmjs.org/@lerna/list/-/list-5.6.2.tgz"; + sha512 = "WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg=="; }; }; - "@lerna/listable-5.6.1" = { + "@lerna/listable-5.6.2" = { name = "_at_lerna_slash_listable"; packageName = "@lerna/listable"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.6.1.tgz"; - sha512 = "c7vzJYEPiH0DT7BJpjomLt2zwViPupk0g/dU9rCBkm4w2jk6Vult60/O3rx5rb95PUFz/pYM+3w3vkZWXx9AnQ=="; + url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.6.2.tgz"; + sha512 = "8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA=="; }; }; - "@lerna/log-packed-5.6.1" = { + "@lerna/log-packed-5.6.2" = { name = "_at_lerna_slash_log-packed"; packageName = "@lerna/log-packed"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.6.1.tgz"; - sha512 = "nyrrI8SbwO4nezuwDDQPea2XR3IWVRxgDzuZHA+g5utx75BuCZ2d1yrZe8URzfCIVVoGYI5OuOlv32BtLzt4tw=="; + url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.6.2.tgz"; + sha512 = "O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw=="; }; }; - "@lerna/npm-conf-5.6.1" = { + "@lerna/npm-conf-5.6.2" = { name = "_at_lerna_slash_npm-conf"; packageName = "@lerna/npm-conf"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.6.1.tgz"; - sha512 = "u4Pg0IjMhRIGdgNr18nzwyv6wcP5Qo0QEvf07P6tV8G3ocY+3w8q6mrPyFT3NitodLQ4AMWFDfyFZzXikJI+uw=="; + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.6.2.tgz"; + sha512 = "gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ=="; }; }; - "@lerna/npm-dist-tag-5.6.1" = { + "@lerna/npm-dist-tag-5.6.2" = { name = "_at_lerna_slash_npm-dist-tag"; packageName = "@lerna/npm-dist-tag"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.6.1.tgz"; - sha512 = "YEbIP1J6V0U9qco7wk9qK0JbApIshPrUGqr0Kp1rx57pwtcwxIAvH/AEbqdVqjmItiPDpYgP7VukG7MI6EGe1w=="; + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.6.2.tgz"; + sha512 = "t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ=="; }; }; - "@lerna/npm-install-5.6.1" = { + "@lerna/npm-install-5.6.2" = { name = "_at_lerna_slash_npm-install"; packageName = "@lerna/npm-install"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.6.1.tgz"; - sha512 = "PWJyqWzDQGkhn5/mr88yYfLF+t9NzHadcmMPYxv8lBTBUTZy9sdCw8k0uQ19lNUsI/DfMTLrcYZPSLxqe3mN8A=="; + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.6.2.tgz"; + sha512 = "AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q=="; }; }; - "@lerna/npm-publish-5.6.1" = { + "@lerna/npm-publish-5.6.2" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.6.1.tgz"; - sha512 = "eSotBP+mu6EtRIfhKsbQR3m5RnL7zxhZav1zxtnYvolKPjodLlGxzqcYCqTMdnR6GAIcInFh123uuTfZNzu9CA=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.6.2.tgz"; + sha512 = "ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA=="; }; }; - "@lerna/npm-run-script-5.6.1" = { + "@lerna/npm-run-script-5.6.2" = { name = "_at_lerna_slash_npm-run-script"; packageName = "@lerna/npm-run-script"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.6.1.tgz"; - sha512 = "VRScf/chK01PxFCiH6j8GWOlS8w3dH4koq7tVX9OSi3FVwqrNvN7wky/AO7cKRyuTmdoG+puDsI7gHtGclYvrQ=="; + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.6.2.tgz"; + sha512 = "MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ=="; }; }; - "@lerna/otplease-5.6.1" = { + "@lerna/otplease-5.6.2" = { name = "_at_lerna_slash_otplease"; packageName = "@lerna/otplease"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.6.1.tgz"; - sha512 = "MbS09KoDHDvsFpnwIYOZ3lu5+d/bDUm2jQ+kcJe7VH3P37t84OFRXmixSVjf1xpLuvoXbSZZsfDsYx9VkAdq4w=="; + url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.6.2.tgz"; + sha512 = "dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA=="; }; }; - "@lerna/output-5.6.1" = { + "@lerna/output-5.6.2" = { name = "_at_lerna_slash_output"; packageName = "@lerna/output"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/output/-/output-5.6.1.tgz"; - sha512 = "XEUvLn8jOVL63PRcjwSd8SdjAJvWLDDNpq75hBfemHHSpcfc7qlqqkXWs+Mz1C938rub8MtPUj7ImEUo12k1KQ=="; + url = "https://registry.npmjs.org/@lerna/output/-/output-5.6.2.tgz"; + sha512 = "++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ=="; }; }; - "@lerna/pack-directory-5.6.1" = { + "@lerna/pack-directory-5.6.2" = { name = "_at_lerna_slash_pack-directory"; packageName = "@lerna/pack-directory"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.6.1.tgz"; - sha512 = "vmkvD4LnYJhPps+I9t03pV02rnZak4gyAh/St1lj/OYV9ecRWQWOqWIFhffKOFHBes3Lxmha8FMSN2IOkG1BxQ=="; + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.6.2.tgz"; + sha512 = "w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA=="; }; }; - "@lerna/package-5.6.1" = { + "@lerna/package-5.6.2" = { name = "_at_lerna_slash_package"; packageName = "@lerna/package"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package/-/package-5.6.1.tgz"; - sha512 = "QTWoRe/wTETDrF9ByhctmyZpFl+UmwSJJUcsTd2pUqvd5QaOd1twXwZdc5/1Rr08Yxl0PZqJCtZYJDcXce0eRg=="; + url = "https://registry.npmjs.org/@lerna/package/-/package-5.6.2.tgz"; + sha512 = "LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw=="; }; }; - "@lerna/package-graph-5.6.1" = { + "@lerna/package-graph-5.6.2" = { name = "_at_lerna_slash_package-graph"; packageName = "@lerna/package-graph"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.6.1.tgz"; - sha512 = "R3ToEGzFy5x1Po/eoOy8vsM2x/zxR26bFewDLUDWbs5lWDC7ml5v44JqjfWB869M/XprN55yz2/VE5NhEB6QsQ=="; + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.6.2.tgz"; + sha512 = "TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ=="; }; }; - "@lerna/prerelease-id-from-version-5.6.1" = { + "@lerna/prerelease-id-from-version-5.6.2" = { name = "_at_lerna_slash_prerelease-id-from-version"; packageName = "@lerna/prerelease-id-from-version"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.6.1.tgz"; - sha512 = "+ctzgoA1XAGbTQCeJjMEoQQCzCBW6WVAMVKNEOKrcsEVMb5gsKKSVha8WsKEzvK6gAC/x3pXemtuVWQvtYPw0Q=="; + url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.6.2.tgz"; + sha512 = "7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA=="; }; }; - "@lerna/profiler-5.6.1" = { + "@lerna/profiler-5.6.2" = { name = "_at_lerna_slash_profiler"; packageName = "@lerna/profiler"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.6.1.tgz"; - sha512 = "HxY0hg5iHxPzyHvb7gVkZzUG+jJKZ1fErATcC53+kA7qOBTGlz2huZ8gU+rpX3SlTJGodnZ5FwHQvHD2bzkTZg=="; + url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.6.2.tgz"; + sha512 = "okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw=="; }; }; - "@lerna/project-5.6.1" = { + "@lerna/project-5.6.2" = { name = "_at_lerna_slash_project"; packageName = "@lerna/project"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/project/-/project-5.6.1.tgz"; - sha512 = "GlM+b4pyImtegQztMRsLAkSPCYfmAqCqtgkffjXQS9tMjXnUBqu4+gW/uMBTTOD2CKf+Nikwjc602rpRaUQLyw=="; + url = "https://registry.npmjs.org/@lerna/project/-/project-5.6.2.tgz"; + sha512 = "kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg=="; }; }; - "@lerna/prompt-5.6.1" = { + "@lerna/prompt-5.6.2" = { name = "_at_lerna_slash_prompt"; packageName = "@lerna/prompt"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.6.1.tgz"; - sha512 = "CZSHV2yK6I6+35IKz7Fh3SeNSPR4XuCFXsW0RuauTZoNffk3mP2pOt/CrI1P6yOj7tqcyjghzzv1gkINtrq4/w=="; + url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.6.2.tgz"; + sha512 = "4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ=="; }; }; - "@lerna/publish-5.6.1" = { + "@lerna/publish-5.6.2" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.6.1.tgz"; - sha512 = "J2zYyDGXs44YQ1h19933F9bm3fjog0gNpD27kL7Zw2nrMrR/LAuxNIFT/0ljtZSuMjlXllxZ7Kyxyz1gvMv3cA=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.6.2.tgz"; + sha512 = "QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA=="; }; }; - "@lerna/pulse-till-done-5.6.1" = { + "@lerna/pulse-till-done-5.6.2" = { name = "_at_lerna_slash_pulse-till-done"; packageName = "@lerna/pulse-till-done"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.6.1.tgz"; - sha512 = "SCD1gCSkC4roOvCB0GTvnFrYVTLX7o9TXykyg5UTXb/XRMNqr9ZBFH7qZHJnleO9x3eMk1oh4W1rvfFIITyRjw=="; + url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.6.2.tgz"; + sha512 = "eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA=="; }; }; - "@lerna/query-graph-5.6.1" = { + "@lerna/query-graph-5.6.2" = { name = "_at_lerna_slash_query-graph"; packageName = "@lerna/query-graph"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.6.1.tgz"; - sha512 = "ySXS5Ur/GtrBOr+u5FZxrcH0xD3LsBSu68OEPNnMIAdt66AOhh6K4OXmc58biTN0sWAdnE43mulqA87bZH0aMg=="; + url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.6.2.tgz"; + sha512 = "KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw=="; }; }; - "@lerna/resolve-symlink-5.6.1" = { + "@lerna/resolve-symlink-5.6.2" = { name = "_at_lerna_slash_resolve-symlink"; packageName = "@lerna/resolve-symlink"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.6.1.tgz"; - sha512 = "25TdowB5dIVycCJWyZGBDPSz6LoFOi/YRh85+dL1RrvxmvfiDwjrJ8P4eDl03/fDSV9YTFVYYmR8r1K2Vw8kQg=="; + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.6.2.tgz"; + sha512 = "PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg=="; }; }; - "@lerna/rimraf-dir-5.6.1" = { + "@lerna/rimraf-dir-5.6.2" = { name = "_at_lerna_slash_rimraf-dir"; packageName = "@lerna/rimraf-dir"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.6.1.tgz"; - sha512 = "1lm5FIiwFOpSzCMyNF90HX6NWHzDmY47TgDs07416B8ghMtZgb5aLMHi/aoarqWopn4X0ae3lxsZjUEOhSAWgA=="; + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.6.2.tgz"; + sha512 = "jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA=="; }; }; - "@lerna/run-5.6.1" = { + "@lerna/run-5.6.2" = { name = "_at_lerna_slash_run"; packageName = "@lerna/run"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run/-/run-5.6.1.tgz"; - sha512 = "kb4hwnhth3GKWIxoNlA/xdDUWGbK67yx1aLEyZjssmMemxfSKxvqrNB+TaHAPSz27hyAKqnOL9Ym/YkAt7s59A=="; + url = "https://registry.npmjs.org/@lerna/run/-/run-5.6.2.tgz"; + sha512 = "c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw=="; }; }; - "@lerna/run-lifecycle-5.6.1" = { + "@lerna/run-lifecycle-5.6.2" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.6.1.tgz"; - sha512 = "LkEvYDVYNX2mUY3PoNoDDBPDMofzNa5dHvAg7P2NVpffE41VbWBI0c0Q7uhN9nGuCksvsqamTffvmPdU9lCffA=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.6.2.tgz"; + sha512 = "u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g=="; }; }; - "@lerna/run-topologically-5.6.1" = { + "@lerna/run-topologically-5.6.2" = { name = "_at_lerna_slash_run-topologically"; packageName = "@lerna/run-topologically"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.6.1.tgz"; - sha512 = "UjOppd/1dSQxDfIjQIJOH+c/lLwuTKSNyd9uKhII11OnpO+gmBP1kvA65k1cm9EZVky63o7X9/O+oTB8Tr8C3g=="; + url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.6.2.tgz"; + sha512 = "QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw=="; }; }; - "@lerna/symlink-binary-5.6.1" = { + "@lerna/symlink-binary-5.6.2" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.6.1.tgz"; - sha512 = "Y9x8gvvAP281467+QPwp56L6DDGdWtt24pREyWF7D+FIRcooJ29pn2C3B0rmzd5Ti63/6mrfCipUp9DXSWGwNg=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.6.2.tgz"; + sha512 = "Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw=="; }; }; - "@lerna/symlink-dependencies-5.6.1" = { + "@lerna/symlink-dependencies-5.6.2" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.6.1.tgz"; - sha512 = "lKnJFbEpIdj9R70cpRor6vf3pxBnvk0RF7fwiTlWpF2BmlBYVihM+lML2vCts5G7ZBSQ9zTVyIqlCXG3qhyoxQ=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.6.2.tgz"; + sha512 = "dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw=="; }; }; - "@lerna/temp-write-5.6.1" = { + "@lerna/temp-write-5.6.2" = { name = "_at_lerna_slash_temp-write"; packageName = "@lerna/temp-write"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.6.1.tgz"; - sha512 = "o0MOTsAfvMM8RC2o1wQ//F05hUd/cZJjBH8PKTrgXINDweW9VFey2fuUdL7TCpzgC4MUenL2x1nV6o8w87nFOQ=="; + url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.6.2.tgz"; + sha512 = "S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig=="; }; }; - "@lerna/timer-5.6.1" = { + "@lerna/timer-5.6.2" = { name = "_at_lerna_slash_timer"; packageName = "@lerna/timer"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.6.1.tgz"; - sha512 = "MALjTi1KuYZeRPH18xttlJb6+BLAcVuwGIsSYHBREkuXdRwW1oEcnnN5xzGsMGpG0KRxWu5wgNgc94aH/MCz6A=="; + url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.6.2.tgz"; + sha512 = "AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA=="; }; }; - "@lerna/validation-error-5.6.1" = { + "@lerna/validation-error-5.6.2" = { name = "_at_lerna_slash_validation-error"; packageName = "@lerna/validation-error"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.6.1.tgz"; - sha512 = "0Kl9SmRb72bcXANdRO3fjuz+hHhHL9AEl/exCGODaT+PYAC+xH717Xj2ts/1u4qNuLlsQEE6+iVhAAMLUv86CA=="; + url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.6.2.tgz"; + sha512 = "4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ=="; }; }; - "@lerna/version-5.6.1" = { + "@lerna/version-5.6.2" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-5.6.1.tgz"; - sha512 = "s9WIzduXOxeLH2Vu0T2HLBe1ICd9gxUsB3tlUyQveIAGE5wBuTAIL3nGQ3ljImPzFnriPqcS0xa5PC2DaW9JLA=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-5.6.2.tgz"; + sha512 = "odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw=="; }; }; - "@lerna/write-log-file-5.6.1" = { + "@lerna/write-log-file-5.6.2" = { name = "_at_lerna_slash_write-log-file"; packageName = "@lerna/write-log-file"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.6.1.tgz"; - sha512 = "wvgkL/tMozHbW6EkCFH7yLhLh5D3djRuwREsn5ptZxcCcay1RQjraON18yMX06mwsPfbpDItMH4D68q1dMSk5w=="; + url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.6.2.tgz"; + sha512 = "J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ=="; }; }; "@lezer/common-0.15.12" = { @@ -7672,15 +7771,6 @@ let sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA=="; }; }; - "@oclif/config-1.18.3" = { - name = "_at_oclif_slash_config"; - packageName = "@oclif/config"; - version = "1.18.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.3.tgz"; - sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; - }; - }; "@oclif/config-1.18.5" = { name = "_at_oclif_slash_config"; packageName = "@oclif/config"; @@ -7690,6 +7780,15 @@ let sha512 = "R6dBedaUVn5jtAh79aaRm7jezx4l3V7Im9NORlLmudz5BL1foMeuXEvnqm+bMiejyexVA+oi9mto6YKZPzo/5Q=="; }; }; + "@oclif/core-1.13.10" = { + name = "_at_oclif_slash_core"; + packageName = "@oclif/core"; + version = "1.13.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@oclif/core/-/core-1.13.10.tgz"; + sha512 = "nwpjXwWscETdvO+/z94V1zd95vnzmCB6VRaobR4BdBllwWU6jHF/eCi1Ud2Tk9RSedChoLneZuDCkKnRCmxyng=="; + }; + }; "@oclif/errors-1.3.4" = { name = "_at_oclif_slash_errors"; packageName = "@oclif/errors"; @@ -7717,13 +7816,13 @@ let sha512 = "fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ=="; }; }; - "@oclif/help-1.0.2" = { + "@oclif/help-1.0.3" = { name = "_at_oclif_slash_help"; packageName = "@oclif/help"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.2.tgz"; - sha512 = "Y0UqBSoCNrOGsjXgEMEeRA/l7pWG5Fs4bDuWVl7aipp9wtmqxDVoGpWdO+Kcai9OsSNKwvv02nOJkEK/twK9Qg=="; + url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.3.tgz"; + sha512 = "AjjhSWFQkRb9rChEH+IRUmp0CxEacYpUbh+kQqtdCR9CDSsj2a3ibWjtMtJb4lFGAle6kVKfaal/juYe+6P5TQ=="; }; }; "@oclif/linewrap-1.0.0" = { @@ -7789,6 +7888,15 @@ let sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="; }; }; + "@oclif/screen-3.0.2" = { + name = "_at_oclif_slash_screen"; + packageName = "@oclif/screen"; + version = "3.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.2.tgz"; + sha512 = "S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ=="; + }; + }; "@octokit/auth-token-2.5.0" = { name = "_at_octokit_slash_auth-token"; packageName = "@octokit/auth-token"; @@ -10021,139 +10129,139 @@ let sha512 = "PA4p7nC5LwPdEVcQXFxMTpfvizYPeMoB55nIIx+yC3FiLnyPgC2hcpUitPy5h8RRGdCZ/Mvb2ryEcVYS8nI6YA=="; }; }; - "@swc/core-1.3.5" = { + "@swc/core-1.3.6" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.5.tgz"; - sha512 = "H5YNI9rCViudhEmu9g/Yc8ai6k5/pfy+ItYns0SZ+iSZen+bgWeGb+9p4KRQhzNNC8Lfkfw+ENHzSwZltpWG6Q=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.6.tgz"; + sha512 = "L3EemOWywrxXsRQFeU50PYFwrDKOxi2RGTT+TT3CcbIszwc7qnE6vsVzEll/eK32H1veicc0EegkZgtD4PFNRA=="; }; }; - "@swc/core-android-arm-eabi-1.3.5" = { + "@swc/core-android-arm-eabi-1.3.6" = { name = "_at_swc_slash_core-android-arm-eabi"; packageName = "@swc/core-android-arm-eabi"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-android-arm-eabi/-/core-android-arm-eabi-1.3.5.tgz"; - sha512 = "gIq3fuXiRMtVhTf2ZQ9Z6JeuqvL30JOM0L+S6zAZD4v8lpGJ1ejpw7rghpAsGSG9Qc9oaNjx5yayTg3z/EtBzA=="; + url = "https://registry.npmjs.org/@swc/core-android-arm-eabi/-/core-android-arm-eabi-1.3.6.tgz"; + sha512 = "FQk/4cRRDoMPLgSm/1WvEqRqlSgBb6Twd5W13NYUbXJpzPGoPHhzwaCEbpGjPKG/OvAqA2NVrWquuJjhDvQyVQ=="; }; }; - "@swc/core-android-arm64-1.3.5" = { + "@swc/core-android-arm64-1.3.6" = { name = "_at_swc_slash_core-android-arm64"; packageName = "@swc/core-android-arm64"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-android-arm64/-/core-android-arm64-1.3.5.tgz"; - sha512 = "SsRA6AhNZK8YXBbv7DAp5Zgv4tOWvPJlEBoOZ0uLIot7oYghWvSVs3jOgEzJSbQLU5U7ad6Q6boBdg0Q/kb2Ew=="; + url = "https://registry.npmjs.org/@swc/core-android-arm64/-/core-android-arm64-1.3.6.tgz"; + sha512 = "6qjZYatlFAN0IKhhYFsN+BaywooHFpK9/A/jMkjgIfbUoDz3wPJWZc2MDvcttgqZ+cfsSCcGeNw++H894z1zfw=="; }; }; - "@swc/core-darwin-arm64-1.3.5" = { + "@swc/core-darwin-arm64-1.3.6" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.5.tgz"; - sha512 = "Jyem+f3/aTKJTRzyvdSfYS358jo7245g7nWmwmhQMgZI3/z2VcYHpIIYOi+dgsBaMRevK9tbsW0TSx805Njzjw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.6.tgz"; + sha512 = "2qjaABxA7cloVTkS+uDEcVQ5buSi8de7qEv6P6InDE/iCjnI5ALyDxn7eauJJsVKimh9DyqN9sSZJ/z9U4FDUQ=="; }; }; - "@swc/core-darwin-x64-1.3.5" = { + "@swc/core-darwin-x64-1.3.6" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.5.tgz"; - sha512 = "zW1tfS000RlHcqKp1HJK5vXBR0/AHw74qzOK0uh/G1cTczFDX2Hep4IuOxSJ1+7Zx9oFEOKSEY0lPXYbDAlF2w=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.6.tgz"; + sha512 = "+OtW18d2o3RUuXodB41ZDj0iRCeXNL0OxVU0jTl7iyCWDypmCzhalbaQXD/ZJxgnpGRB7/s2ZwNR/gzjXgz9VA=="; }; }; - "@swc/core-freebsd-x64-1.3.5" = { + "@swc/core-freebsd-x64-1.3.6" = { name = "_at_swc_slash_core-freebsd-x64"; packageName = "@swc/core-freebsd-x64"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-freebsd-x64/-/core-freebsd-x64-1.3.5.tgz"; - sha512 = "H2f0NkfqYDC6+vJO6wSBwiGnnR/cK9AQx574izPw3Utmb28zC+FOPAY63QLA/orNHjwHa6B6AuVDNwYuKUrRHQ=="; + url = "https://registry.npmjs.org/@swc/core-freebsd-x64/-/core-freebsd-x64-1.3.6.tgz"; + sha512 = "f+ePNodn7ET9qEa93VMfnsPNnubWKIkn0EfxmfzJCt/abNVZ7+DyCSABfWKkexOZ8OuNyxnBCdKLL6nlizxkhQ=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.5" = { + "@swc/core-linux-arm-gnueabihf-1.3.6" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.5.tgz"; - sha512 = "PvuhjUCsNQDtwSSXWmmF6tU8jnAcFVRZt6bBNltvPW48oHNmIq9lEZ+hJTSPvqqxLvi9W7HG5ADzsTAaciKeRw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.6.tgz"; + sha512 = "JwdJmqKzsdq7Itg5ssKDEY9mP3AkQ+XENF6WXXlaNu1U/InqQhD0DqsFzw4TQ4LzB7lB7Wj+dv3JjKIhnHNNag=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.5" = { + "@swc/core-linux-arm64-gnu-1.3.6" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.5.tgz"; - sha512 = "NQ1LVrIvAsSwSoKO6DzHQMxzpvo17v/2LREqBiaNuCwDyYg2yFdgUdVW4FcbrdBK4MurRA2HFZZ/rt5DqAg3+A=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.6.tgz"; + sha512 = "sRoPnwYFX+t95S7khi4KL2lZMZwbuzvPUf8NYmtTzfqVIseo8HD6IMgyeaQHYDfwDGF5elQGi4ALjRx2huSi0Q=="; }; }; - "@swc/core-linux-arm64-musl-1.3.5" = { + "@swc/core-linux-arm64-musl-1.3.6" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.5.tgz"; - sha512 = "DDcM3ciJRBBjyN7qqw/AEEFh61YjiuxOcZ5SqYR0wyfroqOFX1+5JtCGJ9mU2MZ4Vfmxb1v5IFoQ3nfgJDcd8g=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.6.tgz"; + sha512 = "XT8vRcxGaKujiplFfuMtGRgZ3Nx611TMVLUg91alzEIe2Adtrpaumzrwv2vqVdMr4X4GBK9z0rHsqkDLPhmuaw=="; }; }; - "@swc/core-linux-x64-gnu-1.3.5" = { + "@swc/core-linux-x64-gnu-1.3.6" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.5.tgz"; - sha512 = "AJR0J+b3jMmXuIxqhgrX/7vworHjciUPZuoyY2OrIhSXwMPVbWfb72h9oQdMbARfodTFLVJGQqy2Pij67+C0GQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.6.tgz"; + sha512 = "nip81Ngcx8cory+FtapKhXb/rgh/pTAlvTiwJjMhsE3xcKRsbnJEPMVIoArCBV0BmYJBLWvOtpHf8B62JS7L5w=="; }; }; - "@swc/core-linux-x64-musl-1.3.5" = { + "@swc/core-linux-x64-musl-1.3.6" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.5.tgz"; - sha512 = "+Ig/rJ/GOZyQgCO72PFR+oJYUee0zQRsd6fpeuE66rn8P07a26WY1ZfMGw8miWcURccjDgAc1XCwVn6wa/OTCw=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.6.tgz"; + sha512 = "IzrQB67BY/rSZPJXWU3XzpkJqh4vYkYuOUmz1yrV/vxgPjJp/kUllfBYsHCiIedb7sjvfTt409SIN0FlPJY2+Q=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.5" = { + "@swc/core-win32-arm64-msvc-1.3.6" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.5.tgz"; - sha512 = "9Go5jiGWToT+00/J26E92n/JIHqG2wcaw79Z1+Z7GHrrm5TeL0VMyTMGLMeGFvtje/j+Lv0y4XKed+dKnRvc5w=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.6.tgz"; + sha512 = "gLsE/4qgqTxy0OOFJKi9QRs9mVYv4yOXSwPB2Rb+grOmNnG+Ds2LWqGEaABKDErnUtTQiOzLpdwesNZxeJgMhA=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.5" = { + "@swc/core-win32-ia32-msvc-1.3.6" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.5.tgz"; - sha512 = "AIeD5uKVkvXTAbKAwyPFubFrXmQR77PNun59DHZWtRpxgOcHqK6xug9DfUSfc2zMw/ftEe9kNruUUS96023jfQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.6.tgz"; + sha512 = "0Jr7KMGEPapYGni+97oNOeVP7edBwjMGQ9HsJUUN1uIE7fALQ+zVGuwbc+22myql2Uhh5V5hZx5xtVraqLVMHw=="; }; }; - "@swc/core-win32-x64-msvc-1.3.5" = { + "@swc/core-win32-x64-msvc-1.3.6" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.5.tgz"; - sha512 = "GtrAkUo5xVTogwTDH9Zms7LELdTKyRll+K9o87P+YOEizCUvA0BPE1N4mu+ZqsI/dv56g2N4gNCD8RVLH3HekQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.6.tgz"; + sha512 = "O3F/jxqaFwGq9XxYeCIVRCDIR4+GdSBu/5io6TkN8O5QLqB3/KOJVDn6TALtbL6ClwjUwZt66HKnYeSx19j2Ow=="; }; }; - "@swc/helpers-0.4.11" = { + "@swc/helpers-0.4.12" = { name = "_at_swc_slash_helpers"; packageName = "@swc/helpers"; - version = "0.4.11"; + version = "0.4.12"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz"; - sha512 = "rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw=="; + url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.12.tgz"; + sha512 = "R6RmwS9Dld5lNvwKlPn62+piU+WDG1sMfsnfJioXCciyko/gZ0DQ4Mqglhq1iGU1nQ/RcGkAwfMH+elMSkJH3Q=="; }; }; "@swc/wasm-1.2.122" = { @@ -10174,13 +10282,13 @@ let sha512 = "rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q=="; }; }; - "@swc/wasm-1.3.5" = { + "@swc/wasm-1.3.6" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.5"; + version = "1.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.5.tgz"; - sha512 = "G7c3wX2bxa3OJFOwZB9utXQ0jaq+JI5HgHUxwduQwFRFVGVu+YsWaZ4TQ5iOFBLAsXA6AwMaJDOffcmB3DjpuQ=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.6.tgz"; + sha512 = "rFygmNDMl25/t2ETAtFjpcw6acQOm/o4sW/GN0fVPFUdNpI2zr2/oCXpyRM71OUPbXvksy9jXrt7yMZGD65+wQ=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -10894,15 +11002,6 @@ let sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg=="; }; }; - "@types/express-serve-static-core-4.17.30" = { - name = "_at_types_slash_express-serve-static-core"; - packageName = "@types/express-serve-static-core"; - version = "4.17.30"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz"; - sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ=="; - }; - }; "@types/express-serve-static-core-4.17.31" = { name = "_at_types_slash_express-serve-static-core"; packageName = "@types/express-serve-static-core"; @@ -12316,6 +12415,15 @@ let sha512 = "PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw=="; }; }; + "@urql/core-2.6.1" = { + name = "_at_urql_slash_core"; + packageName = "@urql/core"; + version = "2.6.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@urql/core/-/core-2.6.1.tgz"; + sha512 = "gYrEHy3tViJhwIhauK6MIf2Qp09QTsgNHZRd0n71rS+hF6gdwjspf1oKljl4m25+272cJF7fPjBUGmjaiEr7Kg=="; + }; + }; "@urql/exchange-retry-0.3.0" = { name = "_at_urql_slash_exchange-retry"; packageName = "@urql/exchange-retry"; @@ -12325,6 +12433,15 @@ let sha512 = "hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg=="; }; }; + "@urql/exchange-retry-0.3.3" = { + name = "_at_urql_slash_exchange-retry"; + packageName = "@urql/exchange-retry"; + version = "0.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.3.tgz"; + sha512 = "CgGy/rs3VlcWglSEi5SitbMjueDlG4Oq8fveHFdvcCVGf2Vj5Oeq0Blbjfd8vfyXBQS0cPgdZD8kalOPeV0URA=="; + }; + }; "@vercel/build-utils-5.5.4" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; @@ -13711,13 +13828,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.22" = { + "@yarnpkg/parsers-3.0.0-rc.24" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.22"; + version = "3.0.0-rc.24"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.22.tgz"; - sha512 = "GAWDjXduYBUVmOzlj3X0OwTQ1BV4ZeDdgw8yXST3K0lB95drWEGxa1at0v7BmHDyK2y1F1IJufc8N4yrcuXjWg=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.24.tgz"; + sha512 = "A5wXsIUOipZUGDly1SHBht1OjKKW4y+E9EzzJxR2tby0Pj3atgCta9RSYa4+aXLkFfIMX3onnykmJnwJWqJj5g=="; }; }; "@zeit/schemas-2.21.0" = { @@ -13837,13 +13954,13 @@ let sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; }; }; - "abortcontroller-polyfill-1.7.3" = { + "abortcontroller-polyfill-1.7.5" = { name = "abortcontroller-polyfill"; packageName = "abortcontroller-polyfill"; - version = "1.7.3"; + version = "1.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz"; - sha512 = "zetDJxd89y3X99Kvo4qFx8GKlt6GsvN3UcRZHwU6iFA/0KiOmhkTVhe8oRoTBiTVPZu09x3vCra47+w8Yz1+2Q=="; + url = "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz"; + sha512 = "JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ=="; }; }; "abstract-leveldown-6.0.3" = { @@ -15007,22 +15124,22 @@ let sha512 = "L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg=="; }; }; - "apollo-reporting-protobuf-3.3.2" = { + "apollo-reporting-protobuf-3.3.3" = { name = "apollo-reporting-protobuf"; packageName = "apollo-reporting-protobuf"; - version = "3.3.2"; + version = "3.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz"; - sha512 = "j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ=="; + url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.3.tgz"; + sha512 = "L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ=="; }; }; - "apollo-server-core-3.10.2" = { + "apollo-server-core-3.10.3" = { name = "apollo-server-core"; packageName = "apollo-server-core"; - version = "3.10.2"; + version = "3.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.2.tgz"; - sha512 = "/1o9KPoAMgcjJJ9Y0IH1665wf9d02L/m/mcfBOHiFmRgeGkNgrhTy59BxQTBK241USAWMhwMpp171cv/hM5Dng=="; + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.3.tgz"; + sha512 = "PiTirlcaszgnJGzSsGui9XWh0KAh0BUW+GvRKN6O0H0qOSXSLmoqqyL83J+u+HaUZGyyiE0+VOkyCcuF+kKbEw=="; }; }; "apollo-server-env-4.2.1" = { @@ -15043,31 +15160,31 @@ let sha512 = "xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA=="; }; }; - "apollo-server-express-3.10.2" = { + "apollo-server-express-3.10.3" = { name = "apollo-server-express"; packageName = "apollo-server-express"; - version = "3.10.2"; + version = "3.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.10.2.tgz"; - sha512 = "TUpnh23qAP3NqMp3/2TxcCpOxhvT64H6teOM5W+t5ncdHZ85aEMDrbfIhNwqkdsya+UyMn9IoBmn25h5TW93ZQ=="; + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.10.3.tgz"; + sha512 = "Z8m0r10mX8KlGS3noYeRPcWxWR2hX6NHJicjuwZ62PeTZlrDJF5cwGmXqbUg/sCTPx7Ny//ZEASBTwFFp8DOeQ=="; }; }; - "apollo-server-plugin-base-3.6.2" = { + "apollo-server-plugin-base-3.6.3" = { name = "apollo-server-plugin-base"; packageName = "apollo-server-plugin-base"; - version = "3.6.2"; + version = "3.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.2.tgz"; - sha512 = "erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg=="; + url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.3.tgz"; + sha512 = "/Q0Zx8N8La97faKV0siGHDzfZ56ygN6ovtUpPbr+1GIbNmUzkte3lWW2YV08HmxiRmC2i2OGN80exNJEvbKvNA=="; }; }; - "apollo-server-types-3.6.2" = { + "apollo-server-types-3.6.3" = { name = "apollo-server-types"; packageName = "apollo-server-types"; - version = "3.6.2"; + version = "3.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.6.2.tgz"; - sha512 = "9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg=="; + url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.6.3.tgz"; + sha512 = "+7caNTLdevpWI2dGKSa7CWdyudO3NBuJ3HzcrYxjBei6Bth9YdRUNzPSFmBjlm2baHF0GsrMwLpjO+HStJzm3A=="; }; }; "app-path-2.2.0" = { @@ -16645,15 +16762,6 @@ let sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; }; }; - "aws-sdk-2.1230.0" = { - name = "aws-sdk"; - packageName = "aws-sdk"; - version = "2.1230.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1230.0.tgz"; - sha512 = "7Y260dvzr7b8/lZhg6A7h5WyHvfCgdFL0NiBgCuT3/xlw9rvq9b08JNYErEpaJSmo+A5hW35n6wtzii4/FUSTA=="; - }; - }; "aws-sdk-2.1231.0" = { name = "aws-sdk"; packageName = "aws-sdk"; @@ -17932,13 +18040,13 @@ let sha512 = "wrDhHe7LUkqaytxgbsFXoemzHRv6e8FrVNWWsQCgUfmuVYW6ke44hoGc9VdpjgfIsJ/ejmCFA8wDtDqACNAvyw=="; }; }; - "bittorrent-dht-10.0.4" = { + "bittorrent-dht-10.0.6" = { name = "bittorrent-dht"; packageName = "bittorrent-dht"; - version = "10.0.4"; + version = "10.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-10.0.4.tgz"; - sha512 = "Yx5cZXU4R+mUbxR2PbKdvOVTizOrePPF8NT3WGCXX5qzJVt8gF8gq9GMBWcmNjHUBYHVigDaRf030hxQ2dJWUg=="; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-10.0.6.tgz"; + sha512 = "Odmfmo36/vr0E4PWicans0fesjCfRib2daGaYfB8WHljPTO/U2820EFOA9HBhzdzekGBhBHlSPVi6Jf9vu7/yQ=="; }; }; "bittorrent-dht-6.4.2" = { @@ -20336,22 +20444,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.5.9" = { + "cdk8s-2.5.12" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.5.9"; + version = "2.5.12"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.9.tgz"; - sha512 = "nrf4rdQ+mmHLE/Ap7NC+G8PEPXitDbVwbhfcHDykC1ZDmbDpXi7vjEVu/3F45T4tthykhKXPGBLj6Cz4la2iyA=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.12.tgz"; + sha512 = "Hm60r2EYEMuQT5aV4Z3k4nd80+TMFtcT+nreHJvMPw5diSlPo1ldunKg+gaheN3EItkC97yFLw15AHRMJPX2zA=="; }; }; - "cdk8s-plus-22-2.0.0-rc.141" = { + "cdk8s-plus-22-2.0.0-rc.144" = { name = "cdk8s-plus-22"; packageName = "cdk8s-plus-22"; - version = "2.0.0-rc.141"; + version = "2.0.0-rc.144"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.141.tgz"; - sha512 = "rKJFxOG9XCjQWsq3DostboSYdAF7B+Boq5ipHjVTsZDh8+zMxHOJvLpq4T8HGImKu+48PfQdd4iCQGKe5DrHLg=="; + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.144.tgz"; + sha512 = "XHz1QGuliZr6gz/erbU8cJJzq3CIlUsEQz/sNbClWDVb0CcNxlvCjL+HwxTDSgCjw26rC0ZrMhO0KWLeJIiMeg=="; }; }; "cdktf-0.13.0" = { @@ -20624,13 +20732,13 @@ let sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; }; }; - "chardet-1.4.0" = { + "chardet-1.5.0" = { name = "chardet"; packageName = "chardet"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/chardet/-/chardet-1.4.0.tgz"; - sha512 = "NpwMDdSIprbYx1CLnfbxEIarI0Z+s9MssEgggMNheGM+WD68yOhV7IEA/3r6tr0yTRgQD0HuZJDw32s99i6L+A=="; + url = "https://registry.npmjs.org/chardet/-/chardet-1.5.0.tgz"; + sha512 = "Nj3VehbbFs/1ZnJJJaL3ztEf3Nu5Fs6YV/NBs6lyz/iDDHUU+X9QNk5QgPy1/5Rjtb/cGVf+NyazP7kVEJqKRg=="; }; }; "charenc-0.0.2" = { @@ -21047,13 +21155,13 @@ let sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; }; }; - "ci-info-3.4.0" = { + "ci-info-3.5.0" = { name = "ci-info"; packageName = "ci-info"; - version = "3.4.0"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz"; - sha512 = "t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug=="; + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz"; + sha512 = "yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw=="; }; }; "cipher-base-1.0.4" = { @@ -23090,13 +23198,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.1.124" = { + "constructs-10.1.127" = { name = "constructs"; packageName = "constructs"; - version = "10.1.124"; + version = "10.1.127"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.124.tgz"; - sha512 = "kDnRUYyn2zNda0Lx98kz9KLzS4hBCqi4mbg1AnRExF9sY3PHRQsex11cWClVmyqWFC+5HhR05k4l+0Tl/iNraQ=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.127.tgz"; + sha512 = "pdWLyxoUHqbZ47aSNjagXCnR705Ehu5QBYn9+N9ysiZJauz8EBHf9MHwJZk8vsWW3E1IZtprRaTQaeJaF9rtsg=="; }; }; "consume-http-header-1.0.0" = { @@ -26637,13 +26745,13 @@ let sha512 = "KqOPKqX9VLrCfdKK/zMll+xb9kZOP4QyguB6jyN4pKaPoedk1bMFIfyTCFhVdrHb3GU7aJvKjd8myKxFRRDwCg=="; }; }; - "defaults-1.0.3" = { + "defaults-1.0.4" = { name = "defaults"; packageName = "defaults"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; - sha512 = "s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA=="; + url = "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz"; + sha512 = "eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="; }; }; "defer-to-connect-1.1.3" = { @@ -27195,6 +27303,15 @@ let sha512 = "MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA=="; }; }; + "dicer-0.3.1" = { + name = "dicer"; + packageName = "dicer"; + version = "0.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/dicer/-/dicer-0.3.1.tgz"; + sha512 = "ObioMtXnmjYs3aRtpIJt9rgQSPCIhKVkFPip+E9GUDyWl8N435znUxK/JfNwGZJ2wnn5JKQ7Ly3vOK5Q5dylGA=="; + }; + }; "didyoumean-1.2.2" = { name = "didyoumean"; packageName = "didyoumean"; @@ -28455,13 +28572,13 @@ let sha512 = "FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw=="; }; }; - "electron-to-chromium-1.4.275" = { + "electron-to-chromium-1.4.276" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.275"; + version = "1.4.276"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.275.tgz"; - sha512 = "aJeQQ+Hl9Jyyzv4chBqYJwmVRY46N5i2BEX5Cuyk/5gFCUZ5F3i7Hnba6snZftWla7Gglwc5pIgcd+E7cW+rPg=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.276.tgz"; + sha512 = "EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -29006,6 +29123,15 @@ let sha512 = "+6r/UAzikJWJPcQZpBQS+bVmjAMz2BkDP/N4n2Uz1zz8lyw1IHWUeVdh/85gs0dp5A+z76LOQhCZkR6F88mlUw=="; }; }; + "env-paths-2.2.0" = { + name = "env-paths"; + packageName = "env-paths"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/env-paths/-/env-paths-2.2.0.tgz"; + sha512 = "6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA=="; + }; + }; "env-paths-2.2.1" = { name = "env-paths"; packageName = "env-paths"; @@ -29015,6 +29141,15 @@ let sha512 = "+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="; }; }; + "env-string-1.0.1" = { + name = "env-string"; + packageName = "env-string"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/env-string/-/env-string-1.0.1.tgz"; + sha512 = "/DhCJDf5DSFK32joQiWRpWrT0h7p3hVQfMKxiBb7Nt8C8IF8BYyPtclDnuGGLOoj16d/8udKeiE7JbkotDmorQ=="; + }; + }; "envinfo-7.8.1" = { name = "envinfo"; packageName = "envinfo"; @@ -30096,13 +30231,13 @@ let sha512 = "/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA=="; }; }; - "eslint-8.24.0" = { + "eslint-8.25.0" = { name = "eslint"; packageName = "eslint"; - version = "8.24.0"; + version = "8.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.24.0.tgz"; - sha512 = "dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.25.0.tgz"; + sha512 = "DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A=="; }; }; "eslint-config-prettier-6.15.0" = { @@ -30195,13 +30330,13 @@ let sha512 = "htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g=="; }; }; - "eslint-plugin-react-7.31.8" = { + "eslint-plugin-react-7.31.9" = { name = "eslint-plugin-react"; packageName = "eslint-plugin-react"; - version = "7.31.8"; + version = "7.31.9"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz"; - sha512 = "5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw=="; + url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.9.tgz"; + sha512 = "vrVJwusIw4L99lyfXjtCw8HWdloajsiYslMavogrBe2Gl8gr95TJsJnOMRasN4b4N24I3XuJf6aAV6MhyGmjqw=="; }; }; "eslint-plugin-react-hooks-4.6.0" = { @@ -31203,6 +31338,15 @@ let sha512 = "av9ln2zwUt303g98raX7sDmESgL3SXs1sbbtIjh1rL7R0676XIUacIKgbydR0/4tMbOShWx14Z9fozpk9xIAJA=="; }; }; + "expo-modules-autolinking-0.11.0" = { + name = "expo-modules-autolinking"; + packageName = "expo-modules-autolinking"; + version = "0.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.11.0.tgz"; + sha512 = "yWJ6DZkui/LtN19engSFsSvywDOGu5S7JTCHw7m5ezpVbrhiu5VKP10Uh62PHJn+/InWG4b3Hiv2L+ccQJfcxg=="; + }; + }; "expo-modules-autolinking-0.8.1" = { name = "expo-modules-autolinking"; packageName = "expo-modules-autolinking"; @@ -31302,6 +31446,15 @@ let sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; }; }; + "express-4.18.2" = { + name = "express"; + packageName = "express"; + version = "4.18.2"; + src = fetchurl { + url = "https://registry.npmjs.org/express/-/express-4.18.2.tgz"; + sha512 = "5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ=="; + }; + }; "express-async-handler-1.2.0" = { name = "express-async-handler"; packageName = "express-async-handler"; @@ -31824,6 +31977,15 @@ let sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; }; }; + "fast-glob-3.2.11" = { + name = "fast-glob"; + packageName = "fast-glob"; + version = "3.2.11"; + src = fetchurl { + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"; + sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; + }; + }; "fast-glob-3.2.12" = { name = "fast-glob"; packageName = "fast-glob"; @@ -35353,6 +35515,15 @@ let sha512 = "4kKdWXTtgQ4biIo7hZA396HT062nDVVHPjQcurNZ3o/voYN+o5FUC5kOwuORbpExp3XbTJ3SU7iRipiIhQtovw=="; }; }; + "golden-fleece-1.0.9" = { + name = "golden-fleece"; + packageName = "golden-fleece"; + version = "1.0.9"; + src = fetchurl { + url = "https://registry.npmjs.org/golden-fleece/-/golden-fleece-1.0.9.tgz"; + sha512 = "YSwLaGMOgSBx9roJlNLL12c+FRiw7VECphinc6mGucphc/ZxTHgdEz6gmJqH6NOzYEd/yr64hwjom5pZ+tJVpg=="; + }; + }; "goldengate-11.2.2" = { name = "goldengate"; packageName = "goldengate"; @@ -35596,6 +35767,15 @@ let sha512 = "8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w=="; }; }; + "gradle-to-js-2.0.1" = { + name = "gradle-to-js"; + packageName = "gradle-to-js"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/gradle-to-js/-/gradle-to-js-2.0.1.tgz"; + sha512 = "is3hDn9zb8XXnjbEeAEIqxTpLHUiGBqjegLmXPuyMBfKAggpadWFku4/AP8iYAGBX6qR9/5UIUIp47V0XI3aMw=="; + }; + }; "grammy-1.11.1" = { name = "grammy"; packageName = "grammy"; @@ -35722,6 +35902,15 @@ let sha512 = "5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw=="; }; }; + "graphql-16.5.0" = { + name = "graphql"; + packageName = "graphql"; + version = "16.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/graphql/-/graphql-16.5.0.tgz"; + sha512 = "qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA=="; + }; + }; "graphql-16.6.0" = { name = "graphql"; packageName = "graphql"; @@ -37495,6 +37684,15 @@ let sha512 = "carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="; }; }; + "http-call-5.3.0" = { + name = "http-call"; + packageName = "http-call"; + version = "5.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz"; + sha512 = "ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w=="; + }; + }; "http-deceiver-1.2.7" = { name = "http-deceiver"; packageName = "http-deceiver"; @@ -41500,6 +41698,15 @@ let sha512 = "8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA=="; }; }; + "jks-js-1.0.2" = { + name = "jks-js"; + packageName = "jks-js"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/jks-js/-/jks-js-1.0.2.tgz"; + sha512 = "OTJ+BKJTUHbnytW4X/py22Adhm9eJdBXzsqFthecsvuup7BnxVv82UEPG6bEr+0A/ZcLtf0F/B5klDOV6ewzjg=="; + }; + }; "jmespath-0.16.0" = { name = "jmespath"; packageName = "jmespath"; @@ -41527,6 +41734,15 @@ let sha512 = "b2Zna/wGIyTzi0Gemg27JYUaRyTyBETw5GnqyVQMr71uojOYMrgkD2+Px3bG2ZFi7/zTUXJSDoGoBOhMixq7tg=="; }; }; + "joi-17.6.0" = { + name = "joi"; + packageName = "joi"; + version = "17.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz"; + sha512 = "OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw=="; + }; + }; "joi-17.6.2" = { name = "joi"; packageName = "joi"; @@ -42041,13 +42257,13 @@ let sha512 = "zAvvzRShVMmUxNRLtbR4HShGEn17kyiED5XSo1CrVu4JzG6I7YEtYO1WrNFe1XTh76Bbi4OoamZm3Um91DPtXg=="; }; }; - "jsii-srcmak-0.1.695" = { + "jsii-srcmak-0.1.698" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.695"; + version = "0.1.698"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.695.tgz"; - sha512 = "LWn8LhJhwNYVB+kc21wKUdQgTJMoqiYiRitBJYlqHb7yjL/g34h2NAtcRNVOLBOwVpmilBSRsyJd5jxFqjYqFA=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.698.tgz"; + sha512 = "rELtXGP065txtYrKifEPCY/ON9QxC/+AeFGGRfQBdXfP2fmTNtKRWxpnGOM59gEnSdjqwFUVnrkXGa4t3vJKNw=="; }; }; "json-bigint-1.0.0" = { @@ -42383,13 +42599,13 @@ let sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; }; }; - "json2jsii-0.3.144" = { + "json2jsii-0.3.147" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.3.144"; + version = "0.3.147"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.144.tgz"; - sha512 = "VXL3y91qdtBLd4lH8vJ1I3xI+H7xHb3dwZacmb6szAaLcmnHvUhX9klSHiqeGpwANvM8KP7VWoFX+3evK9wRCA=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.147.tgz"; + sha512 = "CKxpNrFvHql7xUqJCUhMq6tJLKq35q7/1P+LUlrL7JGD1Ii16VcKyDxNZzyNFTPNp0XPrvdOzxhrSLgjy2ssJw=="; }; }; "json3-3.2.6" = { @@ -53447,13 +53663,13 @@ let sha512 = "TxhYBMoqx9frXyOgnRHufjQfPXomTIHYKhSKJ6jHfj13kS8OEIhvmE8CTuQyKtjjWttAjX5DPxM1vmalEpo8Qw=="; }; }; - "openapi3-ts-3.1.0" = { + "openapi3-ts-3.1.1" = { name = "openapi3-ts"; packageName = "openapi3-ts"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.1.0.tgz"; - sha512 = "1qKTvCCVoV0rkwUh1zq5o8QyghmwYPuhdvtjv1rFjuOnJToXhQyF8eGjNETQ8QmGjr9Jz/tkAKLITIl2s7dw3A=="; + url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.1.1.tgz"; + sha512 = "lNUS87ncFqm1m8W21sbTGIeD7sydkQ4nnRUrkBiGlAzTngr50eBKU2suUXhdEk51z6m4cCgaXdB1SFgXtyn81Q=="; }; }; "opencollective-postinstall-2.0.3" = { @@ -57965,13 +58181,13 @@ let sha512 = "tEJiPjTB1eVT5Czcbkj9GoRG/oMewOnG9x737p/hJUD5QXJmn7LiYFM2dKkX0i4A1fhhsGfXT+uqsAXcw2r8JQ=="; }; }; - "prettier-plugin-svelte-2.7.1" = { + "prettier-plugin-svelte-2.8.0" = { name = "prettier-plugin-svelte"; packageName = "prettier-plugin-svelte"; - version = "2.7.1"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.7.1.tgz"; - sha512 = "H33qjhCBZyd9Zr1A5hUAYDh7j0Mf97uvy7XcA7CP4nNSYrNcPvBUf7wI8K9NptWTIs0S41QtgTWmJIUiGlEBtw=="; + url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.8.0.tgz"; + sha512 = "QlXv/U3bUszks3XYDPsk1fsaQC+fo2lshwKbcbO+lrSVdJ+40mB1BfL8OCAk1W9y4pJxpqO/4gqm6NtF3zNGCw=="; }; }; "prettier-tslint-0.4.2" = { @@ -58397,6 +58613,15 @@ let sha512 = "6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="; }; }; + "promise-limit-2.7.0" = { + name = "promise-limit"; + packageName = "promise-limit"; + version = "2.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/promise-limit/-/promise-limit-2.7.0.tgz"; + sha512 = "7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw=="; + }; + }; "promise-nodify-1.0.2" = { name = "promise-nodify"; packageName = "promise-nodify"; @@ -69540,13 +69765,13 @@ let sha512 = "sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw=="; }; }; - "svelte2tsx-0.5.19" = { + "svelte2tsx-0.5.20" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.5.19"; + version = "0.5.20"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.19.tgz"; - sha512 = "PvhcjG3fVhFmoO7XWYYqWYkg7lQzO8Q9/T4RQiCAsTZ+lK+9jCAPV8rbeQD8M4AN44u3JqgvaxHrmh095SaxBA=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.20.tgz"; + sha512 = "yNHmN/uoAnJ7d1XqVohiNA6TMFOxibHyEddUAHVt1PiLXtbwAJF3WaGYlg8QbOdoXzOVsVNCAlqRUIdULUm+OA=="; }; }; "sver-compat-1.5.0" = { @@ -71413,13 +71638,13 @@ let sha512 = "bPTDIA7XEjRlw6vQyt7kM/h1mg1INBsibjbujISITonx4POENZgxfyCSEXZpDhbAkluSPH4HKRKs4/YTmNLC6w=="; }; }; - "torrent-discovery-9.4.13" = { + "torrent-discovery-9.4.14" = { name = "torrent-discovery"; packageName = "torrent-discovery"; - version = "9.4.13"; + version = "9.4.14"; src = fetchurl { - url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.13.tgz"; - sha512 = "HZD8nAxIejcGnzUyXRMhBnK0rYQCQ85vaaCzmzl2r3/vmj0M/b6JuO6yNhe1vyLOU3ZngzDYaHxCJjmAIa4wwg=="; + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.14.tgz"; + sha512 = "IyzlrHctvqqKtN8Y2BMxNL3d2FLazs6pC2yzKOHJlXWYUFkLpZhZSaSZcAkfmZXgdjwq59N2umr1przsRDMzkA=="; }; }; "torrent-piece-1.1.2" = { @@ -72484,6 +72709,15 @@ let sha512 = "MINvUN5ug9u+0hJDzSZNSnuKXI8M4F5Yvb6SQZ2CYqe7SgKXKOosEcU5R7tRgo85I6eAVBbkVF7TCvB4AUK2xQ=="; }; }; + "type-fest-3.1.0" = { + name = "type-fest"; + packageName = "type-fest"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-3.1.0.tgz"; + sha512 = "StmrZmK3eD9mDF9Vt7UhqthrDSk66O9iYl5t5a0TSoVkHjl0XZx/xuc/BRz4urAXXGHOY5OLsE0RdJFIApSFmw=="; + }; + }; "type-is-1.6.18" = { name = "type-is"; packageName = "type-is"; @@ -74770,6 +75004,15 @@ let sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; }; }; + "uuid-9.0.0" = { + name = "uuid"; + packageName = "uuid"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz"; + sha512 = "MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="; + }; + }; "uvu-0.5.6" = { name = "uvu"; packageName = "uvu"; @@ -77173,13 +77416,13 @@ let sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; }; }; - "webtorrent-1.8.30" = { + "webtorrent-1.8.32" = { name = "webtorrent"; packageName = "webtorrent"; - version = "1.8.30"; + version = "1.8.32"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.30.tgz"; - sha512 = "vJbZYnmzSRwvHAXP6YGPsps69vux6ft6J6B0sFqGyqmIN28g5xK3z4Dvq0EZHRYz1z9egkvzY1Khs6XWlmGJCA=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.32.tgz"; + sha512 = "PjtJn3sY4Uqb1PEuxID+Cps4AshUKZpo3EhkT14y1SySmMVHeSX2crwh1rXIGX3fJUeF0zM5iEg+Ic2mN4CFZw=="; }; }; "webworkify-webpack-2.1.5" = { @@ -79503,7 +79746,7 @@ in sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."debug-4.3.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -80513,45 +80756,45 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -80799,10 +81042,10 @@ in "@forge/cli" = nodeEnv.buildNodePackage { name = "_at_forge_slash_cli"; packageName = "@forge/cli"; - version = "5.1.1"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli/-/cli-5.1.1.tgz"; - sha512 = "Oeoe4Gr20aiYAAdgbBY2tgbXNHgVT2yGdI38DqEVxl8T9XyVKUkCSllAkBUt121LSAXFObAEmLy/7dmCPmf5Jg=="; + url = "https://registry.npmjs.org/@forge/cli/-/cli-5.2.0.tgz"; + sha512 = "KoFDuisUshhGtS5XHjy0rZOW7PD5+LHqZy0nRZz7S67e5Rcxt67Dl6zLsYB9CjPJs4htQKCYImUcmCm0+YLy0Q=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -80813,9 +81056,9 @@ in ]; }) sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -80832,15 +81075,15 @@ in sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-proposal-class-properties-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" @@ -80852,15 +81095,15 @@ in sources."@babel/plugin-transform-typescript-7.19.3" sources."@babel/preset-typescript-7.18.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@colors/colors-1.5.0" sources."@discoveryjs/json-ext-0.5.7" sources."@forge/api-2.7.0" sources."@forge/auth-0.0.1" sources."@forge/babel-plugin-transform-ui-1.1.0" - sources."@forge/bundler-3.1.1" - (sources."@forge/cli-shared-3.1.1" // { + sources."@forge/bundler-3.1.2" + (sources."@forge/cli-shared-3.2.0" // { dependencies = [ sources."glob-7.2.3" ]; @@ -80871,8 +81114,8 @@ in sources."minimatch-5.1.0" ]; }) - sources."@forge/lint-3.2.5" - sources."@forge/manifest-4.3.0" + sources."@forge/lint-3.2.6" + sources."@forge/manifest-4.4.0" sources."@forge/storage-1.3.0" sources."@forge/util-1.2.0" sources."@jridgewell/gen-mapping-0.1.1" @@ -80884,7 +81127,7 @@ in ]; }) sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@jsdevtools/ono-7.1.3" sources."@polka/url-1.0.0-next.21" sources."@sindresorhus/is-0.14.0" @@ -81087,7 +81330,7 @@ in sources."debug-4.3.4" sources."decompress-response-6.0.0" sources."deep-extend-0.6.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" @@ -81120,7 +81363,7 @@ in ]; }) sources."duplexer3-0.1.5" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -81249,13 +81492,14 @@ in sources."inflight-1.0.6" sources."inherits-2.0.1" sources."ini-1.3.8" - (sources."inquirer-7.3.3" // { + (sources."inquirer-8.2.4" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" + sources."ora-5.4.1" sources."supports-color-7.2.0" ]; }) @@ -81282,6 +81526,7 @@ in sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" + sources."is-unicode-supported-0.1.0" sources."is-weakref-1.0.2" sources."isarray-1.0.0" sources."isexe-2.0.0" @@ -81350,7 +81595,16 @@ in sources."lodash.some-4.6.0" sources."lodash.sortby-4.7.0" sources."lodash.union-4.6.0" - sources."log-symbols-3.0.0" + (sources."log-symbols-4.1.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."chalk-4.1.2" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) (sources."lower-case-2.0.2" // { dependencies = [ sources."tslib-2.4.0" @@ -81433,6 +81687,16 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" + (sources."log-symbols-3.0.0" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."supports-color-7.2.0" ]; }) @@ -81531,7 +81795,11 @@ in sources."rimraf-2.4.5" sources."ripemd160-2.0.2" sources."run-async-2.4.1" - sources."rxjs-6.6.7" + (sources."rxjs-7.5.7" // { + dependencies = [ + sources."tslib-2.4.0" + ]; + }) sources."safe-buffer-5.1.2" sources."safe-json-stringify-1.2.0" sources."safe-regex-test-1.0.0" @@ -81800,7 +82068,7 @@ in sources."mimic-response-3.1.0" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" sources."dotf-2.0.2" @@ -82067,7 +82335,7 @@ in sha512 = "Pl9Q5rqt4hKGVcZ1/iPMj8VXY3US0UgY8JGkgm+XFUtAJ9JntN0Qj1bj1JBfPj5R7YyrZzuuDbEk4eOCd+wI/A=="; }; dependencies = [ - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@medable/mdctl-api-1.0.67" sources."@medable/mdctl-api-driver-1.0.67" sources."@medable/mdctl-axon-tools-1.0.67" @@ -83040,7 +83308,7 @@ in sources."commander-6.2.1" sources."cross-spawn-4.0.2" sources."debug-4.3.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."deprecation-2.3.1" sources."encoding-0.1.13" sources."esprima-4.0.1" @@ -83139,7 +83407,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" (sources."@nestjs/schematics-9.0.3" // { dependencies = [ (sources."@angular-devkit/core-14.2.1" // { @@ -83221,8 +83489,8 @@ in sources."cross-spawn-7.0.3" sources."de-indent-1.0.2" sources."deepmerge-4.2.2" - sources."defaults-1.0.3" - sources."electron-to-chromium-1.4.275" + sources."defaults-1.0.4" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.10.0" @@ -83451,7 +83719,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."commander-7.2.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."has-flag-4.0.0" sources."ieee754-1.2.1" sources."inherits-2.0.4" @@ -83501,45 +83769,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -83652,45 +83920,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -83822,45 +84090,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -83973,45 +84241,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -84139,7 +84407,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1230.0" + sources."aws-sdk-2.1231.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -84416,7 +84684,7 @@ in sources."@achrinza/node-ipc-9.2.5" sources."@akryum/winattr-3.0.0" sources."@ampproject/remapping-2.2.0" - (sources."@apollo/protobufjs-1.2.4" // { + (sources."@apollo/protobufjs-1.2.6" // { dependencies = [ sources."@types/node-10.17.60" ]; @@ -84436,13 +84704,13 @@ in sources."@apollographql/apollo-tools-0.5.4" sources."@apollographql/graphql-playground-html-1.6.29" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -84472,14 +84740,14 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."ansi-styles-3.2.1" @@ -84490,7 +84758,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.19.1" @@ -84502,7 +84770,7 @@ in sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" @@ -84528,10 +84796,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -84559,7 +84827,7 @@ in sources."@babel/plugin-transform-typescript-7.19.3" sources."@babel/plugin-transform-unicode-escapes-7.18.10" sources."@babel/plugin-transform-unicode-regex-7.18.6" - (sources."@babel/preset-env-7.19.3" // { + (sources."@babel/preset-env-7.19.4" // { dependencies = [ sources."semver-6.3.0" ]; @@ -84574,10 +84842,10 @@ in sources."semver-5.7.1" ]; }) - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@graphql-tools/merge-8.3.1" (sources."@graphql-tools/mock-8.7.6" // { dependencies = [ @@ -84595,7 +84863,7 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@node-ipc/js-queue-2.0.3" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -84619,8 +84887,8 @@ in sources."@types/connect-3.4.35" sources."@types/cors-2.8.12" sources."@types/ejs-3.1.1" - sources."@types/express-4.17.13" - sources."@types/express-serve-static-core-4.17.30" + sources."@types/express-4.17.14" + sources."@types/express-serve-static-core-4.17.31" sources."@types/inquirer-8.2.4" (sources."@types/jscodeshift-0.7.2" // { dependencies = [ @@ -84659,13 +84927,13 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."apollo-datasource-3.3.2" - sources."apollo-reporting-protobuf-3.3.2" - sources."apollo-server-core-3.10.2" + sources."apollo-reporting-protobuf-3.3.3" + sources."apollo-server-core-3.10.3" sources."apollo-server-env-4.2.1" sources."apollo-server-errors-3.3.1" - sources."apollo-server-express-3.10.2" - sources."apollo-server-plugin-base-3.6.2" - sources."apollo-server-types-3.6.2" + sources."apollo-server-express-3.10.3" + sources."apollo-server-plugin-base-3.6.3" + sources."apollo-server-types-3.6.3" (sources."archive-type-4.0.0" // { dependencies = [ sources."file-type-4.4.0" @@ -84833,7 +85101,7 @@ in ]; }) sources."deepmerge-4.2.2" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" sources."define-properties-1.1.4" sources."define-property-2.0.2" @@ -84850,7 +85118,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.8" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -84887,12 +85155,9 @@ in sources."kind-of-5.1.0" ]; }) - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" sources."debug-2.6.9" - sources."iconv-lite-0.4.24" - sources."qs-6.10.3" ]; }) sources."express-history-api-fallback-2.2.1" @@ -85152,6 +85417,7 @@ in sources."node-gyp-build-4.5.0" (sources."node-notifier-10.0.1" // { dependencies = [ + sources."uuid-8.3.2" sources."which-2.0.2" ]; }) @@ -85485,7 +85751,7 @@ in sources."utf-8-validate-5.0.9" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" - sources."uuid-8.3.2" + sources."uuid-9.0.0" sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-3.0.0" sources."value-or-promise-1.0.11" @@ -85665,18 +85931,18 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.19.3" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/generator-7.19.4" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/types-7.19.3" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -86231,9 +86497,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -86244,22 +86510,22 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@xmldom/xmldom-0.8.2" sources."JSV-4.0.2" sources."ansi-styles-3.2.1" @@ -86278,7 +86544,7 @@ in sources."convert-source-map-1.8.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -86666,7 +86932,7 @@ in dependencies = [ sources."browserslist-4.21.4" sources."caniuse-lite-1.0.30001418" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.4" @@ -86744,7 +87010,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1230.0" // { + (sources."aws-sdk-2.1231.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -86783,7 +87049,7 @@ in sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-properties-1.1.4" sources."degenerator-2.2.0" sources."depd-2.0.0" @@ -87099,7 +87365,7 @@ in ]; }) sources."decompress-response-3.3.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" (sources."del-6.1.1" // { dependencies = [ @@ -87586,7 +87852,7 @@ in sources."crypto-js-4.1.1" sources."csv-parse-5.3.0" sources."debug-2.6.9" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-property-1.0.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" @@ -88785,11 +89051,11 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/parser-7.19.4" + sources."@babel/types-7.19.4" sources."@kwsites/file-exists-1.1.1" sources."@kwsites/promise-deferred-1.1.1" sources."@popperjs/core-2.11.6" @@ -88932,12 +89198,10 @@ in sources."escape-string-regexp-1.0.5" sources."etag-1.8.1" sources."event-loop-stats-1.4.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" sources."cookie-0.5.0" sources."debug-2.6.9" - sources."qs-6.10.3" sources."safe-buffer-5.2.1" ]; }) @@ -90353,10 +90617,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.1.7"; + version = "2.1.10"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.7.tgz"; - sha512 = "DpYA4Vpgk/FBokefXPl1aocUFdrd5diPFPqmCz9w8l/ZB8QKqXV2DPty5CpYc6X4lIAqFjSufqNdEBTVrhBtsw=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.10.tgz"; + sha512 = "qUGnFwUlKBEuLcT4ttNNJKT6qtGhIiowcQb7u0Kw3DjW+J0eJdyRhOOtKgizf0Ba9wvJyUFSD4fRbWD7+NIqEA=="; }; dependencies = [ sources."@jsii/check-node-1.69.0" @@ -90374,8 +90638,8 @@ in sources."braces-3.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.5.9" - sources."cdk8s-plus-22-2.0.0-rc.141" + sources."cdk8s-2.5.12" + sources."cdk8s-plus-22-2.0.0-rc.144" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" @@ -90388,7 +90652,7 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-10.1.124" + sources."constructs-10.1.127" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -90442,14 +90706,14 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.695" // { + (sources."jsii-srcmak-0.1.698" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.3.144" + sources."json2jsii-0.3.147" sources."jsonfile-6.1.0" sources."locate-path-5.0.0" sources."lodash.truncate-4.4.2" @@ -90538,13 +90802,13 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.19.3" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/generator-7.19.4" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/types-7.19.3" + sources."@babel/types-7.19.4" sources."@cdktf/hcl2cdk-0.13.0" sources."@cdktf/hcl2json-0.13.0" sources."@cdktf/provider-generator-0.13.0" @@ -90552,7 +90816,7 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" (sources."@jsii/check-node-1.69.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -90624,7 +90888,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.124" + sources."constructs-10.1.127" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" sources."cross-spawn-7.0.3" @@ -90756,7 +91020,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.695" // { + (sources."jsii-srcmak-0.1.698" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -91128,10 +91392,10 @@ in coc-clangd = nodeEnv.buildNodePackage { name = "coc-clangd"; packageName = "coc-clangd"; - version = "0.25.0"; + version = "0.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.25.0.tgz"; - sha512 = "UWmJlM6e8ScC2ZOu/Brrj55lfYc24eKVxkypvQawp7ZukMgwOQB/ALwtOerJvak6hQdY8qu4ISqXT/XugP0brA=="; + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.26.0.tgz"; + sha512 = "8k37u4XWNIwr9vQN7LNPUMATtWyhcc/u2an6f9YC2mpinYYt8P8rhoqQDrFPTnO/YIjtH1J8jQWCYa8d0X4vKA=="; }; buildInputs = globalBuildInputs; meta = { @@ -92074,9 +92338,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -92087,26 +92351,26 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -92177,7 +92441,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -92418,10 +92682,10 @@ in coc-sumneko-lua = nodeEnv.buildNodePackage { name = "coc-sumneko-lua"; packageName = "coc-sumneko-lua"; - version = "0.0.34"; + version = "0.0.35"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.34.tgz"; - sha512 = "K3uNx1HuAN+u4YL6HZkUYSFE6ry2Q04/xRENJ5pSlQjNnToXRtt93GewSUeEMA6prtKXyUOXVaKkRf1vdSA44g=="; + url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.35.tgz"; + sha512 = "UcrTwjaeN9vGuedPcy8aOLMWWtjbOleBFBOiv44DZao6M32QaRRsgAmVZZ8tjCMzBJgsoGmbklqhuLQ4ftbTNg=="; }; buildInputs = globalBuildInputs; meta = { @@ -93570,14 +93834,14 @@ in sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."big-integer-1.6.51" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."bytes-3.1.2" sources."debug-2.6.9" sources."depd-2.0.0" sources."iconv-lite-0.4.24" sources."ms-2.0.0" - sources."qs-6.10.3" + sources."qs-6.11.0" ]; }) (sources."boxen-5.1.2" // { @@ -93707,12 +93971,12 @@ in sources."escape-string-regexp-1.0.5" sources."etag-1.8.1" sources."execa-5.1.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."debug-2.6.9" sources."depd-2.0.0" sources."ms-2.0.0" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."safe-buffer-5.2.1" ]; }) @@ -94603,7 +94867,7 @@ in sources."@cspell/dict-ruby-2.0.2" sources."@cspell/dict-rust-2.0.1" sources."@cspell/dict-scala-2.0.0" - sources."@cspell/dict-software-terms-2.2.12" + sources."@cspell/dict-software-terms-2.2.13" sources."@cspell/dict-sql-1.0.4" sources."@cspell/dict-swift-1.0.3" sources."@cspell/dict-typescript-2.0.2" @@ -95406,9 +95670,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -95430,16 +95694,16 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.19.1" @@ -95451,7 +95715,7 @@ in sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" @@ -95476,10 +95740,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -95509,13 +95773,13 @@ in sources."@babel/plugin-transform-typeof-symbol-7.18.9" sources."@babel/plugin-transform-unicode-escapes-7.18.10" sources."@babel/plugin-transform-unicode-regex-7.18.6" - sources."@babel/preset-env-7.19.3" + sources."@babel/preset-env-7.19.4" sources."@babel/preset-modules-0.1.5" sources."@babel/preset-react-7.18.6" - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@blueprintjs/colors-4.1.7" sources."@blueprintjs/core-4.11.2" sources."@blueprintjs/icons-4.6.3" @@ -95527,7 +95791,7 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@juggle/resize-observer-3.4.0" sources."@mapbox/extent-0.4.0" sources."@mapbox/geojson-coords-0.0.2" @@ -95665,7 +95929,7 @@ in sources."@types/node-16.11.64" ]; }) - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-js-clean-4.0.0" sources."emoji-mart-3.0.1" sources."emoji-regex-9.2.2" @@ -96511,7 +96775,7 @@ in sources."mimic-response-3.1.0" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" sources."define-properties-1.1.4" @@ -96875,6 +97139,455 @@ in bypassCache = true; reconstructLock = true; }; + eas-cli = nodeEnv.buildNodePackage { + name = "eas-cli"; + packageName = "eas-cli"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-2.3.0.tgz"; + sha512 = "Tc9gxflhjqb8o67NIj9tF5ES5qI2ckDj+29OEYjyQIxJVAAV0kJzH5+kFSmGlAV8qV4L3tUku+ur8LRPsJnzbA=="; + }; + dependencies = [ + sources."@babel/code-frame-7.10.4" + sources."@babel/helper-validator-identifier-7.19.1" + (sources."@babel/highlight-7.18.6" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) + sources."@expo/apple-utils-0.0.0-alpha.34" + sources."@expo/bunyan-4.0.0" + sources."@expo/code-signing-certificates-0.0.2" + (sources."@expo/config-7.0.1" // { + dependencies = [ + sources."semver-7.3.2" + ]; + }) + sources."@expo/config-plugins-5.0.1" + sources."@expo/config-types-46.0.2" + sources."@expo/eas-build-job-0.2.94" + (sources."@expo/eas-json-2.2.0" // { + dependencies = [ + sources."@babel/code-frame-7.18.6" + ]; + }) + (sources."@expo/image-utils-0.3.20" // { + dependencies = [ + sources."@expo/spawn-async-1.5.0" + sources."fs-extra-9.0.0" + sources."mime-2.6.0" + sources."semver-7.3.2" + ]; + }) + sources."@expo/json-file-8.2.36" + sources."@expo/multipart-body-parser-1.1.0" + sources."@expo/package-manager-0.0.56" + sources."@expo/pkcs12-0.0.8" + (sources."@expo/plist-0.0.18" // { + dependencies = [ + sources."xmlbuilder-14.0.0" + ]; + }) + sources."@expo/plugin-autocomplete-1.4.0" + sources."@expo/plugin-help-5.3.0" + sources."@expo/plugin-warn-if-update-available-2.3.0" + (sources."@expo/prebuild-config-5.0.3" // { + dependencies = [ + sources."fs-extra-9.1.0" + sources."semver-7.3.2" + sources."universalify-2.0.0" + ]; + }) + sources."@expo/results-1.0.0" + sources."@expo/rudder-sdk-node-1.1.1" + sources."@expo/sdk-runtime-versions-1.0.0" + (sources."@expo/spawn-async-1.7.0" // { + dependencies = [ + sources."cross-spawn-7.0.3" + sources."path-key-3.1.1" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" + sources."which-2.0.2" + ]; + }) + sources."@expo/timeago.js-1.0.0" + sources."@graphql-typed-document-node/core-3.1.1" + sources."@hapi/hoek-9.3.0" + sources."@hapi/topo-5.1.0" + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" + (sources."@oclif/core-1.13.10" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."fs-extra-9.1.0" + sources."has-flag-4.0.0" + sources."supports-color-8.1.1" + sources."universalify-2.0.0" + ]; + }) + sources."@oclif/linewrap-1.0.0" + sources."@oclif/screen-3.0.2" + sources."@react-native/normalize-color-2.0.0" + sources."@segment/loosely-validate-event-2.0.0" + sources."@sideway/address-4.1.4" + sources."@sideway/formula-3.0.0" + sources."@sideway/pinpoint-2.0.0" + sources."@urql/core-2.6.1" + sources."@urql/exchange-retry-0.3.3" + sources."@xmldom/xmldom-0.7.5" + sources."agent-base-6.0.2" + sources."ajv-6.12.6" + (sources."ansi-escapes-4.3.2" // { + dependencies = [ + sources."type-fest-0.21.3" + ]; + }) + sources."ansi-regex-5.0.1" + sources."ansi-styles-3.2.1" + sources."ansicolors-0.3.2" + sources."any-promise-1.3.0" + sources."argparse-1.0.10" + sources."array-union-2.1.0" + sources."asn1-0.2.6" + sources."async-3.2.4" + sources."asynckit-0.4.0" + sources."at-least-node-1.0.0" + sources."balanced-match-1.0.2" + sources."base64-js-1.5.1" + sources."better-opn-3.0.2" + sources."big-integer-1.6.51" + sources."bplist-creator-0.1.1" + sources."bplist-parser-0.3.2" + sources."brace-expansion-1.1.11" + sources."braces-3.0.2" + sources."builtins-1.0.3" + sources."cardinal-2.1.1" + (sources."chalk-4.1.2" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) + sources."charenc-0.0.2" + sources."chownr-2.0.0" + (sources."clean-stack-3.0.1" // { + dependencies = [ + sources."escape-string-regexp-4.0.0" + ]; + }) + sources."cli-cursor-3.1.0" + sources."cli-progress-3.11.2" + sources."cli-spinners-2.7.0" + sources."cli-table3-0.6.2" + sources."clone-1.0.4" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."combined-stream-1.0.8" + sources."commander-4.1.1" + sources."component-type-1.2.1" + sources."concat-map-0.0.1" + sources."content-type-1.0.4" + (sources."cross-spawn-6.0.5" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) + sources."crypt-0.0.2" + sources."crypto-random-string-1.0.0" + sources."dateformat-4.6.3" + sources."debug-4.3.4" + sources."defaults-1.0.4" + sources."define-lazy-prop-2.0.0" + sources."delayed-stream-1.0.0" + sources."dicer-0.3.1" + sources."dir-glob-3.0.1" + sources."domino-2.1.6" + sources."ejs-3.1.8" + sources."emoji-regex-8.0.0" + sources."encoding-0.1.13" + sources."env-paths-2.2.0" + sources."env-string-1.0.1" + sources."envinfo-7.8.1" + sources."err-code-2.0.3" + sources."error-ex-1.3.2" + sources."escape-string-regexp-1.0.5" + sources."esprima-4.0.1" + (sources."expo-modules-autolinking-0.11.0" // { + dependencies = [ + sources."commander-7.2.0" + sources."fs-extra-9.1.0" + sources."universalify-2.0.0" + ]; + }) + sources."fast-deep-equal-3.1.3" + sources."fast-glob-3.2.11" + sources."fast-json-stable-stringify-2.1.0" + sources."fastq-1.13.0" + sources."fetch-retry-4.1.1" + sources."figures-3.2.0" + sources."filelist-1.0.4" + sources."fill-range-7.0.1" + sources."find-up-5.0.0" + sources."find-yarn-workspace-root-2.0.0" + sources."form-data-4.0.0" + (sources."fs-extra-10.1.0" // { + dependencies = [ + sources."universalify-2.0.0" + ]; + }) + sources."fs-minipass-2.1.0" + sources."fs.realpath-1.0.0" + sources."get-package-type-0.1.0" + sources."getenv-1.0.0" + (sources."glob-7.1.6" // { + dependencies = [ + sources."minimatch-3.1.2" + ]; + }) + sources."glob-parent-5.1.2" + sources."globby-11.1.0" + sources."golden-fleece-1.0.9" + sources."graceful-fs-4.2.10" + sources."gradle-to-js-2.0.1" + sources."graphql-16.5.0" + sources."graphql-tag-2.12.6" + sources."has-flag-3.0.0" + sources."hosted-git-info-3.0.8" + sources."http-call-5.3.0" + sources."https-proxy-agent-5.0.1" + sources."hyperlinker-1.0.0" + sources."iconv-lite-0.6.3" + sources."ignore-5.2.0" + sources."imurmurhash-0.1.4" + sources."indent-string-4.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.4" + sources."is-arrayish-0.2.1" + sources."is-buffer-1.1.6" + sources."is-docker-2.2.1" + sources."is-extglob-2.1.1" + sources."is-fullwidth-code-point-3.0.0" + sources."is-glob-4.0.3" + sources."is-interactive-1.0.0" + sources."is-number-7.0.0" + sources."is-retry-allowed-1.2.0" + sources."is-stream-2.0.1" + sources."is-unicode-supported-0.1.0" + sources."is-wsl-2.2.0" + sources."isexe-2.0.0" + (sources."jake-10.8.5" // { + dependencies = [ + sources."minimatch-3.1.2" + ]; + }) + sources."jimp-compact-0.16.1" + sources."jks-js-1.0.2" + sources."joi-17.6.0" + sources."join-component-1.1.0" + sources."js-tokens-4.0.0" + sources."js-yaml-3.14.1" + sources."json-parse-better-errors-1.0.2" + sources."json-schema-traverse-0.4.1" + sources."json5-1.0.1" + (sources."jsonfile-6.1.0" // { + dependencies = [ + sources."universalify-2.0.0" + ]; + }) + sources."keychain-1.3.0" + sources."kleur-3.0.3" + sources."lines-and-columns-1.2.4" + sources."locate-path-6.0.0" + sources."lodash.merge-4.6.2" + sources."log-symbols-4.1.0" + sources."lru-cache-6.0.0" + sources."md5-2.3.0" + sources."merge2-1.4.1" + sources."micromatch-4.0.5" + sources."mime-3.0.0" + sources."mime-db-1.52.0" + sources."mime-types-2.1.35" + sources."mimic-fn-2.1.0" + (sources."minimatch-5.1.0" // { + dependencies = [ + sources."brace-expansion-2.0.1" + ]; + }) + sources."minimist-1.2.6" + sources."minipass-3.3.5" + sources."minizlib-2.1.2" + sources."mkdirp-0.5.6" + sources."ms-2.1.2" + sources."mute-stream-0.0.8" + (sources."mv-2.1.1" // { + dependencies = [ + sources."glob-6.0.4" + sources."minimatch-3.1.2" + sources."rimraf-2.4.5" + ]; + }) + sources."mz-2.7.0" + sources."nanoid-3.3.4" + sources."natural-orderby-2.0.3" + sources."ncp-2.0.0" + sources."nice-try-1.0.5" + sources."node-fetch-2.6.7" + sources."node-forge-1.3.1" + sources."node-int64-0.4.0" + sources."node-rsa-1.1.1" + (sources."npm-package-arg-7.0.0" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) + sources."nullthrows-1.1.1" + sources."object-assign-4.1.1" + sources."object-treeify-1.1.33" + sources."once-1.4.0" + sources."onetime-5.1.2" + sources."open-8.4.0" + sources."ora-5.1.0" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."osenv-0.1.5" + sources."p-limit-3.1.0" + sources."p-locate-5.0.0" + sources."p-try-2.2.0" + sources."parse-json-4.0.0" + sources."parse-png-2.1.0" + (sources."password-prompt-1.1.2" // { + dependencies = [ + sources."ansi-escapes-3.2.0" + ]; + }) + sources."path-exists-4.0.0" + sources."path-is-absolute-1.0.1" + sources."path-key-2.0.1" + sources."path-type-4.0.0" + sources."picomatch-2.3.1" + sources."pirates-4.0.5" + (sources."pkg-dir-4.2.0" // { + dependencies = [ + sources."find-up-4.1.0" + sources."locate-path-5.0.0" + sources."p-limit-2.3.0" + sources."p-locate-4.1.0" + ]; + }) + sources."plist-3.0.6" + sources."pngjs-3.4.0" + sources."promise-limit-2.7.0" + sources."promise-retry-2.0.1" + sources."prompts-2.4.2" + sources."punycode-2.1.1" + sources."qrcode-terminal-0.12.0" + sources."queue-microtask-1.2.3" + sources."redeyed-2.1.1" + sources."remove-trailing-slash-0.1.1" + sources."require-from-string-2.0.2" + sources."resolve-from-5.0.0" + sources."restore-cursor-3.1.0" + sources."retry-0.12.0" + sources."reusify-1.0.4" + sources."rimraf-3.0.2" + sources."run-parallel-1.2.0" + sources."safe-buffer-5.2.1" + sources."safe-json-stringify-1.2.0" + sources."safer-buffer-2.1.2" + sources."sax-1.2.4" + sources."semver-7.3.7" + sources."shebang-command-1.2.0" + sources."shebang-regex-1.0.0" + sources."signal-exit-3.0.7" + sources."simple-plist-1.4.0" + sources."sisteransi-1.0.5" + sources."slash-3.0.0" + sources."slugify-1.6.5" + sources."split-1.0.1" + sources."sprintf-js-1.0.3" + sources."stream-buffers-2.2.0" + sources."streamsearch-1.1.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + sources."structured-headers-0.4.1" + sources."sucrase-3.28.0" + sources."sudo-prompt-9.1.1" + sources."supports-color-5.5.0" + (sources."supports-hyperlinks-2.3.0" // { + dependencies = [ + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) + (sources."tar-6.1.11" // { + dependencies = [ + sources."mkdirp-1.0.4" + ]; + }) + sources."temp-dir-1.0.0" + sources."tempy-0.3.0" + sources."terminal-link-2.1.1" + sources."thenify-3.3.1" + sources."thenify-all-1.6.0" + sources."through-2.3.8" + sources."to-regex-range-5.0.1" + sources."tr46-0.0.3" + sources."ts-interface-checker-0.1.13" + sources."tslib-2.4.0" + sources."tunnel-agent-0.6.0" + sources."turndown-7.1.1" + sources."type-fest-0.3.1" + sources."unique-string-1.0.0" + sources."universalify-1.0.0" + sources."untildify-4.0.0" + sources."uri-js-4.4.1" + sources."uuid-8.3.2" + sources."validate-npm-package-name-3.0.0" + sources."wcwidth-1.0.1" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" + sources."which-1.3.1" + sources."widest-line-3.1.0" + sources."wonka-4.0.15" + (sources."wrap-ansi-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + ]; + }) + sources."wrappy-1.0.2" + sources."write-file-atomic-2.4.3" + (sources."xcode-3.0.1" // { + dependencies = [ + sources."uuid-7.0.3" + ]; + }) + (sources."xml2js-0.4.23" // { + dependencies = [ + sources."xmlbuilder-11.0.1" + ]; + }) + sources."xmlbuilder-15.1.1" + sources."yallist-4.0.0" + sources."yocto-queue-0.1.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "EAS command line tool"; + homepage = "https://github.com/expo/eas-cli"; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; elm-oracle = nodeEnv.buildNodePackage { name = "elm-oracle"; packageName = "elm-oracle"; @@ -96904,13 +97617,13 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -96927,28 +97640,28 @@ in sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" sources."@babel/helper-plugin-utils-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/parser-7.19.4" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-parameters-7.18.8" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" @@ -97007,7 +97720,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -97310,17 +98023,17 @@ in }) sources."@fluentui/date-time-utilities-8.5.2" sources."@fluentui/dom-utilities-2.2.2" - sources."@fluentui/font-icons-mdl2-8.5.0" - sources."@fluentui/foundation-legacy-8.2.20" + sources."@fluentui/font-icons-mdl2-8.5.1" + sources."@fluentui/foundation-legacy-8.2.21" sources."@fluentui/keyboard-key-0.4.2" sources."@fluentui/merge-styles-8.5.3" - sources."@fluentui/react-8.97.2" - sources."@fluentui/react-focus-8.8.5" + sources."@fluentui/react-8.98.0" + sources."@fluentui/react-focus-8.8.6" sources."@fluentui/react-hooks-8.6.11" sources."@fluentui/react-portal-compat-context-9.0.2" sources."@fluentui/react-window-provider-2.2.2" sources."@fluentui/set-version-8.2.2" - sources."@fluentui/style-utilities-8.7.12" + sources."@fluentui/style-utilities-8.8.0" sources."@fluentui/theme-2.6.16" sources."@fluentui/utilities-8.13.1" sources."@gar/promisify-1.1.3" @@ -97351,7 +98064,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@js-joda/core-5.4.1" sources."@mapbox/node-pre-gyp-1.0.10" sources."@microsoft/load-themed-styles-1.10.295" @@ -97391,45 +98104,45 @@ in }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.3" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.1" sources."@tokenizer/token-0.3.0" @@ -97837,7 +98550,7 @@ in sources."each-props-1.3.2" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -99153,7 +99866,7 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" (sources."@eslint/eslintrc-0.4.3" // { dependencies = [ sources."eslint-visitor-keys-1.3.0" @@ -99493,11 +100206,11 @@ in sources."bindings-1.5.0" sources."bluebird-3.7.2" sources."bn.js-5.2.1" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" - sources."qs-6.10.3" + sources."qs-6.11.0" ]; }) (sources."bonjour-3.5.0" // { @@ -99786,7 +100499,7 @@ in sources."which-2.0.2" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-properties-1.1.4" sources."define-property-2.0.2" (sources."del-4.1.1" // { @@ -99840,7 +100553,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -99993,11 +100706,11 @@ in sources."ms-2.0.0" ]; }) - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" - sources."qs-6.10.3" + sources."qs-6.11.0" ]; }) sources."extend-3.0.2" @@ -101481,15 +102194,14 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "8.24.0"; + version = "8.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.24.0.tgz"; - sha512 = "dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.25.0.tgz"; + sha512 = "DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A=="; }; dependencies = [ - sources."@eslint/eslintrc-1.3.2" + sources."@eslint/eslintrc-1.3.3" sources."@humanwhocodes/config-array-0.10.7" - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -101516,7 +102228,7 @@ in sources."dir-glob-3.0.1" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.24.0" + sources."eslint-8.25.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -101624,9 +102336,8 @@ in sha512 = "qOJ9cTi5AaH5bOgEoCkv41DJ637mHgzffbOLojwU4wadwC6qbR+OxVJRvVzH0v2XYmQOvw4eiJK7ivrr5SvzsA=="; }; dependencies = [ - sources."@eslint/eslintrc-1.3.2" + sources."@eslint/eslintrc-1.3.3" sources."@humanwhocodes/config-array-0.10.7" - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -101658,7 +102369,7 @@ in sources."dir-glob-3.0.1" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.24.0" + sources."eslint-8.25.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -101790,14 +102501,14 @@ in ]; }) sources."@babel/code-frame-7.10.4" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.9.0" // { dependencies = [ sources."json5-2.2.1" sources."semver-5.7.1" ]; }) - sources."@babel/generator-7.19.3" + sources."@babel/generator-7.19.4" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" (sources."@babel/helper-compilation-targets-7.19.3" // { @@ -101823,20 +102534,20 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" (sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" // { dependencies = [ @@ -101864,7 +102575,7 @@ in sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" @@ -101893,10 +102604,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -101933,7 +102644,7 @@ in sources."@babel/plugin-transform-typescript-7.19.3" sources."@babel/plugin-transform-unicode-escapes-7.18.10" sources."@babel/plugin-transform-unicode-regex-7.18.6" - (sources."@babel/preset-env-7.19.3" // { + (sources."@babel/preset-env-7.19.4" // { dependencies = [ sources."semver-6.3.0" ]; @@ -101945,18 +102656,18 @@ in sources."@babel/code-frame-7.18.6" ]; }) - (sources."@babel/traverse-7.19.3" // { + (sources."@babel/traverse-7.19.4" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; }) - sources."@babel/types-7.19.3" + sources."@babel/types-7.19.4" sources."@colors/colors-1.5.0" sources."@expo/apple-utils-0.0.0-alpha.31" sources."@expo/bunyan-4.0.0" (sources."@expo/cli-0.3.1" // { dependencies = [ - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" (sources."@expo/config-7.0.1" // { dependencies = [ sources."semver-7.3.2" @@ -102073,7 +102784,7 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -102320,7 +103031,7 @@ in sources."chokidar-3.5.3" sources."chownr-2.0.0" sources."chrome-trace-event-1.0.3" - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" sources."cipher-base-1.0.4" (sources."class-utils-0.3.6" // { dependencies = [ @@ -102505,7 +103216,7 @@ in sources."deep-extend-0.6.0" sources."deepmerge-4.2.2" sources."default-gateway-4.2.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" sources."define-properties-1.1.4" @@ -102560,7 +103271,7 @@ in sources."duplexer3-0.1.5" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -102634,7 +103345,7 @@ in }) (sources."expo-46.0.15" // { dependencies = [ - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."commander-7.2.0" sources."expo-modules-autolinking-0.10.3" sources."fs-extra-9.1.0" @@ -103968,7 +104679,7 @@ in sources."anymatch-2.0.0" sources."array-union-1.0.2" sources."binary-extensions-1.13.1" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."debug-2.6.9" ]; @@ -103980,7 +104691,7 @@ in sources."cookie-0.5.0" sources."del-4.1.1" sources."depd-2.0.0" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."debug-2.6.9" ]; @@ -104008,7 +104719,7 @@ in sources."p-map-2.1.0" sources."p-retry-3.0.1" sources."pify-2.3.0" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."raw-body-2.5.1" sources."readdirp-2.2.1" sources."rimraf-2.7.1" @@ -104125,9 +104836,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -104140,28 +104851,28 @@ in sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" sources."@babel/helper-plugin-utils-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/parser-7.19.4" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-parameters-7.18.8" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@types/minimist-1.2.2" sources."@types/node-18.8.3" sources."@types/normalize-package-data-2.4.1" @@ -104220,7 +104931,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -104440,9 +105151,8 @@ in sources."@oclif/command-1.8.18" sources."@oclif/config-1.18.5" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.2" // { + (sources."@oclif/help-1.0.3" // { dependencies = [ - sources."@oclif/config-1.18.3" sources."wrap-ansi-6.2.0" ]; }) @@ -104560,7 +105270,7 @@ in sources."decode-uri-component-0.2.0" sources."decompress-response-3.3.0" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."delayed-stream-1.0.0" sources."dir-glob-3.0.1" sources."dotenv-8.6.0" @@ -104819,7 +105529,7 @@ in sources."js-yaml-4.1.0" ]; }) - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" sources."@esbuild/android-arm-0.15.10" @@ -105051,7 +105761,7 @@ in sources."deep-extend-0.6.0" sources."deep-freeze-0.0.1" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" sources."degenerator-3.0.2" sources."delayed-stream-1.0.0" @@ -105129,12 +105839,10 @@ in ]; }) sources."exegesis-express-4.0.0" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" sources."debug-2.6.9" sources."ms-2.0.0" - sources."qs-6.10.3" ]; }) sources."extend-3.0.2" @@ -105795,7 +106503,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."eastasianwidth-0.2.0" sources."emoji-regex-9.2.2" sources."error-ex-1.3.2" @@ -106727,13 +107435,13 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -106754,32 +107462,32 @@ in sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-syntax-typescript-7.18.6" sources."@babel/plugin-transform-typescript-7.19.3" sources."@babel/preset-typescript-7.18.6" - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@lmdb/lmdb-darwin-arm64-2.5.3" sources."@lmdb/lmdb-darwin-x64-2.5.3" sources."@lmdb/lmdb-linux-arm-2.5.3" @@ -106894,7 +107602,7 @@ in sources."domutils-2.8.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -107326,7 +108034,7 @@ in sources."debug-4.3.4" sources."debuglog-1.0.1" sources."deep-extend-0.6.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."delegates-1.0.0" sources."depd-1.1.2" sources."deprecation-2.3.1" @@ -108022,7 +108730,7 @@ in sources."mimic-response-3.1.0" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."delay-5.0.0" sources."delayed-stream-1.0.0" @@ -108159,7 +108867,7 @@ in sources."camelcase-keys-7.0.2" sources."chalk-5.1.0" sources."chardet-0.7.0" - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" sources."cli-boxes-3.0.0" sources."cli-cursor-4.0.0" sources."cli-spinners-2.7.0" @@ -108194,7 +108902,7 @@ in }) sources."deep-extend-0.6.0" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."degenerator-3.0.2" sources."depd-2.0.0" @@ -108264,7 +108972,7 @@ in (sources."inquirer-autocomplete-prompt-3.0.0" // { dependencies = [ sources."ansi-escapes-6.0.0" - sources."type-fest-3.0.0" + sources."type-fest-3.1.0" ]; }) sources."ip-1.1.8" @@ -108680,7 +109388,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@exodus/schemasafe-1.0.0-rc.7" + sources."@exodus/schemasafe-1.0.0-rc.9" sources."@graphql-cli/common-4.1.0" (sources."@graphql-cli/init-4.1.0" // { dependencies = [ @@ -108861,7 +109569,7 @@ in sources."decompress-response-3.3.0" sources."deep-equal-2.0.5" sources."deep-extend-0.6.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" @@ -109263,12 +109971,12 @@ in dependencies = [ sources."@ardatan/sync-fetch-0.0.1" sources."@babel/code-frame-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/polyfill-7.12.1" - sources."@babel/types-7.19.3" + sources."@babel/types-7.19.4" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" sources."@graphql-tools/batch-execute-8.5.6" sources."@graphql-tools/delegate-9.0.8" @@ -109531,45 +110239,45 @@ in sources."@peculiar/asn1-schema-2.3.0" sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.0" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -109998,7 +110706,7 @@ in dependencies = [ sources."accepts-1.3.8" sources."array-flatten-1.1.1" - sources."body-parser-1.20.0" + sources."body-parser-1.20.1" sources."bytes-3.1.2" sources."call-bind-1.0.2" sources."content-disposition-0.5.4" @@ -110012,7 +110720,7 @@ in sources."encodeurl-1.0.2" sources."escape-html-1.0.3" sources."etag-1.8.1" - sources."express-4.18.1" + sources."express-4.18.2" sources."express-ws-2.0.0" sources."finalhandler-1.2.0" sources."forwarded-0.2.0" @@ -110040,7 +110748,7 @@ in sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."proxy-addr-2.0.7" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" sources."safe-buffer-5.2.1" @@ -112087,7 +112795,7 @@ in sources."concat-map-0.0.1" sources."cross-spawn-6.0.5" sources."decimal.js-7.5.1" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."end-of-stream-1.4.4" sources."execa-1.0.0" sources."fs-extra-0.24.0" @@ -114102,7 +114810,7 @@ in sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg=="; }; dependencies = [ - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@types/linkify-it-3.0.2" sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" @@ -114395,10 +115103,8 @@ in sources."escape-goat-2.1.1" sources."escape-html-1.0.3" sources."etag-1.8.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" - sources."qs-6.10.3" sources."safe-buffer-5.2.1" ]; }) @@ -114717,10 +115423,8 @@ in sources."etag-1.8.1" sources."expand-brackets-0.1.5" sources."expand-range-1.8.2" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" - sources."qs-6.10.3" sources."safe-buffer-5.2.1" ]; }) @@ -115187,9 +115891,8 @@ in sources."@oclif/command-1.8.18" sources."@oclif/config-1.18.5" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.2" // { + (sources."@oclif/help-1.0.3" // { dependencies = [ - sources."@oclif/config-1.18.3" sources."wrap-ansi-6.2.0" ]; }) @@ -115618,13 +116321,13 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.19.3" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -115641,26 +116344,26 @@ in sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" sources."@babel/helper-plugin-utils-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" sources."@babel/node-7.19.1" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/register-7.18.9" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ (sources."make-dir-3.1.0" // { @@ -115739,7 +116442,7 @@ in sources."bitwise-xor-0.0.0" sources."bl-4.1.0" sources."bn.js-4.12.0" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."debug-2.6.9" sources."iconv-lite-0.4.24" @@ -115759,7 +116462,7 @@ in sources."caniuse-lite-1.0.30001418" sources."canvas-2.10.1" sources."chalk-2.4.2" - sources."chardet-1.4.0" + sources."chardet-1.5.0" sources."chownr-2.0.0" sources."cipher-base-1.0.4" sources."cliui-7.0.4" @@ -115821,7 +116524,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -115840,7 +116543,7 @@ in sources."etag-1.8.1" sources."events-3.3.0" sources."expand-template-2.0.3" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" @@ -116086,7 +116789,7 @@ in sources."punycode-2.1.1" sources."pvtsutils-1.3.2" sources."pvutils-1.1.3" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."query-string-6.14.1" sources."querystringify-2.2.0" sources."queue-microtask-1.2.3" @@ -116400,7 +117103,7 @@ in sources."decamelize-1.2.0" sources."deep-equal-0.2.2" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."delayed-stream-1.0.0" sources."dom-serializer-0.1.1" sources."domelementtype-1.3.1" @@ -116659,7 +117362,7 @@ in sources."decamelize-1.2.0" sources."deep-equal-0.2.2" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."delayed-stream-1.0.0" sources."dom-serializer-0.1.1" sources."domelementtype-1.3.1" @@ -116849,10 +117552,10 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-5.6.1.tgz"; - sha512 = "gAZxKlQVpYpAvzXMOpc6VfFa6WYZmdD7u6js1u3wu7tOwnwHcSQK+qGOO3/Ky/YP+LbrXuH0BnLj09d+ev9OwA=="; + url = "https://registry.npmjs.org/lerna/-/lerna-5.6.2.tgz"; + sha512 = "Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -116870,39 +117573,39 @@ in sources."@gar/promisify-1.1.3" sources."@hutson/parse-repository-url-3.0.2" sources."@isaacs/string-locale-compare-1.1.0" - sources."@lerna/add-5.6.1" - sources."@lerna/bootstrap-5.6.1" - sources."@lerna/changed-5.6.1" - sources."@lerna/check-working-tree-5.6.1" - sources."@lerna/child-process-5.6.1" - sources."@lerna/clean-5.6.1" - sources."@lerna/cli-5.6.1" - sources."@lerna/collect-uncommitted-5.6.1" - sources."@lerna/collect-updates-5.6.1" - sources."@lerna/command-5.6.1" - sources."@lerna/conventional-commits-5.6.1" - (sources."@lerna/create-5.6.1" // { + sources."@lerna/add-5.6.2" + sources."@lerna/bootstrap-5.6.2" + sources."@lerna/changed-5.6.2" + sources."@lerna/check-working-tree-5.6.2" + sources."@lerna/child-process-5.6.2" + sources."@lerna/clean-5.6.2" + sources."@lerna/cli-5.6.2" + sources."@lerna/collect-uncommitted-5.6.2" + sources."@lerna/collect-updates-5.6.2" + sources."@lerna/command-5.6.2" + sources."@lerna/conventional-commits-5.6.2" + (sources."@lerna/create-5.6.2" // { dependencies = [ sources."builtins-5.0.1" sources."validate-npm-package-name-4.0.0" sources."yargs-parser-20.2.4" ]; }) - sources."@lerna/create-symlink-5.6.1" - sources."@lerna/describe-ref-5.6.1" - sources."@lerna/diff-5.6.1" - sources."@lerna/exec-5.6.1" - sources."@lerna/filter-options-5.6.1" - sources."@lerna/filter-packages-5.6.1" - sources."@lerna/get-npm-exec-opts-5.6.1" - sources."@lerna/get-packed-5.6.1" - sources."@lerna/github-client-5.6.1" - sources."@lerna/gitlab-client-5.6.1" - sources."@lerna/global-options-5.6.1" - sources."@lerna/has-npm-version-5.6.1" - sources."@lerna/import-5.6.1" - sources."@lerna/info-5.6.1" - (sources."@lerna/init-5.6.1" // { + sources."@lerna/create-symlink-5.6.2" + sources."@lerna/describe-ref-5.6.2" + sources."@lerna/diff-5.6.2" + sources."@lerna/exec-5.6.2" + sources."@lerna/filter-options-5.6.2" + sources."@lerna/filter-packages-5.6.2" + sources."@lerna/get-npm-exec-opts-5.6.2" + sources."@lerna/get-packed-5.6.2" + sources."@lerna/github-client-5.6.2" + sources."@lerna/gitlab-client-5.6.2" + sources."@lerna/global-options-5.6.2" + sources."@lerna/has-npm-version-5.6.2" + sources."@lerna/import-5.6.2" + sources."@lerna/info-5.6.2" + (sources."@lerna/init-5.6.2" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -116913,23 +117616,23 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/link-5.6.1" - sources."@lerna/list-5.6.1" - sources."@lerna/listable-5.6.1" - sources."@lerna/log-packed-5.6.1" - sources."@lerna/npm-conf-5.6.1" - sources."@lerna/npm-dist-tag-5.6.1" - sources."@lerna/npm-install-5.6.1" - sources."@lerna/npm-publish-5.6.1" - sources."@lerna/npm-run-script-5.6.1" - sources."@lerna/otplease-5.6.1" - sources."@lerna/output-5.6.1" - sources."@lerna/pack-directory-5.6.1" - sources."@lerna/package-5.6.1" - sources."@lerna/package-graph-5.6.1" - sources."@lerna/prerelease-id-from-version-5.6.1" - sources."@lerna/profiler-5.6.1" - (sources."@lerna/project-5.6.1" // { + sources."@lerna/link-5.6.2" + sources."@lerna/list-5.6.2" + sources."@lerna/listable-5.6.2" + sources."@lerna/log-packed-5.6.2" + sources."@lerna/npm-conf-5.6.2" + sources."@lerna/npm-dist-tag-5.6.2" + sources."@lerna/npm-install-5.6.2" + sources."@lerna/npm-publish-5.6.2" + sources."@lerna/npm-run-script-5.6.2" + sources."@lerna/otplease-5.6.2" + sources."@lerna/output-5.6.2" + sources."@lerna/pack-directory-5.6.2" + sources."@lerna/package-5.6.2" + sources."@lerna/package-graph-5.6.2" + sources."@lerna/prerelease-id-from-version-5.6.2" + sources."@lerna/profiler-5.6.2" + (sources."@lerna/project-5.6.2" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -116940,26 +117643,26 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/prompt-5.6.1" - sources."@lerna/publish-5.6.1" - sources."@lerna/pulse-till-done-5.6.1" - sources."@lerna/query-graph-5.6.1" - sources."@lerna/resolve-symlink-5.6.1" - sources."@lerna/rimraf-dir-5.6.1" - sources."@lerna/run-5.6.1" - sources."@lerna/run-lifecycle-5.6.1" - sources."@lerna/run-topologically-5.6.1" - sources."@lerna/symlink-binary-5.6.1" - sources."@lerna/symlink-dependencies-5.6.1" - (sources."@lerna/temp-write-5.6.1" // { + sources."@lerna/prompt-5.6.2" + sources."@lerna/publish-5.6.2" + sources."@lerna/pulse-till-done-5.6.2" + sources."@lerna/query-graph-5.6.2" + sources."@lerna/resolve-symlink-5.6.2" + sources."@lerna/rimraf-dir-5.6.2" + sources."@lerna/run-5.6.2" + sources."@lerna/run-lifecycle-5.6.2" + sources."@lerna/run-topologically-5.6.2" + sources."@lerna/symlink-binary-5.6.2" + sources."@lerna/symlink-dependencies-5.6.2" + (sources."@lerna/temp-write-5.6.2" // { dependencies = [ sources."make-dir-3.1.0" sources."semver-6.3.0" ]; }) - sources."@lerna/timer-5.6.1" - sources."@lerna/validation-error-5.6.1" - (sources."@lerna/version-5.6.1" // { + sources."@lerna/timer-5.6.2" + sources."@lerna/validation-error-5.6.2" + (sources."@lerna/version-5.6.2" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -116973,7 +117676,7 @@ in sources."write-json-file-4.3.0" ]; }) - (sources."@lerna/write-log-file-5.6.1" // { + (sources."@lerna/write-log-file-5.6.2" // { dependencies = [ sources."write-file-atomic-4.0.2" ]; @@ -117041,24 +117744,24 @@ in sources."@swc-node/core-1.9.1" sources."@swc-node/register-1.5.4" sources."@swc-node/sourcemap-support-0.2.2" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - sources."@swc/core-android-arm64-1.3.5" - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - sources."@swc/core-freebsd-x64-1.3.5" - sources."@swc/core-linux-arm-gnueabihf-1.3.5" - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - sources."@swc/core-win32-arm64-msvc-1.3.5" - sources."@swc/core-win32-ia32-msvc-1.3.5" - sources."@swc/core-win32-x64-msvc-1.3.5" + sources."@swc/core-android-arm64-1.3.6" + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + sources."@swc/core-freebsd-x64-1.3.6" + sources."@swc/core-linux-arm-gnueabihf-1.3.6" + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + sources."@swc/core-win32-arm64-msvc-1.3.6" + sources."@swc/core-win32-ia32-msvc-1.3.6" + sources."@swc/core-win32-x64-msvc-1.3.6" sources."@swc/wasm-1.2.130" sources."@tootallnate/once-2.0.0" sources."@types/json5-0.0.29" @@ -117067,7 +117770,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@yarnpkg/lockfile-1.1.0" - (sources."@yarnpkg/parsers-3.0.0-rc.22" // { + (sources."@yarnpkg/parsers-3.0.0-rc.24" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -117186,7 +117889,7 @@ in ]; }) sources."dedent-0.7.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -118210,10 +118913,8 @@ in sources."etag-1.8.1" sources."expand-brackets-0.1.5" sources."expand-range-1.8.2" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" - sources."qs-6.10.3" sources."safe-buffer-5.2.1" ]; }) @@ -119068,13 +119769,13 @@ in src = ../../applications/editors/vim/plugins/markdown-preview-nvim; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.0.0" // { dependencies = [ sources."debug-3.2.7" ]; }) - sources."@babel/generator-7.19.3" + sources."@babel/generator-7.19.4" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" (sources."@babel/helper-compilation-targets-7.19.3" // { @@ -119102,10 +119803,10 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" (sources."@babel/helper-wrap-function-7.19.0" // { @@ -119113,13 +119814,13 @@ in sources."@babel/template-7.18.10" ]; }) - (sources."@babel/helpers-7.19.0" // { + (sources."@babel/helpers-7.19.4" // { dependencies = [ sources."@babel/template-7.18.10" ]; }) sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-proposal-async-generator-functions-7.19.1" sources."@babel/plugin-proposal-class-properties-7.0.0" sources."@babel/plugin-proposal-json-strings-7.18.6" @@ -119136,10 +119837,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -119182,14 +119883,14 @@ in ]; }) sources."@babel/template-7.0.0" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@chemzqm/neovim-5.7.10" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@webassemblyjs/ast-1.7.8" sources."@webassemblyjs/floating-point-hex-parser-1.7.8" sources."@webassemblyjs/helper-api-error-1.7.8" @@ -119412,7 +120113,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -119830,7 +120531,7 @@ in sources."regenerator-runtime-0.13.9" (sources."regenerator-transform-0.15.0" // { dependencies = [ - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" ]; }) sources."regex-not-1.0.2" @@ -120798,7 +121499,7 @@ in sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."detect-node-2.1.0" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { @@ -121073,7 +121774,7 @@ in sources."jest-mock-27.5.1" (sources."jest-util-27.5.1" // { dependencies = [ - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" ]; }) sources."join-component-1.1.0" @@ -121489,7 +122190,7 @@ in sources."biased-opener-0.2.8" sources."big-integer-1.6.51" sources."block-stream-0.0.9" - sources."body-parser-1.20.0" + sources."body-parser-1.20.1" sources."boom-2.10.1" sources."bplist-parser-0.1.1" sources."brace-expansion-1.1.11" @@ -121532,7 +122233,7 @@ in sources."error-ex-1.3.2" sources."escape-html-1.0.3" sources."etag-1.8.1" - sources."express-4.18.1" + sources."express-4.18.2" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."finalhandler-1.2.0" @@ -121646,7 +122347,7 @@ in sources."process-nextick-args-2.0.1" sources."proxy-addr-2.0.7" sources."punycode-1.4.1" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" sources."rc-1.2.8" @@ -121870,7 +122571,7 @@ in sha512 = "B6q576kLw96eKOiqNpNJsUiwl5vRipc46T0w/LUI7O3fPAVxwu5zklIBhE6Iefj8FV1IdbLwXULESqMWlwjlGQ=="; }; dependencies = [ - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@mapbox/node-pre-gyp-1.0.10" sources."@node-red/editor-api-3.0.2" sources."@node-red/editor-client-3.0.2" @@ -123061,10 +123762,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "16.3.8"; + version = "16.3.11"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.3.8.tgz"; - sha512 = "2CUeCWEs+arWQUJH2IEkiZU/Ak2fLBqGkMyM5JDkfnGhz1VHNe3yyGiXD+0JeVmjbXTEpgZ0t6C9VK52atGuAw=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.3.11.tgz"; + sha512 = "MxdqS3kXAJasoEaz5BLqTR1Dak+Dm6PoK2N4KdKcQGUEhdVwt0ggfJ0R0Yym8sWc48CYqEl02HBkUAZFUCufHA=="; }; dependencies = [ sources."@gar/promisify-1.1.3" @@ -123118,7 +123819,7 @@ in sources."camelcase-7.0.0" sources."chalk-5.1.0" sources."chownr-2.0.0" - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" sources."clean-stack-2.2.0" sources."cli-boxes-3.0.0" sources."cli-table-0.3.11" @@ -123541,7 +124242,7 @@ in sources."@asyncapi/specs-3.2.1" sources."@esbuild/android-arm-0.15.10" sources."@esbuild/linux-loong64-0.15.10" - sources."@exodus/schemasafe-1.0.0-rc.7" + sources."@exodus/schemasafe-1.0.0-rc.9" sources."@ibm-cloud/openapi-ruleset-0.37.3" sources."@jsdevtools/ono-7.1.3" sources."@jsep-plugin/regex-1.0.3" @@ -123663,7 +124364,7 @@ in sources."debug-4.3.4" sources."deep-is-0.1.4" sources."deepmerge-2.2.1" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-properties-1.1.4" (sources."degenerator-3.0.2" // { dependencies = [ @@ -123878,7 +124579,7 @@ in sources."onetime-5.1.2" sources."ono-4.0.11" sources."openapi-types-12.0.2" - sources."openapi3-ts-3.1.0" + sources."openapi3-ts-3.1.1" sources."optionator-0.8.3" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" @@ -124031,14 +124732,14 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."json5-2.2.1" sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -124068,16 +124769,16 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.19.1" @@ -124089,7 +124790,7 @@ in sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" @@ -124115,10 +124816,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -124146,16 +124847,16 @@ in sources."@babel/plugin-transform-typeof-symbol-7.18.9" sources."@babel/plugin-transform-unicode-escapes-7.18.10" sources."@babel/plugin-transform-unicode-regex-7.18.6" - (sources."@babel/preset-env-7.19.3" // { + (sources."@babel/preset-env-7.19.4" // { dependencies = [ sources."semver-6.3.0" ]; }) sources."@babel/preset-modules-0.1.5" - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@iarna/toml-2.2.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -124166,7 +124867,7 @@ in ]; }) sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" sources."@parcel/fs-1.11.0" @@ -124370,7 +125071,7 @@ in sources."debug-4.3.4" sources."decode-uri-component-0.2.0" sources."deep-is-0.1.4" - (sources."defaults-1.0.3" // { + (sources."defaults-1.0.4" // { dependencies = [ sources."clone-1.0.4" ]; @@ -124421,7 +125122,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -125085,7 +125786,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@lezer/common-0.15.12" sources."@lezer/lr-0.15.8" sources."@lmdb/lmdb-darwin-arm64-2.5.2" @@ -125169,11 +125870,11 @@ in ]; }) sources."@parcel/workers-2.7.0" - sources."@swc/helpers-0.4.11" + sources."@swc/helpers-0.4.12" sources."@trysound/sax-0.2.0" sources."@types/parse-json-4.0.0" sources."abab-2.0.6" - sources."abortcontroller-polyfill-1.7.3" + sources."abortcontroller-polyfill-1.7.5" sources."acorn-8.8.0" (sources."acorn-globals-4.3.4" // { dependencies = [ @@ -125249,7 +125950,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."entities-3.0.1" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -125499,7 +126200,7 @@ in sources."bintrees-1.0.2" sources."bl-1.2.3" sources."bluebird-3.7.2" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."bytes-3.1.2" sources."content-type-1.0.4" @@ -125553,7 +126254,7 @@ in sources."escape-html-1.0.3" sources."esprima-4.0.1" sources."etag-1.8.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."content-type-1.0.4" sources."safe-buffer-5.2.1" @@ -125659,7 +126360,7 @@ in sources."prr-1.0.1" sources."psl-1.9.0" sources."punycode-2.1.1" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."range-parser-1.2.1" (sources."raw-body-2.5.1" // { dependencies = [ @@ -126271,10 +126972,8 @@ in sources."escape-html-1.0.3" sources."etag-1.8.1" sources."events-3.3.0" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" - sources."qs-6.10.3" sources."safe-buffer-5.2.1" ]; }) @@ -126561,7 +127260,7 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -127061,45 +127760,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -127350,9 +128049,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -127363,24 +128062,24 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@istanbuljs/load-nyc-config-1.1.0" sources."@istanbuljs/schema-0.1.3" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@prisma/prisma-fmt-wasm-4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" @@ -127407,7 +128106,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -128404,13 +129103,13 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.19.3" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" (sources."@babel/core-7.19.3" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -128440,16 +129139,16 @@ in sources."@babel/helper-plugin-utils-7.19.0" sources."@babel/helper-remap-async-to-generator-7.18.9" sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.19.1" @@ -128462,7 +129161,7 @@ in sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" + sources."@babel/plugin-proposal-object-rest-spread-7.19.4" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" @@ -128488,10 +129187,10 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.18.9" + sources."@babel/plugin-transform-block-scoping-7.19.4" sources."@babel/plugin-transform-classes-7.19.0" sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.18.13" + sources."@babel/plugin-transform-destructuring-7.19.4" sources."@babel/plugin-transform-dotall-regex-7.18.6" sources."@babel/plugin-transform-duplicate-keys-7.18.9" sources."@babel/plugin-transform-exponentiation-operator-7.18.6" @@ -128526,7 +129225,7 @@ in sources."@babel/plugin-transform-typeof-symbol-7.18.9" sources."@babel/plugin-transform-unicode-escapes-7.18.10" sources."@babel/plugin-transform-unicode-regex-7.18.6" - (sources."@babel/preset-env-7.19.3" // { + (sources."@babel/preset-env-7.19.4" // { dependencies = [ sources."semver-6.3.0" ]; @@ -128535,15 +129234,15 @@ in sources."@babel/preset-react-7.18.6" sources."@babel/preset-stage-0-7.8.3" sources."@babel/register-7.18.9" - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@reach/router-1.3.4" sources."@sindresorhus/is-0.7.0" sources."@types/glob-7.2.0" @@ -128679,7 +129378,7 @@ in sources."blob-0.0.5" sources."bluebird-3.7.2" sources."bn.js-5.2.1" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."bytes-3.1.2" sources."debug-2.6.9" @@ -128965,7 +129664,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -129037,7 +129736,7 @@ in sources."ms-2.0.0" ]; }) - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."cookie-0.5.0" sources."debug-2.6.9" @@ -129659,7 +130358,7 @@ in sources."pumpify-1.5.1" sources."punycode-2.1.1" sources."q-1.5.1" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."query-string-5.1.1" sources."querystring-0.2.0" sources."querystring-es3-0.2.1" @@ -130427,32 +131126,32 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.19.3" + sources."@babel/generator-7.19.4" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" - sources."@babel/runtime-7.19.0" + sources."@babel/parser-7.19.4" + sources."@babel/runtime-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" sources."@emotion/is-prop-valid-1.2.0" sources."@emotion/memoize-0.8.0" sources."@emotion/stylis-0.8.5" sources."@emotion/unitless-0.7.5" - sources."@exodus/schemasafe-1.0.0-rc.7" + sources."@exodus/schemasafe-1.0.0-rc.9" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@redocly/ajv-8.11.0" sources."@redocly/openapi-core-1.0.0-beta.110" sources."@sindresorhus/is-0.14.0" @@ -130600,7 +131299,7 @@ in sources."dompurify-2.4.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -131450,10 +132149,9 @@ in version = "0.3.1059"; src = ../../applications/editors/vscode/extensions/rust-analyzer/build-deps; dependencies = [ - sources."@eslint/eslintrc-1.3.2" + sources."@eslint/eslintrc-1.3.3" sources."@hpcc-js/wasm-1.16.1" sources."@humanwhocodes/config-array-0.10.7" - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -131588,7 +132286,7 @@ in sources."entities-4.4.0" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.24.0" // { + (sources."eslint-8.25.0" // { dependencies = [ sources."eslint-scope-7.1.1" sources."estraverse-5.3.0" @@ -132242,7 +132940,7 @@ in sources."child-process-ext-2.1.1" sources."chokidar-3.5.3" sources."chownr-2.0.0" - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" sources."cli-color-2.0.3" sources."cli-cursor-3.1.0" sources."cli-progress-footer-2.3.2" @@ -132328,7 +133026,7 @@ in sources."get-stream-2.3.1" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."deferred-0.7.11" sources."define-properties-1.1.4" @@ -132710,7 +133408,7 @@ in sources."bcrypt-pbkdf-1.0.2" sources."better-assert-1.0.2" sources."blob-0.0.2" - sources."body-parser-1.20.0" + sources."body-parser-1.20.1" sources."bytes-3.1.2" sources."call-bind-1.0.2" sources."callsite-1.0.0" @@ -132759,7 +133457,7 @@ in sources."escape-html-1.0.3" sources."etag-1.8.1" sources."event-stream-3.3.5" - sources."express-4.18.1" + sources."express-4.18.2" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" @@ -132833,7 +133531,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."punycode-2.1.1" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" sources."read-1.0.7" @@ -133318,10 +134016,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1025.0"; + version = "1.1026.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1025.0.tgz"; - sha512 = "IfEl2BbNjEHEtOImDa3xqKetUwjqSpRcRIsdAKD8cjnk0z2nbn8K6h6qlvnGuci68t2q62Zj3IHZt4S6A4k+gw=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1026.0.tgz"; + sha512 = "sijn2PlTw8hJb41KxZxJO+/eFAAZPnr1VQ8AAjwH7QeGJsC3qVJCu3gtqr/11cM7JACWfs3pa7D++KDnFVd9oQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -133422,7 +134120,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."draftlog-1.0.13" sources."eastasianwidth-0.2.0" sources."emoji-regex-9.2.2" @@ -134780,12 +135478,11 @@ in sources."cross-spawn-6.0.5" ]; }) - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" sources."cookie-0.5.0" sources."proxy-addr-2.0.7" - sources."qs-6.10.3" + sources."qs-6.11.0" ]; }) (sources."express-validator-2.21.0" // { @@ -135789,9 +136486,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -135802,17 +136499,17 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" @@ -135822,49 +136519,49 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -135907,7 +136604,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -136068,17 +136765,17 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.14.36"; + version = "0.14.37"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.36.tgz"; - sha512 = "BJ56yXvuUgRcuvq/BkdbSeNHAapBVe+OwXvQLdLhUvNcKOGMbfDnXbbw7OZvrrH+w/tmXIOi3Hi+QIaGkH8nIg=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.37.tgz"; + sha512 = "gTCIYsI8MasoH0DkvIj3ixGZRglTb89SxMWehoqKJMW5SF4WXcCJyLUGfX71TTUcZqZzMu9k9PlddpkdFK2AzA=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.19.3" + sources."@babel/compat-data-7.19.4" sources."@babel/core-7.19.3" - (sources."@babel/generator-7.19.3" // { + (sources."@babel/generator-7.19.4" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -136089,17 +136786,17 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" sources."@babel/helper-module-transforms-7.19.0" - sources."@babel/helper-simple-access-7.18.6" + sources."@babel/helper-simple-access-7.19.4" sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.18.10" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.19.0" + sources."@babel/helpers-7.19.4" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.19.3" + sources."@babel/parser-7.19.4" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.19.3" - sources."@babel/types-7.19.3" + sources."@babel/traverse-7.19.4" + sources."@babel/types-7.19.4" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" @@ -136112,49 +136809,49 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -136197,7 +136894,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."emmet-2.3.6" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -136284,7 +136981,7 @@ in sources."postcss-8.4.17" sources."postcss-load-config-4.0.1" sources."prettier-2.7.1" - sources."prettier-plugin-svelte-2.7.1" + sources."prettier-plugin-svelte-2.8.0" sources."promise-7.3.1" sources."prr-1.0.1" sources."pug-3.0.2" @@ -136335,7 +137032,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."svelte-3.50.1" sources."svelte-preprocess-4.10.7" - sources."svelte2tsx-0.5.19" + sources."svelte2tsx-0.5.20" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" @@ -137095,45 +137792,45 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -137568,7 +138265,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."acorn-8.8.0" sources."buffer-from-1.1.2" sources."commander-2.20.3" @@ -138835,9 +139532,9 @@ in sha512 = "yvOJavJD+PgyUzvsoLDDzDtgCVBva/HNhEvsFnYVugrWz0qy2hr+/4B4wkzjro4wfPbwz20GQe5h13N4DeUEeA=="; }; dependencies = [ - sources."@babel/runtime-7.19.0" - sources."@babel/runtime-corejs3-7.19.1" - (sources."@eslint/eslintrc-1.3.2" // { + sources."@babel/runtime-7.19.4" + sources."@babel/runtime-corejs3-7.19.4" + (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -138849,7 +139546,6 @@ in sources."ms-2.1.2" ]; }) - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -138899,7 +139595,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.24.0" // { + (sources."eslint-8.25.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -138920,7 +139616,7 @@ in }) sources."eslint-plugin-import-2.26.0" sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.8" // { + (sources."eslint-plugin-react-7.31.9" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -142395,45 +143091,45 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.5" - (sources."@swc/core-android-arm-eabi-1.3.5" // { + sources."@swc/core-1.3.6" + (sources."@swc/core-android-arm-eabi-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.122" ]; }) - (sources."@swc/core-android-arm64-1.3.5" // { + (sources."@swc/core-android-arm64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-darwin-arm64-1.3.5" - sources."@swc/core-darwin-x64-1.3.5" - (sources."@swc/core-freebsd-x64-1.3.5" // { + sources."@swc/core-darwin-arm64-1.3.6" + sources."@swc/core-darwin-x64-1.3.6" + (sources."@swc/core-freebsd-x64-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-linux-arm-gnueabihf-1.3.5" // { + (sources."@swc/core-linux-arm-gnueabihf-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-linux-arm64-gnu-1.3.5" - sources."@swc/core-linux-arm64-musl-1.3.5" - sources."@swc/core-linux-x64-gnu-1.3.5" - sources."@swc/core-linux-x64-musl-1.3.5" - (sources."@swc/core-win32-arm64-msvc-1.3.5" // { + sources."@swc/core-linux-arm64-gnu-1.3.6" + sources."@swc/core-linux-arm64-musl-1.3.6" + sources."@swc/core-linux-x64-gnu-1.3.6" + sources."@swc/core-linux-x64-musl-1.3.6" + (sources."@swc/core-win32-arm64-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - (sources."@swc/core-win32-ia32-msvc-1.3.5" // { + (sources."@swc/core-win32-ia32-msvc-1.3.6" // { dependencies = [ sources."@swc/wasm-1.2.130" ]; }) - sources."@swc/core-win32-x64-msvc-1.3.5" - sources."@swc/wasm-1.3.5" + sources."@swc/core-win32-x64-msvc-1.3.6" + sources."@swc/wasm-1.3.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -142501,10 +143197,10 @@ in typescript-language-server = nodeEnv.buildNodePackage { name = "typescript-language-server"; packageName = "typescript-language-server"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-2.0.0.tgz"; - sha512 = "wBV3iSt2498Wl6wMozCRDyPrL0KsFtthvYqVZ3JFRyreBGlxEe3bfK2bnLSwtRwYAZuO9n1roi/NNn94rT5Y+w=="; + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-2.0.1.tgz"; + sha512 = "UdXkgnP3UkZvQ4v6ma0mxSZ18m9WP6EuFt2nzlCCSCU+fw65J/Wis36Fwp5yBw9JhqAwlH9deFfq9xl2l/J5IQ=="; }; dependencies = [ sources."commander-9.4.1" @@ -142760,11 +143456,9 @@ in sources."eve-0.5.4" sources."events-3.3.0" sources."evp_bytestokey-1.0.3" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ - sources."body-parser-1.20.0" sources."cookie-0.5.0" - sources."qs-6.10.3" ]; }) (sources."express-session-1.17.3" // { @@ -144686,7 +145380,7 @@ in sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" sources."define-property-2.0.2" sources."diff-4.0.2" @@ -145446,7 +146140,7 @@ in sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; }; dependencies = [ - sources."@babel/runtime-corejs3-7.19.1" + sources."@babel/runtime-corejs3-7.19.4" sources."@mapbox/node-pre-gyp-1.0.10" sources."@tootallnate/once-1.1.2" sources."@types/raf-3.4.0" @@ -145671,7 +146365,7 @@ in sources."@devicefarmer/adbkit-3.2.3" sources."@devicefarmer/adbkit-logcat-2.1.2" sources."@devicefarmer/adbkit-monkey-1.2.1" - (sources."@eslint/eslintrc-1.3.2" // { + (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."ajv-6.12.6" sources."espree-9.4.0" @@ -145781,7 +146475,7 @@ in sources."escape-string-regexp-4.0.0" ]; }) - sources."ci-info-3.4.0" + sources."ci-info-3.5.0" sources."cli-boxes-3.0.0" (sources."cliui-7.0.4" // { dependencies = [ @@ -145861,7 +146555,7 @@ in sources."deep-is-0.1.4" sources."deepcopy-2.1.0" sources."deepmerge-4.2.2" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" @@ -146487,7 +147181,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@types/eslint-8.4.6" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" @@ -146519,7 +147213,7 @@ in sources."caniuse-lite-1.0.30001418" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."enhanced-resolve-5.10.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -146588,7 +147282,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@types/eslint-8.4.6" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" @@ -146626,7 +147320,7 @@ in sources."colorette-2.0.19" sources."commander-7.2.0" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."enhanced-resolve-5.10.0" sources."envinfo-7.8.1" sources."es-module-lexer-0.9.3" @@ -146730,7 +147424,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@leichtgewicht/ip-codec-2.0.4" sources."@types/body-parser-1.19.2" sources."@types/bonjour-3.5.10" @@ -146781,7 +147475,7 @@ in sources."balanced-match-1.0.2" sources."batch-0.6.1" sources."binary-extensions-2.2.0" - (sources."body-parser-1.20.0" // { + (sources."body-parser-1.20.1" // { dependencies = [ sources."bytes-3.1.2" ]; @@ -146822,7 +147516,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.4.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.10.0" sources."es-module-lexer-0.9.3" @@ -146839,7 +147533,7 @@ in sources."eventemitter3-4.0.7" sources."events-3.3.0" sources."execa-5.1.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."array-flatten-1.1.1" sources."safe-buffer-5.2.1" @@ -146939,7 +147633,7 @@ in ]; }) sources."punycode-2.1.1" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."randombytes-2.1.0" sources."range-parser-1.2.1" (sources."raw-body-2.5.1" // { @@ -147062,7 +147756,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.15" + sources."@jridgewell/trace-mapping-0.3.16" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -147100,7 +147794,7 @@ in sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.275" + sources."electron-to-chromium-1.4.276" sources."enhanced-resolve-5.10.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -147227,7 +147921,7 @@ in sources."bep53-range-1.1.1" sources."binary-search-1.3.6" sources."bitfield-4.1.0" - (sources."bittorrent-dht-10.0.4" // { + (sources."bittorrent-dht-10.0.6" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -147311,7 +148005,7 @@ in sources."create-torrent-5.0.6" sources."debug-2.6.9" sources."decompress-response-3.3.0" - sources."defaults-1.0.3" + sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" (sources."dlnacasts-0.1.0" // { dependencies = [ @@ -147520,7 +148214,7 @@ in sources."timeout-refresh-1.0.3" sources."tmp-0.0.33" sources."to-arraybuffer-1.0.1" - (sources."torrent-discovery-9.4.13" // { + (sources."torrent-discovery-9.4.14" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -147549,7 +148243,7 @@ in sources."videostream-3.2.2" sources."vlc-command-1.2.0" sources."wcwidth-1.0.1" - (sources."webtorrent-1.8.30" // { + (sources."webtorrent-1.8.32" // { dependencies = [ sources."debug-4.3.4" sources."decompress-response-6.0.0" @@ -147661,10 +148355,10 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.1.10"; + version = "2.1.11"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.10.tgz"; - sha512 = "hiaTNvkKw8axZljxHOjtDXIVo4GOrDclyxr0cF2aypzAwtrGlaYWD+WP0Z66BqRLpUpbF3BdzrPn1k+xGp0u+Q=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.11.tgz"; + sha512 = "zXydDzU+KKOwYDD9IX+XdSZMFEPWTghzTN/CiZc+pxHGIjTuQBtbk97trY3i9YKeih/QOSlo+H7Clfoq+6rZLw=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" @@ -147848,9 +148542,9 @@ in sha512 = "P1Ct7+DNrOcr2JAxDZ3Q5i5sx2LSveu7iLaoUL0A+YiG0GKf0l5+9j3rwMeyh6JeTL1+HfQV1rnwEvzhNIvpFw=="; }; dependencies = [ - sources."@babel/runtime-7.19.0" - sources."@babel/runtime-corejs3-7.19.1" - (sources."@eslint/eslintrc-1.3.2" // { + sources."@babel/runtime-7.19.4" + sources."@babel/runtime-corejs3-7.19.4" + (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -147862,7 +148556,6 @@ in sources."ms-2.1.2" ]; }) - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -147908,7 +148601,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.24.0" // { + (sources."eslint-8.25.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -147929,7 +148622,7 @@ in }) sources."eslint-plugin-import-2.26.0" sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.8" // { + (sources."eslint-plugin-react-7.31.9" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -148237,7 +148930,7 @@ in sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; }; dependencies = [ - sources."@babel/runtime-7.19.0" + sources."@babel/runtime-7.19.4" sources."@gar/promisify-1.1.3" sources."@isaacs/string-locale-compare-1.1.0" sources."@nodelib/fs.scandir-2.1.5" @@ -148419,7 +149112,7 @@ in sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."default-uid-1.0.0" - (sources."defaults-1.0.3" // { + (sources."defaults-1.0.4" // { dependencies = [ sources."clone-1.0.4" ]; diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index 33a2201dffa..342a2fc978f 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "aioairq"; - version = "0.2.0"; + version = "0.2.4"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "CorantGmbH"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-qPpa6eo33IPCHSv3LFQXpRzomfrbAMqHlRi+IdoxHEc="; + hash = "sha256-+5FyBfsB3kjyX/V9CdZ072mZ3THyvALyym+uk7/kZLo="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/aiocsv/default.nix b/pkgs/development/python-modules/aiocsv/default.nix new file mode 100644 index 00000000000..6a4340e5c54 --- /dev/null +++ b/pkgs/development/python-modules/aiocsv/default.nix @@ -0,0 +1,54 @@ +{ lib +, aiofiles +, buildPythonPackage +, cython +, fetchFromGitHub +, pytest-asyncio +, pytestCheckHook +, pythonOlder +}: + +buildPythonPackage rec { + pname = "aiocsv"; + version = "1.2.2"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "MKuranowski"; + repo = pname; + rev = "refs/tags/v${version}"; + hash = "sha256-lh+yHyHU+XrK4nk1xxrxgF5zGH7lP9jHdJ+m9ncfprw="; + }; + + nativeBuildInputs = [ + cython + ]; + + checkInputs = [ + aiofiles + pytest-asyncio + pytestCheckHook + ]; + + preBuild = '' + export CYTHONIZE=1 + ''; + + pythonImportsCheck = [ + "aiocsv" + ]; + + disabledTestPaths = [ + # Import issue + "tests/test_parser.py" + ]; + + meta = with lib; { + description = "Library for for asynchronous CSV reading/writing"; + homepage = "https://github.com/MKuranowski/aiocsv"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/development/python-modules/aocd/default.nix b/pkgs/development/python-modules/aocd/default.nix index f9e2f177a88..bc6b62dae8c 100644 --- a/pkgs/development/python-modules/aocd/default.nix +++ b/pkgs/development/python-modules/aocd/default.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "aocd"; - version = "1.1.2"; + version = "1.1.3"; src = fetchFromGitHub { owner = "wimglenn"; repo = "advent-of-code-data"; rev = "refs/tags/v${version}"; - sha256 = "sha256-3Cs9tiyWXtyeDXf4FK4gXokCZgtxv4Z5jmSv47t04ag="; + sha256 = "sha256-V6byleGCgXc2xfceb+aO0sYwGD6uThE6/8s5NDEjerw="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/cli-helpers/default.nix b/pkgs/development/python-modules/cli-helpers/default.nix index 15f0249fd80..02b6c6fccda 100644 --- a/pkgs/development/python-modules/cli-helpers/default.nix +++ b/pkgs/development/python-modules/cli-helpers/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "cli_helpers"; - version = "2.2.1"; + version = "2.3.0"; src = fetchPypi { inherit pname version; - sha256 = "sha256-DMwc/Noaxk3H7YPXATBVzxnll50p5Wwh87aS3gFVWq4="; + sha256 = "sha256-5xdNADorWP0+Mac/u8RdWqUT3mLL1C1Df3i5ZYvV+Wc="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/datasets/default.nix b/pkgs/development/python-modules/datasets/default.nix index aabd0cd4143..bc57d7a24e1 100644 --- a/pkgs/development/python-modules/datasets/default.nix +++ b/pkgs/development/python-modules/datasets/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "datasets"; - version = "2.5.2"; + version = "2.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "huggingface"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-C+REl68BZKP3NwkSmBQ/Xs8/sMGNT4bjXa8Jkk/C0Uw="; + hash = "sha256-BYTsIdzKcCxJBQs6s1MkBs6ZnUx1nYjSFGGFDkhTuUg="; }; postPatch = '' diff --git a/pkgs/development/python-modules/dinghy/default.nix b/pkgs/development/python-modules/dinghy/default.nix index 95140e82d0d..1949fb6714f 100644 --- a/pkgs/development/python-modules/dinghy/default.nix +++ b/pkgs/development/python-modules/dinghy/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchFromGitHub , pytestCheckHook +, pythonOlder , aiofiles , aiohttp , click-log @@ -13,14 +14,16 @@ buildPythonPackage rec { pname = "dinghy"; - version = "0.13.2"; + version = "0.13.4"; format = "setuptools"; + disabled = pythonOlder "3.8"; + src = fetchFromGitHub { owner = "nedbat"; repo = pname; rev = version; - sha256 = "sha256-uRiWcrs3xIb6zxNg0d6/+NCqnEgadHSTLpS53CoZ5so="; + hash = "sha256-H3AFKKtSiFD3LqyWaIYB4LncPaH2/eptuKS4BN0cNBQ="; }; propagatedBuildInputs = [ @@ -33,9 +36,13 @@ buildPythonPackage rec { pyyaml ]; - checkInputs = [ pytestCheckHook ]; + checkInputs = [ + pytestCheckHook + ]; - pythonImportsCheck = [ "dinghy.cli" ]; + pythonImportsCheck = [ + "dinghy.cli" + ]; meta = with lib; { description = "A GitHub activity digest tool"; diff --git a/pkgs/development/python-modules/eyed3/default.nix b/pkgs/development/python-modules/eyed3/default.nix index 3dfd810f99c..7adbba522e9 100644 --- a/pkgs/development/python-modules/eyed3/default.nix +++ b/pkgs/development/python-modules/eyed3/default.nix @@ -11,13 +11,13 @@ }: buildPythonPackage rec { - version = "0.9.6"; + version = "0.9.7"; pname = "eyeD3"; disabled = isPyPy; src = fetchPypi { inherit pname version; - sha256 = "4b5064ec0fb3999294cca0020d4a27ffe4f29149e8292fdf7b2de9b9cabb7518"; + sha256 = "sha256-k7GOk5M3akURT5QJ18yhGftvT5o31LaXtQCvSLTFzw8="; }; # requires special test data: diff --git a/pkgs/development/python-modules/freebox-api/default.nix b/pkgs/development/python-modules/freebox-api/default.nix index 54a6ce8662e..a04dada07dc 100644 --- a/pkgs/development/python-modules/freebox-api/default.nix +++ b/pkgs/development/python-modules/freebox-api/default.nix @@ -2,48 +2,42 @@ , aiohttp , buildPythonPackage , fetchFromGitHub -, fetchpatch -, importlib-metadata , poetry-core , pytestCheckHook , pythonOlder +, urllib3 }: buildPythonPackage rec { pname = "freebox-api"; - version = "0.0.10"; + version = "1.0.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "hacf-fr"; repo = pname; rev = "v${version}"; - sha256 = "sha256-yUcHdSHSgWxZl0z7Ue0MestvGhiXkDsxArNoDk0ZkR4="; + hash = "sha256-y78PzSivB+IJ9hrN3ZRhDBo7kI7M6uleTPkF6slO6So="; }; - patches = [ - # Switch to poetry-core, https://github.com/hacf-fr/freebox-api/pull/187 - (fetchpatch { - name = "switch-to-poetry-core.patch"; - url = "https://github.com/hacf-fr/freebox-api/commit/07356ac65483bc24fb1ed32612e77f2c2eed0134.patch"; - sha256 = "1zwricrwsqy01pmhrjy41gh4kxb3gki8z8yxlpywd66y7gid547r"; - }) - ]; - nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp - ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; + urllib3 + ]; checkInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ "freebox_api" ]; + pythonImportsCheck = [ + "freebox_api" + ]; meta = with lib; { description = "Python module to interact with the Freebox OS API"; diff --git a/pkgs/development/python-modules/graphql-core/default.nix b/pkgs/development/python-modules/graphql-core/default.nix index a5893d87c0c..22372843bdb 100644 --- a/pkgs/development/python-modules/graphql-core/default.nix +++ b/pkgs/development/python-modules/graphql-core/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "graphql-core"; - version = "3.2.1"; + version = "3.2.3"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "graphql-python"; repo = pname; rev = "refs/tags/v${version}"; - sha256 = "sha256-LLvfjlio0UmTwR2ZRpsoKTJoWHOEk740QE6K+5GNlrk="; + hash = "sha256-LtBbHA5r6/YNh2gKX0+NqQjrpKuMioyOYWT0R59SIL4="; }; checkInputs = [ diff --git a/pkgs/development/python-modules/haversine/default.nix b/pkgs/development/python-modules/haversine/default.nix index d7fd299419c..690f5eb7884 100644 --- a/pkgs/development/python-modules/haversine/default.nix +++ b/pkgs/development/python-modules/haversine/default.nix @@ -3,17 +3,21 @@ , fetchFromGitHub , numpy , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "haversine"; - version = "2.6.0"; + version = "2.7.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mapado"; repo = pname; rev = "v${version}"; - sha256 = "sha256-cFb2DsXIwaaJK3tiOTCc0k45FVJ4/Vudkq0rzqalGJs="; + hash = "sha256-iAGG1mjrt6oJ0IkmlJwrvb2Bpk4dNxV7ee9LYov03UY="; }; checkInputs = [ @@ -21,7 +25,9 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ "haversine" ]; + pythonImportsCheck = [ + "haversine" + ]; meta = with lib; { description = "Python module the distance between 2 points on earth"; diff --git a/pkgs/development/python-modules/huggingface-hub/default.nix b/pkgs/development/python-modules/huggingface-hub/default.nix index 84511786057..cafdc0b10a9 100644 --- a/pkgs/development/python-modules/huggingface-hub/default.nix +++ b/pkgs/development/python-modules/huggingface-hub/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "huggingface-hub"; - version = "0.9.1"; + version = "0.10.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "huggingface"; repo = "huggingface_hub"; rev = "refs/tags/v${version}"; - hash = "sha256-/FUr66lj0wgmuLcwc84oHKBGzU8jFnBVMOXk7uKUpSk="; + hash = "sha256-iQ8c48lDn9jLZ8GPzJ5b+9OaRRLte/md5UuwxgYtWVo="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/ibeacon-ble/default.nix b/pkgs/development/python-modules/ibeacon-ble/default.nix index ad58a715356..18476fac8c4 100644 --- a/pkgs/development/python-modules/ibeacon-ble/default.nix +++ b/pkgs/development/python-modules/ibeacon-ble/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "ibeacon-ble"; - version = "0.7.3"; + version = "0.7.4"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "v${version}"; - hash = "sha256-+DPbIIarEAaH1bNzo+FvLp0QpNUPhaJ8nPLdKJKfz0k="; + hash = "sha256-B+ftS/oNCECjCqB396K5iCl0aeJSBGVXshlvZ1kvEuo="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/idasen/default.nix b/pkgs/development/python-modules/idasen/default.nix index 21c10b86c78..a315642d329 100644 --- a/pkgs/development/python-modules/idasen/default.nix +++ b/pkgs/development/python-modules/idasen/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "idasen"; - version = "0.9.3"; + version = "0.9.4"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "newAM"; repo = "idasen"; rev = "v${version}"; - hash = "sha256-O5EquX2zoSCsPdXRarTcqwt4aTBS6YF8SBq+/Ft3P1A="; + hash = "sha256-GYQj7hiwyrCQDK19tZ7gN/pS1mFDSHgRfz7eCsKise4="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/influxdb-client/default.nix b/pkgs/development/python-modules/influxdb-client/default.nix index 0d9a38019cc..2eb1015dba7 100644 --- a/pkgs/development/python-modules/influxdb-client/default.nix +++ b/pkgs/development/python-modules/influxdb-client/default.nix @@ -1,21 +1,22 @@ { lib , aiohttp +, aiocsv , buildPythonPackage -, fetchFromGitHub -, rx , certifi -, six +, ciso8601 +, fetchFromGitHub +, numpy +, pandas , python-dateutil +, pythonOlder +, reactivex , setuptools , urllib3 -, ciso8601 -, pytz -, pythonOlder }: buildPythonPackage rec { pname = "influxdb-client"; - version = "1.31.0"; + version = "1.33.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -24,29 +25,32 @@ buildPythonPackage rec { owner = "influxdata"; repo = "influxdb-client-python"; rev = "refs/tags/v${version}"; - hash = "sha256-gTJgY4vFgmFDn2WYUKEbvbu7hjxcw2QGI+blensS5BI="; + hash = "sha256-RhUIdIwLYJwlpLtyrXO9GCvKY6OLDJl7Aop5acgTHN0="; }; propagatedBuildInputs = [ - rx certifi - six python-dateutil + reactivex setuptools urllib3 - pytz ]; passthru.optional-dependencies = { async = [ + aiocsv aiohttp ]; ciso = [ ciso8601 ]; + extra = [ + numpy + pandas + ]; }; - # requires influxdb server + # Requires influxdb server doCheck = false; pythonImportsCheck = [ @@ -54,7 +58,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "InfluxDB 2.0 Python client library"; + description = "InfluxDB client library"; homepage = "https://github.com/influxdata/influxdb-client-python"; license = licenses.mit; maintainers = with maintainers; [ mic92 ]; diff --git a/pkgs/development/python-modules/jupyterlab/default.nix b/pkgs/development/python-modules/jupyterlab/default.nix index 0053c50ef0c..e25cc3c8565 100644 --- a/pkgs/development/python-modules/jupyterlab/default.nix +++ b/pkgs/development/python-modules/jupyterlab/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "jupyterlab"; - version = "3.4.7"; + version = "3.4.8"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-TcSKsJgOOvLpId/ybgAT3QOxBLG2fw2FtnRI4W4lMR4="; + sha256 = "sha256-H6+4tlcAXZFgPzw639bZ6OrzP9xgFTf+8JKDMy7+Z8s="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/kazoo/default.nix b/pkgs/development/python-modules/kazoo/default.nix index 31b65023371..3e6457aafe8 100644 --- a/pkgs/development/python-modules/kazoo/default.nix +++ b/pkgs/development/python-modules/kazoo/default.nix @@ -12,11 +12,11 @@ buildPythonPackage rec { pname = "kazoo"; - version = "2.8.0"; + version = "2.9.0"; src = fetchPypi { inherit pname version; - sha256 = "1zpj5cc8624w6i0pxgcxqkjwbkm4pkrv19d7wh5df3jais32g3jq"; + sha256 = "sha256-gAMYx/PatkjN9hbfslvavu+rKmg3qmlR4Po/+A5laWk="; }; propagatedBuildInputs = [ six ]; diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 94da7af2964..c037544e343 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -3,6 +3,7 @@ , fetchPypi , importlib-metadata , passlib +, python-dateutil , pythonOlder , scramp , setuptools @@ -10,14 +11,14 @@ buildPythonPackage rec { pname = "pg8000"; - version = "1.29.1"; + version = "1.29.2"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-gLT03ksCVIMreUhRHg3UY0LRwERszU/diStj0C5PvHs="; + hash = "sha256-23XCGqCqLm95qVK3GoKaJ17KLi5WUnVpZtpZ192dbyQ="; }; nativeBuildInputs = [ @@ -26,6 +27,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ passlib + python-dateutil scramp ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata diff --git a/pkgs/development/python-modules/phonenumbers/default.nix b/pkgs/development/python-modules/phonenumbers/default.nix index dd7583d7462..e8e522eafea 100644 --- a/pkgs/development/python-modules/phonenumbers/default.nix +++ b/pkgs/development/python-modules/phonenumbers/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "phonenumbers"; - version = "8.12.55"; + version = "8.12.56"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-G+PHNT6TJd3qqQmrF5NkI8YpWNVwDWjl2lvpUDxG0Ic="; + hash = "sha256-gqTyJskw0C3N9tSynkz9hniZH+ZcLv1f3RQ1VxhvCGg="; }; checkInputs = [ diff --git a/pkgs/development/python-modules/pyGithub/default.nix b/pkgs/development/python-modules/pyGithub/default.nix index 02656968d68..d0ebca39446 100644 --- a/pkgs/development/python-modules/pyGithub/default.nix +++ b/pkgs/development/python-modules/pyGithub/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "PyGithub"; - version = "1.55"; + version = "1.56"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "PyGithub"; repo = "PyGithub"; - rev = "v${version}"; - sha256 = "sha256-PuGCBFSbM91NtSzuyf0EQUr3LiuHDq90OwkSf53rSyA="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-L6xrv3dAT/sWt/7ZeDy3P095g7Lpht52LkfCVYNLkbA="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/pyotgw/default.nix b/pkgs/development/python-modules/pyotgw/default.nix index 1feaf72ed28..8015eebff1c 100644 --- a/pkgs/development/python-modules/pyotgw/default.nix +++ b/pkgs/development/python-modules/pyotgw/default.nix @@ -9,14 +9,16 @@ buildPythonPackage rec { pname = "pyotgw"; - version = "2.0.3"; - disabled = pythonOlder "3.7"; + version = "2.1.0"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "mvn23"; repo = pname; rev = version; - hash = "sha256-5iP+EnDrKYQN5N4EvPeWipjkJNweCvi2QBnvwF22gUY="; + hash = "sha256-1kUL0fY+L8HZIdQki0KK5RstfZSd/ylaqV7m1z40yM8="; }; propagatedBuildInputs = [ @@ -32,7 +34,9 @@ buildPythonPackage rec { "--asyncio-mode=legacy" ]; - pythonImportsCheck = [ "pyotgw" ]; + pythonImportsCheck = [ + "pyotgw" + ]; meta = with lib; { description = "Python module to interact the OpenTherm Gateway"; diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index 6bc9c220ded..8a3dec179c1 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "pywlroots"; - version = "0.15.21"; + version = "0.15.22"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-1wHV1+xrGFJWLoMIaG5jc01FfC7mV0+ArhPmWS5yG04="; + sha256 = "sha256-KzpQk7ANinEVvOBeZ+8vPmuuu4LbatjHBKUL44bcAAI="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/python-modules/reactivex/default.nix b/pkgs/development/python-modules/reactivex/default.nix new file mode 100644 index 00000000000..4d95605a09b --- /dev/null +++ b/pkgs/development/python-modules/reactivex/default.nix @@ -0,0 +1,54 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, poetry-core +, pytest-asyncio +, pytestCheckHook +, pythonOlder +, typing-extensions +}: + +buildPythonPackage rec { + pname = "reactivex"; + version = "4.0.4"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "ReactiveX"; + repo = "RxPY"; + rev = "refs/tags/v${version}"; + hash = "sha256-W1qYNbYV6Roz1GJtP/vpoPD6KigWaaQOWe1R5DZHlUw="; + }; + + nativeBuildInputs = [ + poetry-core + ]; + + propagatedBuildInputs = [ + typing-extensions + ]; + + checkInputs = [ + pytest-asyncio + pytestCheckHook + ]; + + postPatch = '' + # Upstream doesn't set a version for their GitHub releases + substituteInPlace pyproject.toml \ + --replace 'version = "0.0.0"' 'version = "${version}"' + ''; + + pythonImportsCheck = [ + "reactivex" + ]; + + meta = with lib; { + description = "Library for composing asynchronous and event-based programs"; + homepage = "https://github.com/ReactiveX/RxPY"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/development/python-modules/rpy2/default.nix b/pkgs/development/python-modules/rpy2/default.nix index 492b0f5434b..4f04a7b5ef5 100644 --- a/pkgs/development/python-modules/rpy2/default.nix +++ b/pkgs/development/python-modules/rpy2/default.nix @@ -24,13 +24,13 @@ }: buildPythonPackage rec { - version = "3.5.4"; + version = "3.5.5"; pname = "rpy2"; disabled = isPyPy; src = fetchPypi { inherit version pname; - sha256 = "sha256-ugqHeyuW4n0gkTg9RlK4KqInHP9KUFJD1F2kMLcSqvU="; + sha256 = "sha256-olLEDiHPTyOsbhO//cuCtZALScMEPtj9MdpcYftY0Dc="; }; patches = [ diff --git a/pkgs/development/python-modules/superqt/default.nix b/pkgs/development/python-modules/superqt/default.nix index b8e1e9a202f..db93064b541 100644 --- a/pkgs/development/python-modules/superqt/default.nix +++ b/pkgs/development/python-modules/superqt/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "superqt"; - version = "0.3.5"; + version = "0.3.8"; format = "pyproject"; src = fetchFromGitHub { owner = "napari"; repo = pname; rev = "refs/tags/v${version}"; - sha256 = "sha256-nKNFV/mzdugQ+UJ/qB0SkCSm5vEpvI/tgHYKJr6NEyg="; + sha256 = "sha256-zEMG2zscGDlRxtLn/lUTEjZBPabcwzMcj/kMcy3yOs8="; }; nativeBuildInputs = [ setuptools-scm ]; diff --git a/pkgs/development/python-modules/total-connect-client/default.nix b/pkgs/development/python-modules/total-connect-client/default.nix index 2f093200bf3..9c6396d55c1 100644 --- a/pkgs/development/python-modules/total-connect-client/default.nix +++ b/pkgs/development/python-modules/total-connect-client/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "total-connect-client"; - version = "2022.5"; + version = "2022.10"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "craigjmidwinter"; repo = "total-connect-client"; rev = version; - hash = "sha256-S+xki1Bj+wvKhbl2vRRa8gULyxTsH4fyypkrHj3JwH0="; + hash = "sha256-HNX+8TIfXOEy4KCmOjsNvOvLBdF8iQT0NJLBDD+XWsA="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/weconnect-mqtt/default.nix b/pkgs/development/python-modules/weconnect-mqtt/default.nix index c75d4559927..19e394ff26b 100644 --- a/pkgs/development/python-modules/weconnect-mqtt/default.nix +++ b/pkgs/development/python-modules/weconnect-mqtt/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "weconnect-mqtt"; - version = "0.40.2"; + version = "0.40.3"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-mqtt"; rev = "refs/tags/v${version}"; - hash = "sha256-TRBS51ZlE4TbDAQdQyODUNDVfIuKZtrf38iBPIGyRhI="; + hash = "sha256-kV4BWQ4XfB2QjXY5b46+pxt3rhyo1glKRYO2mMJNhJM="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index 3508b26a952..58f2fcd7a63 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "weconnect"; - version = "0.48.2"; + version = "0.48.3"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-python"; rev = "refs/tags/v${version}"; - hash = "sha256-4QltLEapYOzCwejeBWAhTdI8UVdlSAqcqFanvsTKBLw="; + hash = "sha256-GXTjG/3Gk58C6TxKrgtblUZI+xf7Te9OA8HnDvNEIvA="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/yfinance/default.nix b/pkgs/development/python-modules/yfinance/default.nix index 3e79dcf20e9..1a5e718d451 100644 --- a/pkgs/development/python-modules/yfinance/default.nix +++ b/pkgs/development/python-modules/yfinance/default.nix @@ -1,25 +1,31 @@ { lib +, appdirs , buildPythonPackage , fetchFromGitHub , multitasking , numpy , pandas +, pythonOlder , requests , lxml }: buildPythonPackage rec { pname = "yfinance"; - version = "0.1.74"; + version = "0.1.77"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "ranaroussi"; repo = pname; rev = "refs/tags/${version}"; - sha256 = "sha256-3YOUdrLCluOuUieBwl15B6WHSXpMoNAjdeNJT3zmTTI="; + hash = "sha256-gg9wX3WWacS5BmbR1wgdicFxhPN5b45KH0+obWmJ65g="; }; propagatedBuildInputs = [ + appdirs multitasking numpy pandas @@ -27,8 +33,12 @@ buildPythonPackage rec { lxml ]; - doCheck = false; # Tests require internet access - pythonImportsCheck = [ "yfinance" ]; + # Tests require internet access + doCheck = false; + + pythonImportsCheck = [ + "yfinance" + ]; meta = with lib; { description = "Yahoo! Finance market data downloader (+faster Pandas Datareader)"; diff --git a/pkgs/development/python-modules/youless-api/default.nix b/pkgs/development/python-modules/youless-api/default.nix index 94580fbebbf..f29c10a8a4f 100644 --- a/pkgs/development/python-modules/youless-api/default.nix +++ b/pkgs/development/python-modules/youless-api/default.nix @@ -7,13 +7,12 @@ , idna , nose , requests -, six , urllib3 }: buildPythonPackage rec { pname = "youless-api"; - version = "0.16"; + version = "1.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -22,7 +21,7 @@ buildPythonPackage rec { owner = "jongsoftdev"; repo = "youless-python-bridge"; rev = version; - sha256 = "sha256-8pJeb3eWchMRrk8KLSI/EbHs1wQDqBoqlAQXm9ulyqs="; + hash = "sha256-yh4ZmMn5z6aTZrhj9ZmvpmsDOF4MeDcPtSgr4fimjGM="; }; propagatedBuildInputs = [ @@ -30,7 +29,6 @@ buildPythonPackage rec { chardet idna requests - six urllib3 ]; diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index f98c623b48c..4cf5bc4b93f 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "flow"; - version = "0.189.0"; + version = "0.190.0"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "v${version}"; - sha256 = "sha256-sV2O5bFzIRm6ZiBwgDz8Y+NA5y44UztIAyvnIzkup/I="; + sha256 = "sha256-/MxV1nbOwqW1SKaKhWFpdg6PuQflmqRgF76/JPuegRg="; }; makeFlags = [ "FLOW_RELEASE=1" ]; diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix index 6a48fc76db2..1032e3e92ef 100644 --- a/pkgs/development/tools/esbuild/default.nix +++ b/pkgs/development/tools/esbuild/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "esbuild"; - version = "0.15.10"; + version = "0.15.11"; src = fetchFromGitHub { owner = "evanw"; repo = "esbuild"; rev = "v${version}"; - sha256 = "sha256-DebmLtgPrla+1UcvOHMnWmxa/ZqrugeRRKXIiJ9LYDk="; + sha256 = "sha256-QgK1+cUW3ntPnzopYTGrIEzGvsQwzBwwryw5MXHX2+c="; }; vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; diff --git a/pkgs/development/tools/misc/linuxkit/default.nix b/pkgs/development/tools/misc/linuxkit/default.nix index 94ae7f52712..bf02a6ad556 100644 --- a/pkgs/development/tools/misc/linuxkit/default.nix +++ b/pkgs/development/tools/misc/linuxkit/default.nix @@ -1,11 +1,9 @@ -{ lib, buildGoPackage, fetchFromGitHub }: +{ lib, stdenv, buildGoModule, fetchFromGitHub, git, Virtualization, testers, linuxkit }: -buildGoPackage rec { - pname = "linuxkit"; +buildGoModule rec { + pname = "linuxkit"; version = "1.0.0"; - goPackagePath = "github.com/linuxkit/linuxkit"; - src = fetchFromGitHub { owner = "linuxkit"; repo = "linuxkit"; @@ -13,15 +11,30 @@ buildGoPackage rec { sha256 = "sha256-y/jsMr7HmrHjVMn4fyQ3MPHION8hQO2G4udX1AMx8bk="; }; - subPackages = [ "src/cmd/linuxkit" ]; + vendorSha256 = null; - ldflags = [ "-s" "-w" "-X ${goPackagePath}/src/cmd/linuxkit/version.GitCommit=${src.rev}" "-X ${goPackagePath}/src/cmd/linuxkit/version.Version=${version}" ]; + modRoot = "./src/cmd/linuxkit"; + + buildInputs = lib.optionals stdenv.isDarwin [ Virtualization ]; + + ldflags = [ + "-s" + "-w" + "-X github.com/linuxkit/linuxkit/src/cmd/linuxkit/version.Version=${version}" + ]; + + checkInputs = [ git ]; + + passthru.tests.version = testers.testVersion { + package = linuxkit; + command = "linuxkit version"; + }; meta = with lib; { description = "A toolkit for building secure, portable and lean operating systems for containers"; license = licenses.asl20; homepage = "https://github.com/linuxkit/linuxkit"; - maintainers = [ maintainers.nicknovitski ]; + maintainers = with maintainers; [ nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/misc/saleae-logic-2/default.nix b/pkgs/development/tools/misc/saleae-logic-2/default.nix index 9531d5bbc33..6a62a625e93 100644 --- a/pkgs/development/tools/misc/saleae-logic-2/default.nix +++ b/pkgs/development/tools/misc/saleae-logic-2/default.nix @@ -1,10 +1,10 @@ { lib, fetchurl, makeDesktopItem, appimageTools }: let name = "saleae-logic-2"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { url = "https://downloads.saleae.com/logic2/Logic-${version}-master.AppImage"; - sha256 = "sha256-jvD/DLpcJKAqy9LSSEVZFtD+BMxfbUmdJwfnQMtA7rg="; + sha256 = "sha256-Xx5HSwO+m/DWAZjD6zePvKa6BghZJwtlLoaDIqnH/qg="; }; desktopItem = makeDesktopItem { inherit name; diff --git a/pkgs/development/tools/misc/slint-lsp/default.nix b/pkgs/development/tools/misc/slint-lsp/default.nix index 2211b5211d6..23fc5cc25e3 100644 --- a/pkgs/development/tools/misc/slint-lsp/default.nix +++ b/pkgs/development/tools/misc/slint-lsp/default.nix @@ -6,11 +6,7 @@ , cmake , fontconfig , libGL -, libxcb -, libX11 -, libXcursor -, libXi -, libXrandr +, xorg , libxkbcommon , wayland # Darwin Frameworks @@ -24,7 +20,7 @@ }: let - rpathLibs = [ fontconfig libGL libxcb libX11 libXcursor libXrandr libXi ] + rpathLibs = [ fontconfig libGL xorg.libxcb xorg.libX11 xorg.libXcursor xorg.libXrandr xorg.libXi ] ++ lib.optionals stdenv.isLinux [ libxkbcommon wayland ]; in rustPlatform.buildRustPackage rec { @@ -39,7 +35,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "sha256-9zbA9JXfLdosCU6gVsrsAyiyX8Qh6x5wMw1W4QKqbp4="; nativeBuildInputs = [ cmake pkg-config fontconfig ]; - buildInputs = rpathLibs ++ [ libxcb.dev ] + buildInputs = rpathLibs ++ [ xorg.libxcb.dev ] ++ lib.optionals stdenv.isDarwin [ AppKit CoreGraphics diff --git a/pkgs/development/tools/oh-my-posh/default.nix b/pkgs/development/tools/oh-my-posh/default.nix index 72d501935be..9cedd56da8d 100644 --- a/pkgs/development/tools/oh-my-posh/default.nix +++ b/pkgs/development/tools/oh-my-posh/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "oh-my-posh"; - version = "12.2.0"; + version = "12.3.0"; src = fetchFromGitHub { owner = "jandedobbeleer"; repo = pname; rev = "v${version}"; - sha256 = "sha256-zWoM9STdyJbgNqX5FQ70T+0dbENW7aOjHV+BShAHi8I="; + sha256 = "sha256-HTQ9WcplJndRD4MXB6jcfNgldWeez8hPtkO3H7NJuyI="; }; vendorSha256 = "sha256-zL5tkBkZa2Twc2FNNNUIycd/QvkpR1XEntpJ0j4z/xo="; diff --git a/pkgs/development/tools/pipenv/default.nix b/pkgs/development/tools/pipenv/default.nix index 9e3e34ed6ba..abf965f4a02 100644 --- a/pkgs/development/tools/pipenv/default.nix +++ b/pkgs/development/tools/pipenv/default.nix @@ -23,11 +23,11 @@ let in buildPythonApplication rec { pname = "pipenv"; - version = "2022.10.9"; + version = "2022.10.12"; src = fetchPypi { inherit pname version; - sha256 = "sha256-MuBqtQlX2549Kpn8e+vdRF5zg9lP8rME64sz33FhTmA="; + sha256 = "sha256-pNiPZmfLzZ6kMtYmqLNzzTEBiGufuWTqfn+WUKg/wwc="; }; LC_ALL = "en_US.UTF-8"; diff --git a/pkgs/development/tools/rust/cargo-download/Cargo.nix b/pkgs/development/tools/rust/cargo-download/Cargo.nix deleted file mode 100644 index f96a3a207df..00000000000 --- a/pkgs/development/tools/rust/cargo-download/Cargo.nix +++ /dev/null @@ -1,675 +0,0 @@ -# Generated by carnix 0.10.0: carnix generate-nix -{ lib, buildPlatform, buildRustCrate, buildRustCrateHelpers, cratesIO, fetchgit }: -with buildRustCrateHelpers; -let inherit (lib.lists) fold; - inherit (lib.attrsets) recursiveUpdate; -in -rec { - crates = cratesIO; - cargo_download = crates.crates.cargo_download."0.1.2" deps; - __all = [ (cargo_download {}) ]; - deps.adler32."1.0.2" = {}; - deps.aho_corasick."0.5.3" = { - memchr = "0.1.11"; - }; - deps.ansi_term."0.9.0" = {}; - deps.arrayvec."0.4.8" = { - nodrop = "0.1.13"; - }; - deps.atty."0.2.3" = { - termion = "1.5.1"; - libc = "0.2.44"; - kernel32_sys = "0.2.2"; - winapi = "0.2.8"; - }; - deps.base64."0.9.3" = { - byteorder = "1.1.0"; - safemem = "0.3.0"; - }; - deps.bitflags."0.7.0" = {}; - deps.bitflags."0.9.1" = {}; - deps.bitflags."1.0.4" = {}; - deps.byteorder."1.1.0" = {}; - deps.bytes."0.4.11" = { - byteorder = "1.1.0"; - iovec = "0.1.1"; - }; - deps.cargo_download."0.1.2" = { - ansi_term = "0.9.0"; - clap = "2.27.1"; - conv = "0.3.3"; - derive_error = "0.0.3"; - exitcode = "1.1.2"; - flate2 = "0.2.20"; - isatty = "0.1.5"; - itertools = "0.6.5"; - lazy_static = "0.2.10"; - log = "0.3.8"; - maplit = "0.1.6"; - reqwest = "0.9.5"; - semver = "0.9.0"; - serde_json = "1.0.6"; - slog = "1.7.1"; - slog_envlogger = "0.5.0"; - slog_stdlog = "1.1.0"; - slog_stream = "1.2.1"; - tar = "0.4.13"; - time = "0.1.38"; - }; - deps.case."0.1.0" = {}; - deps.cc."1.0.3" = {}; - deps.cfg_if."0.1.2" = {}; - deps.chrono."0.2.25" = { - num = "0.1.40"; - time = "0.1.38"; - }; - deps.clap."2.27.1" = { - ansi_term = "0.9.0"; - atty = "0.2.3"; - bitflags = "0.9.1"; - strsim = "0.6.0"; - textwrap = "0.9.0"; - unicode_width = "0.1.4"; - vec_map = "0.8.0"; - }; - deps.cloudabi."0.0.3" = { - bitflags = "1.0.4"; - }; - deps.conv."0.3.3" = { - custom_derive = "0.1.7"; - }; - deps.core_foundation."0.5.1" = { - core_foundation_sys = "0.5.1"; - libc = "0.2.44"; - }; - deps.core_foundation_sys."0.5.1" = { - libc = "0.2.44"; - }; - deps.crc32fast."1.1.1" = {}; - deps.crossbeam."0.2.10" = {}; - deps.crossbeam_deque."0.6.2" = { - crossbeam_epoch = "0.6.1"; - crossbeam_utils = "0.6.1"; - }; - deps.crossbeam_epoch."0.6.1" = { - arrayvec = "0.4.8"; - cfg_if = "0.1.2"; - crossbeam_utils = "0.6.1"; - lazy_static = "1.2.0"; - memoffset = "0.2.1"; - scopeguard = "0.3.3"; - }; - deps.crossbeam_utils."0.6.1" = { - cfg_if = "0.1.2"; - }; - deps.custom_derive."0.1.7" = {}; - deps.derive_error."0.0.3" = { - case = "0.1.0"; - quote = "0.3.15"; - syn = "0.11.11"; - }; - deps.dtoa."0.4.2" = {}; - deps.either."1.4.0" = {}; - deps.encoding_rs."0.8.13" = { - cfg_if = "0.1.2"; - }; - deps.exitcode."1.1.2" = {}; - deps.filetime."0.1.14" = { - cfg_if = "0.1.2"; - redox_syscall = "0.1.31"; - libc = "0.2.44"; - }; - deps.flate2."0.2.20" = { - libc = "0.2.44"; - miniz_sys = "0.1.10"; - }; - deps.fnv."1.0.6" = {}; - deps.foreign_types."0.3.2" = { - foreign_types_shared = "0.1.1"; - }; - deps.foreign_types_shared."0.1.1" = {}; - deps.fuchsia_zircon."0.2.1" = { - fuchsia_zircon_sys = "0.2.0"; - }; - deps.fuchsia_zircon."0.3.3" = { - bitflags = "1.0.4"; - fuchsia_zircon_sys = "0.3.3"; - }; - deps.fuchsia_zircon_sys."0.2.0" = { - bitflags = "0.7.0"; - }; - deps.fuchsia_zircon_sys."0.3.3" = {}; - deps.futures."0.1.25" = {}; - deps.futures_cpupool."0.1.7" = { - futures = "0.1.25"; - num_cpus = "1.8.0"; - }; - deps.h2."0.1.13" = { - byteorder = "1.1.0"; - bytes = "0.4.11"; - fnv = "1.0.6"; - futures = "0.1.25"; - http = "0.1.14"; - indexmap = "1.0.2"; - log = "0.4.6"; - slab = "0.4.0"; - string = "0.1.2"; - tokio_io = "0.1.10"; - }; - deps.http."0.1.14" = { - bytes = "0.4.11"; - fnv = "1.0.6"; - itoa = "0.4.3"; - }; - deps.httparse."1.2.3" = {}; - deps.hyper."0.12.16" = { - bytes = "0.4.11"; - futures = "0.1.25"; - futures_cpupool = "0.1.7"; - h2 = "0.1.13"; - http = "0.1.14"; - httparse = "1.2.3"; - iovec = "0.1.1"; - itoa = "0.4.3"; - log = "0.4.6"; - net2 = "0.2.33"; - time = "0.1.38"; - tokio = "0.1.7"; - tokio_executor = "0.1.5"; - tokio_io = "0.1.10"; - tokio_reactor = "0.1.7"; - tokio_tcp = "0.1.2"; - tokio_threadpool = "0.1.9"; - tokio_timer = "0.2.5"; - want = "0.0.6"; - }; - deps.hyper_tls."0.3.1" = { - bytes = "0.4.11"; - futures = "0.1.25"; - hyper = "0.12.16"; - native_tls = "0.2.2"; - tokio_io = "0.1.10"; - }; - deps.idna."0.1.4" = { - matches = "0.1.6"; - unicode_bidi = "0.3.4"; - unicode_normalization = "0.1.5"; - }; - deps.indexmap."1.0.2" = {}; - deps.iovec."0.1.1" = { - libc = "0.2.44"; - winapi = "0.2.8"; - }; - deps.isatty."0.1.5" = { - libc = "0.2.44"; - kernel32_sys = "0.2.2"; - winapi = "0.2.8"; - }; - deps.itertools."0.6.5" = { - either = "1.4.0"; - }; - deps.itoa."0.3.4" = {}; - deps.itoa."0.4.3" = {}; - deps.kernel32_sys."0.2.2" = { - winapi = "0.2.8"; - winapi_build = "0.1.1"; - }; - deps.lazy_static."0.2.10" = {}; - deps.lazy_static."1.2.0" = {}; - deps.lazycell."1.2.0" = {}; - deps.libc."0.2.44" = {}; - deps.libflate."0.1.19" = { - adler32 = "1.0.2"; - byteorder = "1.1.0"; - crc32fast = "1.1.1"; - }; - deps.lock_api."0.1.5" = { - owning_ref = "0.4.0"; - scopeguard = "0.3.3"; - }; - deps.log."0.3.8" = {}; - deps.log."0.4.6" = { - cfg_if = "0.1.2"; - }; - deps.maplit."0.1.6" = {}; - deps.matches."0.1.6" = {}; - deps.memchr."0.1.11" = { - libc = "0.2.44"; - }; - deps.memoffset."0.2.1" = {}; - deps.mime."0.3.12" = { - unicase = "2.1.0"; - }; - deps.mime_guess."2.0.0-alpha.6" = { - mime = "0.3.12"; - phf = "0.7.21"; - unicase = "1.4.2"; - phf_codegen = "0.7.21"; - }; - deps.miniz_sys."0.1.10" = { - libc = "0.2.44"; - cc = "1.0.3"; - }; - deps.mio."0.6.16" = { - iovec = "0.1.1"; - lazycell = "1.2.0"; - log = "0.4.6"; - net2 = "0.2.33"; - slab = "0.4.0"; - fuchsia_zircon = "0.3.3"; - fuchsia_zircon_sys = "0.3.3"; - libc = "0.2.44"; - kernel32_sys = "0.2.2"; - miow = "0.2.1"; - winapi = "0.2.8"; - }; - deps.miow."0.2.1" = { - kernel32_sys = "0.2.2"; - net2 = "0.2.33"; - winapi = "0.2.8"; - ws2_32_sys = "0.2.1"; - }; - deps.native_tls."0.2.2" = { - lazy_static = "1.2.0"; - libc = "0.2.44"; - security_framework = "0.2.1"; - security_framework_sys = "0.2.1"; - tempfile = "3.0.5"; - openssl = "0.10.15"; - openssl_probe = "0.1.2"; - openssl_sys = "0.9.39"; - log = "0.4.6"; - schannel = "0.1.14"; - }; - deps.net2."0.2.33" = { - cfg_if = "0.1.2"; - libc = "0.2.44"; - winapi = "0.3.6"; - }; - deps.nodrop."0.1.13" = {}; - deps.num."0.1.40" = { - num_integer = "0.1.35"; - num_iter = "0.1.34"; - num_traits = "0.1.40"; - }; - deps.num_integer."0.1.35" = { - num_traits = "0.1.40"; - }; - deps.num_iter."0.1.34" = { - num_integer = "0.1.35"; - num_traits = "0.1.40"; - }; - deps.num_traits."0.1.40" = {}; - deps.num_cpus."1.8.0" = { - libc = "0.2.44"; - }; - deps.openssl."0.10.15" = { - bitflags = "1.0.4"; - cfg_if = "0.1.2"; - foreign_types = "0.3.2"; - lazy_static = "1.2.0"; - libc = "0.2.44"; - openssl_sys = "0.9.39"; - }; - deps.openssl_probe."0.1.2" = {}; - deps.openssl_sys."0.9.39" = { - libc = "0.2.44"; - cc = "1.0.3"; - pkg_config = "0.3.9"; - }; - deps.owning_ref."0.4.0" = { - stable_deref_trait = "1.1.1"; - }; - deps.parking_lot."0.6.4" = { - lock_api = "0.1.5"; - parking_lot_core = "0.3.1"; - }; - deps.parking_lot_core."0.3.1" = { - rand = "0.5.5"; - smallvec = "0.6.7"; - rustc_version = "0.2.3"; - libc = "0.2.44"; - winapi = "0.3.6"; - }; - deps.percent_encoding."1.0.1" = {}; - deps.phf."0.7.21" = { - phf_shared = "0.7.21"; - }; - deps.phf_codegen."0.7.21" = { - phf_generator = "0.7.21"; - phf_shared = "0.7.21"; - }; - deps.phf_generator."0.7.21" = { - phf_shared = "0.7.21"; - rand = "0.3.18"; - }; - deps.phf_shared."0.7.21" = { - siphasher = "0.2.2"; - unicase = "1.4.2"; - }; - deps.pkg_config."0.3.9" = {}; - deps.quote."0.3.15" = {}; - deps.rand."0.3.18" = { - libc = "0.2.44"; - fuchsia_zircon = "0.2.1"; - }; - deps.rand."0.5.5" = { - rand_core = "0.2.2"; - cloudabi = "0.0.3"; - fuchsia_zircon = "0.3.3"; - libc = "0.2.44"; - winapi = "0.3.6"; - }; - deps.rand."0.6.1" = { - rand_chacha = "0.1.0"; - rand_core = "0.3.0"; - rand_hc = "0.1.0"; - rand_isaac = "0.1.1"; - rand_pcg = "0.1.1"; - rand_xorshift = "0.1.0"; - rustc_version = "0.2.3"; - cloudabi = "0.0.3"; - fuchsia_zircon = "0.3.3"; - libc = "0.2.44"; - winapi = "0.3.6"; - }; - deps.rand_chacha."0.1.0" = { - rand_core = "0.3.0"; - rustc_version = "0.2.3"; - }; - deps.rand_core."0.2.2" = { - rand_core = "0.3.0"; - }; - deps.rand_core."0.3.0" = {}; - deps.rand_hc."0.1.0" = { - rand_core = "0.3.0"; - }; - deps.rand_isaac."0.1.1" = { - rand_core = "0.3.0"; - }; - deps.rand_pcg."0.1.1" = { - rand_core = "0.3.0"; - rustc_version = "0.2.3"; - }; - deps.rand_xorshift."0.1.0" = { - rand_core = "0.3.0"; - }; - deps.redox_syscall."0.1.31" = {}; - deps.redox_termios."0.1.1" = { - redox_syscall = "0.1.31"; - }; - deps.regex."0.1.80" = { - aho_corasick = "0.5.3"; - memchr = "0.1.11"; - regex_syntax = "0.3.9"; - thread_local = "0.2.7"; - utf8_ranges = "0.1.3"; - }; - deps.regex_syntax."0.3.9" = {}; - deps.remove_dir_all."0.5.1" = { - winapi = "0.3.6"; - }; - deps.reqwest."0.9.5" = { - base64 = "0.9.3"; - bytes = "0.4.11"; - encoding_rs = "0.8.13"; - futures = "0.1.25"; - http = "0.1.14"; - hyper = "0.12.16"; - hyper_tls = "0.3.1"; - libflate = "0.1.19"; - log = "0.4.6"; - mime = "0.3.12"; - mime_guess = "2.0.0-alpha.6"; - native_tls = "0.2.2"; - serde = "1.0.21"; - serde_json = "1.0.6"; - serde_urlencoded = "0.5.1"; - tokio = "0.1.7"; - tokio_io = "0.1.10"; - url = "1.6.1"; - uuid = "0.7.1"; - }; - deps.rustc_version."0.2.3" = { - semver = "0.9.0"; - }; - deps.safemem."0.3.0" = {}; - deps.schannel."0.1.14" = { - lazy_static = "1.2.0"; - winapi = "0.3.6"; - }; - deps.scopeguard."0.3.3" = {}; - deps.security_framework."0.2.1" = { - core_foundation = "0.5.1"; - core_foundation_sys = "0.5.1"; - libc = "0.2.44"; - security_framework_sys = "0.2.1"; - }; - deps.security_framework_sys."0.2.1" = { - core_foundation_sys = "0.5.1"; - libc = "0.2.44"; - }; - deps.semver."0.9.0" = { - semver_parser = "0.7.0"; - }; - deps.semver_parser."0.7.0" = {}; - deps.serde."1.0.21" = {}; - deps.serde_json."1.0.6" = { - dtoa = "0.4.2"; - itoa = "0.3.4"; - num_traits = "0.1.40"; - serde = "1.0.21"; - }; - deps.serde_urlencoded."0.5.1" = { - dtoa = "0.4.2"; - itoa = "0.3.4"; - serde = "1.0.21"; - url = "1.6.1"; - }; - deps.siphasher."0.2.2" = {}; - deps.slab."0.4.0" = {}; - deps.slog."1.7.1" = {}; - deps.slog_envlogger."0.5.0" = { - log = "0.3.8"; - regex = "0.1.80"; - slog = "1.7.1"; - slog_stdlog = "1.1.0"; - slog_term = "1.5.0"; - }; - deps.slog_extra."0.1.2" = { - slog = "1.7.1"; - thread_local = "0.3.4"; - }; - deps.slog_stdlog."1.1.0" = { - crossbeam = "0.2.10"; - lazy_static = "0.2.10"; - log = "0.3.8"; - slog = "1.7.1"; - slog_term = "1.5.0"; - }; - deps.slog_stream."1.2.1" = { - slog = "1.7.1"; - slog_extra = "0.1.2"; - thread_local = "0.3.4"; - }; - deps.slog_term."1.5.0" = { - chrono = "0.2.25"; - isatty = "0.1.5"; - slog = "1.7.1"; - slog_stream = "1.2.1"; - thread_local = "0.3.4"; - }; - deps.smallvec."0.6.7" = { - unreachable = "1.0.0"; - }; - deps.stable_deref_trait."1.1.1" = {}; - deps.string."0.1.2" = {}; - deps.strsim."0.6.0" = {}; - deps.syn."0.11.11" = { - quote = "0.3.15"; - synom = "0.11.3"; - unicode_xid = "0.0.4"; - }; - deps.synom."0.11.3" = { - unicode_xid = "0.0.4"; - }; - deps.tar."0.4.13" = { - filetime = "0.1.14"; - libc = "0.2.44"; - xattr = "0.1.11"; - }; - deps.tempfile."3.0.5" = { - cfg_if = "0.1.2"; - rand = "0.6.1"; - remove_dir_all = "0.5.1"; - redox_syscall = "0.1.31"; - libc = "0.2.44"; - winapi = "0.3.6"; - }; - deps.termion."1.5.1" = { - libc = "0.2.44"; - redox_syscall = "0.1.31"; - redox_termios = "0.1.1"; - }; - deps.textwrap."0.9.0" = { - unicode_width = "0.1.4"; - }; - deps.thread_id."2.0.0" = { - kernel32_sys = "0.2.2"; - libc = "0.2.44"; - }; - deps.thread_local."0.2.7" = { - thread_id = "2.0.0"; - }; - deps.thread_local."0.3.4" = { - lazy_static = "0.2.10"; - unreachable = "1.0.0"; - }; - deps.time."0.1.38" = { - libc = "0.2.44"; - redox_syscall = "0.1.31"; - kernel32_sys = "0.2.2"; - winapi = "0.2.8"; - }; - deps.tokio."0.1.7" = { - futures = "0.1.25"; - mio = "0.6.16"; - tokio_executor = "0.1.5"; - tokio_fs = "0.1.4"; - tokio_io = "0.1.10"; - tokio_reactor = "0.1.7"; - tokio_tcp = "0.1.2"; - tokio_threadpool = "0.1.9"; - tokio_timer = "0.2.5"; - tokio_udp = "0.1.3"; - }; - deps.tokio_codec."0.1.1" = { - bytes = "0.4.11"; - futures = "0.1.25"; - tokio_io = "0.1.10"; - }; - deps.tokio_executor."0.1.5" = { - futures = "0.1.25"; - }; - deps.tokio_fs."0.1.4" = { - futures = "0.1.25"; - tokio_io = "0.1.10"; - tokio_threadpool = "0.1.9"; - }; - deps.tokio_io."0.1.10" = { - bytes = "0.4.11"; - futures = "0.1.25"; - log = "0.4.6"; - }; - deps.tokio_reactor."0.1.7" = { - crossbeam_utils = "0.6.1"; - futures = "0.1.25"; - lazy_static = "1.2.0"; - log = "0.4.6"; - mio = "0.6.16"; - num_cpus = "1.8.0"; - parking_lot = "0.6.4"; - slab = "0.4.0"; - tokio_executor = "0.1.5"; - tokio_io = "0.1.10"; - }; - deps.tokio_tcp."0.1.2" = { - bytes = "0.4.11"; - futures = "0.1.25"; - iovec = "0.1.1"; - mio = "0.6.16"; - tokio_io = "0.1.10"; - tokio_reactor = "0.1.7"; - }; - deps.tokio_threadpool."0.1.9" = { - crossbeam_deque = "0.6.2"; - crossbeam_utils = "0.6.1"; - futures = "0.1.25"; - log = "0.4.6"; - num_cpus = "1.8.0"; - rand = "0.6.1"; - tokio_executor = "0.1.5"; - }; - deps.tokio_timer."0.2.5" = { - futures = "0.1.25"; - tokio_executor = "0.1.5"; - }; - deps.tokio_udp."0.1.3" = { - bytes = "0.4.11"; - futures = "0.1.25"; - log = "0.4.6"; - mio = "0.6.16"; - tokio_codec = "0.1.1"; - tokio_io = "0.1.10"; - tokio_reactor = "0.1.7"; - }; - deps.try_lock."0.2.2" = {}; - deps.unicase."1.4.2" = { - version_check = "0.1.3"; - }; - deps.unicase."2.1.0" = { - version_check = "0.1.3"; - }; - deps.unicode_bidi."0.3.4" = { - matches = "0.1.6"; - }; - deps.unicode_normalization."0.1.5" = {}; - deps.unicode_width."0.1.4" = {}; - deps.unicode_xid."0.0.4" = {}; - deps.unreachable."1.0.0" = { - void = "1.0.2"; - }; - deps.url."1.6.1" = { - idna = "0.1.4"; - matches = "0.1.6"; - percent_encoding = "1.0.1"; - }; - deps.utf8_ranges."0.1.3" = {}; - deps.uuid."0.7.1" = { - rand = "0.5.5"; - }; - deps.vcpkg."0.2.2" = {}; - deps.vec_map."0.8.0" = {}; - deps.version_check."0.1.3" = {}; - deps.void."1.0.2" = {}; - deps.want."0.0.6" = { - futures = "0.1.25"; - log = "0.4.6"; - try_lock = "0.2.2"; - }; - deps.winapi."0.2.8" = {}; - deps.winapi."0.3.6" = { - winapi_i686_pc_windows_gnu = "0.4.0"; - winapi_x86_64_pc_windows_gnu = "0.4.0"; - }; - deps.winapi_build."0.1.1" = {}; - deps.winapi_i686_pc_windows_gnu."0.4.0" = {}; - deps.winapi_x86_64_pc_windows_gnu."0.4.0" = {}; - deps.ws2_32_sys."0.2.1" = { - winapi = "0.2.8"; - winapi_build = "0.1.1"; - }; - deps.xattr."0.1.11" = { - libc = "0.2.44"; - }; -} diff --git a/pkgs/development/tools/rust/cargo-download/crates-io.nix b/pkgs/development/tools/rust/cargo-download/crates-io.nix deleted file mode 100644 index dde192585e0..00000000000 --- a/pkgs/development/tools/rust/cargo-download/crates-io.nix +++ /dev/null @@ -1,5289 +0,0 @@ -{ lib, buildRustCrate, buildRustCrateHelpers }: -with buildRustCrateHelpers; -let inherit (lib.lists) fold; - inherit (lib.attrsets) recursiveUpdate; -in -rec { - -# adler32-1.0.2 - - crates.adler32."1.0.2" = deps: { features?(features_.adler32."1.0.2" deps {}) }: buildRustCrate { - crateName = "adler32"; - version = "1.0.2"; - description = "Minimal Adler32 implementation for Rust."; - authors = [ "Remi Rampin " ]; - sha256 = "1974q3nysai026zhz24df506cxwi09jdzqksll4h7ibpb5n9g1d4"; - }; - features_.adler32."1.0.2" = deps: f: updateFeatures f ({ - adler32."1.0.2".default = (f.adler32."1.0.2".default or true); - }) []; - - -# end -# aho-corasick-0.5.3 - - crates.aho_corasick."0.5.3" = deps: { features?(features_.aho_corasick."0.5.3" deps {}) }: buildRustCrate { - crateName = "aho-corasick"; - version = "0.5.3"; - description = "Fast multiple substring searching with finite state machines."; - authors = [ "Andrew Gallant " ]; - sha256 = "1igab46mvgknga3sxkqc917yfff0wsjxjzabdigmh240p5qxqlnn"; - libName = "aho_corasick"; - crateBin = - [{ name = "aho-corasick-dot"; }]; - dependencies = mapFeatures features ([ - (crates."memchr"."${deps."aho_corasick"."0.5.3"."memchr"}" deps) - ]); - }; - features_.aho_corasick."0.5.3" = deps: f: updateFeatures f ({ - aho_corasick."0.5.3".default = (f.aho_corasick."0.5.3".default or true); - memchr."${deps.aho_corasick."0.5.3".memchr}".default = true; - }) [ - (features_.memchr."${deps."aho_corasick"."0.5.3"."memchr"}" deps) - ]; - - -# end -# ansi_term-0.9.0 - - crates.ansi_term."0.9.0" = deps: { features?(features_.ansi_term."0.9.0" deps {}) }: buildRustCrate { - crateName = "ansi_term"; - version = "0.9.0"; - description = "Library for ANSI terminal colours and styles (bold, underline)"; - authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) " ]; - sha256 = "1vcd8m2hglrdi4zmqnkkz5zy3c73ifgii245k7vj6qr5dzpn9hij"; - }; - features_.ansi_term."0.9.0" = deps: f: updateFeatures f ({ - ansi_term."0.9.0".default = (f.ansi_term."0.9.0".default or true); - }) []; - - -# end -# arrayvec-0.4.8 - - crates.arrayvec."0.4.8" = deps: { features?(features_.arrayvec."0.4.8" deps {}) }: buildRustCrate { - crateName = "arrayvec"; - version = "0.4.8"; - description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString."; - authors = [ "bluss" ]; - sha256 = "0zwpjdxgr0a11h9x7mkrif4wyx3c81b90paxjf326i86s13kib1g"; - dependencies = mapFeatures features ([ - (crates."nodrop"."${deps."arrayvec"."0.4.8"."nodrop"}" deps) - ]); - features = mkFeatures (features."arrayvec"."0.4.8" or {}); - }; - features_.arrayvec."0.4.8" = deps: f: updateFeatures f (rec { - arrayvec = fold recursiveUpdate {} [ - { "0.4.8"."serde" = - (f.arrayvec."0.4.8"."serde" or false) || - (f.arrayvec."0.4.8".serde-1 or false) || - (arrayvec."0.4.8"."serde-1" or false); } - { "0.4.8"."std" = - (f.arrayvec."0.4.8"."std" or false) || - (f.arrayvec."0.4.8".default or false) || - (arrayvec."0.4.8"."default" or false); } - { "0.4.8".default = (f.arrayvec."0.4.8".default or true); } - ]; - nodrop."${deps.arrayvec."0.4.8".nodrop}".default = (f.nodrop."${deps.arrayvec."0.4.8".nodrop}".default or false); - }) [ - (features_.nodrop."${deps."arrayvec"."0.4.8"."nodrop"}" deps) - ]; - - -# end -# atty-0.2.3 - - crates.atty."0.2.3" = deps: { features?(features_.atty."0.2.3" deps {}) }: buildRustCrate { - crateName = "atty"; - version = "0.2.3"; - description = "A simple interface for querying atty"; - authors = [ "softprops " ]; - sha256 = "0zl0cjfgarp5y78nd755lpki5bbkj4hgmi88v265m543yg29i88f"; - dependencies = (if kernel == "redox" then mapFeatures features ([ - (crates."termion"."${deps."atty"."0.2.3"."termion"}" deps) - ]) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."atty"."0.2.3"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."kernel32_sys"."${deps."atty"."0.2.3"."kernel32_sys"}" deps) - (crates."winapi"."${deps."atty"."0.2.3"."winapi"}" deps) - ]) else []); - }; - features_.atty."0.2.3" = deps: f: updateFeatures f ({ - atty."0.2.3".default = (f.atty."0.2.3".default or true); - kernel32_sys."${deps.atty."0.2.3".kernel32_sys}".default = true; - libc."${deps.atty."0.2.3".libc}".default = (f.libc."${deps.atty."0.2.3".libc}".default or false); - termion."${deps.atty."0.2.3".termion}".default = true; - winapi."${deps.atty."0.2.3".winapi}".default = true; - }) [ - (features_.termion."${deps."atty"."0.2.3"."termion"}" deps) - (features_.libc."${deps."atty"."0.2.3"."libc"}" deps) - (features_.kernel32_sys."${deps."atty"."0.2.3"."kernel32_sys"}" deps) - (features_.winapi."${deps."atty"."0.2.3"."winapi"}" deps) - ]; - - -# end -# base64-0.9.3 - - crates.base64."0.9.3" = deps: { features?(features_.base64."0.9.3" deps {}) }: buildRustCrate { - crateName = "base64"; - version = "0.9.3"; - description = "encodes and decodes base64 as bytes or utf8"; - authors = [ "Alice Maz " "Marshall Pierce " ]; - sha256 = "11hhz8ln4zbpn2h2gm9fbbb9j254wrd4fpmddlyah2rrnqsmmqkd"; - dependencies = mapFeatures features ([ - (crates."byteorder"."${deps."base64"."0.9.3"."byteorder"}" deps) - (crates."safemem"."${deps."base64"."0.9.3"."safemem"}" deps) - ]); - }; - features_.base64."0.9.3" = deps: f: updateFeatures f ({ - base64."0.9.3".default = (f.base64."0.9.3".default or true); - byteorder."${deps.base64."0.9.3".byteorder}".default = true; - safemem."${deps.base64."0.9.3".safemem}".default = true; - }) [ - (features_.byteorder."${deps."base64"."0.9.3"."byteorder"}" deps) - (features_.safemem."${deps."base64"."0.9.3"."safemem"}" deps) - ]; - - -# end -# bitflags-0.7.0 - - crates.bitflags."0.7.0" = deps: { features?(features_.bitflags."0.7.0" deps {}) }: buildRustCrate { - crateName = "bitflags"; - version = "0.7.0"; - description = "A macro to generate structures which behave like bitflags.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1hr72xg5slm0z4pxs2hiy4wcyx3jva70h58b7mid8l0a4c8f7gn5"; - }; - features_.bitflags."0.7.0" = deps: f: updateFeatures f ({ - bitflags."0.7.0".default = (f.bitflags."0.7.0".default or true); - }) []; - - -# end -# bitflags-0.9.1 - - crates.bitflags."0.9.1" = deps: { features?(features_.bitflags."0.9.1" deps {}) }: buildRustCrate { - crateName = "bitflags"; - version = "0.9.1"; - description = "A macro to generate structures which behave like bitflags.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "18h073l5jd88rx4qdr95fjddr9rk79pb1aqnshzdnw16cfmb9rws"; - features = mkFeatures (features."bitflags"."0.9.1" or {}); - }; - features_.bitflags."0.9.1" = deps: f: updateFeatures f (rec { - bitflags = fold recursiveUpdate {} [ - { "0.9.1"."example_generated" = - (f.bitflags."0.9.1"."example_generated" or false) || - (f.bitflags."0.9.1".default or false) || - (bitflags."0.9.1"."default" or false); } - { "0.9.1".default = (f.bitflags."0.9.1".default or true); } - ]; - }) []; - - -# end -# bitflags-1.0.4 - - crates.bitflags."1.0.4" = deps: { features?(features_.bitflags."1.0.4" deps {}) }: buildRustCrate { - crateName = "bitflags"; - version = "1.0.4"; - description = "A macro to generate structures which behave like bitflags.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1g1wmz2001qmfrd37dnd5qiss5njrw26aywmg6yhkmkbyrhjxb08"; - features = mkFeatures (features."bitflags"."1.0.4" or {}); - }; - features_.bitflags."1.0.4" = deps: f: updateFeatures f ({ - bitflags."1.0.4".default = (f.bitflags."1.0.4".default or true); - }) []; - - -# end -# byteorder-1.1.0 - - crates.byteorder."1.1.0" = deps: { features?(features_.byteorder."1.1.0" deps {}) }: buildRustCrate { - crateName = "byteorder"; - version = "1.1.0"; - description = "Library for reading/writing numbers in big-endian and little-endian."; - authors = [ "Andrew Gallant " ]; - sha256 = "1i2n0161jm00zvzh4bncgv9zrwa6ydbxdn5j4bx0wwn7rvi9zycp"; - features = mkFeatures (features."byteorder"."1.1.0" or {}); - }; - features_.byteorder."1.1.0" = deps: f: updateFeatures f (rec { - byteorder = fold recursiveUpdate {} [ - { "1.1.0"."std" = - (f.byteorder."1.1.0"."std" or false) || - (f.byteorder."1.1.0".default or false) || - (byteorder."1.1.0"."default" or false); } - { "1.1.0".default = (f.byteorder."1.1.0".default or true); } - ]; - }) []; - - -# end -# bytes-0.4.11 - - crates.bytes."0.4.11" = deps: { features?(features_.bytes."0.4.11" deps {}) }: buildRustCrate { - crateName = "bytes"; - version = "0.4.11"; - description = "Types and traits for working with bytes"; - authors = [ "Carl Lerche " ]; - sha256 = "1lk8bnxcd8shiizarf0n6ljmj1542n90jw6lz6i270gxl7rzplmh"; - dependencies = mapFeatures features ([ - (crates."byteorder"."${deps."bytes"."0.4.11"."byteorder"}" deps) - (crates."iovec"."${deps."bytes"."0.4.11"."iovec"}" deps) - ]); - features = mkFeatures (features."bytes"."0.4.11" or {}); - }; - features_.bytes."0.4.11" = deps: f: updateFeatures f (rec { - byteorder = fold recursiveUpdate {} [ - { "${deps.bytes."0.4.11".byteorder}"."i128" = - (f.byteorder."${deps.bytes."0.4.11".byteorder}"."i128" or false) || - (bytes."0.4.11"."i128" or false) || - (f."bytes"."0.4.11"."i128" or false); } - { "${deps.bytes."0.4.11".byteorder}".default = true; } - ]; - bytes."0.4.11".default = (f.bytes."0.4.11".default or true); - iovec."${deps.bytes."0.4.11".iovec}".default = true; - }) [ - (features_.byteorder."${deps."bytes"."0.4.11"."byteorder"}" deps) - (features_.iovec."${deps."bytes"."0.4.11"."iovec"}" deps) - ]; - - -# end -# cargo-download-0.1.2 - - crates.cargo_download."0.1.2" = deps: { features?(features_.cargo_download."0.1.2" deps {}) }: buildRustCrate { - crateName = "cargo-download"; - version = "0.1.2"; - description = "Cargo subcommand for downloading crate sources"; - authors = [ "Karol Kuczmarski " ]; - sha256 = "1gfn0iabiriq0n9sqkyp2g73rw12mr9ng61fx198xaffflxk7g36"; - crateBin = - [{ name = "cargo-download"; }]; - dependencies = mapFeatures features ([ - (crates."ansi_term"."${deps."cargo_download"."0.1.2"."ansi_term"}" deps) - (crates."clap"."${deps."cargo_download"."0.1.2"."clap"}" deps) - (crates."conv"."${deps."cargo_download"."0.1.2"."conv"}" deps) - (crates."derive_error"."${deps."cargo_download"."0.1.2"."derive_error"}" deps) - (crates."exitcode"."${deps."cargo_download"."0.1.2"."exitcode"}" deps) - (crates."flate2"."${deps."cargo_download"."0.1.2"."flate2"}" deps) - (crates."isatty"."${deps."cargo_download"."0.1.2"."isatty"}" deps) - (crates."itertools"."${deps."cargo_download"."0.1.2"."itertools"}" deps) - (crates."lazy_static"."${deps."cargo_download"."0.1.2"."lazy_static"}" deps) - (crates."log"."${deps."cargo_download"."0.1.2"."log"}" deps) - (crates."maplit"."${deps."cargo_download"."0.1.2"."maplit"}" deps) - (crates."reqwest"."${deps."cargo_download"."0.1.2"."reqwest"}" deps) - (crates."semver"."${deps."cargo_download"."0.1.2"."semver"}" deps) - (crates."serde_json"."${deps."cargo_download"."0.1.2"."serde_json"}" deps) - (crates."slog"."${deps."cargo_download"."0.1.2"."slog"}" deps) - (crates."slog_envlogger"."${deps."cargo_download"."0.1.2"."slog_envlogger"}" deps) - (crates."slog_stdlog"."${deps."cargo_download"."0.1.2"."slog_stdlog"}" deps) - (crates."slog_stream"."${deps."cargo_download"."0.1.2"."slog_stream"}" deps) - (crates."tar"."${deps."cargo_download"."0.1.2"."tar"}" deps) - (crates."time"."${deps."cargo_download"."0.1.2"."time"}" deps) - ]); - }; - features_.cargo_download."0.1.2" = deps: f: updateFeatures f ({ - ansi_term."${deps.cargo_download."0.1.2".ansi_term}".default = true; - cargo_download."0.1.2".default = (f.cargo_download."0.1.2".default or true); - clap."${deps.cargo_download."0.1.2".clap}".default = true; - conv."${deps.cargo_download."0.1.2".conv}".default = true; - derive_error."${deps.cargo_download."0.1.2".derive_error}".default = true; - exitcode."${deps.cargo_download."0.1.2".exitcode}".default = true; - flate2."${deps.cargo_download."0.1.2".flate2}".default = true; - isatty."${deps.cargo_download."0.1.2".isatty}".default = true; - itertools."${deps.cargo_download."0.1.2".itertools}".default = true; - lazy_static."${deps.cargo_download."0.1.2".lazy_static}".default = true; - log."${deps.cargo_download."0.1.2".log}".default = true; - maplit."${deps.cargo_download."0.1.2".maplit}".default = true; - reqwest."${deps.cargo_download."0.1.2".reqwest}".default = true; - semver."${deps.cargo_download."0.1.2".semver}".default = true; - serde_json."${deps.cargo_download."0.1.2".serde_json}".default = true; - slog."${deps.cargo_download."0.1.2".slog}".default = true; - slog_envlogger."${deps.cargo_download."0.1.2".slog_envlogger}".default = true; - slog_stdlog."${deps.cargo_download."0.1.2".slog_stdlog}".default = true; - slog_stream."${deps.cargo_download."0.1.2".slog_stream}".default = true; - tar."${deps.cargo_download."0.1.2".tar}".default = true; - time."${deps.cargo_download."0.1.2".time}".default = true; - }) [ - (features_.ansi_term."${deps."cargo_download"."0.1.2"."ansi_term"}" deps) - (features_.clap."${deps."cargo_download"."0.1.2"."clap"}" deps) - (features_.conv."${deps."cargo_download"."0.1.2"."conv"}" deps) - (features_.derive_error."${deps."cargo_download"."0.1.2"."derive_error"}" deps) - (features_.exitcode."${deps."cargo_download"."0.1.2"."exitcode"}" deps) - (features_.flate2."${deps."cargo_download"."0.1.2"."flate2"}" deps) - (features_.isatty."${deps."cargo_download"."0.1.2"."isatty"}" deps) - (features_.itertools."${deps."cargo_download"."0.1.2"."itertools"}" deps) - (features_.lazy_static."${deps."cargo_download"."0.1.2"."lazy_static"}" deps) - (features_.log."${deps."cargo_download"."0.1.2"."log"}" deps) - (features_.maplit."${deps."cargo_download"."0.1.2"."maplit"}" deps) - (features_.reqwest."${deps."cargo_download"."0.1.2"."reqwest"}" deps) - (features_.semver."${deps."cargo_download"."0.1.2"."semver"}" deps) - (features_.serde_json."${deps."cargo_download"."0.1.2"."serde_json"}" deps) - (features_.slog."${deps."cargo_download"."0.1.2"."slog"}" deps) - (features_.slog_envlogger."${deps."cargo_download"."0.1.2"."slog_envlogger"}" deps) - (features_.slog_stdlog."${deps."cargo_download"."0.1.2"."slog_stdlog"}" deps) - (features_.slog_stream."${deps."cargo_download"."0.1.2"."slog_stream"}" deps) - (features_.tar."${deps."cargo_download"."0.1.2"."tar"}" deps) - (features_.time."${deps."cargo_download"."0.1.2"."time"}" deps) - ]; - - -# end -# case-0.1.0 - - crates.case."0.1.0" = deps: { features?(features_.case."0.1.0" deps {}) }: buildRustCrate { - crateName = "case"; - version = "0.1.0"; - description = "A set of letter case string helpers"; - authors = [ "Skyler Lipthay " ]; - sha256 = "06i1x3wqv30rkvlgj134qf9vzxhzz28bz41mm0rgki0i0f7gf96n"; - }; - features_.case."0.1.0" = deps: f: updateFeatures f ({ - case."0.1.0".default = (f.case."0.1.0".default or true); - }) []; - - -# end -# cc-1.0.3 - - crates.cc."1.0.3" = deps: { features?(features_.cc."1.0.3" deps {}) }: buildRustCrate { - crateName = "cc"; - version = "1.0.3"; - description = "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "193pwqgh79w6k0k29svyds5nnlrwx44myqyrw605d5jj4yk2zmpr"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."cc"."1.0.3" or {}); - }; - features_.cc."1.0.3" = deps: f: updateFeatures f (rec { - cc = fold recursiveUpdate {} [ - { "1.0.3"."rayon" = - (f.cc."1.0.3"."rayon" or false) || - (f.cc."1.0.3".parallel or false) || - (cc."1.0.3"."parallel" or false); } - { "1.0.3".default = (f.cc."1.0.3".default or true); } - ]; - }) []; - - -# end -# cfg-if-0.1.2 - - crates.cfg_if."0.1.2" = deps: { features?(features_.cfg_if."0.1.2" deps {}) }: buildRustCrate { - crateName = "cfg-if"; - version = "0.1.2"; - description = "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "0x06hvrrqy96m97593823vvxcgvjaxckghwyy2jcyc8qc7c6cyhi"; - }; - features_.cfg_if."0.1.2" = deps: f: updateFeatures f ({ - cfg_if."0.1.2".default = (f.cfg_if."0.1.2".default or true); - }) []; - - -# end -# chrono-0.2.25 - - crates.chrono."0.2.25" = deps: { features?(features_.chrono."0.2.25" deps {}) }: buildRustCrate { - crateName = "chrono"; - version = "0.2.25"; - description = "Date and time library for Rust"; - authors = [ "Kang Seonghoon " ]; - sha256 = "0gsvqk8cnmm43qj3xyngqvfqh50cbdbqas7ik0wjgnvknirmmca7"; - dependencies = mapFeatures features ([ - (crates."num"."${deps."chrono"."0.2.25"."num"}" deps) - (crates."time"."${deps."chrono"."0.2.25"."time"}" deps) - ]); - }; - features_.chrono."0.2.25" = deps: f: updateFeatures f ({ - chrono."0.2.25".default = (f.chrono."0.2.25".default or true); - num."${deps.chrono."0.2.25".num}".default = (f.num."${deps.chrono."0.2.25".num}".default or false); - time."${deps.chrono."0.2.25".time}".default = true; - }) [ - (features_.num."${deps."chrono"."0.2.25"."num"}" deps) - (features_.time."${deps."chrono"."0.2.25"."time"}" deps) - ]; - - -# end -# clap-2.27.1 - - crates.clap."2.27.1" = deps: { features?(features_.clap."2.27.1" deps {}) }: buildRustCrate { - crateName = "clap"; - version = "2.27.1"; - description = "A simple to use, efficient, and full featured Command Line Argument Parser\n"; - authors = [ "Kevin K. " ]; - sha256 = "0zx8rskqfl3iqn3vlyxzyd99hpifa7bm871akhxpz9wvrm688zaj"; - dependencies = mapFeatures features ([ - (crates."bitflags"."${deps."clap"."2.27.1"."bitflags"}" deps) - (crates."textwrap"."${deps."clap"."2.27.1"."textwrap"}" deps) - (crates."unicode_width"."${deps."clap"."2.27.1"."unicode_width"}" deps) - ] - ++ (if features.clap."2.27.1".ansi_term or false then [ (crates.ansi_term."${deps."clap"."2.27.1".ansi_term}" deps) ] else []) - ++ (if features.clap."2.27.1".atty or false then [ (crates.atty."${deps."clap"."2.27.1".atty}" deps) ] else []) - ++ (if features.clap."2.27.1".strsim or false then [ (crates.strsim."${deps."clap"."2.27.1".strsim}" deps) ] else []) - ++ (if features.clap."2.27.1".vec_map or false then [ (crates.vec_map."${deps."clap"."2.27.1".vec_map}" deps) ] else [])); - features = mkFeatures (features."clap"."2.27.1" or {}); - }; - features_.clap."2.27.1" = deps: f: updateFeatures f (rec { - ansi_term."${deps.clap."2.27.1".ansi_term}".default = true; - atty."${deps.clap."2.27.1".atty}".default = true; - bitflags."${deps.clap."2.27.1".bitflags}".default = true; - clap = fold recursiveUpdate {} [ - { "2.27.1"."ansi_term" = - (f.clap."2.27.1"."ansi_term" or false) || - (f.clap."2.27.1".color or false) || - (clap."2.27.1"."color" or false); } - { "2.27.1"."atty" = - (f.clap."2.27.1"."atty" or false) || - (f.clap."2.27.1".color or false) || - (clap."2.27.1"."color" or false); } - { "2.27.1"."clippy" = - (f.clap."2.27.1"."clippy" or false) || - (f.clap."2.27.1".lints or false) || - (clap."2.27.1"."lints" or false); } - { "2.27.1"."color" = - (f.clap."2.27.1"."color" or false) || - (f.clap."2.27.1".default or false) || - (clap."2.27.1"."default" or false); } - { "2.27.1"."strsim" = - (f.clap."2.27.1"."strsim" or false) || - (f.clap."2.27.1".suggestions or false) || - (clap."2.27.1"."suggestions" or false); } - { "2.27.1"."suggestions" = - (f.clap."2.27.1"."suggestions" or false) || - (f.clap."2.27.1".default or false) || - (clap."2.27.1"."default" or false); } - { "2.27.1"."term_size" = - (f.clap."2.27.1"."term_size" or false) || - (f.clap."2.27.1".wrap_help or false) || - (clap."2.27.1"."wrap_help" or false); } - { "2.27.1"."vec_map" = - (f.clap."2.27.1"."vec_map" or false) || - (f.clap."2.27.1".default or false) || - (clap."2.27.1"."default" or false); } - { "2.27.1"."yaml" = - (f.clap."2.27.1"."yaml" or false) || - (f.clap."2.27.1".doc or false) || - (clap."2.27.1"."doc" or false); } - { "2.27.1"."yaml-rust" = - (f.clap."2.27.1"."yaml-rust" or false) || - (f.clap."2.27.1".yaml or false) || - (clap."2.27.1"."yaml" or false); } - { "2.27.1".default = (f.clap."2.27.1".default or true); } - ]; - strsim."${deps.clap."2.27.1".strsim}".default = true; - textwrap = fold recursiveUpdate {} [ - { "${deps.clap."2.27.1".textwrap}"."term_size" = - (f.textwrap."${deps.clap."2.27.1".textwrap}"."term_size" or false) || - (clap."2.27.1"."wrap_help" or false) || - (f."clap"."2.27.1"."wrap_help" or false); } - { "${deps.clap."2.27.1".textwrap}".default = true; } - ]; - unicode_width."${deps.clap."2.27.1".unicode_width}".default = true; - vec_map."${deps.clap."2.27.1".vec_map}".default = true; - }) [ - (features_.ansi_term."${deps."clap"."2.27.1"."ansi_term"}" deps) - (features_.atty."${deps."clap"."2.27.1"."atty"}" deps) - (features_.bitflags."${deps."clap"."2.27.1"."bitflags"}" deps) - (features_.strsim."${deps."clap"."2.27.1"."strsim"}" deps) - (features_.textwrap."${deps."clap"."2.27.1"."textwrap"}" deps) - (features_.unicode_width."${deps."clap"."2.27.1"."unicode_width"}" deps) - (features_.vec_map."${deps."clap"."2.27.1"."vec_map"}" deps) - ]; - - -# end -# cloudabi-0.0.3 - - crates.cloudabi."0.0.3" = deps: { features?(features_.cloudabi."0.0.3" deps {}) }: buildRustCrate { - crateName = "cloudabi"; - version = "0.0.3"; - description = "Low level interface to CloudABI. Contains all syscalls and related types."; - authors = [ "Nuxi (https://nuxi.nl/) and contributors" ]; - sha256 = "1z9lby5sr6vslfd14d6igk03s7awf91mxpsfmsp3prxbxlk0x7h5"; - libPath = "cloudabi.rs"; - dependencies = mapFeatures features ([ - ] - ++ (if features.cloudabi."0.0.3".bitflags or false then [ (crates.bitflags."${deps."cloudabi"."0.0.3".bitflags}" deps) ] else [])); - features = mkFeatures (features."cloudabi"."0.0.3" or {}); - }; - features_.cloudabi."0.0.3" = deps: f: updateFeatures f (rec { - bitflags."${deps.cloudabi."0.0.3".bitflags}".default = true; - cloudabi = fold recursiveUpdate {} [ - { "0.0.3"."bitflags" = - (f.cloudabi."0.0.3"."bitflags" or false) || - (f.cloudabi."0.0.3".default or false) || - (cloudabi."0.0.3"."default" or false); } - { "0.0.3".default = (f.cloudabi."0.0.3".default or true); } - ]; - }) [ - (features_.bitflags."${deps."cloudabi"."0.0.3"."bitflags"}" deps) - ]; - - -# end -# conv-0.3.3 - - crates.conv."0.3.3" = deps: { features?(features_.conv."0.3.3" deps {}) }: buildRustCrate { - crateName = "conv"; - version = "0.3.3"; - description = "This crate provides a number of conversion traits with more specific semantics than those provided by 'as' or 'From'/'Into'."; - authors = [ "Daniel Keep " ]; - sha256 = "08rl72k1a48xah0ar5l9v1bw19pp8jdw2pdkd3vvj9ijsyyg9yik"; - dependencies = mapFeatures features ([ - (crates."custom_derive"."${deps."conv"."0.3.3"."custom_derive"}" deps) - ]); - }; - features_.conv."0.3.3" = deps: f: updateFeatures f ({ - conv."0.3.3".default = (f.conv."0.3.3".default or true); - custom_derive."${deps.conv."0.3.3".custom_derive}".default = true; - }) [ - (features_.custom_derive."${deps."conv"."0.3.3"."custom_derive"}" deps) - ]; - - -# end -# core-foundation-0.5.1 - - crates.core_foundation."0.5.1" = deps: { features?(features_.core_foundation."0.5.1" deps {}) }: buildRustCrate { - crateName = "core-foundation"; - version = "0.5.1"; - description = "Bindings to Core Foundation for OS X"; - authors = [ "The Servo Project Developers" ]; - sha256 = "03s11z23rb1kk325c34rmsbd7k0l5rkzk4q6id55n174z28zqln1"; - dependencies = mapFeatures features ([ - (crates."core_foundation_sys"."${deps."core_foundation"."0.5.1"."core_foundation_sys"}" deps) - (crates."libc"."${deps."core_foundation"."0.5.1"."libc"}" deps) - ]); - features = mkFeatures (features."core_foundation"."0.5.1" or {}); - }; - features_.core_foundation."0.5.1" = deps: f: updateFeatures f (rec { - core_foundation = fold recursiveUpdate {} [ - { "0.5.1"."chrono" = - (f.core_foundation."0.5.1"."chrono" or false) || - (f.core_foundation."0.5.1".with-chrono or false) || - (core_foundation."0.5.1"."with-chrono" or false); } - { "0.5.1"."uuid" = - (f.core_foundation."0.5.1"."uuid" or false) || - (f.core_foundation."0.5.1".with-uuid or false) || - (core_foundation."0.5.1"."with-uuid" or false); } - { "0.5.1".default = (f.core_foundation."0.5.1".default or true); } - ]; - core_foundation_sys = fold recursiveUpdate {} [ - { "${deps.core_foundation."0.5.1".core_foundation_sys}"."mac_os_10_7_support" = - (f.core_foundation_sys."${deps.core_foundation."0.5.1".core_foundation_sys}"."mac_os_10_7_support" or false) || - (core_foundation."0.5.1"."mac_os_10_7_support" or false) || - (f."core_foundation"."0.5.1"."mac_os_10_7_support" or false); } - { "${deps.core_foundation."0.5.1".core_foundation_sys}"."mac_os_10_8_features" = - (f.core_foundation_sys."${deps.core_foundation."0.5.1".core_foundation_sys}"."mac_os_10_8_features" or false) || - (core_foundation."0.5.1"."mac_os_10_8_features" or false) || - (f."core_foundation"."0.5.1"."mac_os_10_8_features" or false); } - { "${deps.core_foundation."0.5.1".core_foundation_sys}".default = true; } - ]; - libc."${deps.core_foundation."0.5.1".libc}".default = true; - }) [ - (features_.core_foundation_sys."${deps."core_foundation"."0.5.1"."core_foundation_sys"}" deps) - (features_.libc."${deps."core_foundation"."0.5.1"."libc"}" deps) - ]; - - -# end -# core-foundation-sys-0.5.1 - - crates.core_foundation_sys."0.5.1" = deps: { features?(features_.core_foundation_sys."0.5.1" deps {}) }: buildRustCrate { - crateName = "core-foundation-sys"; - version = "0.5.1"; - description = "Bindings to Core Foundation for OS X"; - authors = [ "The Servo Project Developers" ]; - sha256 = "0qbrasll5nw1bgr071i8s8jc975d0y4qfysf868bh9xp0f6vcypa"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."core_foundation_sys"."0.5.1"."libc"}" deps) - ]); - features = mkFeatures (features."core_foundation_sys"."0.5.1" or {}); - }; - features_.core_foundation_sys."0.5.1" = deps: f: updateFeatures f ({ - core_foundation_sys."0.5.1".default = (f.core_foundation_sys."0.5.1".default or true); - libc."${deps.core_foundation_sys."0.5.1".libc}".default = true; - }) [ - (features_.libc."${deps."core_foundation_sys"."0.5.1"."libc"}" deps) - ]; - - -# end -# crc32fast-1.1.1 - - crates.crc32fast."1.1.1" = deps: { features?(features_.crc32fast."1.1.1" deps {}) }: buildRustCrate { - crateName = "crc32fast"; - version = "1.1.1"; - description = "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation"; - authors = [ "Sam Rijs " "Alex Crichton " ]; - sha256 = "1rwvhb98w41mk5phr84mryally58f68h0v933772gdxqvqbcayqy"; - }; - features_.crc32fast."1.1.1" = deps: f: updateFeatures f ({ - crc32fast."1.1.1".default = (f.crc32fast."1.1.1".default or true); - }) []; - - -# end -# crossbeam-0.2.10 - - crates.crossbeam."0.2.10" = deps: { features?(features_.crossbeam."0.2.10" deps {}) }: buildRustCrate { - crateName = "crossbeam"; - version = "0.2.10"; - description = "Support for lock-free data structures, synchronizers, and parallel programming"; - authors = [ "Aaron Turon " ]; - sha256 = "1k1a4q5gy7zakiw39hdzrblnw3kk4nsqmkdp1dpzh8h558140rhq"; - features = mkFeatures (features."crossbeam"."0.2.10" or {}); - }; - features_.crossbeam."0.2.10" = deps: f: updateFeatures f ({ - crossbeam."0.2.10".default = (f.crossbeam."0.2.10".default or true); - }) []; - - -# end -# crossbeam-deque-0.6.2 - - crates.crossbeam_deque."0.6.2" = deps: { features?(features_.crossbeam_deque."0.6.2" deps {}) }: buildRustCrate { - crateName = "crossbeam-deque"; - version = "0.6.2"; - description = "Concurrent work-stealing deque"; - authors = [ "The Crossbeam Project Developers" ]; - sha256 = "0qjdpq03snj6xp5gydgy1bdd5zzwpdxa57vhky3mf4djxiq81ara"; - dependencies = mapFeatures features ([ - (crates."crossbeam_epoch"."${deps."crossbeam_deque"."0.6.2"."crossbeam_epoch"}" deps) - (crates."crossbeam_utils"."${deps."crossbeam_deque"."0.6.2"."crossbeam_utils"}" deps) - ]); - }; - features_.crossbeam_deque."0.6.2" = deps: f: updateFeatures f ({ - crossbeam_deque."0.6.2".default = (f.crossbeam_deque."0.6.2".default or true); - crossbeam_epoch."${deps.crossbeam_deque."0.6.2".crossbeam_epoch}".default = true; - crossbeam_utils."${deps.crossbeam_deque."0.6.2".crossbeam_utils}".default = true; - }) [ - (features_.crossbeam_epoch."${deps."crossbeam_deque"."0.6.2"."crossbeam_epoch"}" deps) - (features_.crossbeam_utils."${deps."crossbeam_deque"."0.6.2"."crossbeam_utils"}" deps) - ]; - - -# end -# crossbeam-epoch-0.6.1 - - crates.crossbeam_epoch."0.6.1" = deps: { features?(features_.crossbeam_epoch."0.6.1" deps {}) }: buildRustCrate { - crateName = "crossbeam-epoch"; - version = "0.6.1"; - description = "Epoch-based garbage collection"; - authors = [ "The Crossbeam Project Developers" ]; - sha256 = "0qlwzsf2xmdjbh6pv9bxra2qdq72cmywq4fq1q114zw2s06zr039"; - dependencies = mapFeatures features ([ - (crates."arrayvec"."${deps."crossbeam_epoch"."0.6.1"."arrayvec"}" deps) - (crates."cfg_if"."${deps."crossbeam_epoch"."0.6.1"."cfg_if"}" deps) - (crates."crossbeam_utils"."${deps."crossbeam_epoch"."0.6.1"."crossbeam_utils"}" deps) - (crates."memoffset"."${deps."crossbeam_epoch"."0.6.1"."memoffset"}" deps) - (crates."scopeguard"."${deps."crossbeam_epoch"."0.6.1"."scopeguard"}" deps) - ] - ++ (if features.crossbeam_epoch."0.6.1".lazy_static or false then [ (crates.lazy_static."${deps."crossbeam_epoch"."0.6.1".lazy_static}" deps) ] else [])); - features = mkFeatures (features."crossbeam_epoch"."0.6.1" or {}); - }; - features_.crossbeam_epoch."0.6.1" = deps: f: updateFeatures f (rec { - arrayvec = fold recursiveUpdate {} [ - { "${deps.crossbeam_epoch."0.6.1".arrayvec}"."use_union" = - (f.arrayvec."${deps.crossbeam_epoch."0.6.1".arrayvec}"."use_union" or false) || - (crossbeam_epoch."0.6.1"."nightly" or false) || - (f."crossbeam_epoch"."0.6.1"."nightly" or false); } - { "${deps.crossbeam_epoch."0.6.1".arrayvec}".default = (f.arrayvec."${deps.crossbeam_epoch."0.6.1".arrayvec}".default or false); } - ]; - cfg_if."${deps.crossbeam_epoch."0.6.1".cfg_if}".default = true; - crossbeam_epoch = fold recursiveUpdate {} [ - { "0.6.1"."lazy_static" = - (f.crossbeam_epoch."0.6.1"."lazy_static" or false) || - (f.crossbeam_epoch."0.6.1".std or false) || - (crossbeam_epoch."0.6.1"."std" or false); } - { "0.6.1"."std" = - (f.crossbeam_epoch."0.6.1"."std" or false) || - (f.crossbeam_epoch."0.6.1".default or false) || - (crossbeam_epoch."0.6.1"."default" or false); } - { "0.6.1".default = (f.crossbeam_epoch."0.6.1".default or true); } - ]; - crossbeam_utils = fold recursiveUpdate {} [ - { "${deps.crossbeam_epoch."0.6.1".crossbeam_utils}"."std" = - (f.crossbeam_utils."${deps.crossbeam_epoch."0.6.1".crossbeam_utils}"."std" or false) || - (crossbeam_epoch."0.6.1"."std" or false) || - (f."crossbeam_epoch"."0.6.1"."std" or false); } - { "${deps.crossbeam_epoch."0.6.1".crossbeam_utils}".default = (f.crossbeam_utils."${deps.crossbeam_epoch."0.6.1".crossbeam_utils}".default or false); } - ]; - lazy_static."${deps.crossbeam_epoch."0.6.1".lazy_static}".default = true; - memoffset."${deps.crossbeam_epoch."0.6.1".memoffset}".default = true; - scopeguard."${deps.crossbeam_epoch."0.6.1".scopeguard}".default = (f.scopeguard."${deps.crossbeam_epoch."0.6.1".scopeguard}".default or false); - }) [ - (features_.arrayvec."${deps."crossbeam_epoch"."0.6.1"."arrayvec"}" deps) - (features_.cfg_if."${deps."crossbeam_epoch"."0.6.1"."cfg_if"}" deps) - (features_.crossbeam_utils."${deps."crossbeam_epoch"."0.6.1"."crossbeam_utils"}" deps) - (features_.lazy_static."${deps."crossbeam_epoch"."0.6.1"."lazy_static"}" deps) - (features_.memoffset."${deps."crossbeam_epoch"."0.6.1"."memoffset"}" deps) - (features_.scopeguard."${deps."crossbeam_epoch"."0.6.1"."scopeguard"}" deps) - ]; - - -# end -# crossbeam-utils-0.6.1 - - crates.crossbeam_utils."0.6.1" = deps: { features?(features_.crossbeam_utils."0.6.1" deps {}) }: buildRustCrate { - crateName = "crossbeam-utils"; - version = "0.6.1"; - description = "Utilities for concurrent programming"; - authors = [ "The Crossbeam Project Developers" ]; - sha256 = "031lk6ls49yvwkdxhjm4fvg81iww01h108jq1cnlh88yzbcnwn2c"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."crossbeam_utils"."0.6.1"."cfg_if"}" deps) - ]); - features = mkFeatures (features."crossbeam_utils"."0.6.1" or {}); - }; - features_.crossbeam_utils."0.6.1" = deps: f: updateFeatures f (rec { - cfg_if."${deps.crossbeam_utils."0.6.1".cfg_if}".default = true; - crossbeam_utils = fold recursiveUpdate {} [ - { "0.6.1"."std" = - (f.crossbeam_utils."0.6.1"."std" or false) || - (f.crossbeam_utils."0.6.1".default or false) || - (crossbeam_utils."0.6.1"."default" or false); } - { "0.6.1".default = (f.crossbeam_utils."0.6.1".default or true); } - ]; - }) [ - (features_.cfg_if."${deps."crossbeam_utils"."0.6.1"."cfg_if"}" deps) - ]; - - -# end -# custom_derive-0.1.7 - - crates.custom_derive."0.1.7" = deps: { features?(features_.custom_derive."0.1.7" deps {}) }: buildRustCrate { - crateName = "custom_derive"; - version = "0.1.7"; - description = "(Note: superseded by `macro-attr`) This crate provides a macro that enables the use of custom derive attributes."; - authors = [ "Daniel Keep " ]; - sha256 = "160q3pzri2fgrr6czfdkwy1sbddki2za96r7ivvyii52qp1523zs"; - features = mkFeatures (features."custom_derive"."0.1.7" or {}); - }; - features_.custom_derive."0.1.7" = deps: f: updateFeatures f (rec { - custom_derive = fold recursiveUpdate {} [ - { "0.1.7"."std" = - (f.custom_derive."0.1.7"."std" or false) || - (f.custom_derive."0.1.7".default or false) || - (custom_derive."0.1.7"."default" or false); } - { "0.1.7".default = (f.custom_derive."0.1.7".default or true); } - ]; - }) []; - - -# end -# derive-error-0.0.3 - - crates.derive_error."0.0.3" = deps: { features?(features_.derive_error."0.0.3" deps {}) }: buildRustCrate { - crateName = "derive-error"; - version = "0.0.3"; - description = "Derive macro for Error using macros 1.1"; - authors = [ "rushmorem " ]; - sha256 = "0239vzxn5xr9nm3i4d6hmqy7dv8llcjblgh1xixfk5dcgcqan77y"; - procMacro = true; - dependencies = mapFeatures features ([ - (crates."case"."${deps."derive_error"."0.0.3"."case"}" deps) - (crates."quote"."${deps."derive_error"."0.0.3"."quote"}" deps) - (crates."syn"."${deps."derive_error"."0.0.3"."syn"}" deps) - ]); - }; - features_.derive_error."0.0.3" = deps: f: updateFeatures f ({ - case."${deps.derive_error."0.0.3".case}".default = true; - derive_error."0.0.3".default = (f.derive_error."0.0.3".default or true); - quote."${deps.derive_error."0.0.3".quote}".default = true; - syn."${deps.derive_error."0.0.3".syn}".default = true; - }) [ - (features_.case."${deps."derive_error"."0.0.3"."case"}" deps) - (features_.quote."${deps."derive_error"."0.0.3"."quote"}" deps) - (features_.syn."${deps."derive_error"."0.0.3"."syn"}" deps) - ]; - - -# end -# dtoa-0.4.2 - - crates.dtoa."0.4.2" = deps: { features?(features_.dtoa."0.4.2" deps {}) }: buildRustCrate { - crateName = "dtoa"; - version = "0.4.2"; - description = "Fast functions for printing floating-point primitives to an io::Write"; - authors = [ "David Tolnay " ]; - sha256 = "1bxsh6fags7nr36vlz07ik2a1rzyipc8x1y30kjk832hf2pzadmw"; - }; - features_.dtoa."0.4.2" = deps: f: updateFeatures f ({ - dtoa."0.4.2".default = (f.dtoa."0.4.2".default or true); - }) []; - - -# end -# either-1.4.0 - - crates.either."1.4.0" = deps: { features?(features_.either."1.4.0" deps {}) }: buildRustCrate { - crateName = "either"; - version = "1.4.0"; - description = "The enum [`Either`] with variants `Left` and `Right` is a general purpose sum type with two cases.\n"; - authors = [ "bluss" ]; - sha256 = "04kpfd84lvyrkb2z4sljlz2d3d5qczd0sb1yy37fgijq2yx3vb37"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."either"."1.4.0" or {}); - }; - features_.either."1.4.0" = deps: f: updateFeatures f (rec { - either = fold recursiveUpdate {} [ - { "1.4.0"."use_std" = - (f.either."1.4.0"."use_std" or false) || - (f.either."1.4.0".default or false) || - (either."1.4.0"."default" or false); } - { "1.4.0".default = (f.either."1.4.0".default or true); } - ]; - }) []; - - -# end -# encoding_rs-0.8.13 - - crates.encoding_rs."0.8.13" = deps: { features?(features_.encoding_rs."0.8.13" deps {}) }: buildRustCrate { - crateName = "encoding_rs"; - version = "0.8.13"; - description = "A Gecko-oriented implementation of the Encoding Standard"; - authors = [ "Henri Sivonen " ]; - sha256 = "1a91x1cnw1iz3hc32mvdmwhbqcfx36kk04pnil17mcii1ni6xyy5"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."encoding_rs"."0.8.13"."cfg_if"}" deps) - ]); - features = mkFeatures (features."encoding_rs"."0.8.13" or {}); - }; - features_.encoding_rs."0.8.13" = deps: f: updateFeatures f (rec { - cfg_if."${deps.encoding_rs."0.8.13".cfg_if}".default = true; - encoding_rs = fold recursiveUpdate {} [ - { "0.8.13"."fast-big5-hanzi-encode" = - (f.encoding_rs."0.8.13"."fast-big5-hanzi-encode" or false) || - (f.encoding_rs."0.8.13".fast-legacy-encode or false) || - (encoding_rs."0.8.13"."fast-legacy-encode" or false); } - { "0.8.13"."fast-gb-hanzi-encode" = - (f.encoding_rs."0.8.13"."fast-gb-hanzi-encode" or false) || - (f.encoding_rs."0.8.13".fast-legacy-encode or false) || - (encoding_rs."0.8.13"."fast-legacy-encode" or false); } - { "0.8.13"."fast-hangul-encode" = - (f.encoding_rs."0.8.13"."fast-hangul-encode" or false) || - (f.encoding_rs."0.8.13".fast-legacy-encode or false) || - (encoding_rs."0.8.13"."fast-legacy-encode" or false); } - { "0.8.13"."fast-hanja-encode" = - (f.encoding_rs."0.8.13"."fast-hanja-encode" or false) || - (f.encoding_rs."0.8.13".fast-legacy-encode or false) || - (encoding_rs."0.8.13"."fast-legacy-encode" or false); } - { "0.8.13"."fast-kanji-encode" = - (f.encoding_rs."0.8.13"."fast-kanji-encode" or false) || - (f.encoding_rs."0.8.13".fast-legacy-encode or false) || - (encoding_rs."0.8.13"."fast-legacy-encode" or false); } - { "0.8.13"."simd" = - (f.encoding_rs."0.8.13"."simd" or false) || - (f.encoding_rs."0.8.13".simd-accel or false) || - (encoding_rs."0.8.13"."simd-accel" or false); } - { "0.8.13".default = (f.encoding_rs."0.8.13".default or true); } - ]; - }) [ - (features_.cfg_if."${deps."encoding_rs"."0.8.13"."cfg_if"}" deps) - ]; - - -# end -# exitcode-1.1.2 - - crates.exitcode."1.1.2" = deps: { features?(features_.exitcode."1.1.2" deps {}) }: buildRustCrate { - crateName = "exitcode"; - version = "1.1.2"; - description = "Preferred system exit codes as defined by sysexits.h"; - authors = [ "Ben Wilber " ]; - sha256 = "1cw9p4vzbscvyrbzv7z68gv2cairrns2d4wcb4nkahkcjk25phip"; - }; - features_.exitcode."1.1.2" = deps: f: updateFeatures f ({ - exitcode."1.1.2".default = (f.exitcode."1.1.2".default or true); - }) []; - - -# end -# filetime-0.1.14 - - crates.filetime."0.1.14" = deps: { features?(features_.filetime."0.1.14" deps {}) }: buildRustCrate { - crateName = "filetime"; - version = "0.1.14"; - description = "Platform-agnostic accessors of timestamps in File metadata\n"; - authors = [ "Alex Crichton " ]; - sha256 = "0i6dvc3ba7vl1iccc91k7c9bv9j5md98mbvlmfy0kicikx0ffn08"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."filetime"."0.1.14"."cfg_if"}" deps) - ]) - ++ (if kernel == "redox" then mapFeatures features ([ - (crates."redox_syscall"."${deps."filetime"."0.1.14"."redox_syscall"}" deps) - ]) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."filetime"."0.1.14"."libc"}" deps) - ]) else []); - }; - features_.filetime."0.1.14" = deps: f: updateFeatures f ({ - cfg_if."${deps.filetime."0.1.14".cfg_if}".default = true; - filetime."0.1.14".default = (f.filetime."0.1.14".default or true); - libc."${deps.filetime."0.1.14".libc}".default = true; - redox_syscall."${deps.filetime."0.1.14".redox_syscall}".default = true; - }) [ - (features_.cfg_if."${deps."filetime"."0.1.14"."cfg_if"}" deps) - (features_.redox_syscall."${deps."filetime"."0.1.14"."redox_syscall"}" deps) - (features_.libc."${deps."filetime"."0.1.14"."libc"}" deps) - ]; - - -# end -# flate2-0.2.20 - - crates.flate2."0.2.20" = deps: { features?(features_.flate2."0.2.20" deps {}) }: buildRustCrate { - crateName = "flate2"; - version = "0.2.20"; - description = "Bindings to miniz.c for DEFLATE compression and decompression exposed as\nReader/Writer streams. Contains bindings for zlib, deflate, and gzip-based\nstreams.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1am0d2vmqym1vcg7rvv516vpcrbhdn1jisy0q03r3nbzdzh54ppl"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."flate2"."0.2.20"."libc"}" deps) - ] - ++ (if features.flate2."0.2.20".miniz-sys or false then [ (crates.miniz_sys."${deps."flate2"."0.2.20".miniz_sys}" deps) ] else [])); - features = mkFeatures (features."flate2"."0.2.20" or {}); - }; - features_.flate2."0.2.20" = deps: f: updateFeatures f (rec { - flate2 = fold recursiveUpdate {} [ - { "0.2.20"."futures" = - (f.flate2."0.2.20"."futures" or false) || - (f.flate2."0.2.20".tokio or false) || - (flate2."0.2.20"."tokio" or false); } - { "0.2.20"."libz-sys" = - (f.flate2."0.2.20"."libz-sys" or false) || - (f.flate2."0.2.20".zlib or false) || - (flate2."0.2.20"."zlib" or false); } - { "0.2.20"."miniz-sys" = - (f.flate2."0.2.20"."miniz-sys" or false) || - (f.flate2."0.2.20".default or false) || - (flate2."0.2.20"."default" or false); } - { "0.2.20"."tokio-io" = - (f.flate2."0.2.20"."tokio-io" or false) || - (f.flate2."0.2.20".tokio or false) || - (flate2."0.2.20"."tokio" or false); } - { "0.2.20".default = (f.flate2."0.2.20".default or true); } - ]; - libc."${deps.flate2."0.2.20".libc}".default = true; - miniz_sys."${deps.flate2."0.2.20".miniz_sys}".default = true; - }) [ - (features_.libc."${deps."flate2"."0.2.20"."libc"}" deps) - (features_.miniz_sys."${deps."flate2"."0.2.20"."miniz_sys"}" deps) - ]; - - -# end -# fnv-1.0.6 - - crates.fnv."1.0.6" = deps: { features?(features_.fnv."1.0.6" deps {}) }: buildRustCrate { - crateName = "fnv"; - version = "1.0.6"; - description = "Fowler–Noll–Vo hash function"; - authors = [ "Alex Crichton " ]; - sha256 = "128mlh23y3gg6ag5h8iiqlcbl59smisdzraqy88ldrf75kbw27ip"; - libPath = "lib.rs"; - }; - features_.fnv."1.0.6" = deps: f: updateFeatures f ({ - fnv."1.0.6".default = (f.fnv."1.0.6".default or true); - }) []; - - -# end -# foreign-types-0.3.2 - - crates.foreign_types."0.3.2" = deps: { features?(features_.foreign_types."0.3.2" deps {}) }: buildRustCrate { - crateName = "foreign-types"; - version = "0.3.2"; - description = "A framework for Rust wrappers over C APIs"; - authors = [ "Steven Fackler " ]; - sha256 = "105n8sp2djb1s5lzrw04p7ss3dchr5qa3canmynx396nh3vwm2p8"; - dependencies = mapFeatures features ([ - (crates."foreign_types_shared"."${deps."foreign_types"."0.3.2"."foreign_types_shared"}" deps) - ]); - }; - features_.foreign_types."0.3.2" = deps: f: updateFeatures f ({ - foreign_types."0.3.2".default = (f.foreign_types."0.3.2".default or true); - foreign_types_shared."${deps.foreign_types."0.3.2".foreign_types_shared}".default = true; - }) [ - (features_.foreign_types_shared."${deps."foreign_types"."0.3.2"."foreign_types_shared"}" deps) - ]; - - -# end -# foreign-types-shared-0.1.1 - - crates.foreign_types_shared."0.1.1" = deps: { features?(features_.foreign_types_shared."0.1.1" deps {}) }: buildRustCrate { - crateName = "foreign-types-shared"; - version = "0.1.1"; - description = "An internal crate used by foreign-types"; - authors = [ "Steven Fackler " ]; - sha256 = "0b6cnvqbflws8dxywk4589vgbz80049lz4x1g9dfy4s1ppd3g4z5"; - }; - features_.foreign_types_shared."0.1.1" = deps: f: updateFeatures f ({ - foreign_types_shared."0.1.1".default = (f.foreign_types_shared."0.1.1".default or true); - }) []; - - -# end -# fuchsia-zircon-0.2.1 - - crates.fuchsia_zircon."0.2.1" = deps: { features?(features_.fuchsia_zircon."0.2.1" deps {}) }: buildRustCrate { - crateName = "fuchsia-zircon"; - version = "0.2.1"; - description = "Rust bindings for the Zircon kernel"; - authors = [ "Raph Levien " ]; - sha256 = "0yd4rd7ql1vdr349p6vgq2dnwmpylky1kjp8g1zgvp250jxrhddb"; - dependencies = mapFeatures features ([ - (crates."fuchsia_zircon_sys"."${deps."fuchsia_zircon"."0.2.1"."fuchsia_zircon_sys"}" deps) - ]); - }; - features_.fuchsia_zircon."0.2.1" = deps: f: updateFeatures f ({ - fuchsia_zircon."0.2.1".default = (f.fuchsia_zircon."0.2.1".default or true); - fuchsia_zircon_sys."${deps.fuchsia_zircon."0.2.1".fuchsia_zircon_sys}".default = true; - }) [ - (features_.fuchsia_zircon_sys."${deps."fuchsia_zircon"."0.2.1"."fuchsia_zircon_sys"}" deps) - ]; - - -# end -# fuchsia-zircon-0.3.3 - - crates.fuchsia_zircon."0.3.3" = deps: { features?(features_.fuchsia_zircon."0.3.3" deps {}) }: buildRustCrate { - crateName = "fuchsia-zircon"; - version = "0.3.3"; - description = "Rust bindings for the Zircon kernel"; - authors = [ "Raph Levien " ]; - sha256 = "0jrf4shb1699r4la8z358vri8318w4mdi6qzfqy30p2ymjlca4gk"; - dependencies = mapFeatures features ([ - (crates."bitflags"."${deps."fuchsia_zircon"."0.3.3"."bitflags"}" deps) - (crates."fuchsia_zircon_sys"."${deps."fuchsia_zircon"."0.3.3"."fuchsia_zircon_sys"}" deps) - ]); - }; - features_.fuchsia_zircon."0.3.3" = deps: f: updateFeatures f ({ - bitflags."${deps.fuchsia_zircon."0.3.3".bitflags}".default = true; - fuchsia_zircon."0.3.3".default = (f.fuchsia_zircon."0.3.3".default or true); - fuchsia_zircon_sys."${deps.fuchsia_zircon."0.3.3".fuchsia_zircon_sys}".default = true; - }) [ - (features_.bitflags."${deps."fuchsia_zircon"."0.3.3"."bitflags"}" deps) - (features_.fuchsia_zircon_sys."${deps."fuchsia_zircon"."0.3.3"."fuchsia_zircon_sys"}" deps) - ]; - - -# end -# fuchsia-zircon-sys-0.2.0 - - crates.fuchsia_zircon_sys."0.2.0" = deps: { features?(features_.fuchsia_zircon_sys."0.2.0" deps {}) }: buildRustCrate { - crateName = "fuchsia-zircon-sys"; - version = "0.2.0"; - description = "Low-level Rust bindings for the Zircon kernel"; - authors = [ "Raph Levien " ]; - sha256 = "1yrqsrjwlhl3di6prxf5xmyd82gyjaysldbka5wwk83z11mpqh4w"; - dependencies = mapFeatures features ([ - (crates."bitflags"."${deps."fuchsia_zircon_sys"."0.2.0"."bitflags"}" deps) - ]); - }; - features_.fuchsia_zircon_sys."0.2.0" = deps: f: updateFeatures f ({ - bitflags."${deps.fuchsia_zircon_sys."0.2.0".bitflags}".default = true; - fuchsia_zircon_sys."0.2.0".default = (f.fuchsia_zircon_sys."0.2.0".default or true); - }) [ - (features_.bitflags."${deps."fuchsia_zircon_sys"."0.2.0"."bitflags"}" deps) - ]; - - -# end -# fuchsia-zircon-sys-0.3.3 - - crates.fuchsia_zircon_sys."0.3.3" = deps: { features?(features_.fuchsia_zircon_sys."0.3.3" deps {}) }: buildRustCrate { - crateName = "fuchsia-zircon-sys"; - version = "0.3.3"; - description = "Low-level Rust bindings for the Zircon kernel"; - authors = [ "Raph Levien " ]; - sha256 = "08jp1zxrm9jbrr6l26bjal4dbm8bxfy57ickdgibsqxr1n9j3hf5"; - }; - features_.fuchsia_zircon_sys."0.3.3" = deps: f: updateFeatures f ({ - fuchsia_zircon_sys."0.3.3".default = (f.fuchsia_zircon_sys."0.3.3".default or true); - }) []; - - -# end -# futures-0.1.25 - - crates.futures."0.1.25" = deps: { features?(features_.futures."0.1.25" deps {}) }: buildRustCrate { - crateName = "futures"; - version = "0.1.25"; - description = "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1gdn9z3mi3jjzbxgvawqh90895130c3ydks55rshja0ncpn985q3"; - features = mkFeatures (features."futures"."0.1.25" or {}); - }; - features_.futures."0.1.25" = deps: f: updateFeatures f (rec { - futures = fold recursiveUpdate {} [ - { "0.1.25"."use_std" = - (f.futures."0.1.25"."use_std" or false) || - (f.futures."0.1.25".default or false) || - (futures."0.1.25"."default" or false); } - { "0.1.25"."with-deprecated" = - (f.futures."0.1.25"."with-deprecated" or false) || - (f.futures."0.1.25".default or false) || - (futures."0.1.25"."default" or false); } - { "0.1.25".default = (f.futures."0.1.25".default or true); } - ]; - }) []; - - -# end -# futures-cpupool-0.1.7 - - crates.futures_cpupool."0.1.7" = deps: { features?(features_.futures_cpupool."0.1.7" deps {}) }: buildRustCrate { - crateName = "futures-cpupool"; - version = "0.1.7"; - description = "An implementation of thread pools which hand out futures to the results of the\ncomputation on the threads themselves.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1m0z5d54q1zr687acb4fh5fb3x692vr5ais6135lvp7vxap6p0xb"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."futures_cpupool"."0.1.7"."futures"}" deps) - (crates."num_cpus"."${deps."futures_cpupool"."0.1.7"."num_cpus"}" deps) - ]); - features = mkFeatures (features."futures_cpupool"."0.1.7" or {}); - }; - features_.futures_cpupool."0.1.7" = deps: f: updateFeatures f (rec { - futures = fold recursiveUpdate {} [ - { "${deps.futures_cpupool."0.1.7".futures}"."use_std" = true; } - { "${deps.futures_cpupool."0.1.7".futures}"."with-deprecated" = - (f.futures."${deps.futures_cpupool."0.1.7".futures}"."with-deprecated" or false) || - (futures_cpupool."0.1.7"."with-deprecated" or false) || - (f."futures_cpupool"."0.1.7"."with-deprecated" or false); } - { "${deps.futures_cpupool."0.1.7".futures}".default = (f.futures."${deps.futures_cpupool."0.1.7".futures}".default or false); } - ]; - futures_cpupool = fold recursiveUpdate {} [ - { "0.1.7"."with-deprecated" = - (f.futures_cpupool."0.1.7"."with-deprecated" or false) || - (f.futures_cpupool."0.1.7".default or false) || - (futures_cpupool."0.1.7"."default" or false); } - { "0.1.7".default = (f.futures_cpupool."0.1.7".default or true); } - ]; - num_cpus."${deps.futures_cpupool."0.1.7".num_cpus}".default = true; - }) [ - (features_.futures."${deps."futures_cpupool"."0.1.7"."futures"}" deps) - (features_.num_cpus."${deps."futures_cpupool"."0.1.7"."num_cpus"}" deps) - ]; - - -# end -# h2-0.1.13 - - crates.h2."0.1.13" = deps: { features?(features_.h2."0.1.13" deps {}) }: buildRustCrate { - crateName = "h2"; - version = "0.1.13"; - description = "An HTTP/2.0 client and server"; - authors = [ "Carl Lerche " ]; - sha256 = "1nmbr5i1ssqbnfwmkgsfzghzr4m8676z38s2dmzs9gchha7n8wv7"; - dependencies = mapFeatures features ([ - (crates."byteorder"."${deps."h2"."0.1.13"."byteorder"}" deps) - (crates."bytes"."${deps."h2"."0.1.13"."bytes"}" deps) - (crates."fnv"."${deps."h2"."0.1.13"."fnv"}" deps) - (crates."futures"."${deps."h2"."0.1.13"."futures"}" deps) - (crates."http"."${deps."h2"."0.1.13"."http"}" deps) - (crates."indexmap"."${deps."h2"."0.1.13"."indexmap"}" deps) - (crates."log"."${deps."h2"."0.1.13"."log"}" deps) - (crates."slab"."${deps."h2"."0.1.13"."slab"}" deps) - (crates."string"."${deps."h2"."0.1.13"."string"}" deps) - (crates."tokio_io"."${deps."h2"."0.1.13"."tokio_io"}" deps) - ]); - features = mkFeatures (features."h2"."0.1.13" or {}); - }; - features_.h2."0.1.13" = deps: f: updateFeatures f ({ - byteorder."${deps.h2."0.1.13".byteorder}".default = true; - bytes."${deps.h2."0.1.13".bytes}".default = true; - fnv."${deps.h2."0.1.13".fnv}".default = true; - futures."${deps.h2."0.1.13".futures}".default = true; - h2."0.1.13".default = (f.h2."0.1.13".default or true); - http."${deps.h2."0.1.13".http}".default = true; - indexmap."${deps.h2."0.1.13".indexmap}".default = true; - log."${deps.h2."0.1.13".log}".default = true; - slab."${deps.h2."0.1.13".slab}".default = true; - string."${deps.h2."0.1.13".string}".default = true; - tokio_io."${deps.h2."0.1.13".tokio_io}".default = true; - }) [ - (features_.byteorder."${deps."h2"."0.1.13"."byteorder"}" deps) - (features_.bytes."${deps."h2"."0.1.13"."bytes"}" deps) - (features_.fnv."${deps."h2"."0.1.13"."fnv"}" deps) - (features_.futures."${deps."h2"."0.1.13"."futures"}" deps) - (features_.http."${deps."h2"."0.1.13"."http"}" deps) - (features_.indexmap."${deps."h2"."0.1.13"."indexmap"}" deps) - (features_.log."${deps."h2"."0.1.13"."log"}" deps) - (features_.slab."${deps."h2"."0.1.13"."slab"}" deps) - (features_.string."${deps."h2"."0.1.13"."string"}" deps) - (features_.tokio_io."${deps."h2"."0.1.13"."tokio_io"}" deps) - ]; - - -# end -# http-0.1.14 - - crates.http."0.1.14" = deps: { features?(features_.http."0.1.14" deps {}) }: buildRustCrate { - crateName = "http"; - version = "0.1.14"; - description = "A set of types for representing HTTP requests and responses.\n"; - authors = [ "Alex Crichton " "Carl Lerche " "Sean McArthur " ]; - sha256 = "1828cz2fh25nmp9rca0yzr548phsvkmzsqhspjnscqg1l9yc1557"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."http"."0.1.14"."bytes"}" deps) - (crates."fnv"."${deps."http"."0.1.14"."fnv"}" deps) - (crates."itoa"."${deps."http"."0.1.14"."itoa"}" deps) - ]); - }; - features_.http."0.1.14" = deps: f: updateFeatures f ({ - bytes."${deps.http."0.1.14".bytes}".default = true; - fnv."${deps.http."0.1.14".fnv}".default = true; - http."0.1.14".default = (f.http."0.1.14".default or true); - itoa."${deps.http."0.1.14".itoa}".default = true; - }) [ - (features_.bytes."${deps."http"."0.1.14"."bytes"}" deps) - (features_.fnv."${deps."http"."0.1.14"."fnv"}" deps) - (features_.itoa."${deps."http"."0.1.14"."itoa"}" deps) - ]; - - -# end -# httparse-1.2.3 - - crates.httparse."1.2.3" = deps: { features?(features_.httparse."1.2.3" deps {}) }: buildRustCrate { - crateName = "httparse"; - version = "1.2.3"; - description = "A tiny, safe, speedy, zero-copy HTTP/1.x parser."; - authors = [ "Sean McArthur " ]; - sha256 = "13x17y9bip0bija06y4vwpgh8jdmdi2gsvjq02kyfy0fbp5cqa93"; - features = mkFeatures (features."httparse"."1.2.3" or {}); - }; - features_.httparse."1.2.3" = deps: f: updateFeatures f (rec { - httparse = fold recursiveUpdate {} [ - { "1.2.3"."std" = - (f.httparse."1.2.3"."std" or false) || - (f.httparse."1.2.3".default or false) || - (httparse."1.2.3"."default" or false); } - { "1.2.3".default = (f.httparse."1.2.3".default or true); } - ]; - }) []; - - -# end -# hyper-0.12.16 - - crates.hyper."0.12.16" = deps: { features?(features_.hyper."0.12.16" deps {}) }: buildRustCrate { - crateName = "hyper"; - version = "0.12.16"; - description = "A fast and correct HTTP library."; - authors = [ "Sean McArthur " ]; - sha256 = "1h5h9swxh02jcg1m4cvwb5nmkb8z9g4b0p4wfbhfvsd7wf14qr0y"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."hyper"."0.12.16"."bytes"}" deps) - (crates."futures"."${deps."hyper"."0.12.16"."futures"}" deps) - (crates."h2"."${deps."hyper"."0.12.16"."h2"}" deps) - (crates."http"."${deps."hyper"."0.12.16"."http"}" deps) - (crates."httparse"."${deps."hyper"."0.12.16"."httparse"}" deps) - (crates."iovec"."${deps."hyper"."0.12.16"."iovec"}" deps) - (crates."itoa"."${deps."hyper"."0.12.16"."itoa"}" deps) - (crates."log"."${deps."hyper"."0.12.16"."log"}" deps) - (crates."time"."${deps."hyper"."0.12.16"."time"}" deps) - (crates."tokio_io"."${deps."hyper"."0.12.16"."tokio_io"}" deps) - (crates."want"."${deps."hyper"."0.12.16"."want"}" deps) - ] - ++ (if features.hyper."0.12.16".futures-cpupool or false then [ (crates.futures_cpupool."${deps."hyper"."0.12.16".futures_cpupool}" deps) ] else []) - ++ (if features.hyper."0.12.16".net2 or false then [ (crates.net2."${deps."hyper"."0.12.16".net2}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio or false then [ (crates.tokio."${deps."hyper"."0.12.16".tokio}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio-executor or false then [ (crates.tokio_executor."${deps."hyper"."0.12.16".tokio_executor}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio-reactor or false then [ (crates.tokio_reactor."${deps."hyper"."0.12.16".tokio_reactor}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio-tcp or false then [ (crates.tokio_tcp."${deps."hyper"."0.12.16".tokio_tcp}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio-threadpool or false then [ (crates.tokio_threadpool."${deps."hyper"."0.12.16".tokio_threadpool}" deps) ] else []) - ++ (if features.hyper."0.12.16".tokio-timer or false then [ (crates.tokio_timer."${deps."hyper"."0.12.16".tokio_timer}" deps) ] else [])); - features = mkFeatures (features."hyper"."0.12.16" or {}); - }; - features_.hyper."0.12.16" = deps: f: updateFeatures f (rec { - bytes."${deps.hyper."0.12.16".bytes}".default = true; - futures."${deps.hyper."0.12.16".futures}".default = true; - futures_cpupool."${deps.hyper."0.12.16".futures_cpupool}".default = true; - h2."${deps.hyper."0.12.16".h2}".default = true; - http."${deps.hyper."0.12.16".http}".default = true; - httparse."${deps.hyper."0.12.16".httparse}".default = true; - hyper = fold recursiveUpdate {} [ - { "0.12.16"."__internal_flaky_tests" = - (f.hyper."0.12.16"."__internal_flaky_tests" or false) || - (f.hyper."0.12.16".default or false) || - (hyper."0.12.16"."default" or false); } - { "0.12.16"."futures-cpupool" = - (f.hyper."0.12.16"."futures-cpupool" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."net2" = - (f.hyper."0.12.16"."net2" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."runtime" = - (f.hyper."0.12.16"."runtime" or false) || - (f.hyper."0.12.16".default or false) || - (hyper."0.12.16"."default" or false); } - { "0.12.16"."tokio" = - (f.hyper."0.12.16"."tokio" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."tokio-executor" = - (f.hyper."0.12.16"."tokio-executor" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."tokio-reactor" = - (f.hyper."0.12.16"."tokio-reactor" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."tokio-tcp" = - (f.hyper."0.12.16"."tokio-tcp" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."tokio-threadpool" = - (f.hyper."0.12.16"."tokio-threadpool" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16"."tokio-timer" = - (f.hyper."0.12.16"."tokio-timer" or false) || - (f.hyper."0.12.16".runtime or false) || - (hyper."0.12.16"."runtime" or false); } - { "0.12.16".default = (f.hyper."0.12.16".default or true); } - ]; - iovec."${deps.hyper."0.12.16".iovec}".default = true; - itoa."${deps.hyper."0.12.16".itoa}".default = true; - log."${deps.hyper."0.12.16".log}".default = true; - net2."${deps.hyper."0.12.16".net2}".default = true; - time."${deps.hyper."0.12.16".time}".default = true; - tokio."${deps.hyper."0.12.16".tokio}".default = true; - tokio_executor."${deps.hyper."0.12.16".tokio_executor}".default = true; - tokio_io."${deps.hyper."0.12.16".tokio_io}".default = true; - tokio_reactor."${deps.hyper."0.12.16".tokio_reactor}".default = true; - tokio_tcp."${deps.hyper."0.12.16".tokio_tcp}".default = true; - tokio_threadpool."${deps.hyper."0.12.16".tokio_threadpool}".default = true; - tokio_timer."${deps.hyper."0.12.16".tokio_timer}".default = true; - want."${deps.hyper."0.12.16".want}".default = true; - }) [ - (features_.bytes."${deps."hyper"."0.12.16"."bytes"}" deps) - (features_.futures."${deps."hyper"."0.12.16"."futures"}" deps) - (features_.futures_cpupool."${deps."hyper"."0.12.16"."futures_cpupool"}" deps) - (features_.h2."${deps."hyper"."0.12.16"."h2"}" deps) - (features_.http."${deps."hyper"."0.12.16"."http"}" deps) - (features_.httparse."${deps."hyper"."0.12.16"."httparse"}" deps) - (features_.iovec."${deps."hyper"."0.12.16"."iovec"}" deps) - (features_.itoa."${deps."hyper"."0.12.16"."itoa"}" deps) - (features_.log."${deps."hyper"."0.12.16"."log"}" deps) - (features_.net2."${deps."hyper"."0.12.16"."net2"}" deps) - (features_.time."${deps."hyper"."0.12.16"."time"}" deps) - (features_.tokio."${deps."hyper"."0.12.16"."tokio"}" deps) - (features_.tokio_executor."${deps."hyper"."0.12.16"."tokio_executor"}" deps) - (features_.tokio_io."${deps."hyper"."0.12.16"."tokio_io"}" deps) - (features_.tokio_reactor."${deps."hyper"."0.12.16"."tokio_reactor"}" deps) - (features_.tokio_tcp."${deps."hyper"."0.12.16"."tokio_tcp"}" deps) - (features_.tokio_threadpool."${deps."hyper"."0.12.16"."tokio_threadpool"}" deps) - (features_.tokio_timer."${deps."hyper"."0.12.16"."tokio_timer"}" deps) - (features_.want."${deps."hyper"."0.12.16"."want"}" deps) - ]; - - -# end -# hyper-tls-0.3.1 - - crates.hyper_tls."0.3.1" = deps: { features?(features_.hyper_tls."0.3.1" deps {}) }: buildRustCrate { - crateName = "hyper-tls"; - version = "0.3.1"; - description = "Default TLS implementation for use with hyper"; - authors = [ "Sean McArthur " ]; - sha256 = "0sk46mmnccxgxwn62rl5m58c2ivwgxgd590cjwg60pjkhx9qn5r7"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."hyper_tls"."0.3.1"."bytes"}" deps) - (crates."futures"."${deps."hyper_tls"."0.3.1"."futures"}" deps) - (crates."hyper"."${deps."hyper_tls"."0.3.1"."hyper"}" deps) - (crates."native_tls"."${deps."hyper_tls"."0.3.1"."native_tls"}" deps) - (crates."tokio_io"."${deps."hyper_tls"."0.3.1"."tokio_io"}" deps) - ]); - features = mkFeatures (features."hyper_tls"."0.3.1" or {}); - }; - features_.hyper_tls."0.3.1" = deps: f: updateFeatures f (rec { - bytes."${deps.hyper_tls."0.3.1".bytes}".default = true; - futures."${deps.hyper_tls."0.3.1".futures}".default = true; - hyper."${deps.hyper_tls."0.3.1".hyper}".default = true; - hyper_tls."0.3.1".default = (f.hyper_tls."0.3.1".default or true); - native_tls = fold recursiveUpdate {} [ - { "${deps.hyper_tls."0.3.1".native_tls}"."vendored" = - (f.native_tls."${deps.hyper_tls."0.3.1".native_tls}"."vendored" or false) || - (hyper_tls."0.3.1"."vendored" or false) || - (f."hyper_tls"."0.3.1"."vendored" or false); } - { "${deps.hyper_tls."0.3.1".native_tls}".default = true; } - ]; - tokio_io."${deps.hyper_tls."0.3.1".tokio_io}".default = true; - }) [ - (features_.bytes."${deps."hyper_tls"."0.3.1"."bytes"}" deps) - (features_.futures."${deps."hyper_tls"."0.3.1"."futures"}" deps) - (features_.hyper."${deps."hyper_tls"."0.3.1"."hyper"}" deps) - (features_.native_tls."${deps."hyper_tls"."0.3.1"."native_tls"}" deps) - (features_.tokio_io."${deps."hyper_tls"."0.3.1"."tokio_io"}" deps) - ]; - - -# end -# idna-0.1.4 - - crates.idna."0.1.4" = deps: { features?(features_.idna."0.1.4" deps {}) }: buildRustCrate { - crateName = "idna"; - version = "0.1.4"; - description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."; - authors = [ "The rust-url developers" ]; - sha256 = "15j44qgjx1skwg9i7f4cm36ni4n99b1ayx23yxx7axxcw8vjf336"; - dependencies = mapFeatures features ([ - (crates."matches"."${deps."idna"."0.1.4"."matches"}" deps) - (crates."unicode_bidi"."${deps."idna"."0.1.4"."unicode_bidi"}" deps) - (crates."unicode_normalization"."${deps."idna"."0.1.4"."unicode_normalization"}" deps) - ]); - }; - features_.idna."0.1.4" = deps: f: updateFeatures f ({ - idna."0.1.4".default = (f.idna."0.1.4".default or true); - matches."${deps.idna."0.1.4".matches}".default = true; - unicode_bidi."${deps.idna."0.1.4".unicode_bidi}".default = true; - unicode_normalization."${deps.idna."0.1.4".unicode_normalization}".default = true; - }) [ - (features_.matches."${deps."idna"."0.1.4"."matches"}" deps) - (features_.unicode_bidi."${deps."idna"."0.1.4"."unicode_bidi"}" deps) - (features_.unicode_normalization."${deps."idna"."0.1.4"."unicode_normalization"}" deps) - ]; - - -# end -# indexmap-1.0.2 - - crates.indexmap."1.0.2" = deps: { features?(features_.indexmap."1.0.2" deps {}) }: buildRustCrate { - crateName = "indexmap"; - version = "1.0.2"; - description = "A hash table with consistent order and fast iteration.\n\nThe indexmap is a hash table where the iteration order of the key-value\npairs is independent of the hash values of the keys. It has the usual\nhash table functionality, it preserves insertion order except after\nremovals, and it allows lookup of its elements by either hash table key\nor numerical index. A corresponding hash set type is also provided.\n\nThis crate was initially published under the name ordermap, but it was renamed to\nindexmap.\n"; - authors = [ "bluss" "Josh Stone " ]; - sha256 = "18a0cn5xy3a7wswxg5lwfg3j4sh5blk28ykw0ysgr486djd353gf"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."indexmap"."1.0.2" or {}); - }; - features_.indexmap."1.0.2" = deps: f: updateFeatures f (rec { - indexmap = fold recursiveUpdate {} [ - { "1.0.2"."serde" = - (f.indexmap."1.0.2"."serde" or false) || - (f.indexmap."1.0.2".serde-1 or false) || - (indexmap."1.0.2"."serde-1" or false); } - { "1.0.2".default = (f.indexmap."1.0.2".default or true); } - ]; - }) []; - - -# end -# iovec-0.1.1 - - crates.iovec."0.1.1" = deps: { features?(features_.iovec."0.1.1" deps {}) }: buildRustCrate { - crateName = "iovec"; - version = "0.1.1"; - description = "Portable buffer type for scatter/gather I/O operations\n"; - authors = [ "Carl Lerche " ]; - sha256 = "14fns3g3arbql6lkczf2gbbzaqh22mfv7y1wq5rr2y8jhh5m8jmm"; - dependencies = (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."iovec"."0.1.1"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."winapi"."${deps."iovec"."0.1.1"."winapi"}" deps) - ]) else []); - }; - features_.iovec."0.1.1" = deps: f: updateFeatures f ({ - iovec."0.1.1".default = (f.iovec."0.1.1".default or true); - libc."${deps.iovec."0.1.1".libc}".default = true; - winapi."${deps.iovec."0.1.1".winapi}".default = true; - }) [ - (features_.libc."${deps."iovec"."0.1.1"."libc"}" deps) - (features_.winapi."${deps."iovec"."0.1.1"."winapi"}" deps) - ]; - - -# end -# isatty-0.1.5 - - crates.isatty."0.1.5" = deps: { features?(features_.isatty."0.1.5" deps {}) }: buildRustCrate { - crateName = "isatty"; - version = "0.1.5"; - description = "libc::isatty that also works on Windows"; - authors = [ "David Tolnay " ]; - sha256 = "0gp781mgqmvsp6a3iyhwk2sqis2ys8jfg3grq40m135zgb4d2cvj"; - dependencies = (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."isatty"."0.1.5"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."kernel32_sys"."${deps."isatty"."0.1.5"."kernel32_sys"}" deps) - (crates."winapi"."${deps."isatty"."0.1.5"."winapi"}" deps) - ]) else []); - }; - features_.isatty."0.1.5" = deps: f: updateFeatures f ({ - isatty."0.1.5".default = (f.isatty."0.1.5".default or true); - kernel32_sys."${deps.isatty."0.1.5".kernel32_sys}".default = true; - libc."${deps.isatty."0.1.5".libc}".default = true; - winapi."${deps.isatty."0.1.5".winapi}".default = true; - }) [ - (features_.libc."${deps."isatty"."0.1.5"."libc"}" deps) - (features_.kernel32_sys."${deps."isatty"."0.1.5"."kernel32_sys"}" deps) - (features_.winapi."${deps."isatty"."0.1.5"."winapi"}" deps) - ]; - - -# end -# itertools-0.6.5 - - crates.itertools."0.6.5" = deps: { features?(features_.itertools."0.6.5" deps {}) }: buildRustCrate { - crateName = "itertools"; - version = "0.6.5"; - description = "Extra iterator adaptors, iterator methods, free functions, and macros."; - authors = [ "bluss" ]; - sha256 = "0gbhgn7s8qkxxw10i514fzpqnc3aissn4kcgylm2cvnv9zmg8mw1"; - dependencies = mapFeatures features ([ - (crates."either"."${deps."itertools"."0.6.5"."either"}" deps) - ]); - }; - features_.itertools."0.6.5" = deps: f: updateFeatures f ({ - either."${deps.itertools."0.6.5".either}".default = (f.either."${deps.itertools."0.6.5".either}".default or false); - itertools."0.6.5".default = (f.itertools."0.6.5".default or true); - }) [ - (features_.either."${deps."itertools"."0.6.5"."either"}" deps) - ]; - - -# end -# itoa-0.3.4 - - crates.itoa."0.3.4" = deps: { features?(features_.itoa."0.3.4" deps {}) }: buildRustCrate { - crateName = "itoa"; - version = "0.3.4"; - description = "Fast functions for printing integer primitives to an io::Write"; - authors = [ "David Tolnay " ]; - sha256 = "1nfkzz6vrgj0d9l3yzjkkkqzdgs68y294fjdbl7jq118qi8xc9d9"; - features = mkFeatures (features."itoa"."0.3.4" or {}); - }; - features_.itoa."0.3.4" = deps: f: updateFeatures f ({ - itoa."0.3.4".default = (f.itoa."0.3.4".default or true); - }) []; - - -# end -# itoa-0.4.3 - - crates.itoa."0.4.3" = deps: { features?(features_.itoa."0.4.3" deps {}) }: buildRustCrate { - crateName = "itoa"; - version = "0.4.3"; - description = "Fast functions for printing integer primitives to an io::Write"; - authors = [ "David Tolnay " ]; - sha256 = "0zadimmdgvili3gdwxqg7ljv3r4wcdg1kkdfp9nl15vnm23vrhy1"; - features = mkFeatures (features."itoa"."0.4.3" or {}); - }; - features_.itoa."0.4.3" = deps: f: updateFeatures f (rec { - itoa = fold recursiveUpdate {} [ - { "0.4.3"."std" = - (f.itoa."0.4.3"."std" or false) || - (f.itoa."0.4.3".default or false) || - (itoa."0.4.3"."default" or false); } - { "0.4.3".default = (f.itoa."0.4.3".default or true); } - ]; - }) []; - - -# end -# kernel32-sys-0.2.2 - - crates.kernel32_sys."0.2.2" = deps: { features?(features_.kernel32_sys."0.2.2" deps {}) }: buildRustCrate { - crateName = "kernel32-sys"; - version = "0.2.2"; - description = "Contains function definitions for the Windows API library kernel32. See winapi for types and constants."; - authors = [ "Peter Atashian " ]; - sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj"; - libName = "kernel32"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."winapi"."${deps."kernel32_sys"."0.2.2"."winapi"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."winapi_build"."${deps."kernel32_sys"."0.2.2"."winapi_build"}" deps) - ]); - }; - features_.kernel32_sys."0.2.2" = deps: f: updateFeatures f ({ - kernel32_sys."0.2.2".default = (f.kernel32_sys."0.2.2".default or true); - winapi."${deps.kernel32_sys."0.2.2".winapi}".default = true; - winapi_build."${deps.kernel32_sys."0.2.2".winapi_build}".default = true; - }) [ - (features_.winapi."${deps."kernel32_sys"."0.2.2"."winapi"}" deps) - (features_.winapi_build."${deps."kernel32_sys"."0.2.2"."winapi_build"}" deps) - ]; - - -# end -# lazy_static-0.2.10 - - crates.lazy_static."0.2.10" = deps: { features?(features_.lazy_static."0.2.10" deps {}) }: buildRustCrate { - crateName = "lazy_static"; - version = "0.2.10"; - description = "A macro for declaring lazily evaluated statics in Rust."; - authors = [ "Marvin Löbel " ]; - sha256 = "0ylwjvppsm56fpv32l4br7zw0pwn81wbfb1abalyyr1d9c94vg8r"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."lazy_static"."0.2.10" or {}); - }; - features_.lazy_static."0.2.10" = deps: f: updateFeatures f (rec { - lazy_static = fold recursiveUpdate {} [ - { "0.2.10"."compiletest_rs" = - (f.lazy_static."0.2.10"."compiletest_rs" or false) || - (f.lazy_static."0.2.10".compiletest or false) || - (lazy_static."0.2.10"."compiletest" or false); } - { "0.2.10"."nightly" = - (f.lazy_static."0.2.10"."nightly" or false) || - (f.lazy_static."0.2.10".spin_no_std or false) || - (lazy_static."0.2.10"."spin_no_std" or false); } - { "0.2.10"."spin" = - (f.lazy_static."0.2.10"."spin" or false) || - (f.lazy_static."0.2.10".spin_no_std or false) || - (lazy_static."0.2.10"."spin_no_std" or false); } - { "0.2.10".default = (f.lazy_static."0.2.10".default or true); } - ]; - }) []; - - -# end -# lazy_static-1.2.0 - - crates.lazy_static."1.2.0" = deps: { features?(features_.lazy_static."1.2.0" deps {}) }: buildRustCrate { - crateName = "lazy_static"; - version = "1.2.0"; - description = "A macro for declaring lazily evaluated statics in Rust."; - authors = [ "Marvin Löbel " ]; - sha256 = "07p3b30k2akyr6xw08ggd5qiz5nw3vd3agggj360fcc1njz7d0ss"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."lazy_static"."1.2.0" or {}); - }; - features_.lazy_static."1.2.0" = deps: f: updateFeatures f (rec { - lazy_static = fold recursiveUpdate {} [ - { "1.2.0"."spin" = - (f.lazy_static."1.2.0"."spin" or false) || - (f.lazy_static."1.2.0".spin_no_std or false) || - (lazy_static."1.2.0"."spin_no_std" or false); } - { "1.2.0".default = (f.lazy_static."1.2.0".default or true); } - ]; - }) []; - - -# end -# lazycell-1.2.0 - - crates.lazycell."1.2.0" = deps: { features?(features_.lazycell."1.2.0" deps {}) }: buildRustCrate { - crateName = "lazycell"; - version = "1.2.0"; - description = "A library providing a lazily filled Cell struct"; - authors = [ "Alex Crichton " "Nikita Pekin " ]; - sha256 = "1lzdb3q17yjihw9hksynxgyg8wbph1h791wff8rrf1c2aqjwhmax"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."lazycell"."1.2.0" or {}); - }; - features_.lazycell."1.2.0" = deps: f: updateFeatures f (rec { - lazycell = fold recursiveUpdate {} [ - { "1.2.0"."clippy" = - (f.lazycell."1.2.0"."clippy" or false) || - (f.lazycell."1.2.0".nightly-testing or false) || - (lazycell."1.2.0"."nightly-testing" or false); } - { "1.2.0"."nightly" = - (f.lazycell."1.2.0"."nightly" or false) || - (f.lazycell."1.2.0".nightly-testing or false) || - (lazycell."1.2.0"."nightly-testing" or false); } - { "1.2.0".default = (f.lazycell."1.2.0".default or true); } - ]; - }) []; - - -# end -# libc-0.2.44 - - crates.libc."0.2.44" = deps: { features?(features_.libc."0.2.44" deps {}) }: buildRustCrate { - crateName = "libc"; - version = "0.2.44"; - description = "A library for types and bindings to native C functions often found in libc or\nother common platform libraries.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "17a7p0lcf3qwl1pcxffdflgnx8zr2659mgzzg4zi5fnv1mlj3q6z"; - build = "build.rs"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."libc"."0.2.44" or {}); - }; - features_.libc."0.2.44" = deps: f: updateFeatures f (rec { - libc = fold recursiveUpdate {} [ - { "0.2.44"."align" = - (f.libc."0.2.44"."align" or false) || - (f.libc."0.2.44".rustc-dep-of-std or false) || - (libc."0.2.44"."rustc-dep-of-std" or false); } - { "0.2.44"."rustc-std-workspace-core" = - (f.libc."0.2.44"."rustc-std-workspace-core" or false) || - (f.libc."0.2.44".rustc-dep-of-std or false) || - (libc."0.2.44"."rustc-dep-of-std" or false); } - { "0.2.44"."use_std" = - (f.libc."0.2.44"."use_std" or false) || - (f.libc."0.2.44".default or false) || - (libc."0.2.44"."default" or false); } - { "0.2.44".default = (f.libc."0.2.44".default or true); } - ]; - }) []; - - -# end -# libflate-0.1.19 - - crates.libflate."0.1.19" = deps: { features?(features_.libflate."0.1.19" deps {}) }: buildRustCrate { - crateName = "libflate"; - version = "0.1.19"; - description = "A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)"; - authors = [ "Takeru Ohta " ]; - sha256 = "1klhvys9541xrwspyyv41qbr37xnwx4bdaspk6gbiprhrsqqkjp0"; - dependencies = mapFeatures features ([ - (crates."adler32"."${deps."libflate"."0.1.19"."adler32"}" deps) - (crates."byteorder"."${deps."libflate"."0.1.19"."byteorder"}" deps) - (crates."crc32fast"."${deps."libflate"."0.1.19"."crc32fast"}" deps) - ]); - }; - features_.libflate."0.1.19" = deps: f: updateFeatures f ({ - adler32."${deps.libflate."0.1.19".adler32}".default = true; - byteorder."${deps.libflate."0.1.19".byteorder}".default = true; - crc32fast."${deps.libflate."0.1.19".crc32fast}".default = true; - libflate."0.1.19".default = (f.libflate."0.1.19".default or true); - }) [ - (features_.adler32."${deps."libflate"."0.1.19"."adler32"}" deps) - (features_.byteorder."${deps."libflate"."0.1.19"."byteorder"}" deps) - (features_.crc32fast."${deps."libflate"."0.1.19"."crc32fast"}" deps) - ]; - - -# end -# lock_api-0.1.5 - - crates.lock_api."0.1.5" = deps: { features?(features_.lock_api."0.1.5" deps {}) }: buildRustCrate { - crateName = "lock_api"; - version = "0.1.5"; - description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."; - authors = [ "Amanieu d'Antras " ]; - sha256 = "132sidr5hvjfkaqm3l95zpcpi8yk5ddd0g79zf1ad4v65sxirqqm"; - dependencies = mapFeatures features ([ - (crates."scopeguard"."${deps."lock_api"."0.1.5"."scopeguard"}" deps) - ] - ++ (if features.lock_api."0.1.5".owning_ref or false then [ (crates.owning_ref."${deps."lock_api"."0.1.5".owning_ref}" deps) ] else [])); - features = mkFeatures (features."lock_api"."0.1.5" or {}); - }; - features_.lock_api."0.1.5" = deps: f: updateFeatures f ({ - lock_api."0.1.5".default = (f.lock_api."0.1.5".default or true); - owning_ref."${deps.lock_api."0.1.5".owning_ref}".default = true; - scopeguard."${deps.lock_api."0.1.5".scopeguard}".default = (f.scopeguard."${deps.lock_api."0.1.5".scopeguard}".default or false); - }) [ - (features_.owning_ref."${deps."lock_api"."0.1.5"."owning_ref"}" deps) - (features_.scopeguard."${deps."lock_api"."0.1.5"."scopeguard"}" deps) - ]; - - -# end -# log-0.3.8 - - crates.log."0.3.8" = deps: { features?(features_.log."0.3.8" deps {}) }: buildRustCrate { - crateName = "log"; - version = "0.3.8"; - description = "A lightweight logging facade for Rust\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1c43z4z85sxrsgir4s1hi84558ab5ic7jrn5qgmsiqcv90vvn006"; - features = mkFeatures (features."log"."0.3.8" or {}); - }; - features_.log."0.3.8" = deps: f: updateFeatures f (rec { - log = fold recursiveUpdate {} [ - { "0.3.8"."use_std" = - (f.log."0.3.8"."use_std" or false) || - (f.log."0.3.8".default or false) || - (log."0.3.8"."default" or false); } - { "0.3.8".default = (f.log."0.3.8".default or true); } - ]; - }) []; - - -# end -# log-0.4.6 - - crates.log."0.4.6" = deps: { features?(features_.log."0.4.6" deps {}) }: buildRustCrate { - crateName = "log"; - version = "0.4.6"; - description = "A lightweight logging facade for Rust\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1nd8dl9mvc9vd6fks5d4gsxaz990xi6rzlb8ymllshmwi153vngr"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."log"."0.4.6"."cfg_if"}" deps) - ]); - features = mkFeatures (features."log"."0.4.6" or {}); - }; - features_.log."0.4.6" = deps: f: updateFeatures f ({ - cfg_if."${deps.log."0.4.6".cfg_if}".default = true; - log."0.4.6".default = (f.log."0.4.6".default or true); - }) [ - (features_.cfg_if."${deps."log"."0.4.6"."cfg_if"}" deps) - ]; - - -# end -# maplit-0.1.6 - - crates.maplit."0.1.6" = deps: { features?(features_.maplit."0.1.6" deps {}) }: buildRustCrate { - crateName = "maplit"; - version = "0.1.6"; - description = "Container / collection literal macros for HashMap, HashSet, BTreeMap, BTreeSet."; - authors = [ "bluss" ]; - sha256 = "1f8kf5v7xra8ssvh5c10qlacbk4l0z2817pkscflx5s5q6y7925h"; - }; - features_.maplit."0.1.6" = deps: f: updateFeatures f ({ - maplit."0.1.6".default = (f.maplit."0.1.6".default or true); - }) []; - - -# end -# matches-0.1.6 - - crates.matches."0.1.6" = deps: { features?(features_.matches."0.1.6" deps {}) }: buildRustCrate { - crateName = "matches"; - version = "0.1.6"; - description = "A macro to evaluate, as a boolean, whether an expression matches a pattern."; - authors = [ "Simon Sapin " ]; - sha256 = "1zlrqlbvzxdil8z8ial2ihvxjwvlvg3g8dr0lcdpsjclkclasjan"; - libPath = "lib.rs"; - }; - features_.matches."0.1.6" = deps: f: updateFeatures f ({ - matches."0.1.6".default = (f.matches."0.1.6".default or true); - }) []; - - -# end -# memchr-0.1.11 - - crates.memchr."0.1.11" = deps: { features?(features_.memchr."0.1.11" deps {}) }: buildRustCrate { - crateName = "memchr"; - version = "0.1.11"; - description = "Safe interface to memchr."; - authors = [ "Andrew Gallant " "bluss" ]; - sha256 = "0x73jghamvxxq5fsw9wb0shk5m6qp3q6fsf0nibn0i6bbqkw91s8"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."memchr"."0.1.11"."libc"}" deps) - ]); - }; - features_.memchr."0.1.11" = deps: f: updateFeatures f ({ - libc."${deps.memchr."0.1.11".libc}".default = true; - memchr."0.1.11".default = (f.memchr."0.1.11".default or true); - }) [ - (features_.libc."${deps."memchr"."0.1.11"."libc"}" deps) - ]; - - -# end -# memoffset-0.2.1 - - crates.memoffset."0.2.1" = deps: { features?(features_.memoffset."0.2.1" deps {}) }: buildRustCrate { - crateName = "memoffset"; - version = "0.2.1"; - description = "offset_of functionality for Rust structs."; - authors = [ "Gilad Naaman " ]; - sha256 = "00vym01jk9slibq2nsiilgffp7n6k52a4q3n4dqp0xf5kzxvffcf"; - }; - features_.memoffset."0.2.1" = deps: f: updateFeatures f ({ - memoffset."0.2.1".default = (f.memoffset."0.2.1".default or true); - }) []; - - -# end -# mime-0.3.12 - - crates.mime."0.3.12" = deps: { features?(features_.mime."0.3.12" deps {}) }: buildRustCrate { - crateName = "mime"; - version = "0.3.12"; - description = "Strongly Typed Mimes"; - authors = [ "Sean McArthur " ]; - sha256 = "0lmcwkmxwbla9457w9ak13cfgqxfyn5wa1syjy1kll2ras5xifvh"; - dependencies = mapFeatures features ([ - (crates."unicase"."${deps."mime"."0.3.12"."unicase"}" deps) - ]); - }; - features_.mime."0.3.12" = deps: f: updateFeatures f ({ - mime."0.3.12".default = (f.mime."0.3.12".default or true); - unicase."${deps.mime."0.3.12".unicase}".default = true; - }) [ - (features_.unicase."${deps."mime"."0.3.12"."unicase"}" deps) - ]; - - -# end -# mime_guess-2.0.0-alpha.6 - - crates.mime_guess."2.0.0-alpha.6" = deps: { features?(features_.mime_guess."2.0.0-alpha.6" deps {}) }: buildRustCrate { - crateName = "mime_guess"; - version = "2.0.0-alpha.6"; - description = "A simple crate for detection of a file's MIME type by its extension."; - authors = [ "Austin Bonander " ]; - sha256 = "1k2mdq43gi2qr63b7m5zs624rfi40ysk33cay49jlhq97jwnk9db"; - dependencies = mapFeatures features ([ - (crates."mime"."${deps."mime_guess"."2.0.0-alpha.6"."mime"}" deps) - (crates."phf"."${deps."mime_guess"."2.0.0-alpha.6"."phf"}" deps) - (crates."unicase"."${deps."mime_guess"."2.0.0-alpha.6"."unicase"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."phf_codegen"."${deps."mime_guess"."2.0.0-alpha.6"."phf_codegen"}" deps) - (crates."unicase"."${deps."mime_guess"."2.0.0-alpha.6"."unicase"}" deps) - ]); - features = mkFeatures (features."mime_guess"."2.0.0-alpha.6" or {}); - }; - features_.mime_guess."2.0.0-alpha.6" = deps: f: updateFeatures f ({ - mime."${deps.mime_guess."2.0.0-alpha.6".mime}".default = true; - mime_guess."2.0.0-alpha.6".default = (f.mime_guess."2.0.0-alpha.6".default or true); - phf = fold recursiveUpdate {} [ - { "${deps.mime_guess."2.0.0-alpha.6".phf}"."unicase" = true; } - { "${deps.mime_guess."2.0.0-alpha.6".phf}".default = true; } - ]; - phf_codegen."${deps.mime_guess."2.0.0-alpha.6".phf_codegen}".default = true; - unicase."${deps.mime_guess."2.0.0-alpha.6".unicase}".default = true; - }) [ - (features_.mime."${deps."mime_guess"."2.0.0-alpha.6"."mime"}" deps) - (features_.phf."${deps."mime_guess"."2.0.0-alpha.6"."phf"}" deps) - (features_.unicase."${deps."mime_guess"."2.0.0-alpha.6"."unicase"}" deps) - (features_.phf_codegen."${deps."mime_guess"."2.0.0-alpha.6"."phf_codegen"}" deps) - (features_.unicase."${deps."mime_guess"."2.0.0-alpha.6"."unicase"}" deps) - ]; - - -# end -# miniz-sys-0.1.10 - - crates.miniz_sys."0.1.10" = deps: { features?(features_.miniz_sys."0.1.10" deps {}) }: buildRustCrate { - crateName = "miniz-sys"; - version = "0.1.10"; - description = "Bindings to the miniz.c library.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "11vg6phafxil87nbxgrlhcx5hjr3145wsbwwkfmibvnmzxfdmvln"; - libPath = "lib.rs"; - libName = "miniz_sys"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."miniz_sys"."0.1.10"."libc"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."cc"."${deps."miniz_sys"."0.1.10"."cc"}" deps) - ]); - }; - features_.miniz_sys."0.1.10" = deps: f: updateFeatures f ({ - cc."${deps.miniz_sys."0.1.10".cc}".default = true; - libc."${deps.miniz_sys."0.1.10".libc}".default = true; - miniz_sys."0.1.10".default = (f.miniz_sys."0.1.10".default or true); - }) [ - (features_.libc."${deps."miniz_sys"."0.1.10"."libc"}" deps) - (features_.cc."${deps."miniz_sys"."0.1.10"."cc"}" deps) - ]; - - -# end -# mio-0.6.16 - - crates.mio."0.6.16" = deps: { features?(features_.mio."0.6.16" deps {}) }: buildRustCrate { - crateName = "mio"; - version = "0.6.16"; - description = "Lightweight non-blocking IO"; - authors = [ "Carl Lerche " ]; - sha256 = "14vyrlmf0w984pi7ad9qvmlfj6vrb0wn6i8ik9j87w5za2r3rban"; - dependencies = mapFeatures features ([ - (crates."iovec"."${deps."mio"."0.6.16"."iovec"}" deps) - (crates."lazycell"."${deps."mio"."0.6.16"."lazycell"}" deps) - (crates."log"."${deps."mio"."0.6.16"."log"}" deps) - (crates."net2"."${deps."mio"."0.6.16"."net2"}" deps) - (crates."slab"."${deps."mio"."0.6.16"."slab"}" deps) - ]) - ++ (if kernel == "fuchsia" then mapFeatures features ([ - (crates."fuchsia_zircon"."${deps."mio"."0.6.16"."fuchsia_zircon"}" deps) - (crates."fuchsia_zircon_sys"."${deps."mio"."0.6.16"."fuchsia_zircon_sys"}" deps) - ]) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."mio"."0.6.16"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."kernel32_sys"."${deps."mio"."0.6.16"."kernel32_sys"}" deps) - (crates."miow"."${deps."mio"."0.6.16"."miow"}" deps) - (crates."winapi"."${deps."mio"."0.6.16"."winapi"}" deps) - ]) else []); - features = mkFeatures (features."mio"."0.6.16" or {}); - }; - features_.mio."0.6.16" = deps: f: updateFeatures f (rec { - fuchsia_zircon."${deps.mio."0.6.16".fuchsia_zircon}".default = true; - fuchsia_zircon_sys."${deps.mio."0.6.16".fuchsia_zircon_sys}".default = true; - iovec."${deps.mio."0.6.16".iovec}".default = true; - kernel32_sys."${deps.mio."0.6.16".kernel32_sys}".default = true; - lazycell."${deps.mio."0.6.16".lazycell}".default = true; - libc."${deps.mio."0.6.16".libc}".default = true; - log."${deps.mio."0.6.16".log}".default = true; - mio = fold recursiveUpdate {} [ - { "0.6.16"."with-deprecated" = - (f.mio."0.6.16"."with-deprecated" or false) || - (f.mio."0.6.16".default or false) || - (mio."0.6.16"."default" or false); } - { "0.6.16".default = (f.mio."0.6.16".default or true); } - ]; - miow."${deps.mio."0.6.16".miow}".default = true; - net2."${deps.mio."0.6.16".net2}".default = true; - slab."${deps.mio."0.6.16".slab}".default = true; - winapi."${deps.mio."0.6.16".winapi}".default = true; - }) [ - (features_.iovec."${deps."mio"."0.6.16"."iovec"}" deps) - (features_.lazycell."${deps."mio"."0.6.16"."lazycell"}" deps) - (features_.log."${deps."mio"."0.6.16"."log"}" deps) - (features_.net2."${deps."mio"."0.6.16"."net2"}" deps) - (features_.slab."${deps."mio"."0.6.16"."slab"}" deps) - (features_.fuchsia_zircon."${deps."mio"."0.6.16"."fuchsia_zircon"}" deps) - (features_.fuchsia_zircon_sys."${deps."mio"."0.6.16"."fuchsia_zircon_sys"}" deps) - (features_.libc."${deps."mio"."0.6.16"."libc"}" deps) - (features_.kernel32_sys."${deps."mio"."0.6.16"."kernel32_sys"}" deps) - (features_.miow."${deps."mio"."0.6.16"."miow"}" deps) - (features_.winapi."${deps."mio"."0.6.16"."winapi"}" deps) - ]; - - -# end -# miow-0.2.1 - - crates.miow."0.2.1" = deps: { features?(features_.miow."0.2.1" deps {}) }: buildRustCrate { - crateName = "miow"; - version = "0.2.1"; - description = "A zero overhead I/O library for Windows, focusing on IOCP and Async I/O\nabstractions.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "14f8zkc6ix7mkyis1vsqnim8m29b6l55abkba3p2yz7j1ibcvrl0"; - dependencies = mapFeatures features ([ - (crates."kernel32_sys"."${deps."miow"."0.2.1"."kernel32_sys"}" deps) - (crates."net2"."${deps."miow"."0.2.1"."net2"}" deps) - (crates."winapi"."${deps."miow"."0.2.1"."winapi"}" deps) - (crates."ws2_32_sys"."${deps."miow"."0.2.1"."ws2_32_sys"}" deps) - ]); - }; - features_.miow."0.2.1" = deps: f: updateFeatures f ({ - kernel32_sys."${deps.miow."0.2.1".kernel32_sys}".default = true; - miow."0.2.1".default = (f.miow."0.2.1".default or true); - net2."${deps.miow."0.2.1".net2}".default = (f.net2."${deps.miow."0.2.1".net2}".default or false); - winapi."${deps.miow."0.2.1".winapi}".default = true; - ws2_32_sys."${deps.miow."0.2.1".ws2_32_sys}".default = true; - }) [ - (features_.kernel32_sys."${deps."miow"."0.2.1"."kernel32_sys"}" deps) - (features_.net2."${deps."miow"."0.2.1"."net2"}" deps) - (features_.winapi."${deps."miow"."0.2.1"."winapi"}" deps) - (features_.ws2_32_sys."${deps."miow"."0.2.1"."ws2_32_sys"}" deps) - ]; - - -# end -# native-tls-0.2.2 - - crates.native_tls."0.2.2" = deps: { features?(features_.native_tls."0.2.2" deps {}) }: buildRustCrate { - crateName = "native-tls"; - version = "0.2.2"; - description = "A wrapper over a platform's native TLS implementation"; - authors = [ "Steven Fackler " ]; - sha256 = "0vl2hmmnrcjfylzjfsbnav20ri2n1qjgxn7bklb4mk3fyxfqm1m9"; - dependencies = (if kernel == "darwin" || kernel == "ios" then mapFeatures features ([ - (crates."lazy_static"."${deps."native_tls"."0.2.2"."lazy_static"}" deps) - (crates."libc"."${deps."native_tls"."0.2.2"."libc"}" deps) - (crates."security_framework"."${deps."native_tls"."0.2.2"."security_framework"}" deps) - (crates."security_framework_sys"."${deps."native_tls"."0.2.2"."security_framework_sys"}" deps) - (crates."tempfile"."${deps."native_tls"."0.2.2"."tempfile"}" deps) - ]) else []) - ++ (if !(kernel == "windows" || kernel == "darwin" || kernel == "ios") then mapFeatures features ([ - (crates."openssl"."${deps."native_tls"."0.2.2"."openssl"}" deps) - (crates."openssl_probe"."${deps."native_tls"."0.2.2"."openssl_probe"}" deps) - (crates."openssl_sys"."${deps."native_tls"."0.2.2"."openssl_sys"}" deps) - ]) else []) - ++ (if kernel == "android" then mapFeatures features ([ - (crates."log"."${deps."native_tls"."0.2.2"."log"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."schannel"."${deps."native_tls"."0.2.2"."schannel"}" deps) - ]) else []); - features = mkFeatures (features."native_tls"."0.2.2" or {}); - }; - features_.native_tls."0.2.2" = deps: f: updateFeatures f ({ - lazy_static."${deps.native_tls."0.2.2".lazy_static}".default = true; - libc."${deps.native_tls."0.2.2".libc}".default = true; - log."${deps.native_tls."0.2.2".log}".default = true; - native_tls."0.2.2".default = (f.native_tls."0.2.2".default or true); - openssl."${deps.native_tls."0.2.2".openssl}".default = true; - openssl_probe."${deps.native_tls."0.2.2".openssl_probe}".default = true; - openssl_sys."${deps.native_tls."0.2.2".openssl_sys}".default = true; - schannel."${deps.native_tls."0.2.2".schannel}".default = true; - security_framework."${deps.native_tls."0.2.2".security_framework}".default = true; - security_framework_sys."${deps.native_tls."0.2.2".security_framework_sys}".default = true; - tempfile."${deps.native_tls."0.2.2".tempfile}".default = true; - }) [ - (features_.lazy_static."${deps."native_tls"."0.2.2"."lazy_static"}" deps) - (features_.libc."${deps."native_tls"."0.2.2"."libc"}" deps) - (features_.security_framework."${deps."native_tls"."0.2.2"."security_framework"}" deps) - (features_.security_framework_sys."${deps."native_tls"."0.2.2"."security_framework_sys"}" deps) - (features_.tempfile."${deps."native_tls"."0.2.2"."tempfile"}" deps) - (features_.openssl."${deps."native_tls"."0.2.2"."openssl"}" deps) - (features_.openssl_probe."${deps."native_tls"."0.2.2"."openssl_probe"}" deps) - (features_.openssl_sys."${deps."native_tls"."0.2.2"."openssl_sys"}" deps) - (features_.log."${deps."native_tls"."0.2.2"."log"}" deps) - (features_.schannel."${deps."native_tls"."0.2.2"."schannel"}" deps) - ]; - - -# end -# net2-0.2.33 - - crates.net2."0.2.33" = deps: { features?(features_.net2."0.2.33" deps {}) }: buildRustCrate { - crateName = "net2"; - version = "0.2.33"; - description = "Extensions to the standard library's networking types as proposed in RFC 1158.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1qnmajafgybj5wyxz9iffa8x5wgbwd2znfklmhqj7vl6lw1m65mq"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."net2"."0.2.33"."cfg_if"}" deps) - ]) - ++ (if kernel == "redox" || (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."net2"."0.2.33"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."winapi"."${deps."net2"."0.2.33"."winapi"}" deps) - ]) else []); - features = mkFeatures (features."net2"."0.2.33" or {}); - }; - features_.net2."0.2.33" = deps: f: updateFeatures f (rec { - cfg_if."${deps.net2."0.2.33".cfg_if}".default = true; - libc."${deps.net2."0.2.33".libc}".default = true; - net2 = fold recursiveUpdate {} [ - { "0.2.33"."duration" = - (f.net2."0.2.33"."duration" or false) || - (f.net2."0.2.33".default or false) || - (net2."0.2.33"."default" or false); } - { "0.2.33".default = (f.net2."0.2.33".default or true); } - ]; - winapi = fold recursiveUpdate {} [ - { "${deps.net2."0.2.33".winapi}"."handleapi" = true; } - { "${deps.net2."0.2.33".winapi}"."winsock2" = true; } - { "${deps.net2."0.2.33".winapi}"."ws2def" = true; } - { "${deps.net2."0.2.33".winapi}"."ws2ipdef" = true; } - { "${deps.net2."0.2.33".winapi}"."ws2tcpip" = true; } - { "${deps.net2."0.2.33".winapi}".default = true; } - ]; - }) [ - (features_.cfg_if."${deps."net2"."0.2.33"."cfg_if"}" deps) - (features_.libc."${deps."net2"."0.2.33"."libc"}" deps) - (features_.winapi."${deps."net2"."0.2.33"."winapi"}" deps) - ]; - - -# end -# nodrop-0.1.13 - - crates.nodrop."0.1.13" = deps: { features?(features_.nodrop."0.1.13" deps {}) }: buildRustCrate { - crateName = "nodrop"; - version = "0.1.13"; - description = "A wrapper type to inhibit drop (destructor). Use std::mem::ManuallyDrop instead!"; - authors = [ "bluss" ]; - sha256 = "0gkfx6wihr9z0m8nbdhma5pyvbipznjpkzny2d4zkc05b0vnhinb"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."nodrop"."0.1.13" or {}); - }; - features_.nodrop."0.1.13" = deps: f: updateFeatures f (rec { - nodrop = fold recursiveUpdate {} [ - { "0.1.13"."nodrop-union" = - (f.nodrop."0.1.13"."nodrop-union" or false) || - (f.nodrop."0.1.13".use_union or false) || - (nodrop."0.1.13"."use_union" or false); } - { "0.1.13"."std" = - (f.nodrop."0.1.13"."std" or false) || - (f.nodrop."0.1.13".default or false) || - (nodrop."0.1.13"."default" or false); } - { "0.1.13".default = (f.nodrop."0.1.13".default or true); } - ]; - }) []; - - -# end -# num-0.1.40 - - crates.num."0.1.40" = deps: { features?(features_.num."0.1.40" deps {}) }: buildRustCrate { - crateName = "num"; - version = "0.1.40"; - description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "0b29c25n9mpf6a921khj7a6y3hz5va4vgwppcd2if975qq1shakg"; - dependencies = mapFeatures features ([ - (crates."num_integer"."${deps."num"."0.1.40"."num_integer"}" deps) - (crates."num_iter"."${deps."num"."0.1.40"."num_iter"}" deps) - (crates."num_traits"."${deps."num"."0.1.40"."num_traits"}" deps) - ]); - features = mkFeatures (features."num"."0.1.40" or {}); - }; - features_.num."0.1.40" = deps: f: updateFeatures f (rec { - num = fold recursiveUpdate {} [ - { "0.1.40"."bigint" = - (f.num."0.1.40"."bigint" or false) || - (f.num."0.1.40".default or false) || - (num."0.1.40"."default" or false); } - { "0.1.40"."complex" = - (f.num."0.1.40"."complex" or false) || - (f.num."0.1.40".default or false) || - (num."0.1.40"."default" or false); } - { "0.1.40"."num-bigint" = - (f.num."0.1.40"."num-bigint" or false) || - (f.num."0.1.40".bigint or false) || - (num."0.1.40"."bigint" or false); } - { "0.1.40"."num-complex" = - (f.num."0.1.40"."num-complex" or false) || - (f.num."0.1.40".complex or false) || - (num."0.1.40"."complex" or false); } - { "0.1.40"."num-rational" = - (f.num."0.1.40"."num-rational" or false) || - (f.num."0.1.40".rational or false) || - (num."0.1.40"."rational" or false); } - { "0.1.40"."rational" = - (f.num."0.1.40"."rational" or false) || - (f.num."0.1.40".default or false) || - (num."0.1.40"."default" or false); } - { "0.1.40"."rustc-serialize" = - (f.num."0.1.40"."rustc-serialize" or false) || - (f.num."0.1.40".default or false) || - (num."0.1.40"."default" or false); } - { "0.1.40".default = (f.num."0.1.40".default or true); } - ]; - num_integer."${deps.num."0.1.40".num_integer}".default = true; - num_iter."${deps.num."0.1.40".num_iter}".default = true; - num_traits."${deps.num."0.1.40".num_traits}".default = true; - }) [ - (features_.num_integer."${deps."num"."0.1.40"."num_integer"}" deps) - (features_.num_iter."${deps."num"."0.1.40"."num_iter"}" deps) - (features_.num_traits."${deps."num"."0.1.40"."num_traits"}" deps) - ]; - - -# end -# num-integer-0.1.35 - - crates.num_integer."0.1.35" = deps: { features?(features_.num_integer."0.1.35" deps {}) }: buildRustCrate { - crateName = "num-integer"; - version = "0.1.35"; - description = "Integer traits and functions"; - authors = [ "The Rust Project Developers" ]; - sha256 = "0xybj8isi9b6wc646d5rc043i8l8j6wy0vrl4pn995qms9fxbbcc"; - dependencies = mapFeatures features ([ - (crates."num_traits"."${deps."num_integer"."0.1.35"."num_traits"}" deps) - ]); - }; - features_.num_integer."0.1.35" = deps: f: updateFeatures f ({ - num_integer."0.1.35".default = (f.num_integer."0.1.35".default or true); - num_traits."${deps.num_integer."0.1.35".num_traits}".default = true; - }) [ - (features_.num_traits."${deps."num_integer"."0.1.35"."num_traits"}" deps) - ]; - - -# end -# num-iter-0.1.34 - - crates.num_iter."0.1.34" = deps: { features?(features_.num_iter."0.1.34" deps {}) }: buildRustCrate { - crateName = "num-iter"; - version = "0.1.34"; - description = "External iterators for generic mathematics"; - authors = [ "The Rust Project Developers" ]; - sha256 = "02cld7x9dzbqbs6sxxzq1i22z3awlcd6ljkgvhkfr9rsnaxphzl9"; - dependencies = mapFeatures features ([ - (crates."num_integer"."${deps."num_iter"."0.1.34"."num_integer"}" deps) - (crates."num_traits"."${deps."num_iter"."0.1.34"."num_traits"}" deps) - ]); - }; - features_.num_iter."0.1.34" = deps: f: updateFeatures f ({ - num_integer."${deps.num_iter."0.1.34".num_integer}".default = true; - num_iter."0.1.34".default = (f.num_iter."0.1.34".default or true); - num_traits."${deps.num_iter."0.1.34".num_traits}".default = true; - }) [ - (features_.num_integer."${deps."num_iter"."0.1.34"."num_integer"}" deps) - (features_.num_traits."${deps."num_iter"."0.1.34"."num_traits"}" deps) - ]; - - -# end -# num-traits-0.1.40 - - crates.num_traits."0.1.40" = deps: { features?(features_.num_traits."0.1.40" deps {}) }: buildRustCrate { - crateName = "num-traits"; - version = "0.1.40"; - description = "Numeric traits for generic mathematics"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1fr8ghp4i97q3agki54i0hpmqxv3s65i2mqd1pinc7w7arc3fplw"; - }; - features_.num_traits."0.1.40" = deps: f: updateFeatures f ({ - num_traits."0.1.40".default = (f.num_traits."0.1.40".default or true); - }) []; - - -# end -# num_cpus-1.8.0 - - crates.num_cpus."1.8.0" = deps: { features?(features_.num_cpus."1.8.0" deps {}) }: buildRustCrate { - crateName = "num_cpus"; - version = "1.8.0"; - description = "Get the number of CPUs on a machine."; - authors = [ "Sean McArthur " ]; - sha256 = "1y6qnd9r8ga6y8mvlabdrr73nc8cshjjlzbvnanzyj9b8zzkfwk2"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."num_cpus"."1.8.0"."libc"}" deps) - ]); - }; - features_.num_cpus."1.8.0" = deps: f: updateFeatures f ({ - libc."${deps.num_cpus."1.8.0".libc}".default = true; - num_cpus."1.8.0".default = (f.num_cpus."1.8.0".default or true); - }) [ - (features_.libc."${deps."num_cpus"."1.8.0"."libc"}" deps) - ]; - - -# end -# openssl-0.10.15 - - crates.openssl."0.10.15" = deps: { features?(features_.openssl."0.10.15" deps {}) }: buildRustCrate { - crateName = "openssl"; - version = "0.10.15"; - description = "OpenSSL bindings"; - authors = [ "Steven Fackler " ]; - sha256 = "0fj5g66ibkyb6vfdfjgaypfn45vpj2cdv7d7qpq653sv57glcqri"; - dependencies = mapFeatures features ([ - (crates."bitflags"."${deps."openssl"."0.10.15"."bitflags"}" deps) - (crates."cfg_if"."${deps."openssl"."0.10.15"."cfg_if"}" deps) - (crates."foreign_types"."${deps."openssl"."0.10.15"."foreign_types"}" deps) - (crates."lazy_static"."${deps."openssl"."0.10.15"."lazy_static"}" deps) - (crates."libc"."${deps."openssl"."0.10.15"."libc"}" deps) - (crates."openssl_sys"."${deps."openssl"."0.10.15"."openssl_sys"}" deps) - ]); - features = mkFeatures (features."openssl"."0.10.15" or {}); - }; - features_.openssl."0.10.15" = deps: f: updateFeatures f (rec { - bitflags."${deps.openssl."0.10.15".bitflags}".default = true; - cfg_if."${deps.openssl."0.10.15".cfg_if}".default = true; - foreign_types."${deps.openssl."0.10.15".foreign_types}".default = true; - lazy_static."${deps.openssl."0.10.15".lazy_static}".default = true; - libc."${deps.openssl."0.10.15".libc}".default = true; - openssl."0.10.15".default = (f.openssl."0.10.15".default or true); - openssl_sys = fold recursiveUpdate {} [ - { "${deps.openssl."0.10.15".openssl_sys}"."vendored" = - (f.openssl_sys."${deps.openssl."0.10.15".openssl_sys}"."vendored" or false) || - (openssl."0.10.15"."vendored" or false) || - (f."openssl"."0.10.15"."vendored" or false); } - { "${deps.openssl."0.10.15".openssl_sys}".default = true; } - ]; - }) [ - (features_.bitflags."${deps."openssl"."0.10.15"."bitflags"}" deps) - (features_.cfg_if."${deps."openssl"."0.10.15"."cfg_if"}" deps) - (features_.foreign_types."${deps."openssl"."0.10.15"."foreign_types"}" deps) - (features_.lazy_static."${deps."openssl"."0.10.15"."lazy_static"}" deps) - (features_.libc."${deps."openssl"."0.10.15"."libc"}" deps) - (features_.openssl_sys."${deps."openssl"."0.10.15"."openssl_sys"}" deps) - ]; - - -# end -# openssl-probe-0.1.2 - - crates.openssl_probe."0.1.2" = deps: { features?(features_.openssl_probe."0.1.2" deps {}) }: buildRustCrate { - crateName = "openssl-probe"; - version = "0.1.2"; - description = "Tool for helping to find SSL certificate locations on the system for OpenSSL\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1a89fznx26vvaxyrxdvgf6iwai5xvs6xjvpjin68fgvrslv6n15a"; - }; - features_.openssl_probe."0.1.2" = deps: f: updateFeatures f ({ - openssl_probe."0.1.2".default = (f.openssl_probe."0.1.2".default or true); - }) []; - - -# end -# openssl-sys-0.9.39 - - crates.openssl_sys."0.9.39" = deps: { features?(features_.openssl_sys."0.9.39" deps {}) }: buildRustCrate { - crateName = "openssl-sys"; - version = "0.9.39"; - description = "FFI bindings to OpenSSL"; - authors = [ "Alex Crichton " "Steven Fackler " ]; - sha256 = "1lraqg3xz4jxrc99na17kn6srfhsgnj1yjk29mgsh803w40s2056"; - build = "build/main.rs"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."openssl_sys"."0.9.39"."libc"}" deps) - ]) - ++ (if abi == "msvc" then mapFeatures features ([ -]) else []); - - buildDependencies = mapFeatures features ([ - (crates."cc"."${deps."openssl_sys"."0.9.39"."cc"}" deps) - (crates."pkg_config"."${deps."openssl_sys"."0.9.39"."pkg_config"}" deps) - ]); - features = mkFeatures (features."openssl_sys"."0.9.39" or {}); - }; - features_.openssl_sys."0.9.39" = deps: f: updateFeatures f (rec { - cc."${deps.openssl_sys."0.9.39".cc}".default = true; - libc."${deps.openssl_sys."0.9.39".libc}".default = true; - openssl_sys = fold recursiveUpdate {} [ - { "0.9.39"."openssl-src" = - (f.openssl_sys."0.9.39"."openssl-src" or false) || - (f.openssl_sys."0.9.39".vendored or false) || - (openssl_sys."0.9.39"."vendored" or false); } - { "0.9.39".default = (f.openssl_sys."0.9.39".default or true); } - ]; - pkg_config."${deps.openssl_sys."0.9.39".pkg_config}".default = true; - }) [ - (features_.libc."${deps."openssl_sys"."0.9.39"."libc"}" deps) - (features_.cc."${deps."openssl_sys"."0.9.39"."cc"}" deps) - (features_.pkg_config."${deps."openssl_sys"."0.9.39"."pkg_config"}" deps) - ]; - - -# end -# owning_ref-0.4.0 - - crates.owning_ref."0.4.0" = deps: { features?(features_.owning_ref."0.4.0" deps {}) }: buildRustCrate { - crateName = "owning_ref"; - version = "0.4.0"; - description = "A library for creating references that carry their owner with them."; - authors = [ "Marvin Löbel " ]; - sha256 = "1m95qpc3hamkw9wlbfzqkzk7h6skyj40zr6sa3ps151slcfnnchm"; - dependencies = mapFeatures features ([ - (crates."stable_deref_trait"."${deps."owning_ref"."0.4.0"."stable_deref_trait"}" deps) - ]); - }; - features_.owning_ref."0.4.0" = deps: f: updateFeatures f ({ - owning_ref."0.4.0".default = (f.owning_ref."0.4.0".default or true); - stable_deref_trait."${deps.owning_ref."0.4.0".stable_deref_trait}".default = true; - }) [ - (features_.stable_deref_trait."${deps."owning_ref"."0.4.0"."stable_deref_trait"}" deps) - ]; - - -# end -# parking_lot-0.6.4 - - crates.parking_lot."0.6.4" = deps: { features?(features_.parking_lot."0.6.4" deps {}) }: buildRustCrate { - crateName = "parking_lot"; - version = "0.6.4"; - description = "More compact and efficient implementations of the standard synchronization primitives."; - authors = [ "Amanieu d'Antras " ]; - sha256 = "0qwfysx8zfkj72sfcrqvd6pp7lgjmklyixsi3y0g6xjspw876rax"; - dependencies = mapFeatures features ([ - (crates."lock_api"."${deps."parking_lot"."0.6.4"."lock_api"}" deps) - (crates."parking_lot_core"."${deps."parking_lot"."0.6.4"."parking_lot_core"}" deps) - ]); - features = mkFeatures (features."parking_lot"."0.6.4" or {}); - }; - features_.parking_lot."0.6.4" = deps: f: updateFeatures f (rec { - lock_api = fold recursiveUpdate {} [ - { "${deps.parking_lot."0.6.4".lock_api}"."nightly" = - (f.lock_api."${deps.parking_lot."0.6.4".lock_api}"."nightly" or false) || - (parking_lot."0.6.4"."nightly" or false) || - (f."parking_lot"."0.6.4"."nightly" or false); } - { "${deps.parking_lot."0.6.4".lock_api}"."owning_ref" = - (f.lock_api."${deps.parking_lot."0.6.4".lock_api}"."owning_ref" or false) || - (parking_lot."0.6.4"."owning_ref" or false) || - (f."parking_lot"."0.6.4"."owning_ref" or false); } - { "${deps.parking_lot."0.6.4".lock_api}".default = true; } - ]; - parking_lot = fold recursiveUpdate {} [ - { "0.6.4"."owning_ref" = - (f.parking_lot."0.6.4"."owning_ref" or false) || - (f.parking_lot."0.6.4".default or false) || - (parking_lot."0.6.4"."default" or false); } - { "0.6.4".default = (f.parking_lot."0.6.4".default or true); } - ]; - parking_lot_core = fold recursiveUpdate {} [ - { "${deps.parking_lot."0.6.4".parking_lot_core}"."deadlock_detection" = - (f.parking_lot_core."${deps.parking_lot."0.6.4".parking_lot_core}"."deadlock_detection" or false) || - (parking_lot."0.6.4"."deadlock_detection" or false) || - (f."parking_lot"."0.6.4"."deadlock_detection" or false); } - { "${deps.parking_lot."0.6.4".parking_lot_core}"."nightly" = - (f.parking_lot_core."${deps.parking_lot."0.6.4".parking_lot_core}"."nightly" or false) || - (parking_lot."0.6.4"."nightly" or false) || - (f."parking_lot"."0.6.4"."nightly" or false); } - { "${deps.parking_lot."0.6.4".parking_lot_core}".default = true; } - ]; - }) [ - (features_.lock_api."${deps."parking_lot"."0.6.4"."lock_api"}" deps) - (features_.parking_lot_core."${deps."parking_lot"."0.6.4"."parking_lot_core"}" deps) - ]; - - -# end -# parking_lot_core-0.3.1 - - crates.parking_lot_core."0.3.1" = deps: { features?(features_.parking_lot_core."0.3.1" deps {}) }: buildRustCrate { - crateName = "parking_lot_core"; - version = "0.3.1"; - description = "An advanced API for creating custom synchronization primitives."; - authors = [ "Amanieu d'Antras " ]; - sha256 = "0h5p7dys8cx9y6ii4i57ampf7qdr8zmkpn543kd3h7nkhml8bw72"; - dependencies = mapFeatures features ([ - (crates."rand"."${deps."parking_lot_core"."0.3.1"."rand"}" deps) - (crates."smallvec"."${deps."parking_lot_core"."0.3.1"."smallvec"}" deps) - ]) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."parking_lot_core"."0.3.1"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."winapi"."${deps."parking_lot_core"."0.3.1"."winapi"}" deps) - ]) else []); - - buildDependencies = mapFeatures features ([ - (crates."rustc_version"."${deps."parking_lot_core"."0.3.1"."rustc_version"}" deps) - ]); - features = mkFeatures (features."parking_lot_core"."0.3.1" or {}); - }; - features_.parking_lot_core."0.3.1" = deps: f: updateFeatures f (rec { - libc."${deps.parking_lot_core."0.3.1".libc}".default = true; - parking_lot_core = fold recursiveUpdate {} [ - { "0.3.1"."backtrace" = - (f.parking_lot_core."0.3.1"."backtrace" or false) || - (f.parking_lot_core."0.3.1".deadlock_detection or false) || - (parking_lot_core."0.3.1"."deadlock_detection" or false); } - { "0.3.1"."petgraph" = - (f.parking_lot_core."0.3.1"."petgraph" or false) || - (f.parking_lot_core."0.3.1".deadlock_detection or false) || - (parking_lot_core."0.3.1"."deadlock_detection" or false); } - { "0.3.1"."thread-id" = - (f.parking_lot_core."0.3.1"."thread-id" or false) || - (f.parking_lot_core."0.3.1".deadlock_detection or false) || - (parking_lot_core."0.3.1"."deadlock_detection" or false); } - { "0.3.1".default = (f.parking_lot_core."0.3.1".default or true); } - ]; - rand."${deps.parking_lot_core."0.3.1".rand}".default = true; - rustc_version."${deps.parking_lot_core."0.3.1".rustc_version}".default = true; - smallvec."${deps.parking_lot_core."0.3.1".smallvec}".default = true; - winapi = fold recursiveUpdate {} [ - { "${deps.parking_lot_core."0.3.1".winapi}"."errhandlingapi" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."handleapi" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."minwindef" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."ntstatus" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."winbase" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."winerror" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}"."winnt" = true; } - { "${deps.parking_lot_core."0.3.1".winapi}".default = true; } - ]; - }) [ - (features_.rand."${deps."parking_lot_core"."0.3.1"."rand"}" deps) - (features_.smallvec."${deps."parking_lot_core"."0.3.1"."smallvec"}" deps) - (features_.rustc_version."${deps."parking_lot_core"."0.3.1"."rustc_version"}" deps) - (features_.libc."${deps."parking_lot_core"."0.3.1"."libc"}" deps) - (features_.winapi."${deps."parking_lot_core"."0.3.1"."winapi"}" deps) - ]; - - -# end -# percent-encoding-1.0.1 - - crates.percent_encoding."1.0.1" = deps: { features?(features_.percent_encoding."1.0.1" deps {}) }: buildRustCrate { - crateName = "percent-encoding"; - version = "1.0.1"; - description = "Percent encoding and decoding"; - authors = [ "The rust-url developers" ]; - sha256 = "04ahrp7aw4ip7fmadb0bknybmkfav0kk0gw4ps3ydq5w6hr0ib5i"; - libPath = "lib.rs"; - }; - features_.percent_encoding."1.0.1" = deps: f: updateFeatures f ({ - percent_encoding."1.0.1".default = (f.percent_encoding."1.0.1".default or true); - }) []; - - -# end -# phf-0.7.21 - - crates.phf."0.7.21" = deps: { features?(features_.phf."0.7.21" deps {}) }: buildRustCrate { - crateName = "phf"; - version = "0.7.21"; - description = "Runtime support for perfect hash function data structures"; - authors = [ "Steven Fackler " ]; - sha256 = "11m2rzm2s8s35m0s97gjxxb181xz352kjlhr387xj5c8q3qp5afg"; - libPath = "src/lib.rs"; - dependencies = mapFeatures features ([ - (crates."phf_shared"."${deps."phf"."0.7.21"."phf_shared"}" deps) - ]); - features = mkFeatures (features."phf"."0.7.21" or {}); - }; - features_.phf."0.7.21" = deps: f: updateFeatures f (rec { - phf."0.7.21".default = (f.phf."0.7.21".default or true); - phf_shared = fold recursiveUpdate {} [ - { "${deps.phf."0.7.21".phf_shared}"."core" = - (f.phf_shared."${deps.phf."0.7.21".phf_shared}"."core" or false) || - (phf."0.7.21"."core" or false) || - (f."phf"."0.7.21"."core" or false); } - { "${deps.phf."0.7.21".phf_shared}"."unicase" = - (f.phf_shared."${deps.phf."0.7.21".phf_shared}"."unicase" or false) || - (phf."0.7.21"."unicase" or false) || - (f."phf"."0.7.21"."unicase" or false); } - { "${deps.phf."0.7.21".phf_shared}".default = true; } - ]; - }) [ - (features_.phf_shared."${deps."phf"."0.7.21"."phf_shared"}" deps) - ]; - - -# end -# phf_codegen-0.7.21 - - crates.phf_codegen."0.7.21" = deps: { features?(features_.phf_codegen."0.7.21" deps {}) }: buildRustCrate { - crateName = "phf_codegen"; - version = "0.7.21"; - description = "Codegen library for PHF types"; - authors = [ "Steven Fackler " ]; - sha256 = "0kgy8s2q4zr0iqcm21mgq4ppc45wy6z7b5wn98xyfsrcad6lwmmj"; - dependencies = mapFeatures features ([ - (crates."phf_generator"."${deps."phf_codegen"."0.7.21"."phf_generator"}" deps) - (crates."phf_shared"."${deps."phf_codegen"."0.7.21"."phf_shared"}" deps) - ]); - }; - features_.phf_codegen."0.7.21" = deps: f: updateFeatures f ({ - phf_codegen."0.7.21".default = (f.phf_codegen."0.7.21".default or true); - phf_generator."${deps.phf_codegen."0.7.21".phf_generator}".default = true; - phf_shared."${deps.phf_codegen."0.7.21".phf_shared}".default = true; - }) [ - (features_.phf_generator."${deps."phf_codegen"."0.7.21"."phf_generator"}" deps) - (features_.phf_shared."${deps."phf_codegen"."0.7.21"."phf_shared"}" deps) - ]; - - -# end -# phf_generator-0.7.21 - - crates.phf_generator."0.7.21" = deps: { features?(features_.phf_generator."0.7.21" deps {}) }: buildRustCrate { - crateName = "phf_generator"; - version = "0.7.21"; - description = "PHF generation logic"; - authors = [ "Steven Fackler " ]; - sha256 = "1jxjfzc6d6d4l9nv0r2bb66if5brk9lnncmg4dpjjifn6zhhqd9g"; - dependencies = mapFeatures features ([ - (crates."phf_shared"."${deps."phf_generator"."0.7.21"."phf_shared"}" deps) - (crates."rand"."${deps."phf_generator"."0.7.21"."rand"}" deps) - ]); - }; - features_.phf_generator."0.7.21" = deps: f: updateFeatures f ({ - phf_generator."0.7.21".default = (f.phf_generator."0.7.21".default or true); - phf_shared."${deps.phf_generator."0.7.21".phf_shared}".default = true; - rand."${deps.phf_generator."0.7.21".rand}".default = true; - }) [ - (features_.phf_shared."${deps."phf_generator"."0.7.21"."phf_shared"}" deps) - (features_.rand."${deps."phf_generator"."0.7.21"."rand"}" deps) - ]; - - -# end -# phf_shared-0.7.21 - - crates.phf_shared."0.7.21" = deps: { features?(features_.phf_shared."0.7.21" deps {}) }: buildRustCrate { - crateName = "phf_shared"; - version = "0.7.21"; - description = "Support code shared by PHF libraries"; - authors = [ "Steven Fackler " ]; - sha256 = "0lxpg3wgxfhzfalmf9ha9my1lsvfjy74ah9f6mfw88xlp545jlln"; - libPath = "src/lib.rs"; - dependencies = mapFeatures features ([ - (crates."siphasher"."${deps."phf_shared"."0.7.21"."siphasher"}" deps) - ] - ++ (if features.phf_shared."0.7.21".unicase or false then [ (crates.unicase."${deps."phf_shared"."0.7.21".unicase}" deps) ] else [])); - features = mkFeatures (features."phf_shared"."0.7.21" or {}); - }; - features_.phf_shared."0.7.21" = deps: f: updateFeatures f ({ - phf_shared."0.7.21".default = (f.phf_shared."0.7.21".default or true); - siphasher."${deps.phf_shared."0.7.21".siphasher}".default = true; - unicase."${deps.phf_shared."0.7.21".unicase}".default = true; - }) [ - (features_.siphasher."${deps."phf_shared"."0.7.21"."siphasher"}" deps) - (features_.unicase."${deps."phf_shared"."0.7.21"."unicase"}" deps) - ]; - - -# end -# pkg-config-0.3.9 - - crates.pkg_config."0.3.9" = deps: { features?(features_.pkg_config."0.3.9" deps {}) }: buildRustCrate { - crateName = "pkg-config"; - version = "0.3.9"; - description = "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "06k8fxgrsrxj8mjpjcq1n7mn2p1shpxif4zg9y5h09c7vy20s146"; - }; - features_.pkg_config."0.3.9" = deps: f: updateFeatures f ({ - pkg_config."0.3.9".default = (f.pkg_config."0.3.9".default or true); - }) []; - - -# end -# quote-0.3.15 - - crates.quote."0.3.15" = deps: { features?(features_.quote."0.3.15" deps {}) }: buildRustCrate { - crateName = "quote"; - version = "0.3.15"; - description = "Quasi-quoting macro quote!(...)"; - authors = [ "David Tolnay " ]; - sha256 = "09il61jv4kd1360spaj46qwyl21fv1qz18fsv2jra8wdnlgl5jsg"; - }; - features_.quote."0.3.15" = deps: f: updateFeatures f ({ - quote."0.3.15".default = (f.quote."0.3.15".default or true); - }) []; - - -# end -# rand-0.3.18 - - crates.rand."0.3.18" = deps: { features?(features_.rand."0.3.18" deps {}) }: buildRustCrate { - crateName = "rand"; - version = "0.3.18"; - description = "Random number generators and other randomness functionality.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "15d7c3myn968dzjs0a2pgv58hzdavxnq6swgj032lw2v966ir4xv"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."rand"."0.3.18"."libc"}" deps) - ]) - ++ (if kernel == "fuchsia" then mapFeatures features ([ - (crates."fuchsia_zircon"."${deps."rand"."0.3.18"."fuchsia_zircon"}" deps) - ]) else []); - features = mkFeatures (features."rand"."0.3.18" or {}); - }; - features_.rand."0.3.18" = deps: f: updateFeatures f (rec { - fuchsia_zircon."${deps.rand."0.3.18".fuchsia_zircon}".default = true; - libc."${deps.rand."0.3.18".libc}".default = true; - rand = fold recursiveUpdate {} [ - { "0.3.18"."i128_support" = - (f.rand."0.3.18"."i128_support" or false) || - (f.rand."0.3.18".nightly or false) || - (rand."0.3.18"."nightly" or false); } - { "0.3.18".default = (f.rand."0.3.18".default or true); } - ]; - }) [ - (features_.libc."${deps."rand"."0.3.18"."libc"}" deps) - (features_.fuchsia_zircon."${deps."rand"."0.3.18"."fuchsia_zircon"}" deps) - ]; - - -# end -# rand-0.5.5 - - crates.rand."0.5.5" = deps: { features?(features_.rand."0.5.5" deps {}) }: buildRustCrate { - crateName = "rand"; - version = "0.5.5"; - description = "Random number generators and other randomness functionality.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "0d7pnsh57qxhz1ghrzk113ddkn13kf2g758ffnbxq4nhwjfzhlc9"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand"."0.5.5"."rand_core"}" deps) - ]) - ++ (if kernel == "cloudabi" then mapFeatures features ([ - ] - ++ (if features.rand."0.5.5".cloudabi or false then [ (crates.cloudabi."${deps."rand"."0.5.5".cloudabi}" deps) ] else [])) else []) - ++ (if kernel == "fuchsia" then mapFeatures features ([ - ] - ++ (if features.rand."0.5.5".fuchsia-zircon or false then [ (crates.fuchsia_zircon."${deps."rand"."0.5.5".fuchsia_zircon}" deps) ] else [])) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - ] - ++ (if features.rand."0.5.5".libc or false then [ (crates.libc."${deps."rand"."0.5.5".libc}" deps) ] else [])) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - ] - ++ (if features.rand."0.5.5".winapi or false then [ (crates.winapi."${deps."rand"."0.5.5".winapi}" deps) ] else [])) else []) - ++ (if kernel == "wasm32-unknown-unknown" then mapFeatures features ([ -]) else []); - features = mkFeatures (features."rand"."0.5.5" or {}); - }; - features_.rand."0.5.5" = deps: f: updateFeatures f (rec { - cloudabi."${deps.rand."0.5.5".cloudabi}".default = true; - fuchsia_zircon."${deps.rand."0.5.5".fuchsia_zircon}".default = true; - libc."${deps.rand."0.5.5".libc}".default = true; - rand = fold recursiveUpdate {} [ - { "0.5.5"."alloc" = - (f.rand."0.5.5"."alloc" or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5"."cloudabi" = - (f.rand."0.5.5"."cloudabi" or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5"."fuchsia-zircon" = - (f.rand."0.5.5"."fuchsia-zircon" or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5"."i128_support" = - (f.rand."0.5.5"."i128_support" or false) || - (f.rand."0.5.5".nightly or false) || - (rand."0.5.5"."nightly" or false); } - { "0.5.5"."libc" = - (f.rand."0.5.5"."libc" or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5"."serde" = - (f.rand."0.5.5"."serde" or false) || - (f.rand."0.5.5".serde1 or false) || - (rand."0.5.5"."serde1" or false); } - { "0.5.5"."serde_derive" = - (f.rand."0.5.5"."serde_derive" or false) || - (f.rand."0.5.5".serde1 or false) || - (rand."0.5.5"."serde1" or false); } - { "0.5.5"."std" = - (f.rand."0.5.5"."std" or false) || - (f.rand."0.5.5".default or false) || - (rand."0.5.5"."default" or false); } - { "0.5.5"."winapi" = - (f.rand."0.5.5"."winapi" or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5".default = (f.rand."0.5.5".default or true); } - ]; - rand_core = fold recursiveUpdate {} [ - { "${deps.rand."0.5.5".rand_core}"."alloc" = - (f.rand_core."${deps.rand."0.5.5".rand_core}"."alloc" or false) || - (rand."0.5.5"."alloc" or false) || - (f."rand"."0.5.5"."alloc" or false); } - { "${deps.rand."0.5.5".rand_core}"."serde1" = - (f.rand_core."${deps.rand."0.5.5".rand_core}"."serde1" or false) || - (rand."0.5.5"."serde1" or false) || - (f."rand"."0.5.5"."serde1" or false); } - { "${deps.rand."0.5.5".rand_core}"."std" = - (f.rand_core."${deps.rand."0.5.5".rand_core}"."std" or false) || - (rand."0.5.5"."std" or false) || - (f."rand"."0.5.5"."std" or false); } - { "${deps.rand."0.5.5".rand_core}".default = (f.rand_core."${deps.rand."0.5.5".rand_core}".default or false); } - ]; - winapi = fold recursiveUpdate {} [ - { "${deps.rand."0.5.5".winapi}"."minwindef" = true; } - { "${deps.rand."0.5.5".winapi}"."ntsecapi" = true; } - { "${deps.rand."0.5.5".winapi}"."profileapi" = true; } - { "${deps.rand."0.5.5".winapi}"."winnt" = true; } - { "${deps.rand."0.5.5".winapi}".default = true; } - ]; - }) [ - (features_.rand_core."${deps."rand"."0.5.5"."rand_core"}" deps) - (features_.cloudabi."${deps."rand"."0.5.5"."cloudabi"}" deps) - (features_.fuchsia_zircon."${deps."rand"."0.5.5"."fuchsia_zircon"}" deps) - (features_.libc."${deps."rand"."0.5.5"."libc"}" deps) - (features_.winapi."${deps."rand"."0.5.5"."winapi"}" deps) - ]; - - -# end -# rand-0.6.1 - - crates.rand."0.6.1" = deps: { features?(features_.rand."0.6.1" deps {}) }: buildRustCrate { - crateName = "rand"; - version = "0.6.1"; - description = "Random number generators and other randomness functionality.\n"; - authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - sha256 = "123s3w165iiifmf475lisqkd0kbr7nwnn3k4b1zg2cwap5v9m9bz"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."rand_chacha"."${deps."rand"."0.6.1"."rand_chacha"}" deps) - (crates."rand_core"."${deps."rand"."0.6.1"."rand_core"}" deps) - (crates."rand_hc"."${deps."rand"."0.6.1"."rand_hc"}" deps) - (crates."rand_isaac"."${deps."rand"."0.6.1"."rand_isaac"}" deps) - (crates."rand_pcg"."${deps."rand"."0.6.1"."rand_pcg"}" deps) - (crates."rand_xorshift"."${deps."rand"."0.6.1"."rand_xorshift"}" deps) - ]) - ++ (if kernel == "cloudabi" then mapFeatures features ([ - ] - ++ (if features.rand."0.6.1".cloudabi or false then [ (crates.cloudabi."${deps."rand"."0.6.1".cloudabi}" deps) ] else [])) else []) - ++ (if kernel == "fuchsia" then mapFeatures features ([ - ] - ++ (if features.rand."0.6.1".fuchsia-zircon or false then [ (crates.fuchsia_zircon."${deps."rand"."0.6.1".fuchsia_zircon}" deps) ] else [])) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - ] - ++ (if features.rand."0.6.1".libc or false then [ (crates.libc."${deps."rand"."0.6.1".libc}" deps) ] else [])) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - ] - ++ (if features.rand."0.6.1".winapi or false then [ (crates.winapi."${deps."rand"."0.6.1".winapi}" deps) ] else [])) else []) - ++ (if kernel == "wasm32-unknown-unknown" then mapFeatures features ([ -]) else []); - - buildDependencies = mapFeatures features ([ - (crates."rustc_version"."${deps."rand"."0.6.1"."rustc_version"}" deps) - ]); - features = mkFeatures (features."rand"."0.6.1" or {}); - }; - features_.rand."0.6.1" = deps: f: updateFeatures f (rec { - cloudabi."${deps.rand."0.6.1".cloudabi}".default = true; - fuchsia_zircon."${deps.rand."0.6.1".fuchsia_zircon}".default = true; - libc."${deps.rand."0.6.1".libc}".default = (f.libc."${deps.rand."0.6.1".libc}".default or false); - rand = fold recursiveUpdate {} [ - { "0.6.1"."alloc" = - (f.rand."0.6.1"."alloc" or false) || - (f.rand."0.6.1".std or false) || - (rand."0.6.1"."std" or false); } - { "0.6.1"."cloudabi" = - (f.rand."0.6.1"."cloudabi" or false) || - (f.rand."0.6.1".std or false) || - (rand."0.6.1"."std" or false); } - { "0.6.1"."fuchsia-zircon" = - (f.rand."0.6.1"."fuchsia-zircon" or false) || - (f.rand."0.6.1".std or false) || - (rand."0.6.1"."std" or false); } - { "0.6.1"."libc" = - (f.rand."0.6.1"."libc" or false) || - (f.rand."0.6.1".std or false) || - (rand."0.6.1"."std" or false); } - { "0.6.1"."packed_simd" = - (f.rand."0.6.1"."packed_simd" or false) || - (f.rand."0.6.1".simd_support or false) || - (rand."0.6.1"."simd_support" or false); } - { "0.6.1"."simd_support" = - (f.rand."0.6.1"."simd_support" or false) || - (f.rand."0.6.1".nightly or false) || - (rand."0.6.1"."nightly" or false); } - { "0.6.1"."std" = - (f.rand."0.6.1"."std" or false) || - (f.rand."0.6.1".default or false) || - (rand."0.6.1"."default" or false); } - { "0.6.1"."winapi" = - (f.rand."0.6.1"."winapi" or false) || - (f.rand."0.6.1".std or false) || - (rand."0.6.1"."std" or false); } - { "0.6.1".default = (f.rand."0.6.1".default or true); } - ]; - rand_chacha."${deps.rand."0.6.1".rand_chacha}".default = true; - rand_core = fold recursiveUpdate {} [ - { "${deps.rand."0.6.1".rand_core}"."alloc" = - (f.rand_core."${deps.rand."0.6.1".rand_core}"."alloc" or false) || - (rand."0.6.1"."alloc" or false) || - (f."rand"."0.6.1"."alloc" or false); } - { "${deps.rand."0.6.1".rand_core}"."serde1" = - (f.rand_core."${deps.rand."0.6.1".rand_core}"."serde1" or false) || - (rand."0.6.1"."serde1" or false) || - (f."rand"."0.6.1"."serde1" or false); } - { "${deps.rand."0.6.1".rand_core}"."std" = - (f.rand_core."${deps.rand."0.6.1".rand_core}"."std" or false) || - (rand."0.6.1"."std" or false) || - (f."rand"."0.6.1"."std" or false); } - { "${deps.rand."0.6.1".rand_core}".default = (f.rand_core."${deps.rand."0.6.1".rand_core}".default or false); } - ]; - rand_hc."${deps.rand."0.6.1".rand_hc}".default = true; - rand_isaac = fold recursiveUpdate {} [ - { "${deps.rand."0.6.1".rand_isaac}"."serde1" = - (f.rand_isaac."${deps.rand."0.6.1".rand_isaac}"."serde1" or false) || - (rand."0.6.1"."serde1" or false) || - (f."rand"."0.6.1"."serde1" or false); } - { "${deps.rand."0.6.1".rand_isaac}".default = true; } - ]; - rand_pcg."${deps.rand."0.6.1".rand_pcg}".default = true; - rand_xorshift = fold recursiveUpdate {} [ - { "${deps.rand."0.6.1".rand_xorshift}"."serde1" = - (f.rand_xorshift."${deps.rand."0.6.1".rand_xorshift}"."serde1" or false) || - (rand."0.6.1"."serde1" or false) || - (f."rand"."0.6.1"."serde1" or false); } - { "${deps.rand."0.6.1".rand_xorshift}".default = true; } - ]; - rustc_version."${deps.rand."0.6.1".rustc_version}".default = true; - winapi = fold recursiveUpdate {} [ - { "${deps.rand."0.6.1".winapi}"."minwindef" = true; } - { "${deps.rand."0.6.1".winapi}"."ntsecapi" = true; } - { "${deps.rand."0.6.1".winapi}"."profileapi" = true; } - { "${deps.rand."0.6.1".winapi}"."winnt" = true; } - { "${deps.rand."0.6.1".winapi}".default = true; } - ]; - }) [ - (features_.rand_chacha."${deps."rand"."0.6.1"."rand_chacha"}" deps) - (features_.rand_core."${deps."rand"."0.6.1"."rand_core"}" deps) - (features_.rand_hc."${deps."rand"."0.6.1"."rand_hc"}" deps) - (features_.rand_isaac."${deps."rand"."0.6.1"."rand_isaac"}" deps) - (features_.rand_pcg."${deps."rand"."0.6.1"."rand_pcg"}" deps) - (features_.rand_xorshift."${deps."rand"."0.6.1"."rand_xorshift"}" deps) - (features_.rustc_version."${deps."rand"."0.6.1"."rustc_version"}" deps) - (features_.cloudabi."${deps."rand"."0.6.1"."cloudabi"}" deps) - (features_.fuchsia_zircon."${deps."rand"."0.6.1"."fuchsia_zircon"}" deps) - (features_.libc."${deps."rand"."0.6.1"."libc"}" deps) - (features_.winapi."${deps."rand"."0.6.1"."winapi"}" deps) - ]; - - -# end -# rand_chacha-0.1.0 - - crates.rand_chacha."0.1.0" = deps: { features?(features_.rand_chacha."0.1.0" deps {}) }: buildRustCrate { - crateName = "rand_chacha"; - version = "0.1.0"; - description = "ChaCha random number generator\n"; - authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - sha256 = "0q5pq34cqv1mnibgzd1cmx9q49vkr2lvalkkvizmlld217jmlqc6"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_chacha"."0.1.0"."rand_core"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."rustc_version"."${deps."rand_chacha"."0.1.0"."rustc_version"}" deps) - ]); - }; - features_.rand_chacha."0.1.0" = deps: f: updateFeatures f ({ - rand_chacha."0.1.0".default = (f.rand_chacha."0.1.0".default or true); - rand_core."${deps.rand_chacha."0.1.0".rand_core}".default = (f.rand_core."${deps.rand_chacha."0.1.0".rand_core}".default or false); - rustc_version."${deps.rand_chacha."0.1.0".rustc_version}".default = true; - }) [ - (features_.rand_core."${deps."rand_chacha"."0.1.0"."rand_core"}" deps) - (features_.rustc_version."${deps."rand_chacha"."0.1.0"."rustc_version"}" deps) - ]; - - -# end -# rand_core-0.2.2 - - crates.rand_core."0.2.2" = deps: { features?(features_.rand_core."0.2.2" deps {}) }: buildRustCrate { - crateName = "rand_core"; - version = "0.2.2"; - description = "Core random number generator traits and tools for implementation.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1cxnaxmsirz2wxsajsjkd1wk6lqfqbcprqkha4bq3didznrl22sc"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_core"."0.2.2"."rand_core"}" deps) - ]); - features = mkFeatures (features."rand_core"."0.2.2" or {}); - }; - features_.rand_core."0.2.2" = deps: f: updateFeatures f (rec { - rand_core = fold recursiveUpdate {} [ - { "${deps.rand_core."0.2.2".rand_core}"."alloc" = - (f.rand_core."${deps.rand_core."0.2.2".rand_core}"."alloc" or false) || - (rand_core."0.2.2"."alloc" or false) || - (f."rand_core"."0.2.2"."alloc" or false); } - { "${deps.rand_core."0.2.2".rand_core}"."serde1" = - (f.rand_core."${deps.rand_core."0.2.2".rand_core}"."serde1" or false) || - (rand_core."0.2.2"."serde1" or false) || - (f."rand_core"."0.2.2"."serde1" or false); } - { "${deps.rand_core."0.2.2".rand_core}"."std" = - (f.rand_core."${deps.rand_core."0.2.2".rand_core}"."std" or false) || - (rand_core."0.2.2"."std" or false) || - (f."rand_core"."0.2.2"."std" or false); } - { "${deps.rand_core."0.2.2".rand_core}".default = (f.rand_core."${deps.rand_core."0.2.2".rand_core}".default or false); } - { "0.2.2".default = (f.rand_core."0.2.2".default or true); } - ]; - }) [ - (features_.rand_core."${deps."rand_core"."0.2.2"."rand_core"}" deps) - ]; - - -# end -# rand_core-0.3.0 - - crates.rand_core."0.3.0" = deps: { features?(features_.rand_core."0.3.0" deps {}) }: buildRustCrate { - crateName = "rand_core"; - version = "0.3.0"; - description = "Core random number generator traits and tools for implementation.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1vafw316apjys9va3j987s02djhqp7y21v671v3ix0p5j9bjq339"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."rand_core"."0.3.0" or {}); - }; - features_.rand_core."0.3.0" = deps: f: updateFeatures f (rec { - rand_core = fold recursiveUpdate {} [ - { "0.3.0"."alloc" = - (f.rand_core."0.3.0"."alloc" or false) || - (f.rand_core."0.3.0".std or false) || - (rand_core."0.3.0"."std" or false); } - { "0.3.0"."serde" = - (f.rand_core."0.3.0"."serde" or false) || - (f.rand_core."0.3.0".serde1 or false) || - (rand_core."0.3.0"."serde1" or false); } - { "0.3.0"."serde_derive" = - (f.rand_core."0.3.0"."serde_derive" or false) || - (f.rand_core."0.3.0".serde1 or false) || - (rand_core."0.3.0"."serde1" or false); } - { "0.3.0"."std" = - (f.rand_core."0.3.0"."std" or false) || - (f.rand_core."0.3.0".default or false) || - (rand_core."0.3.0"."default" or false); } - { "0.3.0".default = (f.rand_core."0.3.0".default or true); } - ]; - }) []; - - -# end -# rand_hc-0.1.0 - - crates.rand_hc."0.1.0" = deps: { features?(features_.rand_hc."0.1.0" deps {}) }: buildRustCrate { - crateName = "rand_hc"; - version = "0.1.0"; - description = "HC128 random number generator\n"; - authors = [ "The Rand Project Developers" ]; - sha256 = "05agb75j87yp7y1zk8yf7bpm66hc0673r3dlypn0kazynr6fdgkz"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_hc"."0.1.0"."rand_core"}" deps) - ]); - }; - features_.rand_hc."0.1.0" = deps: f: updateFeatures f ({ - rand_core."${deps.rand_hc."0.1.0".rand_core}".default = (f.rand_core."${deps.rand_hc."0.1.0".rand_core}".default or false); - rand_hc."0.1.0".default = (f.rand_hc."0.1.0".default or true); - }) [ - (features_.rand_core."${deps."rand_hc"."0.1.0"."rand_core"}" deps) - ]; - - -# end -# rand_isaac-0.1.1 - - crates.rand_isaac."0.1.1" = deps: { features?(features_.rand_isaac."0.1.1" deps {}) }: buildRustCrate { - crateName = "rand_isaac"; - version = "0.1.1"; - description = "ISAAC random number generator\n"; - authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - sha256 = "10hhdh5b5sa03s6b63y9bafm956jwilx41s71jbrzl63ccx8lxdq"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_isaac"."0.1.1"."rand_core"}" deps) - ]); - features = mkFeatures (features."rand_isaac"."0.1.1" or {}); - }; - features_.rand_isaac."0.1.1" = deps: f: updateFeatures f (rec { - rand_core = fold recursiveUpdate {} [ - { "${deps.rand_isaac."0.1.1".rand_core}"."serde1" = - (f.rand_core."${deps.rand_isaac."0.1.1".rand_core}"."serde1" or false) || - (rand_isaac."0.1.1"."serde1" or false) || - (f."rand_isaac"."0.1.1"."serde1" or false); } - { "${deps.rand_isaac."0.1.1".rand_core}".default = (f.rand_core."${deps.rand_isaac."0.1.1".rand_core}".default or false); } - ]; - rand_isaac = fold recursiveUpdate {} [ - { "0.1.1"."serde" = - (f.rand_isaac."0.1.1"."serde" or false) || - (f.rand_isaac."0.1.1".serde1 or false) || - (rand_isaac."0.1.1"."serde1" or false); } - { "0.1.1"."serde_derive" = - (f.rand_isaac."0.1.1"."serde_derive" or false) || - (f.rand_isaac."0.1.1".serde1 or false) || - (rand_isaac."0.1.1"."serde1" or false); } - { "0.1.1".default = (f.rand_isaac."0.1.1".default or true); } - ]; - }) [ - (features_.rand_core."${deps."rand_isaac"."0.1.1"."rand_core"}" deps) - ]; - - -# end -# rand_pcg-0.1.1 - - crates.rand_pcg."0.1.1" = deps: { features?(features_.rand_pcg."0.1.1" deps {}) }: buildRustCrate { - crateName = "rand_pcg"; - version = "0.1.1"; - description = "Selected PCG random number generators\n"; - authors = [ "The Rand Project Developers" ]; - sha256 = "0x6pzldj0c8c7gmr67ni5i7w2f7n7idvs3ckx0fc3wkhwl7wrbza"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_pcg"."0.1.1"."rand_core"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."rustc_version"."${deps."rand_pcg"."0.1.1"."rustc_version"}" deps) - ]); - features = mkFeatures (features."rand_pcg"."0.1.1" or {}); - }; - features_.rand_pcg."0.1.1" = deps: f: updateFeatures f (rec { - rand_core."${deps.rand_pcg."0.1.1".rand_core}".default = (f.rand_core."${deps.rand_pcg."0.1.1".rand_core}".default or false); - rand_pcg = fold recursiveUpdate {} [ - { "0.1.1"."serde" = - (f.rand_pcg."0.1.1"."serde" or false) || - (f.rand_pcg."0.1.1".serde1 or false) || - (rand_pcg."0.1.1"."serde1" or false); } - { "0.1.1"."serde_derive" = - (f.rand_pcg."0.1.1"."serde_derive" or false) || - (f.rand_pcg."0.1.1".serde1 or false) || - (rand_pcg."0.1.1"."serde1" or false); } - { "0.1.1".default = (f.rand_pcg."0.1.1".default or true); } - ]; - rustc_version."${deps.rand_pcg."0.1.1".rustc_version}".default = true; - }) [ - (features_.rand_core."${deps."rand_pcg"."0.1.1"."rand_core"}" deps) - (features_.rustc_version."${deps."rand_pcg"."0.1.1"."rustc_version"}" deps) - ]; - - -# end -# rand_xorshift-0.1.0 - - crates.rand_xorshift."0.1.0" = deps: { features?(features_.rand_xorshift."0.1.0" deps {}) }: buildRustCrate { - crateName = "rand_xorshift"; - version = "0.1.0"; - description = "Xorshift random number generator\n"; - authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - sha256 = "063vxb678ki8gq4rx9w7yg5f9i29ig1zwykl67mfsxn0kxlkv2ih"; - dependencies = mapFeatures features ([ - (crates."rand_core"."${deps."rand_xorshift"."0.1.0"."rand_core"}" deps) - ]); - features = mkFeatures (features."rand_xorshift"."0.1.0" or {}); - }; - features_.rand_xorshift."0.1.0" = deps: f: updateFeatures f (rec { - rand_core."${deps.rand_xorshift."0.1.0".rand_core}".default = (f.rand_core."${deps.rand_xorshift."0.1.0".rand_core}".default or false); - rand_xorshift = fold recursiveUpdate {} [ - { "0.1.0"."serde" = - (f.rand_xorshift."0.1.0"."serde" or false) || - (f.rand_xorshift."0.1.0".serde1 or false) || - (rand_xorshift."0.1.0"."serde1" or false); } - { "0.1.0"."serde_derive" = - (f.rand_xorshift."0.1.0"."serde_derive" or false) || - (f.rand_xorshift."0.1.0".serde1 or false) || - (rand_xorshift."0.1.0"."serde1" or false); } - { "0.1.0".default = (f.rand_xorshift."0.1.0".default or true); } - ]; - }) [ - (features_.rand_core."${deps."rand_xorshift"."0.1.0"."rand_core"}" deps) - ]; - - -# end -# redox_syscall-0.1.31 - - crates.redox_syscall."0.1.31" = deps: { features?(features_.redox_syscall."0.1.31" deps {}) }: buildRustCrate { - crateName = "redox_syscall"; - version = "0.1.31"; - description = "A Rust library to access raw Redox system calls"; - authors = [ "Jeremy Soller " ]; - sha256 = "0kipd9qslzin4fgj4jrxv6yz5l3l71gnbd7fq1jhk2j7f2sq33j4"; - libName = "syscall"; - }; - features_.redox_syscall."0.1.31" = deps: f: updateFeatures f ({ - redox_syscall."0.1.31".default = (f.redox_syscall."0.1.31".default or true); - }) []; - - -# end -# redox_termios-0.1.1 - - crates.redox_termios."0.1.1" = deps: { features?(features_.redox_termios."0.1.1" deps {}) }: buildRustCrate { - crateName = "redox_termios"; - version = "0.1.1"; - description = "A Rust library to access Redox termios functions"; - authors = [ "Jeremy Soller " ]; - sha256 = "04s6yyzjca552hdaqlvqhp3vw0zqbc304md5czyd3axh56iry8wh"; - libPath = "src/lib.rs"; - dependencies = mapFeatures features ([ - (crates."redox_syscall"."${deps."redox_termios"."0.1.1"."redox_syscall"}" deps) - ]); - }; - features_.redox_termios."0.1.1" = deps: f: updateFeatures f ({ - redox_syscall."${deps.redox_termios."0.1.1".redox_syscall}".default = true; - redox_termios."0.1.1".default = (f.redox_termios."0.1.1".default or true); - }) [ - (features_.redox_syscall."${deps."redox_termios"."0.1.1"."redox_syscall"}" deps) - ]; - - -# end -# regex-0.1.80 - - crates.regex."0.1.80" = deps: { features?(features_.regex."0.1.80" deps {}) }: buildRustCrate { - crateName = "regex"; - version = "0.1.80"; - description = "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "0y4s8ghhx6sgzb35irwivm3w0l2hhqhmdcd2px9hirqnkagal9l6"; - dependencies = mapFeatures features ([ - (crates."aho_corasick"."${deps."regex"."0.1.80"."aho_corasick"}" deps) - (crates."memchr"."${deps."regex"."0.1.80"."memchr"}" deps) - (crates."regex_syntax"."${deps."regex"."0.1.80"."regex_syntax"}" deps) - (crates."thread_local"."${deps."regex"."0.1.80"."thread_local"}" deps) - (crates."utf8_ranges"."${deps."regex"."0.1.80"."utf8_ranges"}" deps) - ]); - features = mkFeatures (features."regex"."0.1.80" or {}); - }; - features_.regex."0.1.80" = deps: f: updateFeatures f (rec { - aho_corasick."${deps.regex."0.1.80".aho_corasick}".default = true; - memchr."${deps.regex."0.1.80".memchr}".default = true; - regex = fold recursiveUpdate {} [ - { "0.1.80"."simd" = - (f.regex."0.1.80"."simd" or false) || - (f.regex."0.1.80".simd-accel or false) || - (regex."0.1.80"."simd-accel" or false); } - { "0.1.80".default = (f.regex."0.1.80".default or true); } - ]; - regex_syntax."${deps.regex."0.1.80".regex_syntax}".default = true; - thread_local."${deps.regex."0.1.80".thread_local}".default = true; - utf8_ranges."${deps.regex."0.1.80".utf8_ranges}".default = true; - }) [ - (features_.aho_corasick."${deps."regex"."0.1.80"."aho_corasick"}" deps) - (features_.memchr."${deps."regex"."0.1.80"."memchr"}" deps) - (features_.regex_syntax."${deps."regex"."0.1.80"."regex_syntax"}" deps) - (features_.thread_local."${deps."regex"."0.1.80"."thread_local"}" deps) - (features_.utf8_ranges."${deps."regex"."0.1.80"."utf8_ranges"}" deps) - ]; - - -# end -# regex-syntax-0.3.9 - - crates.regex_syntax."0.3.9" = deps: { features?(features_.regex_syntax."0.3.9" deps {}) }: buildRustCrate { - crateName = "regex-syntax"; - version = "0.3.9"; - description = "A regular expression parser."; - authors = [ "The Rust Project Developers" ]; - sha256 = "1mzhphkbwppwd1zam2jkgjk550cqgf6506i87bw2yzrvcsraiw7m"; - }; - features_.regex_syntax."0.3.9" = deps: f: updateFeatures f ({ - regex_syntax."0.3.9".default = (f.regex_syntax."0.3.9".default or true); - }) []; - - -# end -# remove_dir_all-0.5.1 - - crates.remove_dir_all."0.5.1" = deps: { features?(features_.remove_dir_all."0.5.1" deps {}) }: buildRustCrate { - crateName = "remove_dir_all"; - version = "0.5.1"; - description = "A safe, reliable implementation of remove_dir_all for Windows"; - authors = [ "Aaronepower " ]; - sha256 = "1chx3yvfbj46xjz4bzsvps208l46hfbcy0sm98gpiya454n4rrl7"; - dependencies = (if kernel == "windows" then mapFeatures features ([ - (crates."winapi"."${deps."remove_dir_all"."0.5.1"."winapi"}" deps) - ]) else []); - }; - features_.remove_dir_all."0.5.1" = deps: f: updateFeatures f ({ - remove_dir_all."0.5.1".default = (f.remove_dir_all."0.5.1".default or true); - winapi = fold recursiveUpdate {} [ - { "${deps.remove_dir_all."0.5.1".winapi}"."errhandlingapi" = true; } - { "${deps.remove_dir_all."0.5.1".winapi}"."fileapi" = true; } - { "${deps.remove_dir_all."0.5.1".winapi}"."std" = true; } - { "${deps.remove_dir_all."0.5.1".winapi}"."winbase" = true; } - { "${deps.remove_dir_all."0.5.1".winapi}"."winerror" = true; } - { "${deps.remove_dir_all."0.5.1".winapi}".default = true; } - ]; - }) [ - (features_.winapi."${deps."remove_dir_all"."0.5.1"."winapi"}" deps) - ]; - - -# end -# reqwest-0.9.5 - - crates.reqwest."0.9.5" = deps: { features?(features_.reqwest."0.9.5" deps {}) }: buildRustCrate { - crateName = "reqwest"; - version = "0.9.5"; - description = "higher level HTTP client library"; - authors = [ "Sean McArthur " ]; - sha256 = "1y0fq8ifhbgn6bfvjq831svirqszszj7f73ykbd28inwc0xiv2ix"; - dependencies = mapFeatures features ([ - (crates."base64"."${deps."reqwest"."0.9.5"."base64"}" deps) - (crates."bytes"."${deps."reqwest"."0.9.5"."bytes"}" deps) - (crates."encoding_rs"."${deps."reqwest"."0.9.5"."encoding_rs"}" deps) - (crates."futures"."${deps."reqwest"."0.9.5"."futures"}" deps) - (crates."http"."${deps."reqwest"."0.9.5"."http"}" deps) - (crates."hyper"."${deps."reqwest"."0.9.5"."hyper"}" deps) - (crates."libflate"."${deps."reqwest"."0.9.5"."libflate"}" deps) - (crates."log"."${deps."reqwest"."0.9.5"."log"}" deps) - (crates."mime"."${deps."reqwest"."0.9.5"."mime"}" deps) - (crates."mime_guess"."${deps."reqwest"."0.9.5"."mime_guess"}" deps) - (crates."serde"."${deps."reqwest"."0.9.5"."serde"}" deps) - (crates."serde_json"."${deps."reqwest"."0.9.5"."serde_json"}" deps) - (crates."serde_urlencoded"."${deps."reqwest"."0.9.5"."serde_urlencoded"}" deps) - (crates."tokio"."${deps."reqwest"."0.9.5"."tokio"}" deps) - (crates."tokio_io"."${deps."reqwest"."0.9.5"."tokio_io"}" deps) - (crates."url"."${deps."reqwest"."0.9.5"."url"}" deps) - (crates."uuid"."${deps."reqwest"."0.9.5"."uuid"}" deps) - ] - ++ (if features.reqwest."0.9.5".hyper-tls or false then [ (crates.hyper_tls."${deps."reqwest"."0.9.5".hyper_tls}" deps) ] else []) - ++ (if features.reqwest."0.9.5".native-tls or false then [ (crates.native_tls."${deps."reqwest"."0.9.5".native_tls}" deps) ] else [])); - features = mkFeatures (features."reqwest"."0.9.5" or {}); - }; - features_.reqwest."0.9.5" = deps: f: updateFeatures f (rec { - base64."${deps.reqwest."0.9.5".base64}".default = true; - bytes."${deps.reqwest."0.9.5".bytes}".default = true; - encoding_rs."${deps.reqwest."0.9.5".encoding_rs}".default = true; - futures."${deps.reqwest."0.9.5".futures}".default = true; - http."${deps.reqwest."0.9.5".http}".default = true; - hyper."${deps.reqwest."0.9.5".hyper}".default = true; - hyper_tls."${deps.reqwest."0.9.5".hyper_tls}".default = true; - libflate."${deps.reqwest."0.9.5".libflate}".default = true; - log."${deps.reqwest."0.9.5".log}".default = true; - mime."${deps.reqwest."0.9.5".mime}".default = true; - mime_guess."${deps.reqwest."0.9.5".mime_guess}".default = true; - native_tls."${deps.reqwest."0.9.5".native_tls}".default = true; - reqwest = fold recursiveUpdate {} [ - { "0.9.5"."default-tls" = - (f.reqwest."0.9.5"."default-tls" or false) || - (f.reqwest."0.9.5".default or false) || - (reqwest."0.9.5"."default" or false); } - { "0.9.5"."hyper-old-types" = - (f.reqwest."0.9.5"."hyper-old-types" or false) || - (f.reqwest."0.9.5".hyper-011 or false) || - (reqwest."0.9.5"."hyper-011" or false); } - { "0.9.5"."hyper-tls" = - (f.reqwest."0.9.5"."hyper-tls" or false) || - (f.reqwest."0.9.5".default-tls or false) || - (reqwest."0.9.5"."default-tls" or false); } - { "0.9.5"."native-tls" = - (f.reqwest."0.9.5"."native-tls" or false) || - (f.reqwest."0.9.5".default-tls or false) || - (reqwest."0.9.5"."default-tls" or false); } - { "0.9.5".default = (f.reqwest."0.9.5".default or true); } - ]; - serde."${deps.reqwest."0.9.5".serde}".default = true; - serde_json."${deps.reqwest."0.9.5".serde_json}".default = true; - serde_urlencoded."${deps.reqwest."0.9.5".serde_urlencoded}".default = true; - tokio."${deps.reqwest."0.9.5".tokio}".default = true; - tokio_io."${deps.reqwest."0.9.5".tokio_io}".default = true; - url."${deps.reqwest."0.9.5".url}".default = true; - uuid = fold recursiveUpdate {} [ - { "${deps.reqwest."0.9.5".uuid}"."v4" = true; } - { "${deps.reqwest."0.9.5".uuid}".default = true; } - ]; - }) [ - (features_.base64."${deps."reqwest"."0.9.5"."base64"}" deps) - (features_.bytes."${deps."reqwest"."0.9.5"."bytes"}" deps) - (features_.encoding_rs."${deps."reqwest"."0.9.5"."encoding_rs"}" deps) - (features_.futures."${deps."reqwest"."0.9.5"."futures"}" deps) - (features_.http."${deps."reqwest"."0.9.5"."http"}" deps) - (features_.hyper."${deps."reqwest"."0.9.5"."hyper"}" deps) - (features_.hyper_tls."${deps."reqwest"."0.9.5"."hyper_tls"}" deps) - (features_.libflate."${deps."reqwest"."0.9.5"."libflate"}" deps) - (features_.log."${deps."reqwest"."0.9.5"."log"}" deps) - (features_.mime."${deps."reqwest"."0.9.5"."mime"}" deps) - (features_.mime_guess."${deps."reqwest"."0.9.5"."mime_guess"}" deps) - (features_.native_tls."${deps."reqwest"."0.9.5"."native_tls"}" deps) - (features_.serde."${deps."reqwest"."0.9.5"."serde"}" deps) - (features_.serde_json."${deps."reqwest"."0.9.5"."serde_json"}" deps) - (features_.serde_urlencoded."${deps."reqwest"."0.9.5"."serde_urlencoded"}" deps) - (features_.tokio."${deps."reqwest"."0.9.5"."tokio"}" deps) - (features_.tokio_io."${deps."reqwest"."0.9.5"."tokio_io"}" deps) - (features_.url."${deps."reqwest"."0.9.5"."url"}" deps) - (features_.uuid."${deps."reqwest"."0.9.5"."uuid"}" deps) - ]; - - -# end -# rustc_version-0.2.3 - - crates.rustc_version."0.2.3" = deps: { features?(features_.rustc_version."0.2.3" deps {}) }: buildRustCrate { - crateName = "rustc_version"; - version = "0.2.3"; - description = "A library for querying the version of a installed rustc compiler"; - authors = [ "Marvin Löbel " ]; - sha256 = "0rgwzbgs3i9fqjm1p4ra3n7frafmpwl29c8lw85kv1rxn7n2zaa7"; - dependencies = mapFeatures features ([ - (crates."semver"."${deps."rustc_version"."0.2.3"."semver"}" deps) - ]); - }; - features_.rustc_version."0.2.3" = deps: f: updateFeatures f ({ - rustc_version."0.2.3".default = (f.rustc_version."0.2.3".default or true); - semver."${deps.rustc_version."0.2.3".semver}".default = true; - }) [ - (features_.semver."${deps."rustc_version"."0.2.3"."semver"}" deps) - ]; - - -# end -# safemem-0.3.0 - - crates.safemem."0.3.0" = deps: { features?(features_.safemem."0.3.0" deps {}) }: buildRustCrate { - crateName = "safemem"; - version = "0.3.0"; - description = "Safe wrappers for memory-accessing functions, like `std::ptr::copy()`."; - authors = [ "Austin Bonander " ]; - sha256 = "0pr39b468d05f6m7m4alsngmj5p7an8df21apsxbi57k0lmwrr18"; - features = mkFeatures (features."safemem"."0.3.0" or {}); - }; - features_.safemem."0.3.0" = deps: f: updateFeatures f (rec { - safemem = fold recursiveUpdate {} [ - { "0.3.0"."std" = - (f.safemem."0.3.0"."std" or false) || - (f.safemem."0.3.0".default or false) || - (safemem."0.3.0"."default" or false); } - { "0.3.0".default = (f.safemem."0.3.0".default or true); } - ]; - }) []; - - -# end -# schannel-0.1.14 - - crates.schannel."0.1.14" = deps: { features?(features_.schannel."0.1.14" deps {}) }: buildRustCrate { - crateName = "schannel"; - version = "0.1.14"; - description = "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl"; - authors = [ "Steven Fackler " "Steffen Butzer " ]; - sha256 = "1g0a88jknns1kwn3x1k3ci5y5zvg58pwdg1xrxkrw3cwd2hynm9k"; - dependencies = mapFeatures features ([ - (crates."lazy_static"."${deps."schannel"."0.1.14"."lazy_static"}" deps) - (crates."winapi"."${deps."schannel"."0.1.14"."winapi"}" deps) - ]); - }; - features_.schannel."0.1.14" = deps: f: updateFeatures f ({ - lazy_static."${deps.schannel."0.1.14".lazy_static}".default = true; - schannel."0.1.14".default = (f.schannel."0.1.14".default or true); - winapi = fold recursiveUpdate {} [ - { "${deps.schannel."0.1.14".winapi}"."lmcons" = true; } - { "${deps.schannel."0.1.14".winapi}"."minschannel" = true; } - { "${deps.schannel."0.1.14".winapi}"."schannel" = true; } - { "${deps.schannel."0.1.14".winapi}"."securitybaseapi" = true; } - { "${deps.schannel."0.1.14".winapi}"."sspi" = true; } - { "${deps.schannel."0.1.14".winapi}"."sysinfoapi" = true; } - { "${deps.schannel."0.1.14".winapi}"."timezoneapi" = true; } - { "${deps.schannel."0.1.14".winapi}"."winbase" = true; } - { "${deps.schannel."0.1.14".winapi}"."wincrypt" = true; } - { "${deps.schannel."0.1.14".winapi}"."winerror" = true; } - { "${deps.schannel."0.1.14".winapi}".default = true; } - ]; - }) [ - (features_.lazy_static."${deps."schannel"."0.1.14"."lazy_static"}" deps) - (features_.winapi."${deps."schannel"."0.1.14"."winapi"}" deps) - ]; - - -# end -# scopeguard-0.3.3 - - crates.scopeguard."0.3.3" = deps: { features?(features_.scopeguard."0.3.3" deps {}) }: buildRustCrate { - crateName = "scopeguard"; - version = "0.3.3"; - description = "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!` and `defer_on_unwind!`; the latter only runs\nif the scope is extited through unwinding on panic.\n"; - authors = [ "bluss" ]; - sha256 = "0i1l013csrqzfz6c68pr5pi01hg5v5yahq8fsdmaxy6p8ygsjf3r"; - features = mkFeatures (features."scopeguard"."0.3.3" or {}); - }; - features_.scopeguard."0.3.3" = deps: f: updateFeatures f (rec { - scopeguard = fold recursiveUpdate {} [ - { "0.3.3"."use_std" = - (f.scopeguard."0.3.3"."use_std" or false) || - (f.scopeguard."0.3.3".default or false) || - (scopeguard."0.3.3"."default" or false); } - { "0.3.3".default = (f.scopeguard."0.3.3".default or true); } - ]; - }) []; - - -# end -# security-framework-0.2.1 - - crates.security_framework."0.2.1" = deps: { features?(features_.security_framework."0.2.1" deps {}) }: buildRustCrate { - crateName = "security-framework"; - version = "0.2.1"; - description = "Security Framework bindings"; - authors = [ "Steven Fackler " ]; - sha256 = "0qia5g66zmjn57m9swhrkz3cll3bs4061qim6w72v08c2w0pkvsw"; - dependencies = mapFeatures features ([ - (crates."core_foundation"."${deps."security_framework"."0.2.1"."core_foundation"}" deps) - (crates."core_foundation_sys"."${deps."security_framework"."0.2.1"."core_foundation_sys"}" deps) - (crates."libc"."${deps."security_framework"."0.2.1"."libc"}" deps) - (crates."security_framework_sys"."${deps."security_framework"."0.2.1"."security_framework_sys"}" deps) - ]); - features = mkFeatures (features."security_framework"."0.2.1" or {}); - }; - features_.security_framework."0.2.1" = deps: f: updateFeatures f (rec { - core_foundation."${deps.security_framework."0.2.1".core_foundation}".default = true; - core_foundation_sys."${deps.security_framework."0.2.1".core_foundation_sys}".default = true; - libc."${deps.security_framework."0.2.1".libc}".default = true; - security_framework = fold recursiveUpdate {} [ - { "0.2.1"."OSX_10_10" = - (f.security_framework."0.2.1"."OSX_10_10" or false) || - (f.security_framework."0.2.1".OSX_10_11 or false) || - (security_framework."0.2.1"."OSX_10_11" or false); } - { "0.2.1"."OSX_10_11" = - (f.security_framework."0.2.1"."OSX_10_11" or false) || - (f.security_framework."0.2.1".OSX_10_12 or false) || - (security_framework."0.2.1"."OSX_10_12" or false); } - { "0.2.1"."OSX_10_9" = - (f.security_framework."0.2.1"."OSX_10_9" or false) || - (f.security_framework."0.2.1".OSX_10_10 or false) || - (security_framework."0.2.1"."OSX_10_10" or false); } - { "0.2.1".default = (f.security_framework."0.2.1".default or true); } - ]; - security_framework_sys = fold recursiveUpdate {} [ - { "${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_10" = - (f.security_framework_sys."${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_10" or false) || - (security_framework."0.2.1"."OSX_10_10" or false) || - (f."security_framework"."0.2.1"."OSX_10_10" or false); } - { "${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_11" = - (f.security_framework_sys."${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_11" or false) || - (security_framework."0.2.1"."OSX_10_11" or false) || - (f."security_framework"."0.2.1"."OSX_10_11" or false) || - (security_framework."0.2.1"."OSX_10_12" or false) || - (f."security_framework"."0.2.1"."OSX_10_12" or false); } - { "${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_9" = - (f.security_framework_sys."${deps.security_framework."0.2.1".security_framework_sys}"."OSX_10_9" or false) || - (security_framework."0.2.1"."OSX_10_9" or false) || - (f."security_framework"."0.2.1"."OSX_10_9" or false); } - { "${deps.security_framework."0.2.1".security_framework_sys}".default = true; } - ]; - }) [ - (features_.core_foundation."${deps."security_framework"."0.2.1"."core_foundation"}" deps) - (features_.core_foundation_sys."${deps."security_framework"."0.2.1"."core_foundation_sys"}" deps) - (features_.libc."${deps."security_framework"."0.2.1"."libc"}" deps) - (features_.security_framework_sys."${deps."security_framework"."0.2.1"."security_framework_sys"}" deps) - ]; - - -# end -# security-framework-sys-0.2.1 - - crates.security_framework_sys."0.2.1" = deps: { features?(features_.security_framework_sys."0.2.1" deps {}) }: buildRustCrate { - crateName = "security-framework-sys"; - version = "0.2.1"; - description = "Security Framework bindings"; - authors = [ "Steven Fackler " ]; - sha256 = "0ijxy7bdi4am092hrhm645hcv36xprdx1gjcjmnyw6n78x8sv2iz"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."core_foundation_sys"."${deps."security_framework_sys"."0.2.1"."core_foundation_sys"}" deps) - (crates."libc"."${deps."security_framework_sys"."0.2.1"."libc"}" deps) - ]); - features = mkFeatures (features."security_framework_sys"."0.2.1" or {}); - }; - features_.security_framework_sys."0.2.1" = deps: f: updateFeatures f (rec { - core_foundation_sys."${deps.security_framework_sys."0.2.1".core_foundation_sys}".default = true; - libc."${deps.security_framework_sys."0.2.1".libc}".default = true; - security_framework_sys = fold recursiveUpdate {} [ - { "0.2.1"."OSX_10_10" = - (f.security_framework_sys."0.2.1"."OSX_10_10" or false) || - (f.security_framework_sys."0.2.1".OSX_10_11 or false) || - (security_framework_sys."0.2.1"."OSX_10_11" or false); } - { "0.2.1"."OSX_10_11" = - (f.security_framework_sys."0.2.1"."OSX_10_11" or false) || - (f.security_framework_sys."0.2.1".OSX_10_12 or false) || - (security_framework_sys."0.2.1"."OSX_10_12" or false); } - { "0.2.1"."OSX_10_9" = - (f.security_framework_sys."0.2.1"."OSX_10_9" or false) || - (f.security_framework_sys."0.2.1".OSX_10_10 or false) || - (security_framework_sys."0.2.1"."OSX_10_10" or false); } - { "0.2.1".default = (f.security_framework_sys."0.2.1".default or true); } - ]; - }) [ - (features_.core_foundation_sys."${deps."security_framework_sys"."0.2.1"."core_foundation_sys"}" deps) - (features_.libc."${deps."security_framework_sys"."0.2.1"."libc"}" deps) - ]; - - -# end -# semver-0.9.0 - - crates.semver."0.9.0" = deps: { features?(features_.semver."0.9.0" deps {}) }: buildRustCrate { - crateName = "semver"; - version = "0.9.0"; - description = "Semantic version parsing and comparison.\n"; - authors = [ "Steve Klabnik " "The Rust Project Developers" ]; - sha256 = "0azak2lb2wc36s3x15az886kck7rpnksrw14lalm157rg9sc9z63"; - dependencies = mapFeatures features ([ - (crates."semver_parser"."${deps."semver"."0.9.0"."semver_parser"}" deps) - ]); - features = mkFeatures (features."semver"."0.9.0" or {}); - }; - features_.semver."0.9.0" = deps: f: updateFeatures f (rec { - semver = fold recursiveUpdate {} [ - { "0.9.0"."serde" = - (f.semver."0.9.0"."serde" or false) || - (f.semver."0.9.0".ci or false) || - (semver."0.9.0"."ci" or false); } - { "0.9.0".default = (f.semver."0.9.0".default or true); } - ]; - semver_parser."${deps.semver."0.9.0".semver_parser}".default = true; - }) [ - (features_.semver_parser."${deps."semver"."0.9.0"."semver_parser"}" deps) - ]; - - -# end -# semver-parser-0.7.0 - - crates.semver_parser."0.7.0" = deps: { features?(features_.semver_parser."0.7.0" deps {}) }: buildRustCrate { - crateName = "semver-parser"; - version = "0.7.0"; - description = "Parsing of the semver spec.\n"; - authors = [ "Steve Klabnik " ]; - sha256 = "1da66c8413yakx0y15k8c055yna5lyb6fr0fw9318kdwkrk5k12h"; - }; - features_.semver_parser."0.7.0" = deps: f: updateFeatures f ({ - semver_parser."0.7.0".default = (f.semver_parser."0.7.0".default or true); - }) []; - - -# end -# serde-1.0.21 - - crates.serde."1.0.21" = deps: { features?(features_.serde."1.0.21" deps {}) }: buildRustCrate { - crateName = "serde"; - version = "1.0.21"; - description = "A generic serialization/deserialization framework"; - authors = [ "Erick Tryzelaar " "David Tolnay " ]; - sha256 = "10almq7pvx8s4ryiqk8gf7fj5igl0yq6dcjknwc67rkmxd8q50w3"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."serde"."1.0.21" or {}); - }; - features_.serde."1.0.21" = deps: f: updateFeatures f (rec { - serde = fold recursiveUpdate {} [ - { "1.0.21"."serde_derive" = - (f.serde."1.0.21"."serde_derive" or false) || - (f.serde."1.0.21".derive or false) || - (serde."1.0.21"."derive" or false) || - (f.serde."1.0.21".playground or false) || - (serde."1.0.21"."playground" or false); } - { "1.0.21"."std" = - (f.serde."1.0.21"."std" or false) || - (f.serde."1.0.21".default or false) || - (serde."1.0.21"."default" or false); } - { "1.0.21"."unstable" = - (f.serde."1.0.21"."unstable" or false) || - (f.serde."1.0.21".alloc or false) || - (serde."1.0.21"."alloc" or false); } - { "1.0.21".default = (f.serde."1.0.21".default or true); } - ]; - }) []; - - -# end -# serde_json-1.0.6 - - crates.serde_json."1.0.6" = deps: { features?(features_.serde_json."1.0.6" deps {}) }: buildRustCrate { - crateName = "serde_json"; - version = "1.0.6"; - description = "A JSON serialization file format"; - authors = [ "Erick Tryzelaar " "David Tolnay " ]; - sha256 = "1kacyc59splwbg8gr7qs32pp9smgy1khq0ggnv07yxhs7h355vjz"; - dependencies = mapFeatures features ([ - (crates."dtoa"."${deps."serde_json"."1.0.6"."dtoa"}" deps) - (crates."itoa"."${deps."serde_json"."1.0.6"."itoa"}" deps) - (crates."num_traits"."${deps."serde_json"."1.0.6"."num_traits"}" deps) - (crates."serde"."${deps."serde_json"."1.0.6"."serde"}" deps) - ]); - features = mkFeatures (features."serde_json"."1.0.6" or {}); - }; - features_.serde_json."1.0.6" = deps: f: updateFeatures f (rec { - dtoa."${deps.serde_json."1.0.6".dtoa}".default = true; - itoa."${deps.serde_json."1.0.6".itoa}".default = true; - num_traits."${deps.serde_json."1.0.6".num_traits}".default = true; - serde."${deps.serde_json."1.0.6".serde}".default = true; - serde_json = fold recursiveUpdate {} [ - { "1.0.6"."linked-hash-map" = - (f.serde_json."1.0.6"."linked-hash-map" or false) || - (f.serde_json."1.0.6".preserve_order or false) || - (serde_json."1.0.6"."preserve_order" or false); } - { "1.0.6".default = (f.serde_json."1.0.6".default or true); } - ]; - }) [ - (features_.dtoa."${deps."serde_json"."1.0.6"."dtoa"}" deps) - (features_.itoa."${deps."serde_json"."1.0.6"."itoa"}" deps) - (features_.num_traits."${deps."serde_json"."1.0.6"."num_traits"}" deps) - (features_.serde."${deps."serde_json"."1.0.6"."serde"}" deps) - ]; - - -# end -# serde_urlencoded-0.5.1 - - crates.serde_urlencoded."0.5.1" = deps: { features?(features_.serde_urlencoded."0.5.1" deps {}) }: buildRustCrate { - crateName = "serde_urlencoded"; - version = "0.5.1"; - description = "`x-www-form-urlencoded` meets Serde"; - authors = [ "Anthony Ramine " ]; - sha256 = "0zh2wlnapmcwqhxnnq1mdlmg8vily7j54wvj01s7cvapzg5jphdl"; - dependencies = mapFeatures features ([ - (crates."dtoa"."${deps."serde_urlencoded"."0.5.1"."dtoa"}" deps) - (crates."itoa"."${deps."serde_urlencoded"."0.5.1"."itoa"}" deps) - (crates."serde"."${deps."serde_urlencoded"."0.5.1"."serde"}" deps) - (crates."url"."${deps."serde_urlencoded"."0.5.1"."url"}" deps) - ]); - }; - features_.serde_urlencoded."0.5.1" = deps: f: updateFeatures f ({ - dtoa."${deps.serde_urlencoded."0.5.1".dtoa}".default = true; - itoa."${deps.serde_urlencoded."0.5.1".itoa}".default = true; - serde."${deps.serde_urlencoded."0.5.1".serde}".default = true; - serde_urlencoded."0.5.1".default = (f.serde_urlencoded."0.5.1".default or true); - url."${deps.serde_urlencoded."0.5.1".url}".default = true; - }) [ - (features_.dtoa."${deps."serde_urlencoded"."0.5.1"."dtoa"}" deps) - (features_.itoa."${deps."serde_urlencoded"."0.5.1"."itoa"}" deps) - (features_.serde."${deps."serde_urlencoded"."0.5.1"."serde"}" deps) - (features_.url."${deps."serde_urlencoded"."0.5.1"."url"}" deps) - ]; - - -# end -# siphasher-0.2.2 - - crates.siphasher."0.2.2" = deps: { features?(features_.siphasher."0.2.2" deps {}) }: buildRustCrate { - crateName = "siphasher"; - version = "0.2.2"; - description = "SipHash functions from rust-core < 1.13"; - authors = [ "Frank Denis " ]; - sha256 = "0iyx7nlzfny9ly1634a6zcq0yvrinhxhypwas4p8ry3zqnn76qqr"; - dependencies = mapFeatures features ([ -]); - }; - features_.siphasher."0.2.2" = deps: f: updateFeatures f ({ - siphasher."0.2.2".default = (f.siphasher."0.2.2".default or true); - }) []; - - -# end -# slab-0.4.0 - - crates.slab."0.4.0" = deps: { features?(features_.slab."0.4.0" deps {}) }: buildRustCrate { - crateName = "slab"; - version = "0.4.0"; - description = "Pre-allocated storage for a uniform data type"; - authors = [ "Carl Lerche " ]; - sha256 = "1qy2vkgwqgj5z4ygdkh040n9yh1vz80v5flxb1xrvw3i4wxs7yx0"; - }; - features_.slab."0.4.0" = deps: f: updateFeatures f ({ - slab."0.4.0".default = (f.slab."0.4.0".default or true); - }) []; - - -# end -# slog-1.7.1 - - crates.slog."1.7.1" = deps: { features?(features_.slog."1.7.1" deps {}) }: buildRustCrate { - crateName = "slog"; - version = "1.7.1"; - description = "Structured, composable logging for Rust"; - authors = [ "Dawid Ciężarkiewicz " ]; - sha256 = "1qhnwv2gbxmnwasaa0vlhddq6cdhq6n3l8d6h3ql73367h7aav65"; - features = mkFeatures (features."slog"."1.7.1" or {}); - }; - features_.slog."1.7.1" = deps: f: updateFeatures f (rec { - slog = fold recursiveUpdate {} [ - { "1.7.1"."std" = - (f.slog."1.7.1"."std" or false) || - (f.slog."1.7.1".default or false) || - (slog."1.7.1"."default" or false); } - { "1.7.1".default = (f.slog."1.7.1".default or true); } - ]; - }) []; - - -# end -# slog-envlogger-0.5.0 - - crates.slog_envlogger."0.5.0" = deps: { features?(features_.slog_envlogger."0.5.0" deps {}) }: buildRustCrate { - crateName = "slog-envlogger"; - version = "0.5.0"; - description = "Port of de facto standard logger implementation for Rust, to `slog-rs` framework.\n"; - authors = [ "The Rust Project Developers" "Dawid Ciężarkiewicz " ]; - sha256 = "0ry9k2ppj7z6prdz2kf924w7l9y2kbysrigca6shni1kz2j163qb"; - libPath = "src/lib.rs"; - dependencies = mapFeatures features ([ - (crates."log"."${deps."slog_envlogger"."0.5.0"."log"}" deps) - (crates."regex"."${deps."slog_envlogger"."0.5.0"."regex"}" deps) - (crates."slog"."${deps."slog_envlogger"."0.5.0"."slog"}" deps) - (crates."slog_stdlog"."${deps."slog_envlogger"."0.5.0"."slog_stdlog"}" deps) - (crates."slog_term"."${deps."slog_envlogger"."0.5.0"."slog_term"}" deps) - ]); - }; - features_.slog_envlogger."0.5.0" = deps: f: updateFeatures f ({ - log."${deps.slog_envlogger."0.5.0".log}".default = true; - regex."${deps.slog_envlogger."0.5.0".regex}".default = true; - slog."${deps.slog_envlogger."0.5.0".slog}".default = true; - slog_envlogger."0.5.0".default = (f.slog_envlogger."0.5.0".default or true); - slog_stdlog."${deps.slog_envlogger."0.5.0".slog_stdlog}".default = true; - slog_term."${deps.slog_envlogger."0.5.0".slog_term}".default = true; - }) [ - (features_.log."${deps."slog_envlogger"."0.5.0"."log"}" deps) - (features_.regex."${deps."slog_envlogger"."0.5.0"."regex"}" deps) - (features_.slog."${deps."slog_envlogger"."0.5.0"."slog"}" deps) - (features_.slog_stdlog."${deps."slog_envlogger"."0.5.0"."slog_stdlog"}" deps) - (features_.slog_term."${deps."slog_envlogger"."0.5.0"."slog_term"}" deps) - ]; - - -# end -# slog-extra-0.1.2 - - crates.slog_extra."0.1.2" = deps: { features?(features_.slog_extra."0.1.2" deps {}) }: buildRustCrate { - crateName = "slog-extra"; - version = "0.1.2"; - description = "Standard slog-rs extensions"; - authors = [ "Dawid Ciężarkiewicz " ]; - sha256 = "0jrw0xcc81wwcl59xx9qglfcv5l3ad5kbpcyp6ygk94p9kxfrhyj"; - libPath = "lib.rs"; - dependencies = mapFeatures features ([ - (crates."slog"."${deps."slog_extra"."0.1.2"."slog"}" deps) - (crates."thread_local"."${deps."slog_extra"."0.1.2"."thread_local"}" deps) - ]); - }; - features_.slog_extra."0.1.2" = deps: f: updateFeatures f ({ - slog."${deps.slog_extra."0.1.2".slog}".default = true; - slog_extra."0.1.2".default = (f.slog_extra."0.1.2".default or true); - thread_local."${deps.slog_extra."0.1.2".thread_local}".default = true; - }) [ - (features_.slog."${deps."slog_extra"."0.1.2"."slog"}" deps) - (features_.thread_local."${deps."slog_extra"."0.1.2"."thread_local"}" deps) - ]; - - -# end -# slog-stdlog-1.1.0 - - crates.slog_stdlog."1.1.0" = deps: { features?(features_.slog_stdlog."1.1.0" deps {}) }: buildRustCrate { - crateName = "slog-stdlog"; - version = "1.1.0"; - description = "Standard Rust log crate adapter to slog-rs"; - authors = [ "Dawid Ciężarkiewicz " ]; - sha256 = "0ig4mjixr4y3dn3s53rlnrpplwkqb8b0z2zkaiiiwyv7nhjxdg46"; - libPath = "lib.rs"; - dependencies = mapFeatures features ([ - (crates."crossbeam"."${deps."slog_stdlog"."1.1.0"."crossbeam"}" deps) - (crates."lazy_static"."${deps."slog_stdlog"."1.1.0"."lazy_static"}" deps) - (crates."log"."${deps."slog_stdlog"."1.1.0"."log"}" deps) - (crates."slog"."${deps."slog_stdlog"."1.1.0"."slog"}" deps) - (crates."slog_term"."${deps."slog_stdlog"."1.1.0"."slog_term"}" deps) - ]); - }; - features_.slog_stdlog."1.1.0" = deps: f: updateFeatures f ({ - crossbeam."${deps.slog_stdlog."1.1.0".crossbeam}".default = true; - lazy_static."${deps.slog_stdlog."1.1.0".lazy_static}".default = true; - log."${deps.slog_stdlog."1.1.0".log}".default = true; - slog."${deps.slog_stdlog."1.1.0".slog}".default = true; - slog_stdlog."1.1.0".default = (f.slog_stdlog."1.1.0".default or true); - slog_term."${deps.slog_stdlog."1.1.0".slog_term}".default = true; - }) [ - (features_.crossbeam."${deps."slog_stdlog"."1.1.0"."crossbeam"}" deps) - (features_.lazy_static."${deps."slog_stdlog"."1.1.0"."lazy_static"}" deps) - (features_.log."${deps."slog_stdlog"."1.1.0"."log"}" deps) - (features_.slog."${deps."slog_stdlog"."1.1.0"."slog"}" deps) - (features_.slog_term."${deps."slog_stdlog"."1.1.0"."slog_term"}" deps) - ]; - - -# end -# slog-stream-1.2.1 - - crates.slog_stream."1.2.1" = deps: { features?(features_.slog_stream."1.2.1" deps {}) }: buildRustCrate { - crateName = "slog-stream"; - version = "1.2.1"; - description = "`io::Write` streamer for slog-rs"; - authors = [ "Dawid Ciężarkiewicz " ]; - sha256 = "03dwzbydaamfzjpr16gm065i696lk86gqcpspv5qaqyv938fm2yj"; - libPath = "lib.rs"; - dependencies = mapFeatures features ([ - (crates."slog"."${deps."slog_stream"."1.2.1"."slog"}" deps) - (crates."slog_extra"."${deps."slog_stream"."1.2.1"."slog_extra"}" deps) - (crates."thread_local"."${deps."slog_stream"."1.2.1"."thread_local"}" deps) - ]); - }; - features_.slog_stream."1.2.1" = deps: f: updateFeatures f ({ - slog."${deps.slog_stream."1.2.1".slog}".default = true; - slog_extra."${deps.slog_stream."1.2.1".slog_extra}".default = true; - slog_stream."1.2.1".default = (f.slog_stream."1.2.1".default or true); - thread_local."${deps.slog_stream."1.2.1".thread_local}".default = true; - }) [ - (features_.slog."${deps."slog_stream"."1.2.1"."slog"}" deps) - (features_.slog_extra."${deps."slog_stream"."1.2.1"."slog_extra"}" deps) - (features_.thread_local."${deps."slog_stream"."1.2.1"."thread_local"}" deps) - ]; - - -# end -# slog-term-1.5.0 - - crates.slog_term."1.5.0" = deps: { features?(features_.slog_term."1.5.0" deps {}) }: buildRustCrate { - crateName = "slog-term"; - version = "1.5.0"; - description = "Unix terminal drain and formatter for slog-rs"; - authors = [ "Dawid Ciężarkiewicz " ]; - sha256 = "0zq2kyvm7jhqj6sc09w540wqfrrpa46yxf9sgzq7jqpkr66wsiar"; - libPath = "lib.rs"; - dependencies = mapFeatures features ([ - (crates."chrono"."${deps."slog_term"."1.5.0"."chrono"}" deps) - (crates."isatty"."${deps."slog_term"."1.5.0"."isatty"}" deps) - (crates."slog"."${deps."slog_term"."1.5.0"."slog"}" deps) - (crates."slog_stream"."${deps."slog_term"."1.5.0"."slog_stream"}" deps) - (crates."thread_local"."${deps."slog_term"."1.5.0"."thread_local"}" deps) - ]); - }; - features_.slog_term."1.5.0" = deps: f: updateFeatures f ({ - chrono."${deps.slog_term."1.5.0".chrono}".default = true; - isatty."${deps.slog_term."1.5.0".isatty}".default = true; - slog."${deps.slog_term."1.5.0".slog}".default = true; - slog_stream."${deps.slog_term."1.5.0".slog_stream}".default = true; - slog_term."1.5.0".default = (f.slog_term."1.5.0".default or true); - thread_local."${deps.slog_term."1.5.0".thread_local}".default = true; - }) [ - (features_.chrono."${deps."slog_term"."1.5.0"."chrono"}" deps) - (features_.isatty."${deps."slog_term"."1.5.0"."isatty"}" deps) - (features_.slog."${deps."slog_term"."1.5.0"."slog"}" deps) - (features_.slog_stream."${deps."slog_term"."1.5.0"."slog_stream"}" deps) - (features_.thread_local."${deps."slog_term"."1.5.0"."thread_local"}" deps) - ]; - - -# end -# smallvec-0.6.7 - - crates.smallvec."0.6.7" = deps: { features?(features_.smallvec."0.6.7" deps {}) }: buildRustCrate { - crateName = "smallvec"; - version = "0.6.7"; - description = "'Small vector' optimization: store up to a small number of items on the stack"; - authors = [ "Simon Sapin " ]; - sha256 = "08ql2yi7ry08cqjl9n6vpb6x6zgqzwllzzk9pxj1143xwg503qcx"; - libPath = "lib.rs"; - dependencies = mapFeatures features ([ - (crates."unreachable"."${deps."smallvec"."0.6.7"."unreachable"}" deps) - ]); - features = mkFeatures (features."smallvec"."0.6.7" or {}); - }; - features_.smallvec."0.6.7" = deps: f: updateFeatures f (rec { - smallvec = fold recursiveUpdate {} [ - { "0.6.7"."std" = - (f.smallvec."0.6.7"."std" or false) || - (f.smallvec."0.6.7".default or false) || - (smallvec."0.6.7"."default" or false); } - { "0.6.7".default = (f.smallvec."0.6.7".default or true); } - ]; - unreachable."${deps.smallvec."0.6.7".unreachable}".default = true; - }) [ - (features_.unreachable."${deps."smallvec"."0.6.7"."unreachable"}" deps) - ]; - - -# end -# stable_deref_trait-1.1.1 - - crates.stable_deref_trait."1.1.1" = deps: { features?(features_.stable_deref_trait."1.1.1" deps {}) }: buildRustCrate { - crateName = "stable_deref_trait"; - version = "1.1.1"; - description = "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n"; - authors = [ "Robert Grosse " ]; - sha256 = "1xy9slzslrzr31nlnw52sl1d820b09y61b7f13lqgsn8n7y0l4g8"; - features = mkFeatures (features."stable_deref_trait"."1.1.1" or {}); - }; - features_.stable_deref_trait."1.1.1" = deps: f: updateFeatures f (rec { - stable_deref_trait = fold recursiveUpdate {} [ - { "1.1.1"."std" = - (f.stable_deref_trait."1.1.1"."std" or false) || - (f.stable_deref_trait."1.1.1".default or false) || - (stable_deref_trait."1.1.1"."default" or false); } - { "1.1.1".default = (f.stable_deref_trait."1.1.1".default or true); } - ]; - }) []; - - -# end -# string-0.1.2 - - crates.string."0.1.2" = deps: { features?(features_.string."0.1.2" deps {}) }: buildRustCrate { - crateName = "string"; - version = "0.1.2"; - description = "A UTF-8 encoded string with configurable byte storage."; - authors = [ "Carl Lerche " ]; - sha256 = "1120qvf02aydqj0k3kpr8d7zybq0y5arnmgmfsdw75r8qwz75wc6"; - }; - features_.string."0.1.2" = deps: f: updateFeatures f ({ - string."0.1.2".default = (f.string."0.1.2".default or true); - }) []; - - -# end -# strsim-0.6.0 - - crates.strsim."0.6.0" = deps: { features?(features_.strsim."0.6.0" deps {}) }: buildRustCrate { - crateName = "strsim"; - version = "0.6.0"; - description = "Implementations of string similarity metrics.\nIncludes Hamming, Levenshtein, Damerau-Levenshtein, Jaro, and Jaro-Winkler.\n"; - authors = [ "Danny Guo " ]; - sha256 = "1lz85l6y68hr62lv4baww29yy7g8pg20dlr0lbaswxmmcb0wl7gd"; - }; - features_.strsim."0.6.0" = deps: f: updateFeatures f ({ - strsim."0.6.0".default = (f.strsim."0.6.0".default or true); - }) []; - - -# end -# syn-0.11.11 - - crates.syn."0.11.11" = deps: { features?(features_.syn."0.11.11" deps {}) }: buildRustCrate { - crateName = "syn"; - version = "0.11.11"; - description = "Nom parser for Rust source code"; - authors = [ "David Tolnay " ]; - sha256 = "0yw8ng7x1dn5a6ykg0ib49y7r9nhzgpiq2989rqdp7rdz3n85502"; - dependencies = mapFeatures features ([ - ] - ++ (if features.syn."0.11.11".quote or false then [ (crates.quote."${deps."syn"."0.11.11".quote}" deps) ] else []) - ++ (if features.syn."0.11.11".synom or false then [ (crates.synom."${deps."syn"."0.11.11".synom}" deps) ] else []) - ++ (if features.syn."0.11.11".unicode-xid or false then [ (crates.unicode_xid."${deps."syn"."0.11.11".unicode_xid}" deps) ] else [])); - features = mkFeatures (features."syn"."0.11.11" or {}); - }; - features_.syn."0.11.11" = deps: f: updateFeatures f (rec { - quote."${deps.syn."0.11.11".quote}".default = true; - syn = fold recursiveUpdate {} [ - { "0.11.11"."parsing" = - (f.syn."0.11.11"."parsing" or false) || - (f.syn."0.11.11".default or false) || - (syn."0.11.11"."default" or false); } - { "0.11.11"."printing" = - (f.syn."0.11.11"."printing" or false) || - (f.syn."0.11.11".default or false) || - (syn."0.11.11"."default" or false); } - { "0.11.11"."quote" = - (f.syn."0.11.11"."quote" or false) || - (f.syn."0.11.11".printing or false) || - (syn."0.11.11"."printing" or false); } - { "0.11.11"."synom" = - (f.syn."0.11.11"."synom" or false) || - (f.syn."0.11.11".parsing or false) || - (syn."0.11.11"."parsing" or false); } - { "0.11.11"."unicode-xid" = - (f.syn."0.11.11"."unicode-xid" or false) || - (f.syn."0.11.11".parsing or false) || - (syn."0.11.11"."parsing" or false); } - { "0.11.11".default = (f.syn."0.11.11".default or true); } - ]; - synom."${deps.syn."0.11.11".synom}".default = true; - unicode_xid."${deps.syn."0.11.11".unicode_xid}".default = true; - }) [ - (features_.quote."${deps."syn"."0.11.11"."quote"}" deps) - (features_.synom."${deps."syn"."0.11.11"."synom"}" deps) - (features_.unicode_xid."${deps."syn"."0.11.11"."unicode_xid"}" deps) - ]; - - -# end -# synom-0.11.3 - - crates.synom."0.11.3" = deps: { features?(features_.synom."0.11.3" deps {}) }: buildRustCrate { - crateName = "synom"; - version = "0.11.3"; - description = "Stripped-down Nom parser used by Syn"; - authors = [ "David Tolnay " ]; - sha256 = "1l6d1s9qjfp6ng2s2z8219igvlv7gyk8gby97sdykqc1r93d8rhc"; - dependencies = mapFeatures features ([ - (crates."unicode_xid"."${deps."synom"."0.11.3"."unicode_xid"}" deps) - ]); - }; - features_.synom."0.11.3" = deps: f: updateFeatures f ({ - synom."0.11.3".default = (f.synom."0.11.3".default or true); - unicode_xid."${deps.synom."0.11.3".unicode_xid}".default = true; - }) [ - (features_.unicode_xid."${deps."synom"."0.11.3"."unicode_xid"}" deps) - ]; - - -# end -# tar-0.4.13 - - crates.tar."0.4.13" = deps: { features?(features_.tar."0.4.13" deps {}) }: buildRustCrate { - crateName = "tar"; - version = "0.4.13"; - description = "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n"; - authors = [ "Alex Crichton " ]; - sha256 = "1m425d07h0i6h2vbpxnh067zmc16l9yr9bii17zxw4z2inkfyfc4"; - dependencies = mapFeatures features ([ - (crates."filetime"."${deps."tar"."0.4.13"."filetime"}" deps) - (crates."libc"."${deps."tar"."0.4.13"."libc"}" deps) - ]) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - ] - ++ (if features.tar."0.4.13".xattr or false then [ (crates.xattr."${deps."tar"."0.4.13".xattr}" deps) ] else [])) else []); - features = mkFeatures (features."tar"."0.4.13" or {}); - }; - features_.tar."0.4.13" = deps: f: updateFeatures f (rec { - filetime."${deps.tar."0.4.13".filetime}".default = true; - libc."${deps.tar."0.4.13".libc}".default = true; - tar = fold recursiveUpdate {} [ - { "0.4.13"."xattr" = - (f.tar."0.4.13"."xattr" or false) || - (f.tar."0.4.13".default or false) || - (tar."0.4.13"."default" or false); } - { "0.4.13".default = (f.tar."0.4.13".default or true); } - ]; - xattr."${deps.tar."0.4.13".xattr}".default = true; - }) [ - (features_.filetime."${deps."tar"."0.4.13"."filetime"}" deps) - (features_.libc."${deps."tar"."0.4.13"."libc"}" deps) - (features_.xattr."${deps."tar"."0.4.13"."xattr"}" deps) - ]; - - -# end -# tempfile-3.0.5 - - crates.tempfile."3.0.5" = deps: { features?(features_.tempfile."3.0.5" deps {}) }: buildRustCrate { - crateName = "tempfile"; - version = "3.0.5"; - description = "A library for managing temporary files and directories.\n"; - authors = [ "Steven Allen " "The Rust Project Developers" "Ashley Mannix " "Jason White " ]; - sha256 = "11xc89br78ypk4g27v51lm2baz57gp6v555i3sxhrj9qlas2iqfl"; - dependencies = mapFeatures features ([ - (crates."cfg_if"."${deps."tempfile"."3.0.5"."cfg_if"}" deps) - (crates."rand"."${deps."tempfile"."3.0.5"."rand"}" deps) - (crates."remove_dir_all"."${deps."tempfile"."3.0.5"."remove_dir_all"}" deps) - ]) - ++ (if kernel == "redox" then mapFeatures features ([ - (crates."redox_syscall"."${deps."tempfile"."3.0.5"."redox_syscall"}" deps) - ]) else []) - ++ (if (kernel == "linux" || kernel == "darwin") then mapFeatures features ([ - (crates."libc"."${deps."tempfile"."3.0.5"."libc"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."winapi"."${deps."tempfile"."3.0.5"."winapi"}" deps) - ]) else []); - }; - features_.tempfile."3.0.5" = deps: f: updateFeatures f ({ - cfg_if."${deps.tempfile."3.0.5".cfg_if}".default = true; - libc."${deps.tempfile."3.0.5".libc}".default = true; - rand."${deps.tempfile."3.0.5".rand}".default = true; - redox_syscall."${deps.tempfile."3.0.5".redox_syscall}".default = true; - remove_dir_all."${deps.tempfile."3.0.5".remove_dir_all}".default = true; - tempfile."3.0.5".default = (f.tempfile."3.0.5".default or true); - winapi = fold recursiveUpdate {} [ - { "${deps.tempfile."3.0.5".winapi}"."fileapi" = true; } - { "${deps.tempfile."3.0.5".winapi}"."handleapi" = true; } - { "${deps.tempfile."3.0.5".winapi}"."winbase" = true; } - { "${deps.tempfile."3.0.5".winapi}".default = true; } - ]; - }) [ - (features_.cfg_if."${deps."tempfile"."3.0.5"."cfg_if"}" deps) - (features_.rand."${deps."tempfile"."3.0.5"."rand"}" deps) - (features_.remove_dir_all."${deps."tempfile"."3.0.5"."remove_dir_all"}" deps) - (features_.redox_syscall."${deps."tempfile"."3.0.5"."redox_syscall"}" deps) - (features_.libc."${deps."tempfile"."3.0.5"."libc"}" deps) - (features_.winapi."${deps."tempfile"."3.0.5"."winapi"}" deps) - ]; - - -# end -# termion-1.5.1 - - crates.termion."1.5.1" = deps: { features?(features_.termion."1.5.1" deps {}) }: buildRustCrate { - crateName = "termion"; - version = "1.5.1"; - description = "A bindless library for manipulating terminals."; - authors = [ "ticki " "gycos " "IGI-111 " ]; - sha256 = "02gq4vd8iws1f3gjrgrgpajsk2bk43nds5acbbb4s8dvrdvr8nf1"; - dependencies = (if !(kernel == "redox") then mapFeatures features ([ - (crates."libc"."${deps."termion"."1.5.1"."libc"}" deps) - ]) else []) - ++ (if kernel == "redox" then mapFeatures features ([ - (crates."redox_syscall"."${deps."termion"."1.5.1"."redox_syscall"}" deps) - (crates."redox_termios"."${deps."termion"."1.5.1"."redox_termios"}" deps) - ]) else []); - }; - features_.termion."1.5.1" = deps: f: updateFeatures f ({ - libc."${deps.termion."1.5.1".libc}".default = true; - redox_syscall."${deps.termion."1.5.1".redox_syscall}".default = true; - redox_termios."${deps.termion."1.5.1".redox_termios}".default = true; - termion."1.5.1".default = (f.termion."1.5.1".default or true); - }) [ - (features_.libc."${deps."termion"."1.5.1"."libc"}" deps) - (features_.redox_syscall."${deps."termion"."1.5.1"."redox_syscall"}" deps) - (features_.redox_termios."${deps."termion"."1.5.1"."redox_termios"}" deps) - ]; - - -# end -# textwrap-0.9.0 - - crates.textwrap."0.9.0" = deps: { features?(features_.textwrap."0.9.0" deps {}) }: buildRustCrate { - crateName = "textwrap"; - version = "0.9.0"; - description = "Textwrap is a small library for word wrapping, indenting, and\ndedenting strings.\n\nYou can use it to format strings (such as help and error messages) for\ndisplay in commandline applications. It is designed to be efficient\nand handle Unicode characters correctly.\n"; - authors = [ "Martin Geisler " ]; - sha256 = "18jg79ndjlwndz01mlbh82kkr2arqm658yn5kwp65l5n1hz8w4yb"; - dependencies = mapFeatures features ([ - (crates."unicode_width"."${deps."textwrap"."0.9.0"."unicode_width"}" deps) - ]); - }; - features_.textwrap."0.9.0" = deps: f: updateFeatures f ({ - textwrap."0.9.0".default = (f.textwrap."0.9.0".default or true); - unicode_width."${deps.textwrap."0.9.0".unicode_width}".default = true; - }) [ - (features_.unicode_width."${deps."textwrap"."0.9.0"."unicode_width"}" deps) - ]; - - -# end -# thread-id-2.0.0 - - crates.thread_id."2.0.0" = deps: { features?(features_.thread_id."2.0.0" deps {}) }: buildRustCrate { - crateName = "thread-id"; - version = "2.0.0"; - description = "Get a unique thread ID"; - authors = [ "Ruud van Asseldonk " ]; - sha256 = "06i3c8ckn97i5rp16civ2vpqbknlkx66dkrl070iw60nawi0kjc3"; - dependencies = mapFeatures features ([ - (crates."kernel32_sys"."${deps."thread_id"."2.0.0"."kernel32_sys"}" deps) - (crates."libc"."${deps."thread_id"."2.0.0"."libc"}" deps) - ]); - }; - features_.thread_id."2.0.0" = deps: f: updateFeatures f ({ - kernel32_sys."${deps.thread_id."2.0.0".kernel32_sys}".default = true; - libc."${deps.thread_id."2.0.0".libc}".default = true; - thread_id."2.0.0".default = (f.thread_id."2.0.0".default or true); - }) [ - (features_.kernel32_sys."${deps."thread_id"."2.0.0"."kernel32_sys"}" deps) - (features_.libc."${deps."thread_id"."2.0.0"."libc"}" deps) - ]; - - -# end -# thread_local-0.2.7 - - crates.thread_local."0.2.7" = deps: { features?(features_.thread_local."0.2.7" deps {}) }: buildRustCrate { - crateName = "thread_local"; - version = "0.2.7"; - description = "Per-object thread-local storage"; - authors = [ "Amanieu d'Antras " ]; - sha256 = "19p0zrs24rdwjvpi10jig5ms3sxj00pv8shkr9cpddri8cdghqp7"; - dependencies = mapFeatures features ([ - (crates."thread_id"."${deps."thread_local"."0.2.7"."thread_id"}" deps) - ]); - }; - features_.thread_local."0.2.7" = deps: f: updateFeatures f ({ - thread_id."${deps.thread_local."0.2.7".thread_id}".default = true; - thread_local."0.2.7".default = (f.thread_local."0.2.7".default or true); - }) [ - (features_.thread_id."${deps."thread_local"."0.2.7"."thread_id"}" deps) - ]; - - -# end -# thread_local-0.3.4 - - crates.thread_local."0.3.4" = deps: { features?(features_.thread_local."0.3.4" deps {}) }: buildRustCrate { - crateName = "thread_local"; - version = "0.3.4"; - description = "Per-object thread-local storage"; - authors = [ "Amanieu d'Antras " ]; - sha256 = "1y6cwyhhx2nkz4b3dziwhqdvgq830z8wjp32b40pjd8r0hxqv2jr"; - dependencies = mapFeatures features ([ - (crates."lazy_static"."${deps."thread_local"."0.3.4"."lazy_static"}" deps) - (crates."unreachable"."${deps."thread_local"."0.3.4"."unreachable"}" deps) - ]); - }; - features_.thread_local."0.3.4" = deps: f: updateFeatures f ({ - lazy_static."${deps.thread_local."0.3.4".lazy_static}".default = true; - thread_local."0.3.4".default = (f.thread_local."0.3.4".default or true); - unreachable."${deps.thread_local."0.3.4".unreachable}".default = true; - }) [ - (features_.lazy_static."${deps."thread_local"."0.3.4"."lazy_static"}" deps) - (features_.unreachable."${deps."thread_local"."0.3.4"."unreachable"}" deps) - ]; - - -# end -# time-0.1.38 - - crates.time."0.1.38" = deps: { features?(features_.time."0.1.38" deps {}) }: buildRustCrate { - crateName = "time"; - version = "0.1.38"; - description = "Utilities for working with time-related functions in Rust.\n"; - authors = [ "The Rust Project Developers" ]; - sha256 = "1ws283vvz7c6jfiwn53rmc6kybapr4pjaahfxxrz232b0qzw7gcp"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."time"."0.1.38"."libc"}" deps) - ]) - ++ (if kernel == "redox" then mapFeatures features ([ - (crates."redox_syscall"."${deps."time"."0.1.38"."redox_syscall"}" deps) - ]) else []) - ++ (if kernel == "windows" then mapFeatures features ([ - (crates."kernel32_sys"."${deps."time"."0.1.38"."kernel32_sys"}" deps) - (crates."winapi"."${deps."time"."0.1.38"."winapi"}" deps) - ]) else []); - }; - features_.time."0.1.38" = deps: f: updateFeatures f ({ - kernel32_sys."${deps.time."0.1.38".kernel32_sys}".default = true; - libc."${deps.time."0.1.38".libc}".default = true; - redox_syscall."${deps.time."0.1.38".redox_syscall}".default = true; - time."0.1.38".default = (f.time."0.1.38".default or true); - winapi."${deps.time."0.1.38".winapi}".default = true; - }) [ - (features_.libc."${deps."time"."0.1.38"."libc"}" deps) - (features_.redox_syscall."${deps."time"."0.1.38"."redox_syscall"}" deps) - (features_.kernel32_sys."${deps."time"."0.1.38"."kernel32_sys"}" deps) - (features_.winapi."${deps."time"."0.1.38"."winapi"}" deps) - ]; - - -# end -# tokio-0.1.7 - - crates.tokio."0.1.7" = deps: { features?(features_.tokio."0.1.7" deps {}) }: buildRustCrate { - crateName = "tokio"; - version = "0.1.7"; - description = "An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "0d5fj90wk05m5vbd924irg1pl1d4fn86jjw5napzanh6vbwsnr66"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."tokio"."0.1.7"."futures"}" deps) - (crates."mio"."${deps."tokio"."0.1.7"."mio"}" deps) - (crates."tokio_executor"."${deps."tokio"."0.1.7"."tokio_executor"}" deps) - (crates."tokio_fs"."${deps."tokio"."0.1.7"."tokio_fs"}" deps) - (crates."tokio_io"."${deps."tokio"."0.1.7"."tokio_io"}" deps) - (crates."tokio_reactor"."${deps."tokio"."0.1.7"."tokio_reactor"}" deps) - (crates."tokio_tcp"."${deps."tokio"."0.1.7"."tokio_tcp"}" deps) - (crates."tokio_threadpool"."${deps."tokio"."0.1.7"."tokio_threadpool"}" deps) - (crates."tokio_timer"."${deps."tokio"."0.1.7"."tokio_timer"}" deps) - (crates."tokio_udp"."${deps."tokio"."0.1.7"."tokio_udp"}" deps) - ]); - }; - features_.tokio."0.1.7" = deps: f: updateFeatures f ({ - futures."${deps.tokio."0.1.7".futures}".default = true; - mio."${deps.tokio."0.1.7".mio}".default = true; - tokio."0.1.7".default = (f.tokio."0.1.7".default or true); - tokio_executor."${deps.tokio."0.1.7".tokio_executor}".default = true; - tokio_fs."${deps.tokio."0.1.7".tokio_fs}".default = true; - tokio_io."${deps.tokio."0.1.7".tokio_io}".default = true; - tokio_reactor."${deps.tokio."0.1.7".tokio_reactor}".default = true; - tokio_tcp."${deps.tokio."0.1.7".tokio_tcp}".default = true; - tokio_threadpool."${deps.tokio."0.1.7".tokio_threadpool}".default = true; - tokio_timer."${deps.tokio."0.1.7".tokio_timer}".default = true; - tokio_udp."${deps.tokio."0.1.7".tokio_udp}".default = true; - }) [ - (features_.futures."${deps."tokio"."0.1.7"."futures"}" deps) - (features_.mio."${deps."tokio"."0.1.7"."mio"}" deps) - (features_.tokio_executor."${deps."tokio"."0.1.7"."tokio_executor"}" deps) - (features_.tokio_fs."${deps."tokio"."0.1.7"."tokio_fs"}" deps) - (features_.tokio_io."${deps."tokio"."0.1.7"."tokio_io"}" deps) - (features_.tokio_reactor."${deps."tokio"."0.1.7"."tokio_reactor"}" deps) - (features_.tokio_tcp."${deps."tokio"."0.1.7"."tokio_tcp"}" deps) - (features_.tokio_threadpool."${deps."tokio"."0.1.7"."tokio_threadpool"}" deps) - (features_.tokio_timer."${deps."tokio"."0.1.7"."tokio_timer"}" deps) - (features_.tokio_udp."${deps."tokio"."0.1.7"."tokio_udp"}" deps) - ]; - - -# end -# tokio-codec-0.1.1 - - crates.tokio_codec."0.1.1" = deps: { features?(features_.tokio_codec."0.1.1" deps {}) }: buildRustCrate { - crateName = "tokio-codec"; - version = "0.1.1"; - description = "Utilities for encoding and decoding frames.\n"; - authors = [ "Carl Lerche " "Bryan Burgers " ]; - sha256 = "0jc9lik540zyj4chbygg1rjh37m3zax8pd4bwcrwjmi1v56qwi4h"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."tokio_codec"."0.1.1"."bytes"}" deps) - (crates."futures"."${deps."tokio_codec"."0.1.1"."futures"}" deps) - (crates."tokio_io"."${deps."tokio_codec"."0.1.1"."tokio_io"}" deps) - ]); - }; - features_.tokio_codec."0.1.1" = deps: f: updateFeatures f ({ - bytes."${deps.tokio_codec."0.1.1".bytes}".default = true; - futures."${deps.tokio_codec."0.1.1".futures}".default = true; - tokio_codec."0.1.1".default = (f.tokio_codec."0.1.1".default or true); - tokio_io."${deps.tokio_codec."0.1.1".tokio_io}".default = true; - }) [ - (features_.bytes."${deps."tokio_codec"."0.1.1"."bytes"}" deps) - (features_.futures."${deps."tokio_codec"."0.1.1"."futures"}" deps) - (features_.tokio_io."${deps."tokio_codec"."0.1.1"."tokio_io"}" deps) - ]; - - -# end -# tokio-executor-0.1.5 - - crates.tokio_executor."0.1.5" = deps: { features?(features_.tokio_executor."0.1.5" deps {}) }: buildRustCrate { - crateName = "tokio-executor"; - version = "0.1.5"; - description = "Future execution primitives\n"; - authors = [ "Carl Lerche " ]; - sha256 = "15j2ybs8w38gncgbxkvp2qsp6wl62ibi3rns0vlwggx7svmx4bf3"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."tokio_executor"."0.1.5"."futures"}" deps) - ]); - }; - features_.tokio_executor."0.1.5" = deps: f: updateFeatures f ({ - futures."${deps.tokio_executor."0.1.5".futures}".default = true; - tokio_executor."0.1.5".default = (f.tokio_executor."0.1.5".default or true); - }) [ - (features_.futures."${deps."tokio_executor"."0.1.5"."futures"}" deps) - ]; - - -# end -# tokio-fs-0.1.4 - - crates.tokio_fs."0.1.4" = deps: { features?(features_.tokio_fs."0.1.4" deps {}) }: buildRustCrate { - crateName = "tokio-fs"; - version = "0.1.4"; - description = "Filesystem API for Tokio.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "05bpc1p1apb4jfw18i84agwwar57zn07d7smqvslpzagd9b3sd31"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."tokio_fs"."0.1.4"."futures"}" deps) - (crates."tokio_io"."${deps."tokio_fs"."0.1.4"."tokio_io"}" deps) - (crates."tokio_threadpool"."${deps."tokio_fs"."0.1.4"."tokio_threadpool"}" deps) - ]); - }; - features_.tokio_fs."0.1.4" = deps: f: updateFeatures f ({ - futures."${deps.tokio_fs."0.1.4".futures}".default = true; - tokio_fs."0.1.4".default = (f.tokio_fs."0.1.4".default or true); - tokio_io."${deps.tokio_fs."0.1.4".tokio_io}".default = true; - tokio_threadpool."${deps.tokio_fs."0.1.4".tokio_threadpool}".default = true; - }) [ - (features_.futures."${deps."tokio_fs"."0.1.4"."futures"}" deps) - (features_.tokio_io."${deps."tokio_fs"."0.1.4"."tokio_io"}" deps) - (features_.tokio_threadpool."${deps."tokio_fs"."0.1.4"."tokio_threadpool"}" deps) - ]; - - -# end -# tokio-io-0.1.10 - - crates.tokio_io."0.1.10" = deps: { features?(features_.tokio_io."0.1.10" deps {}) }: buildRustCrate { - crateName = "tokio-io"; - version = "0.1.10"; - description = "Core I/O primitives for asynchronous I/O in Rust.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "14d65rqa5rb2msgkz2xn40cavs4m7f4qyi7vnfv98v7f10l9wlay"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."tokio_io"."0.1.10"."bytes"}" deps) - (crates."futures"."${deps."tokio_io"."0.1.10"."futures"}" deps) - (crates."log"."${deps."tokio_io"."0.1.10"."log"}" deps) - ]); - }; - features_.tokio_io."0.1.10" = deps: f: updateFeatures f ({ - bytes."${deps.tokio_io."0.1.10".bytes}".default = true; - futures."${deps.tokio_io."0.1.10".futures}".default = true; - log."${deps.tokio_io."0.1.10".log}".default = true; - tokio_io."0.1.10".default = (f.tokio_io."0.1.10".default or true); - }) [ - (features_.bytes."${deps."tokio_io"."0.1.10"."bytes"}" deps) - (features_.futures."${deps."tokio_io"."0.1.10"."futures"}" deps) - (features_.log."${deps."tokio_io"."0.1.10"."log"}" deps) - ]; - - -# end -# tokio-reactor-0.1.7 - - crates.tokio_reactor."0.1.7" = deps: { features?(features_.tokio_reactor."0.1.7" deps {}) }: buildRustCrate { - crateName = "tokio-reactor"; - version = "0.1.7"; - description = "Event loop that drives Tokio I/O resources.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "1ssrc6gic43lachv7jk97jxzw609sgcsrkwi7chf96sn7nqrhj0z"; - dependencies = mapFeatures features ([ - (crates."crossbeam_utils"."${deps."tokio_reactor"."0.1.7"."crossbeam_utils"}" deps) - (crates."futures"."${deps."tokio_reactor"."0.1.7"."futures"}" deps) - (crates."lazy_static"."${deps."tokio_reactor"."0.1.7"."lazy_static"}" deps) - (crates."log"."${deps."tokio_reactor"."0.1.7"."log"}" deps) - (crates."mio"."${deps."tokio_reactor"."0.1.7"."mio"}" deps) - (crates."num_cpus"."${deps."tokio_reactor"."0.1.7"."num_cpus"}" deps) - (crates."parking_lot"."${deps."tokio_reactor"."0.1.7"."parking_lot"}" deps) - (crates."slab"."${deps."tokio_reactor"."0.1.7"."slab"}" deps) - (crates."tokio_executor"."${deps."tokio_reactor"."0.1.7"."tokio_executor"}" deps) - (crates."tokio_io"."${deps."tokio_reactor"."0.1.7"."tokio_io"}" deps) - ]); - }; - features_.tokio_reactor."0.1.7" = deps: f: updateFeatures f ({ - crossbeam_utils."${deps.tokio_reactor."0.1.7".crossbeam_utils}".default = true; - futures."${deps.tokio_reactor."0.1.7".futures}".default = true; - lazy_static."${deps.tokio_reactor."0.1.7".lazy_static}".default = true; - log."${deps.tokio_reactor."0.1.7".log}".default = true; - mio."${deps.tokio_reactor."0.1.7".mio}".default = true; - num_cpus."${deps.tokio_reactor."0.1.7".num_cpus}".default = true; - parking_lot."${deps.tokio_reactor."0.1.7".parking_lot}".default = true; - slab."${deps.tokio_reactor."0.1.7".slab}".default = true; - tokio_executor."${deps.tokio_reactor."0.1.7".tokio_executor}".default = true; - tokio_io."${deps.tokio_reactor."0.1.7".tokio_io}".default = true; - tokio_reactor."0.1.7".default = (f.tokio_reactor."0.1.7".default or true); - }) [ - (features_.crossbeam_utils."${deps."tokio_reactor"."0.1.7"."crossbeam_utils"}" deps) - (features_.futures."${deps."tokio_reactor"."0.1.7"."futures"}" deps) - (features_.lazy_static."${deps."tokio_reactor"."0.1.7"."lazy_static"}" deps) - (features_.log."${deps."tokio_reactor"."0.1.7"."log"}" deps) - (features_.mio."${deps."tokio_reactor"."0.1.7"."mio"}" deps) - (features_.num_cpus."${deps."tokio_reactor"."0.1.7"."num_cpus"}" deps) - (features_.parking_lot."${deps."tokio_reactor"."0.1.7"."parking_lot"}" deps) - (features_.slab."${deps."tokio_reactor"."0.1.7"."slab"}" deps) - (features_.tokio_executor."${deps."tokio_reactor"."0.1.7"."tokio_executor"}" deps) - (features_.tokio_io."${deps."tokio_reactor"."0.1.7"."tokio_io"}" deps) - ]; - - -# end -# tokio-tcp-0.1.2 - - crates.tokio_tcp."0.1.2" = deps: { features?(features_.tokio_tcp."0.1.2" deps {}) }: buildRustCrate { - crateName = "tokio-tcp"; - version = "0.1.2"; - description = "TCP bindings for tokio.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "0yvfwybqnyca24aj9as8rgydamjq0wrd9xbxxkjcasvsdmsv6z1d"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."tokio_tcp"."0.1.2"."bytes"}" deps) - (crates."futures"."${deps."tokio_tcp"."0.1.2"."futures"}" deps) - (crates."iovec"."${deps."tokio_tcp"."0.1.2"."iovec"}" deps) - (crates."mio"."${deps."tokio_tcp"."0.1.2"."mio"}" deps) - (crates."tokio_io"."${deps."tokio_tcp"."0.1.2"."tokio_io"}" deps) - (crates."tokio_reactor"."${deps."tokio_tcp"."0.1.2"."tokio_reactor"}" deps) - ]); - }; - features_.tokio_tcp."0.1.2" = deps: f: updateFeatures f ({ - bytes."${deps.tokio_tcp."0.1.2".bytes}".default = true; - futures."${deps.tokio_tcp."0.1.2".futures}".default = true; - iovec."${deps.tokio_tcp."0.1.2".iovec}".default = true; - mio."${deps.tokio_tcp."0.1.2".mio}".default = true; - tokio_io."${deps.tokio_tcp."0.1.2".tokio_io}".default = true; - tokio_reactor."${deps.tokio_tcp."0.1.2".tokio_reactor}".default = true; - tokio_tcp."0.1.2".default = (f.tokio_tcp."0.1.2".default or true); - }) [ - (features_.bytes."${deps."tokio_tcp"."0.1.2"."bytes"}" deps) - (features_.futures."${deps."tokio_tcp"."0.1.2"."futures"}" deps) - (features_.iovec."${deps."tokio_tcp"."0.1.2"."iovec"}" deps) - (features_.mio."${deps."tokio_tcp"."0.1.2"."mio"}" deps) - (features_.tokio_io."${deps."tokio_tcp"."0.1.2"."tokio_io"}" deps) - (features_.tokio_reactor."${deps."tokio_tcp"."0.1.2"."tokio_reactor"}" deps) - ]; - - -# end -# tokio-threadpool-0.1.9 - - crates.tokio_threadpool."0.1.9" = deps: { features?(features_.tokio_threadpool."0.1.9" deps {}) }: buildRustCrate { - crateName = "tokio-threadpool"; - version = "0.1.9"; - description = "A task scheduler backed by a work-stealing thread pool.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "0ipr0j79mhjjsvc0ma95sj07m0aiyq6rkwgvlalqwhinivl5d39g"; - dependencies = mapFeatures features ([ - (crates."crossbeam_deque"."${deps."tokio_threadpool"."0.1.9"."crossbeam_deque"}" deps) - (crates."crossbeam_utils"."${deps."tokio_threadpool"."0.1.9"."crossbeam_utils"}" deps) - (crates."futures"."${deps."tokio_threadpool"."0.1.9"."futures"}" deps) - (crates."log"."${deps."tokio_threadpool"."0.1.9"."log"}" deps) - (crates."num_cpus"."${deps."tokio_threadpool"."0.1.9"."num_cpus"}" deps) - (crates."rand"."${deps."tokio_threadpool"."0.1.9"."rand"}" deps) - (crates."tokio_executor"."${deps."tokio_threadpool"."0.1.9"."tokio_executor"}" deps) - ]); - }; - features_.tokio_threadpool."0.1.9" = deps: f: updateFeatures f ({ - crossbeam_deque."${deps.tokio_threadpool."0.1.9".crossbeam_deque}".default = true; - crossbeam_utils."${deps.tokio_threadpool."0.1.9".crossbeam_utils}".default = true; - futures."${deps.tokio_threadpool."0.1.9".futures}".default = true; - log."${deps.tokio_threadpool."0.1.9".log}".default = true; - num_cpus."${deps.tokio_threadpool."0.1.9".num_cpus}".default = true; - rand."${deps.tokio_threadpool."0.1.9".rand}".default = true; - tokio_executor."${deps.tokio_threadpool."0.1.9".tokio_executor}".default = true; - tokio_threadpool."0.1.9".default = (f.tokio_threadpool."0.1.9".default or true); - }) [ - (features_.crossbeam_deque."${deps."tokio_threadpool"."0.1.9"."crossbeam_deque"}" deps) - (features_.crossbeam_utils."${deps."tokio_threadpool"."0.1.9"."crossbeam_utils"}" deps) - (features_.futures."${deps."tokio_threadpool"."0.1.9"."futures"}" deps) - (features_.log."${deps."tokio_threadpool"."0.1.9"."log"}" deps) - (features_.num_cpus."${deps."tokio_threadpool"."0.1.9"."num_cpus"}" deps) - (features_.rand."${deps."tokio_threadpool"."0.1.9"."rand"}" deps) - (features_.tokio_executor."${deps."tokio_threadpool"."0.1.9"."tokio_executor"}" deps) - ]; - - -# end -# tokio-timer-0.2.5 - - crates.tokio_timer."0.2.5" = deps: { features?(features_.tokio_timer."0.2.5" deps {}) }: buildRustCrate { - crateName = "tokio-timer"; - version = "0.2.5"; - description = "Timer facilities for Tokio\n"; - authors = [ "Carl Lerche " ]; - sha256 = "0jyhizvnpldkbqvqygrg0zd5zvfj9p0ywvjzf47iy632vq3qnwzm"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."tokio_timer"."0.2.5"."futures"}" deps) - (crates."tokio_executor"."${deps."tokio_timer"."0.2.5"."tokio_executor"}" deps) - ]); - }; - features_.tokio_timer."0.2.5" = deps: f: updateFeatures f ({ - futures."${deps.tokio_timer."0.2.5".futures}".default = true; - tokio_executor."${deps.tokio_timer."0.2.5".tokio_executor}".default = true; - tokio_timer."0.2.5".default = (f.tokio_timer."0.2.5".default or true); - }) [ - (features_.futures."${deps."tokio_timer"."0.2.5"."futures"}" deps) - (features_.tokio_executor."${deps."tokio_timer"."0.2.5"."tokio_executor"}" deps) - ]; - - -# end -# tokio-udp-0.1.3 - - crates.tokio_udp."0.1.3" = deps: { features?(features_.tokio_udp."0.1.3" deps {}) }: buildRustCrate { - crateName = "tokio-udp"; - version = "0.1.3"; - description = "UDP bindings for tokio.\n"; - authors = [ "Carl Lerche " ]; - sha256 = "1g1x499vqvzwy7xfccr32vwymlx25zpmkx8ppqgifzqwrjnncajf"; - dependencies = mapFeatures features ([ - (crates."bytes"."${deps."tokio_udp"."0.1.3"."bytes"}" deps) - (crates."futures"."${deps."tokio_udp"."0.1.3"."futures"}" deps) - (crates."log"."${deps."tokio_udp"."0.1.3"."log"}" deps) - (crates."mio"."${deps."tokio_udp"."0.1.3"."mio"}" deps) - (crates."tokio_codec"."${deps."tokio_udp"."0.1.3"."tokio_codec"}" deps) - (crates."tokio_io"."${deps."tokio_udp"."0.1.3"."tokio_io"}" deps) - (crates."tokio_reactor"."${deps."tokio_udp"."0.1.3"."tokio_reactor"}" deps) - ]); - }; - features_.tokio_udp."0.1.3" = deps: f: updateFeatures f ({ - bytes."${deps.tokio_udp."0.1.3".bytes}".default = true; - futures."${deps.tokio_udp."0.1.3".futures}".default = true; - log."${deps.tokio_udp."0.1.3".log}".default = true; - mio."${deps.tokio_udp."0.1.3".mio}".default = true; - tokio_codec."${deps.tokio_udp."0.1.3".tokio_codec}".default = true; - tokio_io."${deps.tokio_udp."0.1.3".tokio_io}".default = true; - tokio_reactor."${deps.tokio_udp."0.1.3".tokio_reactor}".default = true; - tokio_udp."0.1.3".default = (f.tokio_udp."0.1.3".default or true); - }) [ - (features_.bytes."${deps."tokio_udp"."0.1.3"."bytes"}" deps) - (features_.futures."${deps."tokio_udp"."0.1.3"."futures"}" deps) - (features_.log."${deps."tokio_udp"."0.1.3"."log"}" deps) - (features_.mio."${deps."tokio_udp"."0.1.3"."mio"}" deps) - (features_.tokio_codec."${deps."tokio_udp"."0.1.3"."tokio_codec"}" deps) - (features_.tokio_io."${deps."tokio_udp"."0.1.3"."tokio_io"}" deps) - (features_.tokio_reactor."${deps."tokio_udp"."0.1.3"."tokio_reactor"}" deps) - ]; - - -# end -# try-lock-0.2.2 - - crates.try_lock."0.2.2" = deps: { features?(features_.try_lock."0.2.2" deps {}) }: buildRustCrate { - crateName = "try-lock"; - version = "0.2.2"; - description = "A lightweight atomic lock."; - authors = [ "Sean McArthur " ]; - sha256 = "1k8xc0jpbrmzp0fwghdh6pwzjb9xx2p8yy0xxnnb8065smc5fsrv"; - }; - features_.try_lock."0.2.2" = deps: f: updateFeatures f ({ - try_lock."0.2.2".default = (f.try_lock."0.2.2".default or true); - }) []; - - -# end -# unicase-1.4.2 - - crates.unicase."1.4.2" = deps: { features?(features_.unicase."1.4.2" deps {}) }: buildRustCrate { - crateName = "unicase"; - version = "1.4.2"; - description = "A case-insensitive wrapper around strings."; - authors = [ "Sean McArthur " ]; - sha256 = "0rbnhw2mnhcwrij3vczp0sl8zdfmvf2dlh8hly81kj7132kfj0mf"; - build = "build.rs"; - dependencies = mapFeatures features ([ -]); - - buildDependencies = mapFeatures features ([ - (crates."version_check"."${deps."unicase"."1.4.2"."version_check"}" deps) - ]); - features = mkFeatures (features."unicase"."1.4.2" or {}); - }; - features_.unicase."1.4.2" = deps: f: updateFeatures f (rec { - unicase = fold recursiveUpdate {} [ - { "1.4.2"."heapsize" = - (f.unicase."1.4.2"."heapsize" or false) || - (f.unicase."1.4.2".heap_size or false) || - (unicase."1.4.2"."heap_size" or false); } - { "1.4.2"."heapsize_plugin" = - (f.unicase."1.4.2"."heapsize_plugin" or false) || - (f.unicase."1.4.2".heap_size or false) || - (unicase."1.4.2"."heap_size" or false); } - { "1.4.2".default = (f.unicase."1.4.2".default or true); } - ]; - version_check."${deps.unicase."1.4.2".version_check}".default = true; - }) [ - (features_.version_check."${deps."unicase"."1.4.2"."version_check"}" deps) - ]; - - -# end -# unicase-2.1.0 - - crates.unicase."2.1.0" = deps: { features?(features_.unicase."2.1.0" deps {}) }: buildRustCrate { - crateName = "unicase"; - version = "2.1.0"; - description = "A case-insensitive wrapper around strings."; - authors = [ "Sean McArthur " ]; - sha256 = "1zzn16hh8fdx5pnbbnl32q8m2mh4vpd1jm9pdcv969ik83dw4byp"; - build = "build.rs"; - - buildDependencies = mapFeatures features ([ - (crates."version_check"."${deps."unicase"."2.1.0"."version_check"}" deps) - ]); - features = mkFeatures (features."unicase"."2.1.0" or {}); - }; - features_.unicase."2.1.0" = deps: f: updateFeatures f ({ - unicase."2.1.0".default = (f.unicase."2.1.0".default or true); - version_check."${deps.unicase."2.1.0".version_check}".default = true; - }) [ - (features_.version_check."${deps."unicase"."2.1.0"."version_check"}" deps) - ]; - - -# end -# unicode-bidi-0.3.4 - - crates.unicode_bidi."0.3.4" = deps: { features?(features_.unicode_bidi."0.3.4" deps {}) }: buildRustCrate { - crateName = "unicode-bidi"; - version = "0.3.4"; - description = "Implementation of the Unicode Bidirectional Algorithm"; - authors = [ "The Servo Project Developers" ]; - sha256 = "0lcd6jasrf8p9p0q20qyf10c6xhvw40m2c4rr105hbk6zy26nj1q"; - libName = "unicode_bidi"; - dependencies = mapFeatures features ([ - (crates."matches"."${deps."unicode_bidi"."0.3.4"."matches"}" deps) - ]); - features = mkFeatures (features."unicode_bidi"."0.3.4" or {}); - }; - features_.unicode_bidi."0.3.4" = deps: f: updateFeatures f (rec { - matches."${deps.unicode_bidi."0.3.4".matches}".default = true; - unicode_bidi = fold recursiveUpdate {} [ - { "0.3.4"."flame" = - (f.unicode_bidi."0.3.4"."flame" or false) || - (f.unicode_bidi."0.3.4".flame_it or false) || - (unicode_bidi."0.3.4"."flame_it" or false); } - { "0.3.4"."flamer" = - (f.unicode_bidi."0.3.4"."flamer" or false) || - (f.unicode_bidi."0.3.4".flame_it or false) || - (unicode_bidi."0.3.4"."flame_it" or false); } - { "0.3.4"."serde" = - (f.unicode_bidi."0.3.4"."serde" or false) || - (f.unicode_bidi."0.3.4".with_serde or false) || - (unicode_bidi."0.3.4"."with_serde" or false); } - { "0.3.4".default = (f.unicode_bidi."0.3.4".default or true); } - ]; - }) [ - (features_.matches."${deps."unicode_bidi"."0.3.4"."matches"}" deps) - ]; - - -# end -# unicode-normalization-0.1.5 - - crates.unicode_normalization."0.1.5" = deps: { features?(features_.unicode_normalization."0.1.5" deps {}) }: buildRustCrate { - crateName = "unicode-normalization"; - version = "0.1.5"; - description = "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n"; - authors = [ "kwantam " ]; - sha256 = "0hg29g86fca7b65mwk4sm5s838js6bqrl0gabadbazvbsgjam0j5"; - }; - features_.unicode_normalization."0.1.5" = deps: f: updateFeatures f ({ - unicode_normalization."0.1.5".default = (f.unicode_normalization."0.1.5".default or true); - }) []; - - -# end -# unicode-width-0.1.4 - - crates.unicode_width."0.1.4" = deps: { features?(features_.unicode_width."0.1.4" deps {}) }: buildRustCrate { - crateName = "unicode-width"; - version = "0.1.4"; - description = "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n"; - authors = [ "kwantam " ]; - sha256 = "1rp7a04icn9y5c0lm74nrd4py0rdl0af8bhdwq7g478n1xifpifl"; - features = mkFeatures (features."unicode_width"."0.1.4" or {}); - }; - features_.unicode_width."0.1.4" = deps: f: updateFeatures f ({ - unicode_width."0.1.4".default = (f.unicode_width."0.1.4".default or true); - }) []; - - -# end -# unicode-xid-0.0.4 - - crates.unicode_xid."0.0.4" = deps: { features?(features_.unicode_xid."0.0.4" deps {}) }: buildRustCrate { - crateName = "unicode-xid"; - version = "0.0.4"; - description = "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n"; - authors = [ "erick.tryzelaar " "kwantam " ]; - sha256 = "1dc8wkkcd3s6534s5aw4lbjn8m67flkkbnajp5bl8408wdg8rh9v"; - features = mkFeatures (features."unicode_xid"."0.0.4" or {}); - }; - features_.unicode_xid."0.0.4" = deps: f: updateFeatures f ({ - unicode_xid."0.0.4".default = (f.unicode_xid."0.0.4".default or true); - }) []; - - -# end -# unreachable-1.0.0 - - crates.unreachable."1.0.0" = deps: { features?(features_.unreachable."1.0.0" deps {}) }: buildRustCrate { - crateName = "unreachable"; - version = "1.0.0"; - description = "An unreachable code optimization hint in stable rust."; - authors = [ "Jonathan Reem " ]; - sha256 = "1am8czbk5wwr25gbp2zr007744fxjshhdqjz9liz7wl4pnv3whcf"; - dependencies = mapFeatures features ([ - (crates."void"."${deps."unreachable"."1.0.0"."void"}" deps) - ]); - }; - features_.unreachable."1.0.0" = deps: f: updateFeatures f ({ - unreachable."1.0.0".default = (f.unreachable."1.0.0".default or true); - void."${deps.unreachable."1.0.0".void}".default = (f.void."${deps.unreachable."1.0.0".void}".default or false); - }) [ - (features_.void."${deps."unreachable"."1.0.0"."void"}" deps) - ]; - - -# end -# url-1.6.1 - - crates.url."1.6.1" = deps: { features?(features_.url."1.6.1" deps {}) }: buildRustCrate { - crateName = "url"; - version = "1.6.1"; - description = "URL library for Rust, based on the WHATWG URL Standard"; - authors = [ "The rust-url developers" ]; - sha256 = "1qsnhmxznzaxl068a3ksz69kwcz7ghvl4zflg9qj7lyw4bk9ma38"; - dependencies = mapFeatures features ([ - (crates."idna"."${deps."url"."1.6.1"."idna"}" deps) - (crates."matches"."${deps."url"."1.6.1"."matches"}" deps) - (crates."percent_encoding"."${deps."url"."1.6.1"."percent_encoding"}" deps) - ]); - features = mkFeatures (features."url"."1.6.1" or {}); - }; - features_.url."1.6.1" = deps: f: updateFeatures f (rec { - idna."${deps.url."1.6.1".idna}".default = true; - matches."${deps.url."1.6.1".matches}".default = true; - percent_encoding."${deps.url."1.6.1".percent_encoding}".default = true; - url = fold recursiveUpdate {} [ - { "1.6.1"."encoding" = - (f.url."1.6.1"."encoding" or false) || - (f.url."1.6.1".query_encoding or false) || - (url."1.6.1"."query_encoding" or false); } - { "1.6.1"."heapsize" = - (f.url."1.6.1"."heapsize" or false) || - (f.url."1.6.1".heap_size or false) || - (url."1.6.1"."heap_size" or false); } - { "1.6.1".default = (f.url."1.6.1".default or true); } - ]; - }) [ - (features_.idna."${deps."url"."1.6.1"."idna"}" deps) - (features_.matches."${deps."url"."1.6.1"."matches"}" deps) - (features_.percent_encoding."${deps."url"."1.6.1"."percent_encoding"}" deps) - ]; - - -# end -# utf8-ranges-0.1.3 - - crates.utf8_ranges."0.1.3" = deps: { features?(features_.utf8_ranges."0.1.3" deps {}) }: buildRustCrate { - crateName = "utf8-ranges"; - version = "0.1.3"; - description = "Convert ranges of Unicode codepoints to UTF-8 byte ranges."; - authors = [ "Andrew Gallant " ]; - sha256 = "1cj548a91a93j8375p78qikaiam548xh84cb0ck8y119adbmsvbp"; - }; - features_.utf8_ranges."0.1.3" = deps: f: updateFeatures f ({ - utf8_ranges."0.1.3".default = (f.utf8_ranges."0.1.3".default or true); - }) []; - - -# end -# uuid-0.7.1 - - crates.uuid."0.7.1" = deps: { features?(features_.uuid."0.7.1" deps {}) }: buildRustCrate { - crateName = "uuid"; - version = "0.7.1"; - description = "A library to generate and parse UUIDs."; - authors = [ "Ashley Mannix" "Christopher Armstrong" "Dylan DPC" "Hunar Roop Kahlon" ]; - sha256 = "1wh5izr7bssf1j8y3cawj4yfr5pz4cfxgsjlk2gs1vccc848qpbj"; - dependencies = mapFeatures features ([ - ] - ++ (if features.uuid."0.7.1".rand or false then [ (crates.rand."${deps."uuid"."0.7.1".rand}" deps) ] else [])); - features = mkFeatures (features."uuid"."0.7.1" or {}); - }; - features_.uuid."0.7.1" = deps: f: updateFeatures f (rec { - rand."${deps.uuid."0.7.1".rand}".default = true; - uuid = fold recursiveUpdate {} [ - { "0.7.1"."byteorder" = - (f.uuid."0.7.1"."byteorder" or false) || - (f.uuid."0.7.1".u128 or false) || - (uuid."0.7.1"."u128" or false); } - { "0.7.1"."md5" = - (f.uuid."0.7.1"."md5" or false) || - (f.uuid."0.7.1".v3 or false) || - (uuid."0.7.1"."v3" or false); } - { "0.7.1"."nightly" = - (f.uuid."0.7.1"."nightly" or false) || - (f.uuid."0.7.1".const_fn or false) || - (uuid."0.7.1"."const_fn" or false); } - { "0.7.1"."rand" = - (f.uuid."0.7.1"."rand" or false) || - (f.uuid."0.7.1".v3 or false) || - (uuid."0.7.1"."v3" or false) || - (f.uuid."0.7.1".v4 or false) || - (uuid."0.7.1"."v4" or false) || - (f.uuid."0.7.1".v5 or false) || - (uuid."0.7.1"."v5" or false); } - { "0.7.1"."sha1" = - (f.uuid."0.7.1"."sha1" or false) || - (f.uuid."0.7.1".v5 or false) || - (uuid."0.7.1"."v5" or false); } - { "0.7.1"."std" = - (f.uuid."0.7.1"."std" or false) || - (f.uuid."0.7.1".default or false) || - (uuid."0.7.1"."default" or false); } - { "0.7.1".default = (f.uuid."0.7.1".default or true); } - ]; - }) [ - (features_.rand."${deps."uuid"."0.7.1"."rand"}" deps) - ]; - - -# end -# vcpkg-0.2.2 - - crates.vcpkg."0.2.2" = deps: { features?(features_.vcpkg."0.2.2" deps {}) }: buildRustCrate { - crateName = "vcpkg"; - version = "0.2.2"; - description = "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n"; - authors = [ "Jim McGrath " ]; - sha256 = "1fl5j0ksnwrnsrf1b1a9lqbjgnajdipq0030vsbhx81mb7d9478a"; - }; - features_.vcpkg."0.2.2" = deps: f: updateFeatures f ({ - vcpkg."0.2.2".default = (f.vcpkg."0.2.2".default or true); - }) []; - - -# end -# vec_map-0.8.0 - - crates.vec_map."0.8.0" = deps: { features?(features_.vec_map."0.8.0" deps {}) }: buildRustCrate { - crateName = "vec_map"; - version = "0.8.0"; - description = "A simple map based on a vector for small integer keys"; - authors = [ "Alex Crichton " "Jorge Aparicio " "Alexis Beingessner " "Brian Anderson <>" "tbu- <>" "Manish Goregaokar <>" "Aaron Turon " "Adolfo Ochagavía <>" "Niko Matsakis <>" "Steven Fackler <>" "Chase Southwood " "Eduard Burtescu <>" "Florian Wilkens <>" "Félix Raimundo <>" "Tibor Benke <>" "Markus Siemens " "Josh Branchaud " "Huon Wilson " "Corey Farwell " "Aaron Liblong <>" "Nick Cameron " "Patrick Walton " "Felix S Klock II <>" "Andrew Paseltiner " "Sean McArthur " "Vadim Petrochenkov <>" ]; - sha256 = "07sgxp3cf1a4cxm9n3r27fcvqmld32bl2576mrcahnvm34j11xay"; - dependencies = mapFeatures features ([ -]); - features = mkFeatures (features."vec_map"."0.8.0" or {}); - }; - features_.vec_map."0.8.0" = deps: f: updateFeatures f (rec { - vec_map = fold recursiveUpdate {} [ - { "0.8.0"."serde" = - (f.vec_map."0.8.0"."serde" or false) || - (f.vec_map."0.8.0".eders or false) || - (vec_map."0.8.0"."eders" or false); } - { "0.8.0"."serde_derive" = - (f.vec_map."0.8.0"."serde_derive" or false) || - (f.vec_map."0.8.0".eders or false) || - (vec_map."0.8.0"."eders" or false); } - { "0.8.0".default = (f.vec_map."0.8.0".default or true); } - ]; - }) []; - - -# end -# version_check-0.1.3 - - crates.version_check."0.1.3" = deps: { features?(features_.version_check."0.1.3" deps {}) }: buildRustCrate { - crateName = "version_check"; - version = "0.1.3"; - description = "Tiny crate to check the version of the installed/running rustc."; - authors = [ "Sergio Benitez " ]; - sha256 = "0z635wdclv9bvafj11fpgndn7y79ibpsnc364pm61i1m4wwg8msg"; - }; - features_.version_check."0.1.3" = deps: f: updateFeatures f ({ - version_check."0.1.3".default = (f.version_check."0.1.3".default or true); - }) []; - - -# end -# void-1.0.2 - - crates.void."1.0.2" = deps: { features?(features_.void."1.0.2" deps {}) }: buildRustCrate { - crateName = "void"; - version = "1.0.2"; - description = "The uninhabited void type for use in statically impossible cases."; - authors = [ "Jonathan Reem " ]; - sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3"; - features = mkFeatures (features."void"."1.0.2" or {}); - }; - features_.void."1.0.2" = deps: f: updateFeatures f (rec { - void = fold recursiveUpdate {} [ - { "1.0.2"."std" = - (f.void."1.0.2"."std" or false) || - (f.void."1.0.2".default or false) || - (void."1.0.2"."default" or false); } - { "1.0.2".default = (f.void."1.0.2".default or true); } - ]; - }) []; - - -# end -# want-0.0.6 - - crates.want."0.0.6" = deps: { features?(features_.want."0.0.6" deps {}) }: buildRustCrate { - crateName = "want"; - version = "0.0.6"; - description = "Detect when another Future wants a result."; - authors = [ "Sean McArthur " ]; - sha256 = "03cc2lndz531a4kgql1v9kppyb1yz2abcz5l52j1gg2nypmy3lh8"; - dependencies = mapFeatures features ([ - (crates."futures"."${deps."want"."0.0.6"."futures"}" deps) - (crates."log"."${deps."want"."0.0.6"."log"}" deps) - (crates."try_lock"."${deps."want"."0.0.6"."try_lock"}" deps) - ]); - }; - features_.want."0.0.6" = deps: f: updateFeatures f ({ - futures."${deps.want."0.0.6".futures}".default = true; - log."${deps.want."0.0.6".log}".default = true; - try_lock."${deps.want."0.0.6".try_lock}".default = true; - want."0.0.6".default = (f.want."0.0.6".default or true); - }) [ - (features_.futures."${deps."want"."0.0.6"."futures"}" deps) - (features_.log."${deps."want"."0.0.6"."log"}" deps) - (features_.try_lock."${deps."want"."0.0.6"."try_lock"}" deps) - ]; - - -# end -# winapi-0.2.8 - - crates.winapi."0.2.8" = deps: { features?(features_.winapi."0.2.8" deps {}) }: buildRustCrate { - crateName = "winapi"; - version = "0.2.8"; - description = "Types and constants for WinAPI bindings. See README for list of crates providing function bindings."; - authors = [ "Peter Atashian " ]; - sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as"; - }; - features_.winapi."0.2.8" = deps: f: updateFeatures f ({ - winapi."0.2.8".default = (f.winapi."0.2.8".default or true); - }) []; - - -# end -# winapi-0.3.6 - - crates.winapi."0.3.6" = deps: { features?(features_.winapi."0.3.6" deps {}) }: buildRustCrate { - crateName = "winapi"; - version = "0.3.6"; - description = "Raw FFI bindings for all of Windows API."; - authors = [ "Peter Atashian " ]; - sha256 = "1d9jfp4cjd82sr1q4dgdlrkvm33zhhav9d7ihr0nivqbncr059m4"; - build = "build.rs"; - dependencies = (if kernel == "i686-pc-windows-gnu" then mapFeatures features ([ - (crates."winapi_i686_pc_windows_gnu"."${deps."winapi"."0.3.6"."winapi_i686_pc_windows_gnu"}" deps) - ]) else []) - ++ (if kernel == "x86_64-pc-windows-gnu" then mapFeatures features ([ - (crates."winapi_x86_64_pc_windows_gnu"."${deps."winapi"."0.3.6"."winapi_x86_64_pc_windows_gnu"}" deps) - ]) else []); - features = mkFeatures (features."winapi"."0.3.6" or {}); - }; - features_.winapi."0.3.6" = deps: f: updateFeatures f ({ - winapi."0.3.6".default = (f.winapi."0.3.6".default or true); - winapi_i686_pc_windows_gnu."${deps.winapi."0.3.6".winapi_i686_pc_windows_gnu}".default = true; - winapi_x86_64_pc_windows_gnu."${deps.winapi."0.3.6".winapi_x86_64_pc_windows_gnu}".default = true; - }) [ - (features_.winapi_i686_pc_windows_gnu."${deps."winapi"."0.3.6"."winapi_i686_pc_windows_gnu"}" deps) - (features_.winapi_x86_64_pc_windows_gnu."${deps."winapi"."0.3.6"."winapi_x86_64_pc_windows_gnu"}" deps) - ]; - - -# end -# winapi-build-0.1.1 - - crates.winapi_build."0.1.1" = deps: { features?(features_.winapi_build."0.1.1" deps {}) }: buildRustCrate { - crateName = "winapi-build"; - version = "0.1.1"; - description = "Common code for build.rs in WinAPI -sys crates."; - authors = [ "Peter Atashian " ]; - sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga"; - libName = "build"; - }; - features_.winapi_build."0.1.1" = deps: f: updateFeatures f ({ - winapi_build."0.1.1".default = (f.winapi_build."0.1.1".default or true); - }) []; - - -# end -# winapi-i686-pc-windows-gnu-0.4.0 - - crates.winapi_i686_pc_windows_gnu."0.4.0" = deps: { features?(features_.winapi_i686_pc_windows_gnu."0.4.0" deps {}) }: buildRustCrate { - crateName = "winapi-i686-pc-windows-gnu"; - version = "0.4.0"; - description = "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."; - authors = [ "Peter Atashian " ]; - sha256 = "05ihkij18r4gamjpxj4gra24514can762imjzlmak5wlzidplzrp"; - build = "build.rs"; - }; - features_.winapi_i686_pc_windows_gnu."0.4.0" = deps: f: updateFeatures f ({ - winapi_i686_pc_windows_gnu."0.4.0".default = (f.winapi_i686_pc_windows_gnu."0.4.0".default or true); - }) []; - - -# end -# winapi-x86_64-pc-windows-gnu-0.4.0 - - crates.winapi_x86_64_pc_windows_gnu."0.4.0" = deps: { features?(features_.winapi_x86_64_pc_windows_gnu."0.4.0" deps {}) }: buildRustCrate { - crateName = "winapi-x86_64-pc-windows-gnu"; - version = "0.4.0"; - description = "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."; - authors = [ "Peter Atashian " ]; - sha256 = "0n1ylmlsb8yg1v583i4xy0qmqg42275flvbc51hdqjjfjcl9vlbj"; - build = "build.rs"; - }; - features_.winapi_x86_64_pc_windows_gnu."0.4.0" = deps: f: updateFeatures f ({ - winapi_x86_64_pc_windows_gnu."0.4.0".default = (f.winapi_x86_64_pc_windows_gnu."0.4.0".default or true); - }) []; - - -# end -# ws2_32-sys-0.2.1 - - crates.ws2_32_sys."0.2.1" = deps: { features?(features_.ws2_32_sys."0.2.1" deps {}) }: buildRustCrate { - crateName = "ws2_32-sys"; - version = "0.2.1"; - description = "Contains function definitions for the Windows API library ws2_32. See winapi for types and constants."; - authors = [ "Peter Atashian " ]; - sha256 = "1zpy9d9wk11sj17fczfngcj28w4xxjs3b4n036yzpy38dxp4f7kc"; - libName = "ws2_32"; - build = "build.rs"; - dependencies = mapFeatures features ([ - (crates."winapi"."${deps."ws2_32_sys"."0.2.1"."winapi"}" deps) - ]); - - buildDependencies = mapFeatures features ([ - (crates."winapi_build"."${deps."ws2_32_sys"."0.2.1"."winapi_build"}" deps) - ]); - }; - features_.ws2_32_sys."0.2.1" = deps: f: updateFeatures f ({ - winapi."${deps.ws2_32_sys."0.2.1".winapi}".default = true; - winapi_build."${deps.ws2_32_sys."0.2.1".winapi_build}".default = true; - ws2_32_sys."0.2.1".default = (f.ws2_32_sys."0.2.1".default or true); - }) [ - (features_.winapi."${deps."ws2_32_sys"."0.2.1"."winapi"}" deps) - (features_.winapi_build."${deps."ws2_32_sys"."0.2.1"."winapi_build"}" deps) - ]; - - -# end -# xattr-0.1.11 - - crates.xattr."0.1.11" = deps: { features?(features_.xattr."0.1.11" deps {}) }: buildRustCrate { - crateName = "xattr"; - version = "0.1.11"; - description = "unix extended filesystem attributes"; - authors = [ "Steven Allen " ]; - sha256 = "0v8wad18pdxv7242a7xs18i9hy00ih3vwajz7my05zbxx2ss01nx"; - dependencies = mapFeatures features ([ - (crates."libc"."${deps."xattr"."0.1.11"."libc"}" deps) - ]); - features = mkFeatures (features."xattr"."0.1.11" or {}); - }; - features_.xattr."0.1.11" = deps: f: updateFeatures f (rec { - libc."${deps.xattr."0.1.11".libc}".default = true; - xattr = fold recursiveUpdate {} [ - { "0.1.11"."unsupported" = - (f.xattr."0.1.11"."unsupported" or false) || - (f.xattr."0.1.11".default or false) || - (xattr."0.1.11"."default" or false); } - { "0.1.11".default = (f.xattr."0.1.11".default or true); } - ]; - }) [ - (features_.libc."${deps."xattr"."0.1.11"."libc"}" deps) - ]; - - -# end -} diff --git a/pkgs/development/tools/rust/cargo-download/default.nix b/pkgs/development/tools/rust/cargo-download/default.nix deleted file mode 100644 index 1cb53a4b6c8..00000000000 --- a/pkgs/development/tools/rust/cargo-download/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ stdenv, lib, fetchgit, darwin, buildPlatform -, buildRustCrate, buildRustCrateHelpers, defaultCrateOverrides }: - -((import ./Cargo.nix { - inherit lib buildPlatform buildRustCrate buildRustCrateHelpers fetchgit; - cratesIO = import ./crates-io.nix { inherit lib buildRustCrate buildRustCrateHelpers; }; -}).cargo_download {}).override { - crateOverrides = defaultCrateOverrides // { - cargo-download = attrs: { - buildInputs = lib.optional stdenv.isDarwin - darwin.apple_sdk.frameworks.Security; - }; - }; -} diff --git a/pkgs/development/tools/rust/cargo-nextest/default.nix b/pkgs/development/tools/rust/cargo-nextest/default.nix index 2b732a9d3c9..37cb1f6ffa0 100644 --- a/pkgs/development/tools/rust/cargo-nextest/default.nix +++ b/pkgs/development/tools/rust/cargo-nextest/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-nextest"; - version = "0.9.37"; + version = "0.9.38"; src = fetchFromGitHub { owner = "nextest-rs"; repo = "nextest"; rev = "cargo-nextest-${version}"; - sha256 = "sha256-fEBTBQyw+yA2O4DGIOcGRo5AqaVZXRNdxi9ImjKiXwE="; + sha256 = "sha256-gBYtO9lnxtrgn5cmmgPeaFQ2Ls3WSO9X4RwDBHKbRO8="; }; - cargoSha256 = "sha256-yXkjCZHAH2Rfp0T2v2OoBskolqvUQwTRlF99gI259F8="; + cargoSha256 = "sha256-Xz5X2I4Lj4lPv18vYjambdlwcRcbHKAbjqPpSuei96Q="; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; diff --git a/pkgs/development/tools/rust/cargo-release/default.nix b/pkgs/development/tools/rust/cargo-release/default.nix index 80c1a53f9fb..88eb559a6a4 100644 --- a/pkgs/development/tools/rust/cargo-release/default.nix +++ b/pkgs/development/tools/rust/cargo-release/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-release"; - version = "0.21.2"; + version = "0.21.4"; src = fetchFromGitHub { owner = "crate-ci"; repo = "cargo-release"; rev = "v${version}"; - sha256 = "sha256-4iuJRwJeHmofJ1iwzeu4YkGaN+MZBdyzsJmdzncDmZo="; + sha256 = "sha256-UzYVw0LFVxqiYi3kjjpZoMWvIrAtZzLKPvhSMSEf3X8="; }; - cargoSha256 = "sha256-LD+bEA4/PCEY+EvV2ysHFmJKBWT83bXuGUtgyiK/6i0="; + cargoSha256 = "sha256-M39pnbYv0lorLx+6q7so4OVL7viZmlTmCeAH28rR0Rw="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/tools/rust/cargo-ui/default.nix b/pkgs/development/tools/rust/cargo-ui/default.nix index ef27297fa11..da5137154bb 100644 --- a/pkgs/development/tools/rust/cargo-ui/default.nix +++ b/pkgs/development/tools/rust/cargo-ui/default.nix @@ -8,11 +8,7 @@ , stdenv , fontconfig , libGL -, libX11 -, libXcursor -, libXi -, libXrandr -, libxcb +, xorg }: rustPlatform.buildRustPackage rec { @@ -33,11 +29,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ fontconfig libGL - libX11 - libXcursor - libXi - libXrandr - libxcb + xorg.libX11 + xorg.libXcursor + xorg.libXi + xorg.libXrandr + xorg.libxcb ]; postInstall = lib.optionalString stdenv.isLinux '' diff --git a/pkgs/games/blightmud/default.nix b/pkgs/games/blightmud/default.nix index 32c9ddb6534..1937f84f88f 100644 --- a/pkgs/games/blightmud/default.nix +++ b/pkgs/games/blightmud/default.nix @@ -1,5 +1,13 @@ -{ stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, alsa-lib, openssl -, withTTS ? false, llvmPackages, speechd }: +{ stdenv +, lib +, fetchFromGitHub +, rustPlatform +, pkg-config +, alsa-lib +, openssl +, withTTS ? false +, speechd +}: rustPlatform.buildRustPackage rec { pname = "blightmud"; @@ -16,50 +24,29 @@ rustPlatform.buildRustPackage rec { buildFeatures = lib.optional withTTS "tts"; - nativeBuildInputs = [ pkg-config ]; + nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; buildInputs = [ alsa-lib openssl ] ++ lib.optional withTTS [ speechd ]; - # Building the speech-dispatcher-sys crate for TTS support requires setting - # LIBCLANG_PATH. - LIBCLANG_PATH = lib.optionalString withTTS "${llvmPackages.libclang.lib}/lib"; - - preBuild = lib.optionalString withTTS '' - # When building w/ TTS the speech-dispatcher-sys crate's build.rs uses - # rust-bindgen with libspeechd. This bypasses the normal nixpkgs CC wrapper - # so we have to adapt the BINDGEN_EXTRA_CLANG_ARGS env var to compensate. See - # this blog post[0] for more information. - # - # [0]: https://hoverbear.org/blog/rust-bindgen-in-nix/ - - export BINDGEN_EXTRA_CLANG_ARGS="$(< ${stdenv.cc}/nix-support/libc-cflags) \ - $(< ${stdenv.cc}/nix-support/cc-cflags) \ - -isystem ${llvmPackages.libclang.lib}/lib/clang/${ - lib.getVersion llvmPackages.clang - }/include \ - -idirafter ${stdenv.cc.cc}/lib/gcc/${stdenv.hostPlatform.config}/${ - lib.getVersion stdenv.cc.cc - }/include \ - -idirafter ${speechd}/include" - ''; - - checkFlags = let - # Most of Blightmud's unit tests pass without trouble in the isolated - # Nixpkgs build env. The following tests need to be skipped. - skipList = [ - "test_connect" - "test_gmcp_negotiation" - "test_ttype_negotiation" - "test_reconnect" - "test_is_connected" - "test_mud" - "test_server" - "test_lua_script" - "timer_test" - "validate_assertion_fail" - ]; - skipFlag = test: "--skip " + test; - in builtins.concatStringsSep " " (builtins.map skipFlag skipList); + checkFlags = + let + # Most of Blightmud's unit tests pass without trouble in the isolated + # Nixpkgs build env. The following tests need to be skipped. + skipList = [ + "test_connect" + "test_gmcp_negotiation" + "test_ttype_negotiation" + "test_reconnect" + "test_is_connected" + "test_mud" + "test_server" + "test_lua_script" + "timer_test" + "validate_assertion_fail" + ]; + skipFlag = test: "--skip " + test; + in + builtins.concatStringsSep " " (builtins.map skipFlag skipList); meta = with lib; { description = "A terminal MUD client written in Rust"; diff --git a/pkgs/games/jumpy/default.nix b/pkgs/games/jumpy/default.nix index 2afba817fc0..645069e4354 100644 --- a/pkgs/games/jumpy/default.nix +++ b/pkgs/games/jumpy/default.nix @@ -5,8 +5,7 @@ , pkg-config , alsa-lib , libGL -, libX11 -, libXi +, xorg , udev , Cocoa , OpenGL @@ -32,8 +31,8 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.isLinux [ alsa-lib libGL - libX11 - libXi + xorg.libX11 + xorg.libXi udev ] ++ lib.optionals stdenv.isDarwin [ Cocoa diff --git a/pkgs/misc/screensavers/betterlockscreen/default.nix b/pkgs/misc/screensavers/betterlockscreen/default.nix index 36eaa50e32c..f53cb5a9776 100644 --- a/pkgs/misc/screensavers/betterlockscreen/default.nix +++ b/pkgs/misc/screensavers/betterlockscreen/default.nix @@ -14,9 +14,7 @@ , gnused , imagemagick , procps -, xdpyinfo -, xrandr -, xset +, xorg }: stdenv.mkDerivation rec { @@ -38,7 +36,7 @@ stdenv.mkDerivation rec { mkdir -p $out/bin cp betterlockscreen $out/bin/betterlockscreen wrapProgram "$out/bin/betterlockscreen" \ - --prefix PATH : "$out/bin:${lib.makeBinPath [ bc coreutils dbus dunst i3lock-color gawk gnugrep gnused imagemagick procps xdpyinfo xrandr xset ]}" + --prefix PATH : "$out/bin:${lib.makeBinPath [ bc coreutils dbus dunst i3lock-color gawk gnugrep gnused imagemagick procps xorg.xdpyinfo xorg.xrandr xorg.xset ]}" runHook postInstall ''; diff --git a/pkgs/os-specific/darwin/macfuse/default.nix b/pkgs/os-specific/darwin/macfuse/default.nix index 4fd92a15562..c63b536f248 100644 --- a/pkgs/os-specific/darwin/macfuse/default.nix +++ b/pkgs/os-specific/darwin/macfuse/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "macfuse-stubs"; - version = "4.1.0"; + version = "4.4.1"; src = fetchurl { url = "https://github.com/osxfuse/osxfuse/releases/download/macfuse-${version}/macfuse-${version}.dmg"; - sha256 = "118hg64w5wb95lbxw6w1hbqxrx3plcbxfjhvxx86q0zx0saa9diw"; + sha256 = "2a2d0f37ec5fcff547c5efa7d08539103a0b46bc16080c2b41a7e749f6e65c61"; }; nativeBuildInputs = [ cpio xar undmg libtapi ]; diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index c9e600657bf..34d6a387480 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -12,51 +12,51 @@ "4.19": { "patch": { "extra": "-hardened1", - "name": "linux-hardened-4.19.260-hardened1.patch", - "sha256": "08b3kk5m12yqq12ik1d9zxaga2pzw2znzcwh9ymk6i9b8y5f3bsm", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.260-hardened1/linux-hardened-4.19.260-hardened1.patch" + "name": "linux-hardened-4.19.261-hardened1.patch", + "sha256": "1hs9jg2n9i89li0p1mbkfhy8r5pv5wrl3gw3b3xvp0n8283cy631", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.261-hardened1/linux-hardened-4.19.261-hardened1.patch" }, - "sha256": "1vlhaapbkvvk2acw1i5f6v6gd8v0x37n1y3i066cddl90my6yl24", - "version": "4.19.260" + "sha256": "1cicb3zydpka9yjx875hbh305bsdvni2kp674pkvaw04pnc35hxy", + "version": "4.19.261" }, "5.10": { "patch": { - "extra": "-hardened1", - "name": "linux-hardened-5.10.146-hardened1.patch", - "sha256": "1ah8p0iy4cqjhmjd1zxqvspihx0wkj515ggca65rjrpmfr05f2ll", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.146-hardened1/linux-hardened-5.10.146-hardened1.patch" + "extra": "-hardened2", + "name": "linux-hardened-5.10.147-hardened2.patch", + "sha256": "0j44mfyc66vq6hncc5w3mxxw8jcpa66w4w40d3wm7ka6yr6p34sh", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.147-hardened2/linux-hardened-5.10.147-hardened2.patch" }, - "sha256": "1hbdxvlibp9w0q8bk1zlx77ayq2wcld8rjm134ybgbcf4zrrggbv", - "version": "5.10.146" + "sha256": "16pdpjmvrdml7am7s2kydrif1l7f4aq0wh4ak0xh3dby16zkl9c5", + "version": "5.10.147" }, "5.15": { "patch": { - "extra": "-hardened1", - "name": "linux-hardened-5.15.71-hardened1.patch", - "sha256": "0yfvwivjj8swc4l0ngq4x1104jpfmzj9cb4pvxsagkkf8dwfvqc6", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.71-hardened1/linux-hardened-5.15.71-hardened1.patch" + "extra": "-hardened3", + "name": "linux-hardened-5.15.73-hardened3.patch", + "sha256": "1p4cm1viyryf4npbfvg72a4kpqs22vqvfqj2hl6pq5wrpgg677g0", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.73-hardened3/linux-hardened-5.15.73-hardened3.patch" }, - "sha256": "0lqy3nmhij6sb4963kb5dhvfdx46mg79hp81kq10wv01iq9hhm2z", - "version": "5.15.71" + "sha256": "0pbi640llcdbx57vwwzc5axa75w0y5rixa9r752h725f4naz08m8", + "version": "5.15.73" }, "5.19": { "patch": { - "extra": "-hardened1", - "name": "linux-hardened-5.19.12-hardened1.patch", - "sha256": "157m9mkdqpm01rzwsgdcv88z51642fp3v0h5q0mafg4ph4afd7pg", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.19.12-hardened1/linux-hardened-5.19.12-hardened1.patch" + "extra": "-hardened2", + "name": "linux-hardened-5.19.15-hardened2.patch", + "sha256": "12si2gy6maxbvf252ircp94ci0ihqlxv3l9sf4xwxrs66gn3z2fa", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.19.15-hardened2/linux-hardened-5.19.15-hardened2.patch" }, - "sha256": "1fmhwbgqpr6q3z3ygys153szivlmv3mcnwilbbyfcb1iqx4aadn4", - "version": "5.19.12" + "sha256": "06zband5q6m9imyvn4y4naafdakjcj00rg23227cagnv8wwf71j6", + "version": "5.19.15" }, "5.4": { "patch": { - "extra": "-hardened1", - "name": "linux-hardened-5.4.215-hardened1.patch", - "sha256": "1xfyvppf16y7bjmjkhpps9vp4zw2dcrk18kajj1lkzhh441y1g94", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.215-hardened1/linux-hardened-5.4.215-hardened1.patch" + "extra": "-hardened2", + "name": "linux-hardened-5.4.217-hardened2.patch", + "sha256": "16hcwjll5dkfc8sb81w3dipqx9j1np91f5gad45b0xfcnqcn70ab", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.217-hardened2/linux-hardened-5.4.217-hardened2.patch" }, - "sha256": "1gafnf9gbsfzvp9jq6y8qhpvas5cv9y0m9bad2sg55sjlb1zfard", - "version": "5.4.215" + "sha256": "0qrfrk0g1dky5apg8gdxczj2ir0g0z41zmdmbwwcxkxjz76jdf1b", + "version": "5.4.217" } } diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix index febd6664956..be2e09bc6a3 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.10.147"; + version = "5.10.148"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "16pdpjmvrdml7am7s2kydrif1l7f4aq0wh4ak0xh3dby16zkl9c5"; + sha256 = "0mp9qs8f50hxf72b6cgh8izkyjbhrrmij6slxja701i1w9mkylhj"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix index 7ae1f282256..0bab77b4ade 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.15.72"; + version = "5.15.74"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1aq75z2spa1jvxv9m89gsaxza29n25k8j1f0pg9yj6j7bcxk5430"; + sha256 = "0ra2ijpw7w07gm3kjwyszlwfq2rbnmq84z50qhv5r0svz2i3j59c"; }; } // (args.argsOverride or { })) diff --git a/pkgs/os-specific/linux/kernel/linux-5.19.nix b/pkgs/os-specific/linux/kernel/linux-5.19.nix index 06041ed9450..4dc67c2b90c 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.19.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.19.14"; + version = "5.19.16"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1h8srn3fw4vw61qi0xxlk9fq0fqq4wl7fbrzz7sivdd8qkhjgv8x"; + sha256 = "13g0c6ljxk3sd0ja39ndih5vrzp2ssj78qxaf8nswn8hgrkazsx1"; }; } // (args.argsOverride or { })) diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix index 41e925a9d25..a39e28bfc91 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.4.216"; + version = "5.4.218"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "19vyxa0yzdf4w48jamjfz6kpiaaa7mjjz5gs2awckzilfc0n4pyf"; + sha256 = "0f7lm5qq763zrnwwq9jmfpgvskhzi3gwy5rbq2q7gmiphl179p9x"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-6.0.nix b/pkgs/os-specific/linux/kernel/linux-6.0.nix index b099c5dc140..27f8166ecef 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.0.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.0.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.0"; + version = "6.0.2"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "13kqh7yhifwz5dmd3ky0b3mzbh9r0nmjfp5mxy42drcdafjl692w"; + sha256 = "17awx4c5fz7f656ig5bydccci052jsai0lczrn2bdk5cihw2cg51"; }; } // (args.argsOverride or { })) diff --git a/pkgs/servers/dendrite/default.nix b/pkgs/servers/dendrite/default.nix index 38626c52c9e..b65bdf15bdb 100644 --- a/pkgs/servers/dendrite/default.nix +++ b/pkgs/servers/dendrite/default.nix @@ -14,6 +14,26 @@ buildGoModule rec { vendorSha256 = "sha256-p1UmHIM4h6oe5PRSPD8rtEJpwypTxN1IHzge0Me/9mQ="; + subPackages = [ + # The server as a monolith: https://matrix-org.github.io/dendrite/installation/install/monolith + "cmd/dendrite-monolith-server" + # The server as a polylith: https://matrix-org.github.io/dendrite/installation/install/polylith + "cmd/dendrite-polylith-multi" + # admin tools + "cmd/create-account" + "cmd/generate-config" + "cmd/generate-keys" + "cmd/resolve-state" + ## curl, but for federation requests, only useful for developers + # "cmd/furl" + ## an internal tool for upgrading ci tests, only relevant for developers + # "cmd/dendrite-upgrade-tests" + ## tech demos + # "cmd/dendrite-demo-pinecone" + # "cmd/dendrite-demo-yggdrasil" + # "cmd/dendritejs-pinecone" + ]; + checkInputs = [ postgresqlTestHook postgresql diff --git a/pkgs/servers/mail/vsmtp/default.nix b/pkgs/servers/mail/vsmtp/default.nix new file mode 100644 index 00000000000..0bbebc66930 --- /dev/null +++ b/pkgs/servers/mail/vsmtp/default.nix @@ -0,0 +1,50 @@ +{ lib +, stdenv +, rustPlatform +, fetchFromGitHub +, pkg-config +, installShellFiles +, openssl +, testers +, vsmtp +}: + +rustPlatform.buildRustPackage rec { + pname = "vsmtp"; + version = "1.3.3"; + + src = fetchFromGitHub { + owner = "viridIT"; + repo = "vsmtp"; + rev = "v${version}"; + hash = "sha256-nBkfIjACmjnVNF3hJ22B4ecjWrX9licV7c8Yxv2tQCg="; + }; + + cargoHash = "sha256-HqQ8WD1/K7xMx97SbuP45Q/+4oADh1WZFJPXB8wlkbM="; + + nativeBuildInputs = [ pkg-config installShellFiles ]; + buildInputs = [ openssl ]; + + cargoBuildFlags = [ + "--package" + "vsmtp" + "--package" + "vqueue" + ]; + + postInstall = '' + installManPage tools/install/man/*.1 + ''; + + passthru = { + tests.version = testers.testVersion { package = vsmtp; version = "v${version}"; }; + }; + + meta = with lib; { + description = "A next-gen mail transfer agent (MTA) written in Rust"; + homepage = "https://viridit.com"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nickcao ]; + }; +} diff --git a/pkgs/servers/nosql/influxdb2/default.nix b/pkgs/servers/nosql/influxdb2/default.nix index cca0ab5153e..ce010f30622 100644 --- a/pkgs/servers/nosql/influxdb2/default.nix +++ b/pkgs/servers/nosql/influxdb2/default.nix @@ -79,12 +79,19 @@ in buildGoModule { version = version; src = src; - nativeBuildInputs = [ go-bindata pkg-config ]; + nativeBuildInputs = [ go-bindata pkg-config perl ]; vendorSha256 = "sha256-DZsd6qPKfRbnvz0UAww+ubaeTEqQxLeil1S3SZAmmJk="; subPackages = [ "cmd/influxd" "cmd/telemetryd" ]; PKG_CONFIG_PATH = "${flux}/pkgconfig"; + + postPatch = '' + # use go-bindata from environment + substituteInPlace static/static.go \ + --replace 'go run github.com/kevinburke/go-bindata/' "" + ''; + # Check that libflux and the UI are at the right version, and embed # the UI assets into the Go source tree. preBuild = '' @@ -95,7 +102,7 @@ in buildGoModule { exit 1 fi - ui_ver=$(egrep 'influxdata/ui/releases/.*/sha256.txt' scripts/fetch-ui-assets.sh | ${perl}/bin/perl -pe 's#.*/OSS-([^/]+)/.*#$1#') + ui_ver=$(egrep 'influxdata/ui/releases/.*/sha256.txt' scripts/fetch-ui-assets.sh | perl -pe 's#.*/OSS-([^/]+)/.*#$1#') if [ "$ui_ver" != "${ui_version}" ]; then echo "scripts/fetch-ui-assets.sh wants UI $ui_ver, but nix derivation provides ${ui_version}" exit 1 diff --git a/pkgs/servers/ser2net/default.nix b/pkgs/servers/ser2net/default.nix index 4ebe1d54387..f518531f668 100644 --- a/pkgs/servers/ser2net/default.nix +++ b/pkgs/servers/ser2net/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "ser2net"; - version = "4.3.7"; + version = "4.3.8"; src = fetchFromGitHub { owner = "cminyard"; repo = pname; rev = "v${version}"; - hash = "sha256-5/gdKueqWKEhHDho+q719J6lQt4XG9JExWef5/Y3y1s="; + hash = "sha256-lJI7TPzV1beZFN6SinjdJ1HqlVX61aWZ281rf3AFpNk="; }; passthru = { diff --git a/pkgs/servers/sql/postgresql/ext/plv8.nix b/pkgs/servers/sql/postgresql/ext/plv8.nix deleted file mode 100644 index ca0dcea8435..00000000000 --- a/pkgs/servers/sql/postgresql/ext/plv8.nix +++ /dev/null @@ -1,87 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, v8, perl, postgresql -# For test -, runCommand, coreutils, gnugrep }: - -let self = stdenv.mkDerivation rec { - pname = "plv8"; - version = "3.0.0"; - - nativeBuildInputs = [ perl ]; - buildInputs = [ v8 postgresql ]; - - src = fetchFromGitHub { - owner = "plv8"; - repo = "plv8"; - rev = "v${version}"; - sha256 = "KJz8wnGcTXnVn6umpP+UquuJTtQrkBTJ33rB/JIH4kU="; - }; - - makefile = "Makefile.shared"; - - buildFlags = [ "all" ]; - - makeFlags = [ - # Nixpkgs build a v8 monolith instead of separate v8_libplatform. - "V8_OUTDIR=${v8}/lib" - ]; - - installFlags = [ - # PGXS only supports installing to postgresql prefix so we need to redirect this - "DESTDIR=${placeholder "out"}" - ]; - - preConfigure = '' - # We build V8 as a monolith, so this is unnecessary. - substituteInPlace Makefile.shared --replace "-lv8_libplatform" "" - patchShebangs ./generate_upgrade.sh - substituteInPlace generate_upgrade.sh \ - --replace " 2.3.10)" " 2.3.10 2.3.11 2.3.12 2.3.13 2.3.14 2.3.15)" - ''; - - postInstall = '' - # Move the redirected to proper directory. - # There appear to be no references to the install directories - # so changing them does not cause issues. - mv "$out/nix/store"/*/* "$out" - rmdir "$out/nix/store"/* "$out/nix/store" "$out/nix" - ''; - - NIX_CFLAGS_COMPILE = [ - # V8 depends on C++14. - "-std=c++14" - # Without this, PostgreSQL will crash at runtime. - # The flags are only included in Makefile, not Makefile.shared. - # https://github.com/plv8/plv8/pull/469 - "-DJSONB_DIRECT_CONVERSION" "-DV8_COMPRESS_POINTERS=1" "-DV8_31BIT_SMIS_ON_64BIT_ARCH=1" - ]; - - passthru.tests.smoke = runCommand "${pname}-test" {} '' - export PATH=${lib.makeBinPath [ (postgresql.withPackages (_: [self])) coreutils gnugrep ]} - db="$PWD/testdb" - initdb "$db" - postgres -k "$db" -D "$db" & - pid="$!" - - for i in $(seq 1 100); do - if psql -h "$db" -d postgres -c "" 2>/dev/null; then - break - elif ! kill -0 "$pid"; then - exit 1 - else - sleep 0.1 - fi - done - - psql -h "$db" -d postgres -c 'CREATE EXTENSION plv8; DO $$ plv8.elog(NOTICE, plv8.version); $$ LANGUAGE plv8;' 2> "$out" - grep -q "${version}" "$out" - kill -0 "$pid" - ''; - - meta = with lib; { - description = "V8 Engine Javascript Procedural Language add-on for PostgreSQL"; - homepage = "https://plv8.github.io/"; - maintainers = with maintainers; [ marsam ]; - platforms = [ "x86_64-linux" ]; - license = licenses.postgresql; - }; -}; in self diff --git a/pkgs/servers/sql/postgresql/ext/plv8/0001-build-Allow-using-V8-from-system.patch b/pkgs/servers/sql/postgresql/ext/plv8/0001-build-Allow-using-V8-from-system.patch new file mode 100644 index 00000000000..74e4eb1922d --- /dev/null +++ b/pkgs/servers/sql/postgresql/ext/plv8/0001-build-Allow-using-V8-from-system.patch @@ -0,0 +1,47 @@ +diff --git a/Makefile b/Makefile +index 38879cc..6e78eeb 100644 +--- a/Makefile ++++ b/Makefile +@@ -20,6 +20,7 @@ OBJS = $(SRCS:.cc=.o) + MODULE_big = plv8-$(PLV8_VERSION) + EXTENSION = plv8 + PLV8_DATA = plv8.control plv8--$(PLV8_VERSION).sql $(wildcard upgrade/*.sql) ++USE_SYSTEM_V8 = 0 + + + # Platform detection +@@ -41,6 +42,7 @@ PGXS := $(shell $(PG_CONFIG) --pgxs) + PG_VERSION_NUM := $(shell cat `$(PG_CONFIG) --includedir-server`/pg_config*.h \ + | perl -ne 'print $$1 and exit if /PG_VERSION_NUM\s+(\d+)/') + ++ifeq ($(USE_SYSTEM_V8),0) + AUTOV8_DIR = build/v8 + AUTOV8_OUT = build/v8/out.gn/obj + AUTOV8_STATIC_LIBS = -lv8_libplatform -lv8_libbase +@@ -66,6 +68,7 @@ v8: + make -f Makefiles/Makefile.macos v8 + endif + endif ++endif + + # enable direct jsonb conversion by default + CCFLAGS += -DJSONB_DIRECT_CONVERSION +@@ -83,6 +86,7 @@ ifdef BIGINT_GRACEFUL + endif + + ++ifeq ($(USE_SYSTEM_V8),0) + # We're gonna build static link. Rip it out after include Makefile + SHLIB_LINK := $(filter-out -lv8, $(SHLIB_LINK)) + +@@ -101,6 +105,7 @@ else + SHLIB_LINK += -lrt -std=c++14 + endif + endif ++endif + + DATA = $(PLV8_DATA) + ifndef DISABLE_DIALECT +-- +2.37.3 + diff --git a/pkgs/servers/sql/postgresql/ext/plv8/default.nix b/pkgs/servers/sql/postgresql/ext/plv8/default.nix new file mode 100644 index 00000000000..931a5deb40f --- /dev/null +++ b/pkgs/servers/sql/postgresql/ext/plv8/default.nix @@ -0,0 +1,142 @@ +{ stdenv +, lib +, fetchFromGitHub +, v8 +, perl +, postgresql +# For test +, runCommand +, coreutils +, gnugrep +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "plv8"; + version = "3.1.4"; + + src = fetchFromGitHub { + owner = "plv8"; + repo = "plv8"; + rev = "v${finalAttrs.version}"; + sha256 = "GoPP2nAeDItBt3Lug49s+brD0gIy3iDlJpbyHRuMcZ4="; + }; + + patches = [ + # Allow building with system v8. + # https://github.com/plv8/plv8/pull/505 (rejected) + ./0001-build-Allow-using-V8-from-system.patch + ]; + + nativeBuildInputs = [ + perl + ]; + + buildInputs = [ + v8 + postgresql + ]; + + buildFlags = [ "all" ]; + + makeFlags = [ + # Nixpkgs build a v8 monolith instead of separate v8_libplatform. + "USE_SYSTEM_V8=1" + "SHLIB_LINK=-lv8" + "V8_OUTDIR=${v8}/lib" + ]; + + installFlags = [ + # PGXS only supports installing to postgresql prefix so we need to redirect this + "DESTDIR=${placeholder "out"}" + ]; + + # No configure script. + dontConfigure = true; + + postPatch = '' + patchShebangs ./generate_upgrade.sh + # https://github.com/plv8/plv8/pull/506 + substituteInPlace generate_upgrade.sh \ + --replace " 2.3.10 " " 2.3.10 2.3.11 2.3.12 2.3.13 2.3.14 2.3.15 " + ''; + + postInstall = '' + # Move the redirected to proper directory. + # There appear to be no references to the install directories + # so changing them does not cause issues. + mv "$out/nix/store"/*/* "$out" + rmdir "$out/nix/store"/* "$out/nix/store" "$out/nix" + ''; + + passthru = { + tests = + let + postgresqlWithSelf = postgresql.withPackages (_: [ + finalAttrs.finalPackage + ]); + in { + smoke = runCommand "plv8-smoke-test" {} '' + export PATH=${lib.makeBinPath [ + postgresqlWithSelf + coreutils + gnugrep + ]} + db="$PWD/testdb" + initdb "$db" + postgres -k "$db" -D "$db" & + pid="$!" + + for i in $(seq 1 100); do + if psql -h "$db" -d postgres -c "" 2>/dev/null; then + break + elif ! kill -0 "$pid"; then + exit 1 + else + sleep 0.1 + fi + done + + psql -h "$db" -d postgres -c 'CREATE EXTENSION plv8; DO $$ plv8.elog(NOTICE, plv8.version); $$ LANGUAGE plv8;' 2> "$out" + grep -q "${finalAttrs.version}" "$out" + kill -0 "$pid" + ''; + + regression = stdenv.mkDerivation { + name = "plv8-regression"; + inherit (finalAttrs) src patches nativeBuildInputs buildInputs dontConfigure; + + buildPhase = '' + runHook preBuild + + # The regression tests need to be run in the order specified in the Makefile. + echo -e "include Makefile\nprint_regress_files:\n\t@echo \$(REGRESS)" > Makefile.regress + REGRESS_TESTS=$(make -f Makefile.regress print_regress_files) + + ${postgresql}/lib/pgxs/src/test/regress/pg_regress \ + --bindir='${postgresqlWithSelf}/bin' \ + --temp-instance=regress-instance \ + --dbname=contrib_regression \ + $REGRESS_TESTS + + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + + touch "$out" + + runHook postInstall + ''; + }; + }; + }; + + meta = with lib; { + description = "V8 Engine Javascript Procedural Language add-on for PostgreSQL"; + homepage = "https://plv8.github.io/"; + maintainers = with maintainers; [ marsam ]; + platforms = [ "x86_64-linux" ]; + license = licenses.postgresql; + }; +}) diff --git a/pkgs/servers/sql/postgresql/packages.nix b/pkgs/servers/sql/postgresql/packages.nix index 59a06ac11d4..ee2dc04d05c 100644 --- a/pkgs/servers/sql/postgresql/packages.nix +++ b/pkgs/servers/sql/postgresql/packages.nix @@ -32,7 +32,7 @@ self: super: { plr = super.callPackage ./ext/plr.nix { }; - plv8 = super.callPackage ./ext/plv8.nix { + plv8 = super.callPackage ./ext/plv8 { v8 = self.v8_8_x; }; diff --git a/pkgs/shells/zsh/grml-zsh-config/default.nix b/pkgs/shells/zsh/grml-zsh-config/default.nix index 7adf4f44ee3..18c4eef4800 100644 --- a/pkgs/shells/zsh/grml-zsh-config/default.nix +++ b/pkgs/shells/zsh/grml-zsh-config/default.nix @@ -5,13 +5,13 @@ with lib; stdenv.mkDerivation rec { pname = "grml-zsh-config"; - version = "0.19.3"; + version = "0.19.4"; src = fetchFromGitHub { owner = "grml"; repo = "grml-etc-core"; rev = "v${version}"; - sha256 = "sha256-/WNBZcLGtlAsPKQpV8AMFgZZVHc2yMlCbvGmbH4BLfY="; + sha256 = "sha256-2TAhs2/yAVAU35IeVfT/68xLt9QZ4fLxMQjxnbCfBKs="; }; strictDeps = true; diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index 18609c78e33..1518b2a2b84 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -5,15 +5,15 @@ , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }: stdenv.mkDerivation rec { - version = "2022-10-12"; + version = "2022-10-14"; pname = "oh-my-zsh"; - rev = "b9be3a43b4da579299b4426b1ba9121f746e2555"; + rev = "65a1e4edbe678cdac37ad96ca4bc4f6d77e27adf"; src = fetchFromGitHub { inherit rev; owner = "ohmyzsh"; repo = "ohmyzsh"; - sha256 = "KKvIYEYh8wpgil8d+Uf9M7uk0etPMOtrTjESa2hwJu4="; + sha256 = "qyI7CU0vKhhADZfQtD73GsyAbqdMPhDQ1uA03h4erpw="; }; strictDeps = true; diff --git a/pkgs/stdenv/generic/check-meta.nix b/pkgs/stdenv/generic/check-meta.nix index 7b06692ac8c..ce39130d315 100644 --- a/pkgs/stdenv/generic/check-meta.nix +++ b/pkgs/stdenv/generic/check-meta.nix @@ -16,8 +16,11 @@ let allowUnfree = config.allowUnfree || builtins.getEnv "NIXPKGS_ALLOW_UNFREE" == "1"; - allowNonSource = config.allowNonSource or true - && builtins.getEnv "NIXPKGS_ALLOW_NONSOURCE" != "0"; + allowNonSource = let + envVar = builtins.getEnv "NIXPKGS_ALLOW_NONSOURCE"; + in if envVar != "" + then envVar != "0" + else config.allowNonSource or true; allowlist = config.allowlistedLicenses or config.whitelistedLicenses or []; blocklist = config.blocklistedLicenses or config.blacklistedLicenses or []; diff --git a/pkgs/tools/X11/sx/default.nix b/pkgs/tools/X11/sx/default.nix index 1b04bb8876d..faddc748680 100644 --- a/pkgs/tools/X11/sx/default.nix +++ b/pkgs/tools/X11/sx/default.nix @@ -3,8 +3,7 @@ , coreutils , fetchFromGitHub , resholve -, xauth -, xorgserver +, xorg }: resholve.mkDerivation rec { @@ -26,11 +25,11 @@ resholve.mkDerivation rec { interpreter = "${bash}/bin/sh"; inputs = [ coreutils - xauth - xorgserver + xorg.xauth + xorg.xorgserver ]; execer = [ - "cannot:${xorgserver}/bin/Xorg" + "cannot:${xorg.xorgserver}/bin/Xorg" ]; }; }; diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix index f62f1c4c687..db993c04966 100644 --- a/pkgs/tools/admin/eksctl/default.nix +++ b/pkgs/tools/admin/eksctl/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "eksctl"; - version = "0.114.0"; + version = "0.115.0"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; - sha256 = "sha256-m1R6g9KgbbdlBg7p1gVWpSu02azaqg7bQsFQ4gQB2hM="; + sha256 = "sha256-IIxg0xaRfd7jKS4AkSFHcObQmKSRCnQ+K68by8aZlAc="; }; vendorSha256 = "sha256-glMu2GwMWsuIjLjCwskH90wn690tosLTCThd4LUZobo="; diff --git a/pkgs/tools/backup/borgbackup/default.nix b/pkgs/tools/backup/borgbackup/default.nix index adfd0b42e39..9bc3dfefd4a 100644 --- a/pkgs/tools/backup/borgbackup/default.nix +++ b/pkgs/tools/backup/borgbackup/default.nix @@ -122,6 +122,6 @@ python3.pkgs.buildPythonApplication rec { license = licenses.bsd3; platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage mainProgram = "borg"; - maintainers = with maintainers; [ flokli dotlambda globin ]; + maintainers = with maintainers; [ dotlambda globin ]; }; } diff --git a/pkgs/tools/compression/mozlz4a/default.nix b/pkgs/tools/compression/mozlz4a/default.nix index 44c75436908..2116fa45c3e 100644 --- a/pkgs/tools/compression/mozlz4a/default.nix +++ b/pkgs/tools/compression/mozlz4a/default.nix @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { meta = { description = "A script to handle Mozilla's mozlz4 files"; license = lib.licenses.bsd2; - maintainers = [lib.maintainers.raskin]; - platforms = lib.platforms.linux; + maintainers = [lib.maintainers.raskin lib.maintainers.pshirshov lib.maintainers.kira-bruneau]; + platforms = lib.platforms.unix; homepage = "https://gist.githubusercontent.com/Tblue/62ff47bef7f894e92ed5"; }; } diff --git a/pkgs/tools/filesystems/cryfs/default.nix b/pkgs/tools/filesystems/cryfs/default.nix index 4f26fc11a26..69dab5554ea 100644 --- a/pkgs/tools/filesystems/cryfs/default.nix +++ b/pkgs/tools/filesystems/cryfs/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "cryfs"; - version = "0.11.2"; + version = "0.11.3"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - hash = "sha256-NV2xCC8TaJaWDZSghO8EFuygL8hJLOdx67BWaJ2NKRw="; + hash = "sha256-7luTCDjrquG8aBZ841VPwV9/ea8faHGLQtmRahqGTss="; }; postPatch = '' diff --git a/pkgs/tools/filesystems/httm/default.nix b/pkgs/tools/filesystems/httm/default.nix index c5089515db4..4cb50a0b422 100644 --- a/pkgs/tools/filesystems/httm/default.nix +++ b/pkgs/tools/filesystems/httm/default.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "httm"; - version = "0.14.10"; + version = "0.15.2"; src = fetchFromGitHub { owner = "kimono-koans"; repo = pname; rev = version; - sha256 = "sha256-izJMypTB7JCvSdTbsS85ez9HL7hM8DtPvnPXA0MvQC8="; + sha256 = "sha256-VCKdGFOjVIrXMIuv0yA7SZU2tYvT7WNYCXKY3Mo4nus="; }; - cargoSha256 = "sha256-3B1+pV7FyOD/e9fIKiAheIbb1vSFooc2qdnbL7LmzdQ="; + cargoSha256 = "sha256-wY5ouCel624nlG9OysqHgoWhJ1FHUjF4B6vFfOfCxgk="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/filesystems/juicefs/default.nix b/pkgs/tools/filesystems/juicefs/default.nix index 39268c3ed98..7418e858b20 100644 --- a/pkgs/tools/filesystems/juicefs/default.nix +++ b/pkgs/tools/filesystems/juicefs/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "juicefs"; - version = "1.0.0"; + version = "1.0.2"; src = fetchFromGitHub { owner = "juicedata"; repo = pname; rev = "v${version}"; - sha256 = "sha256-urhm2dnWIbzt1mSFDsmqJe61E6D6FWRUG6CJPy/ExOI="; + sha256 = "sha256-JxN8p/935k+mWkGNSKrI7jCTxcGs5TcUXcmkDjwnzZg="; }; - vendorSha256 = "sha256-LvF/6YA/OVO2cyBM1c3YYhEjT26SVXcsepn+vglRKmE="; + vendorSha256 = "sha256-rYyzy6UQQu8q+ei4GAEEq+JPhAAUvHcRpIzNts150OA="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/graphics/gromit-mpx/default.nix b/pkgs/tools/graphics/gromit-mpx/default.nix index 122dfe8a8bf..f4d9e5b3c91 100644 --- a/pkgs/tools/graphics/gromit-mpx/default.nix +++ b/pkgs/tools/graphics/gromit-mpx/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchFromGitHub, cmake, pkg-config -, gtk, glib, pcre, libappindicator, libpthreadstubs, libXdmcp +, gtk, glib, pcre, libappindicator, libpthreadstubs, xorg , libxkbcommon, libepoxy, at-spi2-core, dbus, libdbusmenu , wrapGAppsHook }: @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ]; buildInputs = [ gtk glib pcre libappindicator libpthreadstubs - libXdmcp libxkbcommon libepoxy at-spi2-core + xorg.libXdmcp libxkbcommon libepoxy at-spi2-core dbus libdbusmenu ]; diff --git a/pkgs/tools/inputmethods/m17n-lib/otf.nix b/pkgs/tools/inputmethods/m17n-lib/otf.nix index b0d30a58d48..d700dfb3ebd 100644 --- a/pkgs/tools/inputmethods/m17n-lib/otf.nix +++ b/pkgs/tools/inputmethods/m17n-lib/otf.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, fetchpatch, pkg-config, autoreconfHook, libXaw, freetype }: +{ lib, stdenv, fetchurl, fetchpatch, pkg-config, autoreconfHook, xorg, freetype }: stdenv.mkDerivation rec { pname = "libotf"; @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config autoreconfHook ]; - buildInputs = [ libXaw freetype ]; + buildInputs = [ xorg.libXaw freetype ]; outputs = [ "out" "dev" ]; diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix index be80dd4c22a..3f68dfb2587 100644 --- a/pkgs/tools/misc/broot/default.nix +++ b/pkgs/tools/misc/broot/default.nix @@ -9,7 +9,7 @@ , oniguruma , libiconv , Security -, libxcb +, xorg , zlib }: @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - buildInputs = [ libgit2 oniguruma libxcb ] ++ lib.optionals stdenv.isDarwin [ + buildInputs = [ libgit2 oniguruma xorg.libxcb ] ++ lib.optionals stdenv.isDarwin [ libiconv Security zlib diff --git a/pkgs/tools/misc/nginx-config-formatter/default.nix b/pkgs/tools/misc/nginx-config-formatter/default.nix index fb5412a5866..9d5f9c445b4 100644 --- a/pkgs/tools/misc/nginx-config-formatter/default.nix +++ b/pkgs/tools/misc/nginx-config-formatter/default.nix @@ -1,14 +1,14 @@ { lib, stdenv, fetchFromGitHub, python3 }: -stdenv.mkDerivation { - version = "2019-02-13"; +stdenv.mkDerivation rec { + version = "1.2.2"; pname = "nginx-config-formatter"; src = fetchFromGitHub { - owner = "1connect"; + owner = "slomkowski"; repo = "nginx-config-formatter"; - rev = "4ea6bbc1bdeb1d28419548aeca90f323e64e0e05"; - sha256 = "0h6pj9i0wim9pzkafi92l1nhlnl2a530vnm7qqi3n2ra8iwfyw4f"; + rev = "v${version}"; + sha256 = "sha256-EUoOfkoVsNpIAwDaQ4NH8MkRIJZI8qeuuHUDE6LuLiI="; }; buildInputs = [ python3 ]; @@ -27,6 +27,6 @@ stdenv.mkDerivation { description = "nginx config file formatter"; maintainers = with maintainers; [ Baughn ]; license = licenses.asl20; - homepage = "https://github.com/1connect/nginx-config-formatter"; + homepage = "https://github.com/slomkowski/nginx-config-formatter"; }; } diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix index 42f44c356e8..6d1ca41e937 100644 --- a/pkgs/tools/misc/ostree/default.nix +++ b/pkgs/tools/misc/ostree/default.nix @@ -43,13 +43,13 @@ let ])); in stdenv.mkDerivation rec { pname = "ostree"; - version = "2022.5"; + version = "2022.6"; outputs = [ "out" "dev" "man" "installedTests" ]; src = fetchurl { url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz"; - sha256 = "sha256-kUxNmTvBEdfdMK6XIbb/6KtW6x/W6BsJewn0AMwbBT8="; + sha256 = "sha256-g170fZoLNaEMd//X8PvS4rh/fMy1iNonRCoF/3H/rYw="; }; patches = [ diff --git a/pkgs/tools/misc/silicon/default.nix b/pkgs/tools/misc/silicon/default.nix index ccef6ee293d..e894827ac33 100644 --- a/pkgs/tools/misc/silicon/default.nix +++ b/pkgs/tools/misc/silicon/default.nix @@ -14,22 +14,24 @@ , CoreText , Security , fira-code +, fontconfig +, harfbuzz }: rustPlatform.buildRustPackage rec { pname = "silicon"; - version = "0.4.3"; + version = "0.5.1"; src = fetchFromGitHub { owner = "Aloxaf"; repo = "silicon"; rev = "v${version}"; - sha256 = "sha256-yhs9BEMMFUtptd0cLsaUW02QZVhztvn8cB0nUqPnO+Y="; + sha256 = "sha256-RuzaRJr1n21MbHSeHBt8CjEm5AwbDbvX9Nw5PeBTl+w="; }; - cargoSha256 = "sha256-tj5HPE9EGC7JQ3dyeMPPI0/3r/idrShqfbpnVuaEtDk="; + cargoSha256 = "sha256-q+CoXoNZOxDmEJ+q1vPWxBJsfHQiCxAMlCZo8C49aQA="; - buildInputs = [ llvmPackages.libclang expat freetype fira-code ] + buildInputs = [ llvmPackages.libclang expat freetype fira-code fontconfig harfbuzz ] ++ lib.optionals stdenv.isLinux [ libxcb ] ++ lib.optionals stdenv.isDarwin [ libiconv AppKit CoreText Security ]; @@ -38,10 +40,14 @@ rustPlatform.buildRustPackage rec { LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; + preCheck = '' + export HOME=$TMPDIR + ''; + meta = with lib; { description = "Create beautiful image of your source code"; homepage = "https://github.com/Aloxaf/silicon"; license = with licenses; [ mit /* or */ asl20 ]; - maintainers = with maintainers; [ evanjs ]; + maintainers = with maintainers; [ evanjs _0x4A6F ]; }; } diff --git a/pkgs/tools/misc/starship/default.nix b/pkgs/tools/misc/starship/default.nix index a16440fe4c3..fdee67de119 100644 --- a/pkgs/tools/misc/starship/default.nix +++ b/pkgs/tools/misc/starship/default.nix @@ -14,13 +14,13 @@ rustPlatform.buildRustPackage rec { pname = "starship"; - version = "1.10.3"; + version = "1.11.0"; src = fetchFromGitHub { owner = "starship"; repo = pname; rev = "v${version}"; - sha256 = "sha256-6YpC6JDBYwP+RHQUYXmgOWUWa7DgvjowhGCpr2bNl4Q="; + sha256 = "sha256-90mh8C52uD68K5o1LE22gkbL1gy6FyMJTiiN9oV/3DE="; }; nativeBuildInputs = [ installShellFiles cmake ]; @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/starship completions zsh) ''; - cargoSha256 = "sha256-skNvlifjRHTrJPMjpRv2E+M9/XA+3m6dHbb+gczaYoo="; + cargoSha256 = "sha256-Q1VY9RyHEsQAWRN/upeG5XJxJfrmzj5FQG6GBGrN0xU="; preCheck = '' HOME=$TMPDIR diff --git a/pkgs/tools/misc/tfk8s/default.nix b/pkgs/tools/misc/tfk8s/default.nix index ee403eaa8e0..2fffa2ee8cc 100644 --- a/pkgs/tools/misc/tfk8s/default.nix +++ b/pkgs/tools/misc/tfk8s/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "tfk8s"; - version = "0.1.7"; + version = "0.1.8"; tag = "v${version}"; src = fetchFromGitHub { owner = "jrhouston"; repo = "tfk8s"; rev = tag; - sha256 = "0mkfggwjrsp0rzh7ll6nmp9kqcw4fl8q81vk67z5mbd276dkyxrb"; + sha256 = "sha256-9k/1PZch5qUlCmD7Y1chw2NL6hKV6mUYAHgR7Sbv/qs="; }; - vendorSha256 = "sha256-6sMPpizrjM/UIxrAI2KQJy9uxzsjZGrSlQXjvL4wkQg="; + vendorSha256 = "sha256-eTADcUW9b6l47BkWF9YLxdcgvMbCzWTjLF28FneJHg8="; ldflags = [ "-s" diff --git a/pkgs/tools/misc/trackma/default.nix b/pkgs/tools/misc/trackma/default.nix index ae63230c5e5..e3d6322b85e 100644 --- a/pkgs/tools/misc/trackma/default.nix +++ b/pkgs/tools/misc/trackma/default.nix @@ -24,13 +24,13 @@ let in python3.pkgs.buildPythonApplication rec { pname = "trackma"; - version = "0.8.4"; + version = "0.8.5"; src = fetchFromGitHub { owner = "z411"; repo = "trackma"; rev = "v${version}"; - sha256 = "sha256-drc39ID4WYBQ/L2py57CB5OkQNfRKNigPQW0Lp8GIMc="; + sha256 = "sha256-BjZw/AYFlTYtgJTDFOALHx1d71ZQsYZ2TXnEUeQVvpw="; fetchSubmodules = true; # for anime-relations submodule }; diff --git a/pkgs/tools/misc/wakatime/default.nix b/pkgs/tools/misc/wakatime/default.nix index d06eaeeee5f..556d748e69a 100644 --- a/pkgs/tools/misc/wakatime/default.nix +++ b/pkgs/tools/misc/wakatime/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "wakatime"; - version = "1.55.1"; + version = "1.55.2"; src = fetchFromGitHub { owner = "wakatime"; repo = "wakatime-cli"; rev = "v${version}"; - sha256 = "sha256-kfgMkVhiY/ftRtqT56OPHS+qfhFnNY0EJEbQsF9RvLg="; + sha256 = "sha256-Gp4whRxKhZfs0eFxTTrnrtqJAaWGX4ueKKoLUgbz4Ts="; }; vendorSha256 = "sha256-ANRcgeZYtcWGbK8c9KE8joo97d8LKvKA8/A+/rrjOoM="; diff --git a/pkgs/tools/misc/wootility/default.nix b/pkgs/tools/misc/wootility/default.nix index cb3eeca27af..9ea51471233 100644 --- a/pkgs/tools/misc/wootility/default.nix +++ b/pkgs/tools/misc/wootility/default.nix @@ -1,7 +1,7 @@ { appimageTools , fetchurl , lib -, libxkbfile +, xorg , udev , wooting-udev-rules }: @@ -26,7 +26,7 @@ appimageTools.wrapType2 rec { pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ ([ udev wooting-udev-rules - libxkbfile + xorg.libxkbfile ]); extraInstallCommands = "mv $out/bin/{${name},${pname}}"; diff --git a/pkgs/tools/networking/gupnp-tools/default.nix b/pkgs/tools/networking/gupnp-tools/default.nix index 967bb66256d..95fea4dac0f 100644 --- a/pkgs/tools/networking/gupnp-tools/default.nix +++ b/pkgs/tools/networking/gupnp-tools/default.nix @@ -3,11 +3,11 @@ , fetchurl , meson , ninja -, gupnp -, gssdp +, gupnp_1_6 +, libsoup_3 +, gssdp_1_6 , pkg-config , gtk3 -, libuuid , gettext , gupnp-av , gtksourceview4 @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { pname = "gupnp-tools"; - version = "0.10.3"; + version = "0.12.0"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "RX9Nkjk1sHhBXNK6iNeNtgB5tyWSa37hBuRWXv4yBN4="; + sha256 = "XqdgfuNlZCxVWSf+3FteH+COdPBh0MPrCL2QG16yAII="; }; nativeBuildInputs = [ @@ -33,13 +33,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gupnp - libuuid - gssdp + gupnp_1_6 + libsoup_3 + gssdp_1_6 gtk3 gupnp-av gtksourceview4 - gnome.adwaita-icon-theme ]; passthru = { diff --git a/pkgs/tools/networking/pritunl-client/default.nix b/pkgs/tools/networking/pritunl-client/default.nix new file mode 100644 index 00000000000..ef54fba8a0e --- /dev/null +++ b/pkgs/tools/networking/pritunl-client/default.nix @@ -0,0 +1,27 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "pritunl-client"; + version = "1.3.3300.95"; + + src = fetchFromGitHub { + owner = "pritunl"; + repo = "pritunl-client-electron"; + rev = version; + sha256 = "sha256-kPZFfKdiIq45/uyfsllUJrCphfUV5VX5QwaEg8351GI="; + }; + + modRoot = "cli"; + vendorSha256 = "sha256-fI2RIzvfbqBgchsvY8hsiecXYItM2XX9h8oiP3zmfTA="; + + postInstall = '' + mv $out/bin/cli $out/bin/pritunl-client + ''; + + meta = with lib; { + description = "Pritunl OpenVPN client CLI"; + homepage = "https://github.com/pritunl/pritunl-client-electron/tree/master/cli"; + license = licenses.unfree; + maintainers = with maintainers; [ bigzilla ]; + }; +} diff --git a/pkgs/tools/security/doppler/default.nix b/pkgs/tools/security/doppler/default.nix index badb6659c99..0389ad3c52b 100644 --- a/pkgs/tools/security/doppler/default.nix +++ b/pkgs/tools/security/doppler/default.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "doppler"; - version = "3.44.0"; + version = "3.45.0"; src = fetchFromGitHub { owner = "dopplerhq"; repo = "cli"; rev = version; - sha256 = "sha256-ztkegcsMofCznNQpK8sfXvd+1CTfAs56S0SdbRIPpfE="; + sha256 = "sha256-kQio3l50gjPfywUpeTEt4Xon1p07XpgStNSmICPboXQ="; }; vendorSha256 = "sha256-evG1M0ZHfn9hsMsSncwxF5Hr/VJ7y6Ir0D2gHJaunBo="; diff --git a/pkgs/tools/security/gobuster/default.nix b/pkgs/tools/security/gobuster/default.nix index e11e76cc971..2dda2d59da8 100644 --- a/pkgs/tools/security/gobuster/default.nix +++ b/pkgs/tools/security/gobuster/default.nix @@ -1,20 +1,20 @@ -{ buildGoModule +{ lib +, buildGoModule , fetchFromGitHub -, lib }: buildGoModule rec { pname = "gobuster"; - version = "3.1.0"; + version = "3.2.0"; src = fetchFromGitHub { owner = "OJ"; repo = "gobuster"; rev = "v${version}"; - sha256 = "0nal2g5c6z46x6337yh0s6mqgnsigp91i7mp1l3sa91p5ihk71wr"; + hash = "sha256-rTduDHGo5V40OlBnwncSzCNYGsHg0uXnuI8JSwOqCSY="; }; - vendorSha256 = "1isp2jd6k4ppns5zi9irj09090imnc0xp6vcps135ymgp8qg4163"; + vendorHash = "sha256-OYQTVu3L2VxOMIYKMHmjiPCKU15RopLz0KL5+7Zb9WY="; meta = with lib; { description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers"; diff --git a/pkgs/tools/security/nsjail/default.nix b/pkgs/tools/security/nsjail/default.nix index c86fcb7ace5..59f7a666706 100644 --- a/pkgs/tools/security/nsjail/default.nix +++ b/pkgs/tools/security/nsjail/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { pname = "nsjail"; - version = "3.1"; + version = "3.2"; src = fetchFromGitHub { owner = "google"; repo = "nsjail"; rev = version; fetchSubmodules = true; - sha256 = "sha256-ICJpD7iCT7tLRX+52XvayOUuO1g0L0jQgk60S2zLz6c="; + sha256 = "sha256-SFRnCEPawMKEIdmrOnJ45IIb17W1d4qCceuRdWTDTQU="; }; nativeBuildInputs = [ autoconf bison flex libtool pkg-config which installShellFiles ]; diff --git a/pkgs/tools/security/please/default.nix b/pkgs/tools/security/please/default.nix new file mode 100644 index 00000000000..40640ba4ed8 --- /dev/null +++ b/pkgs/tools/security/please/default.nix @@ -0,0 +1,50 @@ +{ lib +, rustPlatform +, fetchFromGitLab +, installShellFiles +, pam +, nixosTests +}: + +rustPlatform.buildRustPackage rec { + pname = "please"; + version = "0.5.3"; + + src = fetchFromGitLab { + owner = "edneville"; + repo = "please"; + rev = "v${version}"; + hash = "sha256-YL0yKIDoFD6Q5gVXOjHiqH2ub7jlhlE/uDKLK1FlE74="; + }; + + cargoHash = "sha256-noZsnFL6G1KcxGY0sn0PvY5nIdx5aOAMErMViIY/7bE="; + + nativeBuildInputs = [ installShellFiles ]; + + buildInputs = [ pam ]; + + patches = [ ./nixos-specific.patch ]; + + postInstall = '' + installManPage man/* + ''; + + passthru.tests = { inherit (nixosTests) please; }; + + meta = with lib; { + description = "A polite regex-first sudo alternative"; + longDescription = '' + Delegate accurate least privilege access with ease. Express easily with a + regex and expose only what is needed and nothing more. Or validate file + edits with pleaseedit. + + Please is written with memory safe rust. Traditional C memory unsafety is + avoided, logic problems may exist but this codebase is relatively small. + ''; + homepage = "https://www.usenix.org.uk/content/please.html"; + changelog = "https://github.com/edneville/please/blob/${src.rev}/CHANGELOG.md"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ azahi ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/security/please/nixos-specific.patch b/pkgs/tools/security/please/nixos-specific.patch new file mode 100644 index 00000000000..926f815cbfb --- /dev/null +++ b/pkgs/tools/security/please/nixos-specific.patch @@ -0,0 +1,13 @@ +diff --git i/src/lib.rs w/src/lib.rs +index fdd69f2..07c794e 100644 +--- i/src/lib.rs ++++ w/src/lib.rs +@@ -1667,7 +1667,7 @@ pub fn search_path(binary: &str) -> Option { + } + } + +- for dir in "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin".split(':') { ++ for dir in "/run/wrappers/bin:/run/current-system/sw/bin:/run/current-system/sw/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin".split(':') { + let path_name = format!("{}/{}", &dir, &binary); + let p = Path::new(&path_name); + diff --git a/pkgs/tools/security/ruler/default.nix b/pkgs/tools/security/ruler/default.nix new file mode 100644 index 00000000000..b6505533aa8 --- /dev/null +++ b/pkgs/tools/security/ruler/default.nix @@ -0,0 +1,26 @@ +{ lib +, stdenv +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "ruler"; + version = "2.4.1"; + + src = fetchFromGitHub { + owner = "sensepost"; + repo = pname; + rev = version; + hash = "sha256-cEYpK1LB9b65xr6MCMax1vUtSWefjJdXNs4sPgx65d0="; + }; + + vendorHash = "sha256-ITd3cvZmRBWK3922dDRvNHNH8KzHoVfIQI6S318ibxA="; + + meta = with lib; { + description = "Tool to abuse Exchange services"; + homepage = "https://github.com/sensepost/ruler"; + license = with licenses; [ cc-by-nc-40 ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/tools/system/jsvc/default.nix b/pkgs/tools/system/jsvc/default.nix index fe53c368c90..e0c1ebee90b 100644 --- a/pkgs/tools/system/jsvc/default.nix +++ b/pkgs/tools/system/jsvc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "jsvc"; - version = "1.3.1"; + version = "1.3.2"; src = fetchurl { url = "https://downloads.apache.org//commons/daemon/source/commons-daemon-${version}-src.tar.gz"; - sha256 = "sha256-SSc3ocubCfBjZtyUHpCE6rDkF7UtAAWsUIa9fQ1gHts="; + sha256 = "sha256-Xd6J/TOGCDAtBl3baKJnOYnztJH+C+L2+e9RC0BUqEw="; }; buildInputs = [ commonsDaemon ]; diff --git a/pkgs/tools/text/difftastic/default.nix b/pkgs/tools/text/difftastic/default.nix index 305a9c20dde..ec8b44648e2 100644 --- a/pkgs/tools/text/difftastic/default.nix +++ b/pkgs/tools/text/difftastic/default.nix @@ -9,13 +9,13 @@ rustPlatform.buildRustPackage rec { pname = "difftastic"; - version = "0.36.1"; + version = "0.37.0"; src = fetchFromGitHub { owner = "wilfred"; repo = pname; rev = version; - sha256 = "sha256-rBqw79+d14XFrInl++Z5+9jhh95OpYU2TgSQv0y/SU0="; + sha256 = "sha256-LwDoIvhZj/1fHg2eWgadwTcegeOKPpY8aCAugLfKtDE="; }; depsExtraArgs = { @@ -40,7 +40,7 @@ rustPlatform.buildRustPackage rec { popd ''; }; - cargoSha256 = "sha256-soiYqdsBLirJQlVygKgEWGrS+k4NJ7aeIjzgwIbVlew="; + cargoSha256 = "sha256-u4zM4mmYxy1o1FXQ8SjLJB9YFhYI5SbUZH2Wca7Kjmg="; passthru.tests.version = testers.testVersion { package = difftastic; }; diff --git a/pkgs/tools/text/mdcat/default.nix b/pkgs/tools/text/mdcat/default.nix index 87ac39fb56f..0b2a4acd0b5 100644 --- a/pkgs/tools/text/mdcat/default.nix +++ b/pkgs/tools/text/mdcat/default.nix @@ -1,6 +1,6 @@ { lib , stdenv -, fetchFromGitea +, fetchFromGitHub , rustPlatform , pkg-config , asciidoctor @@ -14,9 +14,8 @@ rustPlatform.buildRustPackage rec { pname = "mdcat"; version = "0.28.0"; - src = fetchFromGitea { - domain = "codeberg.org"; - owner = "flausch"; + src = fetchFromGitHub { + owner = "lunaryorn"; repo = "mdcat"; rev = "mdcat-${version}"; sha256 = "sha256-l64gRoWYYLbPA0n6vNQf14CCUtnkfMnQdqbetIbWvBU="; @@ -51,7 +50,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "cat for markdown"; - homepage = "https://codeberg.org/flausch/mdcat"; + homepage = "https://github.com/lunaryorn/mdcat"; license = with licenses; [ mpl20 ]; maintainers = with maintainers; [ SuperSandro2000 ]; }; diff --git a/pkgs/tools/typesetting/mmark/default.nix b/pkgs/tools/typesetting/mmark/default.nix index aefb6e647c8..0513035094b 100644 --- a/pkgs/tools/typesetting/mmark/default.nix +++ b/pkgs/tools/typesetting/mmark/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "mmark"; - version = "2.2.28"; + version = "2.2.30"; src = fetchFromGitHub { owner = "mmarkdown"; repo = "mmark"; rev = "v${version}"; - sha256 = "sha256-3+Wocaoma3dQnrqBcEWcTC+LNmDxssvmiDrir0gANyo="; + sha256 = "sha256-14SGA3a72i+HYptTEpxf4YiLXZzZ1R/t1agvm3ie4g8="; }; - vendorSha256 = "sha256-W1MOjV1P6jV9K6mdj8a+T2UiffgpiOpBKo9BI07UOz0="; + vendorSha256 = "sha256-GjR9cOGLB6URHQi+qcyNbP7rm0+y4wypvgUxgJzIgGQ="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/virtualization/shipyard/default.nix b/pkgs/tools/virtualization/shipyard/default.nix index d0b40266547..b67b6c949d7 100644 --- a/pkgs/tools/virtualization/shipyard/default.nix +++ b/pkgs/tools/virtualization/shipyard/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "shipyard"; - version = "0.4.12"; + version = "0.4.14"; src = fetchFromGitHub { rev = "v${version}"; owner = "shipyard-run"; repo = pname; - sha256 = "sha256-WTmkKWYdPfZGMTPsfzT/H6K+ob5zq5akTqf3viNfcW8="; + sha256 = "sha256-uXpFLUTRm0urNd9dAUGqoC3vRkTvZd2kG+C9NkXFt/4="; }; vendorSha256 = "sha256-ATXM3+mi/R+/jS6Ds89J75nDVnc3d8iOGhjD3KQZkkA="; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index b90704a1618..3be29c104b1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -49,7 +49,7 @@ mapAliases ({ forceSystem = system: _: (import self.path { localSystem = { inherit system; }; }); - _0x0 = throw "0x0 upstream is abandoned and no longer exists: https://gitlab.com/somasis/scripts/"; # Added 2021-12-03 + _0x0 = throw "0x0 upstream is abandoned and no longer exists: https://gitlab.com/somasis/scripts/"; ### A ### @@ -63,65 +63,80 @@ mapAliases ({ aircrackng = throw "'aircrackng' has been renamed to/replaced by 'aircrack-ng'"; # Converted to throw 2022-02-22 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 alarm-clock-applet = throw "'alarm-clock-applet' has been abandoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-16 - alsaLib = throw "'alsaLib' has been renamed to/replaced by 'alsa-lib'"; # Converted to throw 2022-09-24 - alsaOss = throw "'alsaOss' has been renamed to/replaced by 'alsa-oss'"; # Converted to throw 2022-09-24 - alsaPluginWrapper = throw "'alsaPluginWrapper' has been renamed to/replaced by 'alsa-plugins-wrapper'"; # Converted to throw 2022-09-24 - alsaPlugins = throw "'alsaPlugins' has been renamed to/replaced by 'alsa-plugins'"; # Converted to throw 2022-09-24 - alsaTools = throw "'alsaTools' has been renamed to/replaced by 'alsa-tools'"; # Converted to throw 2022-09-24 - alsaUtils = throw "'alsaUtils' has been renamed to/replaced by 'alsa-utils'"; # Converted to throw 2022-09-24 + aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 + alsaLib = alsa-lib; # Added 2021-06-09 + alsaOss = alsa-oss; # Added 2021-06-10 + alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10 + alsaPlugins = alsa-plugins; # Added 2021-06-10 + alsaTools = alsa-tools; # Added 2021-06-10 + alsaUtils = alsa-utils; # Added 2021-06-10 + amazon-glacier-cmd-interface = throw "amazon-glacier-cmd-interface has been removed due to it being unmaintained"; # Added 2020-10-30 aminal = throw "aminal was renamed to darktile"; # Added 2021-09-28 ammonite-repl = throw "'ammonite-repl' has been renamed to/replaced by 'ammonite'"; # Converted to throw 2022-02-22 amuleDaemon = throw "amuleDaemon was renamed to amule-daemon"; # Added 2022-02-11 amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11 + amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09 angelfish = libsForQt5.plasmaMobileGear.angelfish; # Added 2021-10-06 ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30 ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 ansible_2_9 = throw "Ansible 2.9 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 + antimicro = throw "antimicro has been removed as it was broken, see antimicrox instead"; # Added 2020-08-06 antimicroX = antimicrox; # Added 2021-10-31 apple-music-electron = throw "'apple-music-electron' is end of life and has been removed, you can use 'cider' instead"; # Added 2022-10-02 ardour_5 = throw "ardour_5 has been removed. see https://github.com/NixOS/nixpkgs/issues/139549"; # Added 2021-09-28 arduino_core = throw "'arduino_core' has been renamed to/replaced by 'arduino-core'"; # Converted to throw 2022-02-22 + arora = throw "arora has been removed"; # Added 2020-09-09 asciidocFull = throw "'asciidocFull' has been renamed to/replaced by 'asciidoc-full'"; # Converted to throw 2022-02-22 asn1c = throw "asn1c has been removed: deleted by upstream"; # Added 2022-01-07 asterisk_13 = throw "asterisk_13: Asterisk 13 is end of life and has been removed"; # Added 2022-04-06 + asterisk_15 = throw "asterisk_15: Asterisk 15 is end of life and has been removed"; # Added 2020-10-07 asterisk_17 = throw "asterisk_17: Asterisk 17 is end of life and has been removed"; # Added 2022-04-06 at_spi2_atk = throw "'at_spi2_atk' has been renamed to/replaced by 'at-spi2-atk'"; # Converted to throw 2022-02-22 at_spi2_core = throw "'at_spi2_core' has been renamed to/replaced by 'at-spi2-core'"; # Converted to throw 2022-02-22 + aucdtect = throw "aucdtect: Upstream no longer provides download urls"; # Added 2020-12-26 audacity-gtk2 = throw "'audacity-gtk2' has been removed to/replaced by 'audacity'"; # Added 2022-10-09 audacity-gtk3 = throw "'audacity-gtk3' has been removed to/replaced by 'audacity'"; # Added 2022-10-09 automoc4 = throw "automoc4 has been removed from nixpkgs"; # Added 2022-05-30 - avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2022-09-24 + avldrums-lv2 = x42-avldrums; # Added 2020-03-29 + avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18 awesome-4-0 = awesome; # Added 2022-05-05 aws = throw "aws has been removed: abandoned by upstream. For the AWS CLI maintained by Amazon, see 'awscli' or 'awscli2'"; # Added 2022-09-21 awless = throw "awless has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-05-30 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 azure-vhd-utils = throw "azure-vhd-utils has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 + azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 ### B ### badtouch = authoscope; # Project was renamed, added 20210626 bar-xft = throw "'bar-xft' has been renamed to/replaced by 'lemonbar-xft'"; # Converted to throw 2022-02-22 bashCompletion = throw "'bashCompletion' has been renamed to/replaced by 'bash-completion'"; # Converted to throw 2022-02-22 - bashInteractive_5 = throw "'bashInteractive_5' has been renamed to/replaced by 'bashInteractive'"; # Converted to throw 2022-09-24 - bash_5 = throw "'bash_5' has been renamed to/replaced by 'bash'"; # Converted to throw 2022-09-24 + bashInteractive_5 = bashInteractive; # Added 2021-08-20 + bash_5 = bash; # Added 2021-08-20 bashburn = throw "bashburn has been removed: deleted by upstream"; # Added 2022-01-07 + bazaar = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19 + bazaarTools = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19 bazel_0 = throw "bazel 0 is past end of life as it is not an lts version"; # Added 2022-05-09 bazel_0_27 = throw "bazel 0.27 is past end of life as it is not an lts version"; # Added 2022-05-09 bazel_0_29 = throw "bazel 0.29 is past end of life as it is not an lts version"; # Added 2022-05-09 bazel_1 = throw "bazel 1 is past end of life as it is not an lts version"; # Added 2022-05-09 + bcat = throw "bcat has been removed because upstream is dead"; # Added 2021-08-22 beetsExternalPlugins = throw "beetsExternalPlugins has been deprecated, use beetsPackages.$pluginname"; # Added 2022-05-07 beret = throw "beret has been removed"; # Added 2021-11-16 bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07 bird2 = bird; # Added 2022-02-21 bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21 bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21 + bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22 blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01 - bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2022-09-24 + bluezFull = bluez; # Added 2019-12-03 + bomi = throw "bomi has been removed from nixpkgs since it was broken and abandoned upstream"; # Added 2020-12-10 botan = throw "botan has been removed because it did not support a supported openssl version"; # added 2021-12-15 - bpftool = throw "'bpftool' has been renamed to/replaced by 'bpftools'"; # Converted to throw 2022-09-24 + bpftool = bpftools; # Added 2021-05-03 + brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24 bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22 - bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2022-09-24 + bro = zeek; # Added 2019-09-29 btops = throw "btops has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22 bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14 @@ -129,15 +144,17 @@ mapAliases ({ buttersink = throw "buttersink has been removed: abandoned by upstream"; # Added 2022-04-05 # bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30) - bitwarden_rs = throw "'bitwarden_rs' has been renamed to/replaced by 'vaultwarden'"; # Converted to throw 2022-09-24 - bitwarden_rs-mysql = throw "'bitwarden_rs-mysql' has been renamed to/replaced by 'vaultwarden-mysql'"; # Converted to throw 2022-09-24 - bitwarden_rs-postgresql = throw "'bitwarden_rs-postgresql' has been renamed to/replaced by 'vaultwarden-postgresql'"; # Converted to throw 2022-09-24 - bitwarden_rs-sqlite = throw "'bitwarden_rs-sqlite' has been renamed to/replaced by 'vaultwarden-sqlite'"; # Converted to throw 2022-09-24 - bitwarden_rs-vault = throw "'bitwarden_rs-vault' has been renamed to/replaced by 'vaultwarden-vault'"; # Converted to throw 2022-09-24 + bitwarden_rs = vaultwarden; + bitwarden_rs-mysql = vaultwarden-mysql; + bitwarden_rs-postgresql = vaultwarden-postgresql; + bitwarden_rs-sqlite = vaultwarden-sqlite; + bitwarden_rs-vault = vaultwarden-vault; blink = throw "blink has been removed from nixpkgs, it was unmaintained and required python2 at the time of removal"; # Added 2022-01-12 + bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies"; # Added 2021-01-02 bsod = throw "bsod has been removed: deleted by upstream"; # Added 2022-01-07 + btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # Added 2020-11-03 buildPerlPackage = throw "'buildPerlPackage' has been renamed to/replaced by 'perlPackages.buildPerlPackage'"; # Converted to throw 2022-02-22 buildkite-agent3 = throw "'buildkite-agent3' has been renamed to/replaced by 'buildkite-agent'"; # Converted to throw 2022-02-22 bundler_HEAD = throw "'bundler_HEAD' has been renamed to/replaced by 'bundler'"; # Converted to throw 2022-02-22 @@ -147,11 +164,19 @@ mapAliases ({ ### C ### c14 = throw "c14 is deprecated and archived by upstream"; # Added 2022-04-10 + caddy1 = throw "caddy 1.x has been removed from nixpkgs, as it's unmaintained: https://github.com/caddyserver/caddy/blob/master/.github/SECURITY.md#supported-versions"; # Added 2020-10-02 caffe2 = throw "caffe2 has been removed: subsumed under the PyTorch project"; # Added 2022-04-25 + calibre-py2 = throw "calibre-py2 has been removed from nixpkgs, as calibre has upgraded to python 3. Please use calibre as replacement"; # Added 2021-01-13 + calibre-py3 = throw "calibre-py3 has been removed from nixpkgs, as calibre's default python version is now 3. Please use calibre as replacement"; # Added 2021-01-13 callPackage_i686 = pkgsi686Linux.callPackage; cantarell_fonts = throw "'cantarell_fonts' has been renamed to/replaced by 'cantarell-fonts'"; # Converted to throw 2022-02-22 - catfish = throw "'catfish' has been renamed to/replaced by 'xfce.catfish'"; # Converted to throw 2022-09-24 + cargo-download = throw "cargo-download has been removed from nixpkgs as it is unmaintained, use cargo-clone instead"; # Added 2022-10-11 + cargo-tree = throw "cargo-tree has been removed, use the builtin `cargo tree` command instead"; # Added 2020-08-20 + casperjs = throw "casperjs has been removed, it was abandoned by upstream and broken"; + catfish = xfce.catfish; # Added 2019-12-22 + ccnet = throw "ccnet has been removed because seafile does not depend on it anymore"; # Added 2021-03-25 cde-gtk-theme = throw "cde-gtk-theme has been removed from nixpkgs as it shipped with python2 scripts that didn't work anymore"; # Added 2022-01-12 + cgmanager = throw "cgmanager was deprecated by lxc and therefore removed from nixpkgs"; # Added 2020-06-05 checkbashism = throw "'checkbashism' has been renamed to/replaced by 'checkbashisms'"; # Converted to throw 2022-02-22 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 chronos = throw "chronos has been removed from nixpkgs, as it was unmaintained"; # Added 2020-08-15 @@ -178,30 +203,44 @@ mapAliases ({ clangAnalyzer = throw "'clangAnalyzer' has been renamed to/replaced by 'clang-analyzer'"; # Converted to throw 2022-02-22 claws-mail-gtk2 = throw "claws-mail-gtk2 was removed to get rid of Python 2, please use claws-mail"; # Added 2021-12-05 - claws-mail-gtk3 = throw "'claws-mail-gtk3' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2022-09-24 + claws-mail-gtk3 = claws-mail; # Added 2021-07-10 clawsMail = throw "'clawsMail' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2022-02-22 cldr-emoji-annotation = throw "'cldr-emoji-annotation' has been removed, as it was unmaintained; use 'cldr-annotations' instead"; # Added 2022-04-03 clearsilver = throw "clearsilver has been removed: abandoned by upstream"; # Added 2022-03-15 clementineUnfree = throw "clementineUnfree has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 clutter_gtk = throw "'clutter_gtk' has been renamed to/replaced by 'clutter-gtk'"; # Converted to throw 2022-02-22 - codimd = throw "'codimd' has been renamed to/replaced by 'hedgedoc'"; # Converted to throw 2022-09-24 + cmakeWithQt4Gui = throw "cmakeWithQt4Gui has been removed in favor of cmakeWithGui (Qt 5)"; # Added 2021-05 + codimd = hedgedoc; # Added 2020-11-29 inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17 - compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2022-09-24 + compton = picom; # Added 2019-12-02 compton-git = throw "'compton-git' has been renamed to/replaced by 'compton'"; # Converted to throw 2022-02-22 - concurrencykit = throw "'concurrencykit' has been renamed to/replaced by 'libck'"; # Converted to throw 2022-09-24 + concurrencykit = libck; # Added 2021-03 conntrack_tools = throw "'conntrack_tools' has been renamed to/replaced by 'conntrack-tools'"; # Converted to throw 2022-02-22 container-linux-config-transpiler = throw "container-linux-config-transpiler is deprecated and archived by upstream"; # Added 2022-04-05 cool-old-term = throw "'cool-old-term' has been renamed to/replaced by 'cool-retro-term'"; # Converted to throw 2022-02-22 corsmisc = throw "corsmisc has been removed (upstream is gone)"; # Added 2022-01-24 + couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 + couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 coreclr = throw "coreclr has been removed from nixpkgs, use dotnet-sdk instead"; # added 2022-06-12 corgi = throw "corgi has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 cpp-gsl = throw "'cpp-gsl' has been renamed to/replaced by 'microsoft_gsl'"; # Converted to throw 2022-02-22 + cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream"; # Added 2020-11-30 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 crafty = throw "crafty has been removed: deleted by upstream"; # Added 2022-01-07 + cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 cryptpad = throw "cryptpad has been removed, because it was unmaintained in nixpkgs"; # Added 2022-07-04 ctl = throw "ctl has been removed: abandoned by upstream"; # Added 2022-05-13 # CUDA Toolkit + cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 + cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14 + cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 + cudatoolkit_7_5 = throw "cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 + cudatoolkit_8 = throw "cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 + cudatoolkit_9 = throw "cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 + cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 + cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 + cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 cudatoolkit_10 = throw "cudatoolkit_10 has been renamed to cudaPackages_10.cudatoolkit"; # Added 2022-04-04 cudatoolkit_10_0 = throw "cudatoolkit_10_0 has been renamed to cudaPackages_10_0.cudatoolkit"; # Added 2022-04-04 cudatoolkit_10_1 = throw "cudatoolkit_10_1 has been renamed to cudaPackages_10_1.cudatoolkit"; # Added 2022-04-04 @@ -215,9 +254,13 @@ mapAliases ({ cudatoolkit_11_6 = throw "cudatoolkit_11_6 has been renamed to cudaPackages_11_6.cudatoolkit"; # Added 2022-04-04 cudnn = throw "cudnn is now part of cudaPackages*"; # Added 2022-04-04 + cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 + cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 cudnn_7_4_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 + cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 cudnn_7_6_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 cudnn_7_6_cudatoolkit_10_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 + cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 cudnn_8_1_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 cudnn_8_1_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 cudnn_8_1_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 @@ -232,6 +275,10 @@ mapAliases ({ cudnn_8_3_cudatoolkit_11_5 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 cudnn_8_3_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 cudnn_8_3_cudatoolkit_11 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 + cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 + cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 + cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 + cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 cura_stable = throw "cura_stable was removed because it was broken and used Python 2"; # added 2022-06-05 curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04 @@ -245,27 +292,31 @@ mapAliases ({ cutensor_cudatoolkit_11_3 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 cutensor_cudatoolkit_11_4 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 - cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; # Added 2021-11-03 - cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; # Added 2021-11-03 + cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; + cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 + cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; cupsBjnp = throw "'cupsBjnp' has been renamed to/replaced by 'cups-bjnp'"; # Converted to throw 2022-02-22 cups_filters = throw "'cups_filters' has been renamed to/replaced by 'cups-filters'"; # Converted to throw 2022-02-22 curlcpp = throw "curlcpp has been removed, no active maintainers and no usage within nixpkgs"; # Added 2022-05-10 curaByDagoma = throw "curaByDagoma has been removed from nixpkgs, because it was unmaintained and dependent on python2 packages"; # Added 2022-01-12 curaLulzbot = throw "curaLulzbot has been removed due to insufficient upstream support for a modern dependency chain"; # Added 2021-10-23 cv = throw "'cv' has been renamed to/replaced by 'progress'"; # Converted to throw 2022-02-22 - cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2022-09-24 + cvs_fast_export = cvs-fast-export; # Added 2021-06-10 ### D ### d1x_rebirth = throw "'d1x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22 d2x_rebirth = throw "'d2x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22 - dart_stable = throw "'dart_stable' has been renamed to/replaced by 'dart'"; # Converted to throw 2022-09-24 + dart_dev = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 + dart_old = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 + dart_stable = dart; # Added 2020-01-15 dat = nodePackages.dat; dashpay = throw "'dashpay' has been removed because it was unmaintained"; # Added 2022-05-12 dbus_daemon = throw "'dbus_daemon' has been renamed to/replaced by 'dbus.daemon'"; # Converted to throw 2022-02-22 dbus_glib = throw "'dbus_glib' has been renamed to/replaced by 'dbus-glib'"; # Converted to throw 2022-02-22 dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22 dbus_tools = throw "'dbus_tools' has been renamed to/replaced by 'dbus.out'"; # Converted to throw 2022-02-22 + dbvisualizer = throw "dbvisualizer has been removed from nixpkgs, as it's unmaintained"; # Added 2020-09-20 dd-agent = throw "dd-agent has been removed in favor of the newer datadog-agent"; # Added 2022-04-26 ddar = throw "ddar has been removed: abandoned by upstream"; # Added 2022-03-18 deadbeef-mpris2-plugin = throw "'deadbeef-mpris2-plugin' has been renamed to/replaced by 'deadbeefPlugins.mpris2'"; # Converted to throw 2022-02-22 @@ -273,9 +324,21 @@ mapAliases ({ debian_devscripts = throw "'debian_devscripts' has been renamed to/replaced by 'debian-devscripts'"; # Converted to throw 2022-02-22 debugedit-unstable = debugedit; # Added 2021-11-22 + deepin = throw "deepin was a work in progress and it has been canceled and removed https://github.com/NixOS/nixpkgs/issues/94870"; # added 2020-08-31 + deepspeech = throw "deepspeech was removed in favor of stt. https://github.com/NixOS/nixpkgs/issues/119496"; # added 2021-05-05 deisctl = throw "deisctl was removed ; the service does not exist anymore"; # added 2022-02-06 deis = throw "deis was removed ; the service does not exist anymore"; # added 2022-02-06 - deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2022-09-24 + deltachat-electron = deltachat-desktop; # added 2021-07-18 + + deluge-1_x = throw '' + Deluge 1.x (deluge-1_x) is no longer supported. + Please use Deluge 2.x (deluge-2_x) instead, for example: + + services.deluge.package = pkgs.deluge-2_x; + + Note that it is NOT possible to switch back to Deluge 1.x after this change. + ''; # Added 2021-08-18 + demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 desktop_file_utils = throw "'desktop_file_utils' has been renamed to/replaced by 'desktop-file-utils'"; # Converted to throw 2022-02-22 devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22 @@ -286,8 +349,9 @@ mapAliases ({ disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18 displaycal = throw "displaycal has been removed from nixpkgs, as it hasn't migrated to python3"; # Added 2022-01-12 dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22 - dnnl = throw "'dnnl' has been renamed to/replaced by 'oneDNN'"; # Converted to throw 2022-09-24 + dnnl = oneDNN; # Added 2020-04-22 docbook5_xsl = throw "'docbook5_xsl' has been renamed to/replaced by 'docbook_xsl_ns'"; # Converted to throw 2022-02-22 + docbookrx = throw "docbookrx has been removed since it was unmaintained"; # Added 2021-01-12 docbook_xml_xslt = throw "'docbook_xml_xslt' has been renamed to/replaced by 'docbook_xsl'"; # Converted to throw 2022-02-22 doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its depedencies where removed."; # Added 2022-03-30 docker_compose = throw "'docker_compose' has been renamed to/replaced by 'docker-compose'"; # Converted to throw 2022-02-22 @@ -298,9 +362,12 @@ mapAliases ({ dotnet-netcore = dotnet-runtime; # Added 2021-10-07 double_conversion = throw "'double_conversion' has been renamed to/replaced by 'double-conversion'"; # Converted to throw 2022-02-22 dragon-drop = throw "'dragon-drop' has been removed in favor of 'xdragon'"; # Added 2022-04-10; + draftsight = throw "draftsight has been removed, no longer available as freeware"; # Added 2020-08-14 dust = throw "dust has been removed: abandoned by upstream"; # Added 2022-04-21 + dvb_apps = throw "dvb_apps has been removed"; # Added 2020-11-03 dwarf_fortress = throw "'dwarf_fortress' has been renamed to/replaced by 'dwarf-fortress'"; # Converted to throw 2022-02-22 - dylibbundler = throw "'dylibbundler' has been renamed to/replaced by 'macdylibbundler'"; # Converted to throw 2022-09-24 + dwm-git = throw "dwm-git has been removed from nixpkgs, as it had no updates for 2 years not serving it's purpose"; # Added 2021-02-07 + dylibbundler = macdylibbundler; # Added 2021-04-24 ### E ### @@ -308,6 +375,8 @@ mapAliases ({ ec2_ami_tools = ec2-ami-tools; # Added 2021-10-08 ec2_api_tools = ec2-api-tools; # Added 2021-10-08 ec2-utils = amazon-ec2-utils; # Added 2022-02-01 + elasticmq = throw "elasticmq has been removed in favour of elasticmq-server-bin"; # Added 2021-01-17 + elasticsearch7-oss = throw "elasticsearch7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09 # Electron electron_3 = throw "electron_3 has been removed in favor of newer versions"; # added 2022-01-06 @@ -325,10 +394,10 @@ mapAliases ({ emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 - emacsPackagesNg = throw "'emacsPackagesNg' has been renamed to/replaced by 'emacs.pkgs'"; # Converted to throw 2022-09-24 - emacsPackagesNgFor = throw "'emacsPackagesNgFor' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-09-24 + emacsPackagesNg = emacs.pkgs; # Added 2019-08-07 + emacsPackagesNgFor = emacsPackagesFor; # Added 2019-08-07 emacsPackagesNgGen = throw "'emacsPackagesNgGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 - emacsWithPackages = throw "'emacsWithPackages' has been renamed to/replaced by 'emacs.pkgs.withPackages'"; # Converted to throw 2022-09-24 + emacsWithPackages = emacs.pkgs.withPackages; # Added 2020-12-18 enblendenfuse = throw "'enblendenfuse' has been renamed to/replaced by 'enblend-enfuse'"; # Converted to throw 2022-02-22 encryptr = throw "encryptr was removed because it reached end of life"; # Added 2022-02-06 @@ -337,6 +406,7 @@ mapAliases ({ enyo-doom = enyo-launcher; # Added 2022-09-09 epoxy = libepoxy; # Added 2021-11-11 epsxe = throw "epsxe has been removed from nixpkgs, as it was unmaintained."; # added 2021-12-15 + esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12 etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22 eteroj.lv2 = throw "'eteroj.lv2' has been renamed to/replaced by 'open-music-kontrollers.eteroj'"; # Added 2022-03-09 euca2tools = throw "euca2ools has been removed because it is unmaintained upstream and still uses python2"; # Added 2022-01-01 @@ -346,94 +416,137 @@ mapAliases ({ ### F ### - fastnlo = throw "'fastnlo' has been renamed to/replaced by 'fastnlo_toolkit'"; # Converted to throw 2022-09-24 + facette = throw "facette has been removed"; # Added 2020-01-06 + fast-neural-doodle = throw "fast-neural-doodle has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 + fastnlo = fastnlo_toolkit; # Added 2021-04-24 fbreader = throw "fbreader has been removed, as the upstream project has been archived"; # Added 2022-05-26 + fedora-coreos-config-transpiler = throw "fedora-coreos-config-transpiler has been renamed to 'butane'"; # Added 2021-04-13 feedreader = throw "feedreader is no longer activily maintained since 2019. The developer is working on a spiritual successor called NewsFlash."; # Added 2022-05-03 inherit (luaPackages) fennel; # Added 2022-09-24 fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve ffadoFull = throw "'ffadoFull' has been renamed to/replaced by 'ffado'"; # Converted to throw 2022-02-22 ffmpeg-sixel = throw "ffmpeg-sixel has been removed, because it was an outdated/unmaintained fork of ffmpeg"; # Added 2022-03-23"; ffmpeg_3 = throw "ffmpeg_3 was removed from nixpkgs, because it was an outdated and insecure release"; # added 2022-01-17 - finger_bsd = bsd-finger; # Added 2022-03-14 - fingerd_bsd = bsd-fingerd; # Added 2022-03-14 + finger_bsd = bsd-finger; + fingerd_bsd = bsd-fingerd; + firefox-esr-68 = throw "Firefox 68 ESR was removed because it reached end of life with its final release 68.12esr on 2020-08-25"; firefox-esr-wrapper = throw "'firefox-esr-wrapper' has been renamed to/replaced by 'firefox-esr'"; # Converted to throw 2022-02-22 firefoxWrapper = throw "'firefoxWrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22 firefox-wrapper = throw "'firefox-wrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09 + fish-foreign-env = throw "fish-foreign-env has been replaced with fishPlugins.foreign-env"; # Added 2020-12-29, modified 2021-01-10 fishfight = jumpy; # Added 2022-08-03 flameGraph = throw "'flameGraph' has been renamed to/replaced by 'flamegraph'"; # Converted to throw 2022-02-22 + flashplayer-standalone-debugger = throw "flashplayer-standalone-debugger has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 + flashplayer-standalone = throw "flashplayer-standalone has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 + flashplayer = throw "flashplayer has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 flashtool = throw "flashtool was removed from nixpkgs, because the download is down for copyright reasons and the site looks very fishy"; # Added 2021-06-31 flatbuffers_1_12 = throw "FlatBuffers version 1.12 has been removed, because upstream no longer maintains it"; # Added 2022-05-12 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12 + flink_1_5 = throw "flink_1_5 was removed, use flink instead"; # Added 2021-01-25 + flutter-beta = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 + flutter-dev = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 + flvtool2 = throw "flvtool2 has been removed"; # Added 2020-11-03 fme = throw "fme was removed, because it is old and uses Glade, a discontinued library"; # Added 2022-01-26 - foldingathome = throw "'foldingathome' has been renamed to/replaced by 'fahclient'"; # Converted to throw 2022-09-24 + foldingathome = fahclient; # Added 2020-09-03 font-awesome-ttf = throw "'font-awesome-ttf' has been renamed to/replaced by 'font-awesome'"; # Converted to throw 2022-02-22 + + fontconfig-penultimate = throw '' + fontconfig-penultimate has been removed. + It was a fork of the abandoned fontconfig-ultimate. + ''; # Added 2020-07-21 + + fontconfig_210 = throw '' + fontconfig 2.10.x hasn't had a release in years, is vulnerable to CVE-2016-5384 + and has only been used for old fontconfig caches. + ''; + foomatic_filters = throw "'foomatic_filters' has been renamed to/replaced by 'foomatic-filters'"; # Converted to throw 2022-02-22 fscryptctl-experimental = throw "The package fscryptctl-experimental has been removed. Please switch to fscryptctl"; # Added 2021-11-07 + fsharp41 = throw "fsharp41 has been removed, please use dotnet-sdk_5 or later"; fslint = throw "fslint has been removed: end of life. Upstream recommends using czkawka (https://qarmin.github.io/czkawka/) instead"; # Added 2022-01-15 fuse_exfat = throw "'fuse_exfat' has been renamed to/replaced by 'exfat'"; # Converted to throw 2022-02-22 fuseki = throw "'fuseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22 fuse2fs = if stdenv.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too. + fwupdate = throw "fwupdate was merged into fwupd"; # Added 2020-05-19 ### G ### - g4py = throw "'g4py' has been renamed to/replaced by 'python3Packages.geant4'"; # Converted to throw 2022-09-24 + g4py = python3Packages.geant4; # Added 2020-06-06 + gaia = throw "gaia has been removed because it seems abandoned upstream and uses no longer supported dependencies"; # Added 2020-06-06 gammy = throw "'gammy' is deprecated upstream and has been replaced by 'gummy'"; # Added 2022-09-03 gawp = throw "gawp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 + gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead"; # Added 2021-04-03 gdb-multitarget = throw "'gdb-multitarget' has been renamed to/replaced by 'gdb'"; # Converted to throw 2022-02-22 gdk_pixbuf = throw "'gdk_pixbuf' has been renamed to/replaced by 'gdk-pixbuf'"; # Converted to throw 2022-02-22 getmail = throw "getmail has been removed from nixpkgs, migrate to getmail6"; # Added 2022-01-12 gettextWithExpat = throw "'gettextWithExpat' has been renamed to/replaced by 'gettext'"; # Converted to throw 2022-02-22 + gfm = throw "gfm has been removed"; # Added 2021-01-15 giblib = throw " giblib has been removed from nixpkgs because upstream is gone"; # Added 2022-01-23 + giflib_4_1 = throw "giflib_4_1 has been removed; use giflib instead"; # Added 2020-02-12 git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 git-bz = throw "giz-bz has been removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 gitAndTools = self // { - darcsToGit = throw "'gitAndTools.darcsToGit' has been renamed to 'darcs-to-git'"; # Converted to throw 2022-09-24 - gitAnnex = throw "'gitAndTools.gitAnnex' has been renamed to 'git-annex'"; # Converted to throw 2022-09-24 - gitBrunch = throw "'gitAndTools.gitBrunch' has been renamed to 'git-brunch'"; # Converted to throw 2022-09-24 - gitFastExport = throw "'gitAndTools.gitFastExport' has been renamed to 'git-fast-export'"; # Converted to throw 2022-09-24 - gitRemoteGcrypt = throw "'gitAndTools.gitRemoteGcrypt' has been renamed to 'git-remote-gcrypt'"; # Converted to throw 2022-09-24 - svn_all_fast_export = throw "'gitAndTools.svn_all_fast_export' has been renamed to 'svn-all-fast-export'"; # Converted to throw 2022-09-24 - topGit = throw "'gitAndTools.topGit' has been renamed to 'top-git'"; # Converted to throw 2022-09-24 - }; + darcsToGit = darcs-to-git; + gitAnnex = git-annex; + gitBrunch = git-brunch; + gitFastExport = git-fast-export; + gitRemoteGcrypt = git-remote-gcrypt; + svn_all_fast_export = svn-all-fast-export; + topGit = top-git; + }; # Added 2021-01-14 gitin = throw "gitin has been remove because it was unmaintained and depended on an insecure version of libgit2"; # Added 2021-12-07 gitinspector = throw "gitinspector has been removed because it doesn't work with python3"; # Added 2022-01-12 gksu = throw "gksu has been removed"; # Added 2022-01-16 glib_networking = throw "'glib_networking' has been renamed to/replaced by 'glib-networking'"; # Converted to throw 2022-02-22 glimpse = throw "glimpse was removed, as the project was discontinued. You can use gimp instead."; # Added 2022-07-11 - gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2022-09-24 - gmic_krita_qt = throw "'gmic_krita_qt' has been renamed to/replaced by 'gmic-qt-krita'"; # Converted to throw 2022-09-24 + gmailieer = lieer; # Added 2020-04-19 + gmic_krita_qt = gmic-qt-krita; # Added 2019-09-07 + gmvault = throw "gmvault has been removed because it is unmaintained, mostly broken, and insecure"; # Added 2021-03-08 gnash = throw "gnash has been removed; broken and abandoned upstream"; # added 2022-02-06 gnome-breeze = throw "gnome-breeze has been removed, use libsForQt5.breeze-gtk instead"; # Added 2022-04-22 gnome-firmware-updater = gnome-firmware; # added 2022-04-14 gnome-passwordsafe = gnome-secrets; # added 2022-01-30 - gnome-mpv = throw "'gnome-mpv' has been renamed to/replaced by 'celluloid'"; # Converted to throw 2022-09-24 + gnome-mpv = celluloid; # Added 2019-08-22 gnome-sharp = throw "gnome-sharp has been removed from nixpkgs"; # Added 2022-01-15 gnome-themes-standard = throw "'gnome-themes-standard' has been renamed to/replaced by 'gnome-themes-extra'"; # Converted to throw 2022-02-22 - gnome_user_docs = throw "'gnome_user_docs' has been renamed to/replaced by 'gnome-user-docs'"; # Converted to throw 2022-09-24 + gnome_user_docs = gnome-user-docs; # Added 2019-11-20 gnome_doc_utils = throw "'gnome_doc_utils' has been renamed to/replaced by 'gnome-doc-utils'"; # Converted to throw 2022-02-22 gnome_themes_standard = throw "'gnome_themes_standard' has been renamed to/replaced by 'gnome-themes-standard'"; # Converted to throw 2022-02-22 - gmock = throw "'gmock' has been renamed to/replaced by 'gtest'"; # Converted to throw 2022-09-24 - gnome3 = throw "'gnome3' has been renamed to/replaced by 'gnome'"; # Converted to throw 2022-09-24 + + gnuradio-with-packages = gnuradio3_7.override { + extraPackages = lib.attrVals [ + "osmosdr" "ais" "gsm" "nacl" "rds" "limesdr" + ] gnuradio3_7Packages; + }; # Added 2020-10-16 + + gmock = gtest; # moved from top-level 2021-03-14 + + gnome3 = gnome; # Added 2021-05-07 + gnupg20 = throw "gnupg20 has been removed from nixpkgs as upstream dropped support on 2017-12-31";# Added 2020-07-12 gnuradio3_7 = throw "gnuradio3_7 has been removed because it required Python 2"; # Added 2022-01-16 - gnuradio-ais = throw "'gnuradio-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2022-09-24 - gnuradio-gsm = throw "'gnuradio-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2022-09-24 - gnuradio-limesdr = throw "'gnuradio-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2022-09-24 - gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2022-09-24 - gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2022-09-24 - gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2022-09-24 + gnuradio-ais = gnuradio3_7.pkgs.ais; # Added 2019-05-27, changed 2020-10-16 + gnuradio-gsm = gnuradio3_7.pkgs.gsm; # Added 2019-05-27, changed 2020-10-16 + gnuradio-limesdr = gnuradio3_7.pkgs.limesdr; # Added 2019-05-27, changed 2020-10-16 + gnuradio-nacl = gnuradio3_7.pkgs.nacl; # Added 2019-05-27, changed 2020-10-16 + gnuradio-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16 + gnuradio-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16 gnustep-make = throw "'gnustep-make' has been renamed to/replaced by 'gnustep.make'"; # Converted to throw 2022-02-22 - gobby5 = throw "'gobby5' has been renamed to/replaced by 'gobby'"; # Converted to throw 2022-09-24 + gnuvd = throw "gnuvd was removed because the backend service is missing"; # Added 2020-01-14 + gobby5 = gobby; # Added 2021-02-01 gobjectIntrospection = throw "'gobjectIntrospection' has been renamed to/replaced by 'gobject-introspection'"; # Converted to throw 2022-02-22 gogoclient = throw "gogoclient has been removed, because it was unmaintained"; # Added 2021-12-15 goklp = throw "goklp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 golly-beta = throw "golly-beta has been removed: use golly instead"; # Added 2022-03-21 goimports = throw "'goimports' has been renamed to/replaced by 'gotools'"; # Converted to throw 2022-02-22 + gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # Added 2020-04-23 googleAuthenticator = throw "'googleAuthenticator' has been renamed to/replaced by 'google-authenticator'"; # Converted to throw 2022-02-22 googleearth = throw "the non-pro version of Google Earth was removed because it was discontinued and downloading it isn't possible anymore"; # Added 2022-01-22 - google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2022-09-24 + google-gflags = gflags; # Added 2019-07-25 + google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07 + google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07 gosca = throw "gosca has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-30 google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16 go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30 @@ -442,26 +555,27 @@ mapAliases ({ go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02 gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06 gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17 - graalvm11 = graalvm11-ce; # Added 2021-10-15 + + graalvm11 = graalvm11-ce; graalvm8-ce = throw "graalvm8-ce has been removed by upstream"; # Added 2021-10-19 graalvm8 = throw "graalvm8-ce has been removed by upstream"; # Added 2021-10-19 graalvm8-ee = throw "graalvm8-ee has been removed because it is unmaintained"; # Added 2022-04-15 graalvm11-ee = throw "graalvm11-ee has been removed because it is unmaintained"; # Added 2022-04-15 gradio = throw "gradio has been removed because it is unmaintained, use shortwave instead"; # Added 2022-06-03 grafana-mimir = throw "'grafana-mimir' has been renamed to/replaced by 'mimir'"; # Added 2022-06-07 - gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2022-09-24 + gr-ais = gnuradio3_7.pkgs.ais; # Added 2019-05-27, changed 2020-10-16 grantlee5 = throw "'grantlee5' has been renamed to/replaced by 'libsForQt5.grantlee'"; # Converted to throw 2022-02-22 - gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2022-09-24 + gr-gsm = gnuradio3_7.pkgs.gsm; # Added 2019-05-27, changed 2020-10-16 grib-api = throw "grib-api has been replaced by ecCodes => https://confluence.ecmwf.int/display/ECC/GRIB-API+migration"; # Added 2022-01-05 - gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2022-09-24 - gr-nacl = throw "'gr-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2022-09-24 - gr-osmosdr = throw "'gr-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2022-09-24 - gr-rds = throw "'gr-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2022-09-24 + gr-limesdr = gnuradio3_7.pkgs.limesdr; # Added 2019-05-27, changed 2020-10-16 + gr-nacl = gnuradio3_7.pkgs.nacl; # Added 2019-05-27, changed 2020-10-16 + gr-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16 + gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16 grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01 gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22 gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22 gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # Added 2022-01-01 - gtmess = throw "gtmess has been removed, because it was a MSN client."; # Added 2021-12-15 + gtmess = throw "gtmess has been removed, because it was a MSN client."; # add 2021-12-15 guile-gnome = throw "guile-gnome has been removed"; # Added 2022-01-16 guileCairo = throw "'guileCairo' has been renamed to/replaced by 'guile-cairo'"; # Converted to throw 2022-02-22 guileGnome = throw "guile-gnome has been removed"; # Added 2022-01-16 @@ -478,18 +592,20 @@ mapAliases ({ ### H ### + hal-flash = throw "hal-flash has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 hardlink = throw "hardlink was merged into util-linux since 2019-06-14."; # Added 2022-08-12 inherit (harePackages) hare harec; # Added 2022-08-10 hawkthorne = throw "hawkthorne has been removed because it depended on a broken version of love"; # Added 2022-01-15 heapster = throw "Heapster is now retired. See https://github.com/kubernetes-retired/heapster/blob/master/docs/deprecation.md"; # Added 2022-04-05 heimdalFull = throw "'heimdalFull' has been renamed to/replaced by 'heimdal'"; # Converted to throw 2022-02-22 heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06 - hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2022-09-24 + hepmc = hepmc2; # Added 2019-08-05 hicolor_icon_theme = throw "'hicolor_icon_theme' has been renamed to/replaced by 'hicolor-icon-theme'"; # Converted to throw 2022-02-22 holdingnuts = throw "holdingnuts was removed from nixpkgs, as the project is no longer developed"; # Added 2022-05-10 holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01 htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 - ht-rust = throw "'ht-rust' has been renamed to/replaced by 'xh'"; # Converted to throw 2022-09-24 + ht-rust = xh; # Added 2021-02-13 + hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra_unstable` now"; # Added 2020-04-06 hydra-unstable = hydra_unstable; # added 2022-05-10 hyperspace-cli = throw "hyperspace-cli is out of date, and has been deprecated upstream in favour of using the individual repos instead"; # Added 2022-08-29 @@ -497,34 +613,36 @@ mapAliases ({ i3cat = throw "i3cat has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 iana_etc = throw "'iana_etc' has been renamed to/replaced by 'iana-etc'"; # Converted to throw 2022-02-22 + iasl = throw "iasl has been removed, use acpica-tools instead"; # Added 2021-08-08 ical2org = throw "ical2org has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 icecat-bin = throw "icecat-bin has been removed, the binary builds are not maintained upstream"; # Added 2022-02-15 - icedtea8_web = throw "'icedtea8_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2022-09-24 - icedtea_web = throw "'icedtea_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2022-09-24 + icedtea8_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 + icedtea_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 icu59 = throw "icu59 has been removed, use a more recent version instead"; # Added 2022-05-14 icu65 = throw "icu65 has been removed, use a more recent version instead"; # Added 2022-05-14 idea = throw "'idea' has been renamed to/replaced by 'jetbrains'"; # Converted to throw 2022-02-22 imapproxy = throw "imapproxy has been removed because it did not support a supported openssl version"; # added 2021-12-15 - imagemagick7Big = throw "'imagemagick7Big' has been renamed to/replaced by 'imagemagickBig'"; # Converted to throw 2022-09-24 - imagemagick7 = throw "'imagemagick7' has been renamed to/replaced by 'imagemagick'"; # Converted to throw 2022-09-24 - imagemagick7_light = throw "'imagemagick7_light' has been renamed to/replaced by 'imagemagick_light'"; # Converted to throw 2022-09-24 + imagemagick7Big = imagemagickBig; # Added 2021-02-22 + imagemagick7 = imagemagick; # Added 2021-02-22 + imagemagick7_light = imagemagick_light; # Added 2021-02-22 impressive = throw "impressive has been removed due to lack of released python 2 support and maintainership in nixpkgs"; # Added 2022-01-27 + i-score = throw "i-score has been removed: abandoned upstream"; # Added 2020-11-21 inboxer = throw "inboxer has been removed as it is no longer maintained and no longer works as Google shut down the inbox service this package wrapped"; index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17 - infiniband-diags = throw "'infiniband-diags' has been renamed to/replaced by 'rdma-core'"; # Converted to throw 2022-09-24 + infiniband-diags = rdma-core; # Added 2019-08-09 ino = throw "ino has been removed from nixpkgs, the project is stuck on python2 and upstream has archived the project"; # Added 2022-01-12 - inotifyTools = throw "'inotifyTools' has been renamed to/replaced by 'inotify-tools'"; # Converted to throw 2022-09-24 + inotifyTools = inotify-tools; intecture-agent = throw "intecture-agent has been removed, because it was no longer maintained upstream"; # added 2021-12-15 intecture-auth = throw "intecture-auth has been removed, because it was no longer maintained upstream"; # added 2021-12-15 intecture-cli = throw "intecture-cli has been removed, because it was no longer maintained upstream"; # added 2021-12-15 interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05 - inter-ui = throw "'inter-ui' has been renamed to/replaced by 'inter'"; # Converted to throw 2022-09-24 + inter-ui = inter; # Added 2021-03-27 iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06 ipfs = kubo; # Added 2022-09-27 ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27 ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27 ipfs-migrator = kubo-migrator; # Added 2022-09-27 - iproute = throw "'iproute' has been renamed to/replaced by 'iproute2'"; # Converted to throw 2022-09-24 + iproute = iproute2; # moved from top-level 2021-03-14 iproute_mptcp = throw "'iproute_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 ipsecTools = throw "ipsecTools has benn removed, because it was no longer maintained upstream"; # Added 2021-12-15 itch-setup = throw "itch-setup has benn removed, use itch instead"; # Added 2022-06-02 @@ -532,15 +650,22 @@ mapAliases ({ ### J ### - jack2Full = throw "'jack2Full' has been renamed to/replaced by 'jack2'"; # Converted to throw 2022-09-24 + jack2Full = jack2; # moved from top-level 2021-03-14 jami-client-gnome = throw "jami-client-gnome has been removed: abandoned upstream"; # Added 2022-05-15 jami-libclient = throw "jami-libclient has been removed: moved into jami-qt"; # Added 2022-07-29 + jamomacore = throw "jamomacore has been removed: abandoned upstream"; # Added 2020-11-21 + jbidwatcher = throw "jbidwatcher was discontinued in march 2021"; # Added 2021-03-15 jbuilder = throw "'jbuilder' has been renamed to/replaced by 'dune_1'"; # Converted to throw 2022-02-22 jd = throw "jd has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-03 + jellyfin_10_5 = throw "Jellyfin 10.5 is no longer supported and contains a security vulnerability. Please upgrade to a newer version"; # Added 2021-04-26 joseki = throw "'joseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22 journalbeat7 = throw "journalbeat has been removed upstream. Use filebeat with the journald input instead"; # Julia + julia_07 = throw "julia_07 has been deprecated in favor of the latest LTS version"; # Added 2020-09-15 + julia_1 = throw "julia_1 has been deprecated in favor of julia_10 as it was ambiguous"; # Added 2021-03-13 + julia_11 = throw "julia_11 has been deprecated in favor of the latest stable version"; # Added 2020-09-15 + julia_13 = throw "julia_13 has been deprecated in favor of the latest stable version"; # Added 2021-03-13 julia_10-bin = throw "julia_10-bin has been deprecated in favor of the latest LTS version"; # Added 2021-12-02 julia_17-bin = throw "julia_17-bin has been deprecated in favor of the latest stable version"; # Added 2022-09-04 @@ -550,28 +675,35 @@ mapAliases ({ ### K ### k3d = throw "k3d has been removed because it was broken and has seen no release since 2016"; # Added 2022-01-04 + k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-11-06 kafkacat = kcat; # Added 2021-10-07 - kdeconnect = throw "'kdeconnect' has been renamed to/replaced by 'plasma5Packages.kdeconnect-kde'"; # Converted to throw 2022-09-24 + kbdKeymaps = throw "kbdKeymaps is not needed anymore since dvp and neo are now part of kbd"; # Added 2021-04-11 + kdeconnect = plasma5Packages.kdeconnect-kde; # Added 2020-10-28 + kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-06-16 kdiff3-qt5 = throw "'kdiff3-qt5' has been renamed to/replaced by 'kdiff3'"; # Converted to throw 2022-02-22 keepass-keefox = throw "'keepass-keefox' has been renamed to/replaced by 'keepass-keepassrpc'"; # Converted to throw 2022-02-22 keepassx-community = throw "'keepassx-community' has been renamed to/replaced by 'keepassxc'"; # Converted to throw 2022-02-22 keepassx-reboot = throw "'keepassx-reboot' has been renamed to/replaced by 'keepassx-community'"; # Converted to throw 2022-02-22 keepassx2-http = throw "'keepassx2-http' has been renamed to/replaced by 'keepassx-reboot'"; # Converted to throw 2022-02-22 keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01 - kerberos = throw "'kerberos' has been renamed to/replaced by 'libkrb5'"; # Converted to throw 2022-09-24 + kerberos = libkrb5; # moved from top-level 2021-03-14 kexectools = kexec-tools; # Added 2021-09-03 - kexpand = throw "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01 + kexpand = "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01 keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22 - keysmith = throw "'keysmith' has been renamed to/replaced by 'libsForQt5.plasmaMobileGear.keysmith'"; # Converted to throw 2022-09-24 + keysmith = libsForQt5.plasmaMobileGear.keysmith; # Added 2021-07-14 kgx = gnome-console; # Added 2022-02-19 - kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2022-09-24 + kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09 + kicad-with-packages3d = kicad; # Added 2019-11-25 + kindlegen = throw "kindlegen has been removed from nixpkgs, as it's abandoned and no longer available for download"; # Added 2021-03-09 + kinetic-cpp-client = throw "kinetic-cpp-client has been removed from nixpkgs, as it's abandoned"; # Added 2020-04-28 + kino = throw "kino has been removed because it was broken and abandoned"; # Added 2021-04-25 knockknock = throw "knockknock has been removed from nixpkgs because the upstream project is abandoned"; # Added 2022-01-01 kodestudio = throw "kodestudio has been removed from nixpkgs, as the nix package has been long unmaintained and out of date."; # Added 2022-06-07 - kodiGBM = throw "'kodiGBM' has been renamed to/replaced by 'kodi-gbm'"; # Converted to throw 2022-09-24 - kodiPlain = throw "'kodiPlain' has been renamed to/replaced by 'kodi'"; # Converted to throw 2022-09-24 - kodiPlainWayland = throw "'kodiPlainWayland' has been renamed to/replaced by 'kodi-wayland'"; # Converted to throw 2022-09-24 + kodiGBM = kodi-gbm; + kodiPlain = kodi; + kodiPlainWayland = kodi-wayland; kodiPlugins = kodiPackages; # Added 2021-03-09; - kramdown-rfc2629 = throw "'kramdown-rfc2629' has been renamed to/replaced by 'rubyPackages.kramdown-rfc2629'"; # Converted to throw 2022-09-24 + kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # Added 2021-03-23 krename-qt5 = throw "'krename-qt5' has been renamed to/replaced by 'krename'"; # Converted to throw 2022-02-22 krita-beta = krita; # moved from top-level 2021-12-23 kube-aws = throw "kube-aws is deprecated and archived by upstream"; # Added 2022-04-05 @@ -582,7 +714,7 @@ mapAliases ({ ### L ### lastfmsubmitd = throw "lastfmsubmitd was removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 - latinmodern-math = throw "'latinmodern-math' has been renamed to/replaced by 'lmmath'"; # Converted to throw 2022-09-24 + latinmodern-math = lmmath; letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22 libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22 libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22 @@ -591,8 +723,10 @@ mapAliases ({ libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22 libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22 libcap_manpages = throw "'libcap_manpages' has been renamed to/replaced by 'libcap.doc'"; # Converted to throw 2022-02-22 - libcap_pam = throw "'libcap_pam has been renamed to/replaced by 'libcap.pam'"; # Converted to throw 2022-09-24 + libcap_pam = if stdenv.isLinux then libcap.pam else null; # Added 2016-04-29 libcap_progs = throw "'libcap_progs' has been renamed to/replaced by 'libcap.out'"; # Converted to throw 2022-02-22 + libco-canonical = throw "libco-canonical: Canonical deleted the repo, libco-canonical is not used anymore"; # Added 2021-05-16 + libcroco = throw "libcroco has been removed as it's no longer used in any derivations"; # Added 2020-03-04 libdbusmenu-glib = throw "'libdbusmenu-glib' has been renamed to/replaced by 'libdbusmenu'"; # Converted to throw 2022-02-22 libdbusmenu_qt = throw "'libdbusmenu_qt' (Qt4) is deprecated and unused, use 'libsForQt5.libdbusmenu'"; # Added 2022-06-14 libdbusmenu_qt5 = throw "'libdbusmenu_qt5' has been renamed to/replaced by 'libsForQt5.libdbusmenu'"; # Converted to throw 2022-02-22 @@ -607,39 +741,45 @@ mapAliases ({ libgpgerror = libgpg-error; # Added 2021-09-04 libgroove = throw "libgroove has been removed, because it depends on an outdated and insecure version of ffmpeg"; # Added 2022-01-21 libgumbo = throw "'libgumbo' has been renamed to/replaced by 'gumbo'"; # Converted to throw 2022-02-22 - libintlOrEmpty = "'libintlOrEmpty' has been renamed to/replace by 'gettext'"; # Converted to throw 2022-09-24 - libixp_hg = libixp; # Added 2022-04-25 - libjpeg_drop = throw "'libjpeg_drop' has been renamed to/replaced by 'libjpeg_original'"; # Converted to throw 2022-09-24 + libintlOrEmpty = lib.optional (!stdenv.isLinux || stdenv.hostPlatform.libc != "glibc") gettext; # Added 2018-03-14 + libixp_hg = libixp; + libjpeg_drop = libjpeg_original; # Added 2020-06-05 libjson_rpc_cpp = throw "'libjson_rpc_cpp' has been renamed to/replaced by 'libjson-rpc-cpp'"; # Converted to throw 2022-02-22 libkml = throw "libkml has been removed from nixpkgs, as it's abandoned and no package needed it"; # Added 2021-11-09 liblapackWithoutAtlas = throw "'liblapackWithoutAtlas' has been renamed to/replaced by 'lapack-reference'"; # Converted to throw 2022-02-22 - liblastfm = throw "'liblastfm' has been renamed to/replaced by 'libsForQt5.liblastfm'"; # Converted to throw 2022-09-24 + liblastfm = libsForQt5.liblastfm; # Added 2020-06-14 liblrdf = throw "'liblrdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2022-02-22 libmicrohttpd_0_9_70 = throw "'libmicrohttpd_0_9_70' has been removed because it is insecure, and has been replaced by 'libmicrohttpd_0_9_69' and 'libmicrohttpd_0_9_71'"; # Added 2022-10-10 libmsgpack = throw "'libmsgpack' has been renamed to/replaced by 'msgpack'"; # Converted to throw 2022-02-22 libnih = throw "'libnih' has been removed"; # Converted to throw 2022-05-17 libosmpbf = throw "libosmpbf was removed because it is no longer required by osrm-backend"; + libpng_apng = throw "libpng_apng has been removed, because it is equivalent to libpng"; # Added 2021-03-21 libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20 + libqmatrixclient = throw "libqmatrixclient was renamed to libquotient"; # Added 2020-04-09 libqrencode = throw "'libqrencode' has been renamed to/replaced by 'qrencode'"; # Converted to throw 2022-02-22 - librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2022-09-24 + librdf = lrdf; # Added 2020-03-22 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 - libseat = throw "'libseat' has been renamed to/replaced by 'seatd'"; # Converted to throw 2022-09-24 + librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 + libseat = seatd; # Added 2021-06-24 libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29 + libstdcxxHook = throw "libstdcxx hook has been removed because cc-wrapper is now directly aware of the c++ standard library intended to be used"; # Added 2020-06-22 libsysfs = throw "'libsysfs' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22 libtensorflow-bin = libtensorflow; # Added 2022-09-25 libtidy = throw "'libtidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 - libtorrentRasterbar = throw "'libtorrentRasterbar' has been renamed to/replaced by 'libtorrent-rasterbar'"; # Converted to throw 2022-09-24 - libtorrentRasterbar-1_2_x = throw "'libtorrentRasterbar-1_2_x' has been renamed to/replaced by 'libtorrent-rasterbar-1_2_x'"; # Converted to throw 2022-09-24 - libtorrentRasterbar-2_0_x = throw "'libtorrentRasterbar-2_0_x' has been renamed to/replaced by 'libtorrent-rasterbar-2_0_x'"; # Converted to throw 2022-09-24 + libtorrentRasterbar = libtorrent-rasterbar; # Added 2020-12-20 + libtorrentRasterbar-1_2_x = libtorrent-rasterbar-1_2_x; # Added 2020-12-20 + libtorrentRasterbar-2_0_x = libtorrent-rasterbar-2_0_x; # Added 2020-12-20 + libtxc_dxtn = throw "libtxc_dxtn was removed 2020-03-16, now integrated in Mesa"; + libtxc_dxtn_s2tc = throw "libtxc_dxtn_s2tc was removed 2020-03-16, now integrated in Mesa"; libudev = throw "'libudev' has been renamed to/replaced by 'udev'"; # Converted to throw 2022-02-22 - libungif = throw "'libungif' has been renamed to/replaced by 'giflib'"; # Converted to throw 2022-09-24 - libusb = throw "'libusb' has been renamed to/replaced by 'libusb1'"; # Converted to throw 2022-09-24 + libungif = giflib; # Added 2020-02-12 + libusb = libusb1; # Added 2020-04-28 libusb1-axoloti = throw "libusb1-axoloti has been removed: axoloti has been removed"; # Added 2022-05-13 libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22 libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22 - libwnck3 = throw "'libwnck3' has been renamed to/replaced by 'libwnck'"; # Converted to throw 2022-09-24 + libwnck3 = libwnck; lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 lighttable = throw "'lighttable' crashes (SIGSEGV) on startup, has not been updated in years and depends on deprecated GTK2"; # Added 2022-06-15 lilyterm = throw "lilyterm has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14 @@ -693,15 +833,38 @@ mapAliases ({ linux_rpi3 = linuxKernel.kernels.linux_rpi3; linux_rpi4 = linuxKernel.kernels.linux_rpi4; - linuxPackages_xen_dom0 = throw "'linuxPackages_xen_dom0' has been renamed to/replaced by 'linuxPackages'"; # Converted to throw 2022-09-24 - linuxPackages_latest_xen_dom0 = throw "'linuxPackages_latest_xen_dom0' has been renamed to/replaced by 'linuxPackages_latest'"; # Converted to throw 2022-09-24 - linuxPackages_xen_dom0_hardened = throw "'linuxPackages_xen_dom0_hardened' has been renamed to/replaced by 'linuxPackages_hardened'"; # Converted to throw 2022-09-24 - linuxPackages_latest_xen_dom0_hardened = throw "'linuxPackages_latest_xen_dom0_hardened' has been renamed to/replaced by 'linuxPackages_latest_hardened'"; # Converted to throw 2022-09-24 + # Added 2020-04-04 + linuxPackages_testing_hardened = throw "linuxPackages_testing_hardened has been removed, please use linuxPackages_latest_hardened"; + linux_testing_hardened = throw "linux_testing_hardened has been removed, please use linux_latest_hardened"; - lobster-two = throw "'lobster-two' has been renamed to/replaced by 'google-fonts'"; # Converted to throw 2022-09-24 + # Added 2021-04-04 + linuxPackages_xen_dom0 = linuxPackages; + linuxPackages_latest_xen_dom0 = linuxPackages_latest; + linuxPackages_xen_dom0_hardened = linuxPackages_hardened; + linuxPackages_latest_xen_dom0_hardened = linuxPackages_latest_hardened; + + # Added 2021-08-16 + linuxPackages_latest_hardened = throw '' + The attribute `linuxPackages_hardened_latest' was dropped because the hardened patches + frequently lag behind the upstream kernel. In some cases this meant that this attribute + had to refer to an older kernel[1] because the latest hardened kernel was EOL and + the latest supported kernel didn't have patches. + + If you want to use a hardened kernel, please check which kernel minors are supported + and use a versioned attribute, e.g. `linuxPackages_5_10_hardened'. + + [1] for more context: https://github.com/NixOS/nixpkgs/pull/133587 + ''; + linux_latest_hardened = linuxPackages_latest_hardened; + + linux-steam-integration = throw "linux-steam-integration has been removed, as the upstream project has been abandoned"; # Added 2020-05-22 + + loadcaffe = throw "loadcaffe has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 + lobster-two = google-fonts; # Added 2021-07-22 love_0_7 = throw "love_0_7 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15 love_0_8 = throw "love_0_8 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15 love_0_9 = throw "love_0_9 was removed because was broken for a long time and no longer used by any package in nixpkgs"; # Added 2022-01-15 + lprof = throw "lprof has been removed as it's unmaintained upstream and broken in nixpkgs since a while ago"; # Added 2021-02-15 lttngTools = throw "'lttngTools' has been renamed to/replaced by 'lttng-tools'"; # Converted to throw 2022-02-22 lttngUst = throw "'lttngUst' has been renamed to/replaced by 'lttng-ust'"; # Converted to throw 2022-02-22 lua5_1_sockets = throw "'lua5_1_sockets' has been renamed to/replaced by 'lua51Packages.luasocket'"; # Converted to throw 2022-02-22 @@ -709,66 +872,83 @@ mapAliases ({ lua5_sec = throw "'lua5_sec' has been renamed to/replaced by 'luaPackages.luasec'"; # Converted to throw 2022-02-22 lumo = throw "lumo has been removed: abandoned by upstream"; # Added 2022-04-25 lumpy = throw "lumpy has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 - lzma = throw "'lzma' has been renamed to/replaced by 'xz'"; # Converted to throw 2022-09-24 + lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # Added 2020-06-03 + lzma = xz; # moved from top-level 2021-03-14 ### M ### m3d-linux = throw "'m3d-linux' has been renamed to/replaced by 'm33-linux'"; # Converted to throw 2022-02-22 + mail-notification = throw "mail-notification has been removed from nixpkgs, as it's unmaintained and has dependencies on old gnome libraries we want to remove"; # Added 2021-08-21 mailpile = throw "mailpile was removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 man_db = throw "'man_db' has been renamed to/replaced by 'man-db'"; # Converted to throw 2022-02-22 manul = throw "manul has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-01 manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22 + marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 marp = throw "marp has been removed from nixpkgs, as it's unmaintained and has security issues"; # Added 2022-06-04 - matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2022-09-24 + matcha = throw "matcha was renamed to matcha-gtk-theme"; # added 2020-05-09 + mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 + matrique = spectral; # Added 2020-01-27 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17 + mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # Added 2020-05-23 mcomix3 = mcomix; # Added 2022-06-05 mediatomb = throw "mediatomb is no longer maintained upstream, use gerbera instead"; # added 2022-01-04 - meme = throw "'meme' has been renamed to/replaced by 'meme-image-generator'"; # Converted to throw 2022-09-24 + meme = meme-image-generator; # Added 2021-04-21 memtest86 = throw "'memtest86' has been renamed to/replaced by 'memtest86plus'"; # Converted to throw 2022-02-22 mercurial_4 = throw "mercurial_4 has been removed as it's unmaintained"; # Added 2021-10-18 - mess = throw "'mess' has been renamed to/replaced by 'mame'"; # Converted to throw 2022-09-24 - metal = throw "metal has been removed due to lack of maintainers"; # Added 2022-06-30 + mesos = throw "mesos has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 + mess = mame; # Added 2019-10-30 + metal = throw "metal has been removed due to lack of maintainers"; mididings = throw "mididings has been removed from nixpkgs as it doesn't support recent python3 versions and its upstream stopped maintaining it"; # Added 2022-01-12 midoriWrapper = throw "'midoriWrapper' has been renamed to/replaced by 'midori'"; # Converted to throw 2022-02-22 mime-types = mailcap; # Added 2022-01-21 mimms = throw "mimms has been removed from nixpkgs as the upstream project is stuck on python2"; # Added 2022-01-01 + minergate-cli = throw "minergatecli has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13 + minergate = throw "minergate has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13 minetestclient_4 = throw "minetestclient_4 has been removed from Nixpkgs; current version is available at minetest or minetestclient"; # added 2022-02-01 minetestserver_4 = throw "minetestserver_4 has been removed from Nixpkgs; current version is available at minetestserver"; # added 2022-02-01 minetime = throw "minetime has been removed from nixpkgs, because it was discontinued 2021-06-22"; # Added 2021-10-14 + mist = throw "mist has been removed as the upstream project has been abandoned, see https://github.com/ethereum/mist#mist-browser-deprecated"; # Added 2020-08-15 mlt-qt5 = throw "'mlt-qt5' has been renamed to/replaced by 'libsForQt5.mlt'"; # Converted to throw 2022-02-22 mobile_broadband_provider_info = throw "'mobile_broadband_provider_info' has been renamed to/replaced by 'mobile-broadband-provider-info'"; # Converted to throw 2022-02-22 + moby = throw "moby has been removed, merged into linuxkit in 2018. Use linuxkit instead"; module_init_tools = throw "'module_init_tools' has been renamed to/replaced by 'kmod'"; # Converted to throw 2022-02-22 monero = monero-cli; # Added 2021-11-28 monodevelop = throw "monodevelop has been removed from nixpgks"; # Added 2022-01-15 + mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # Added 2021-03-07 + mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18 + mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18 mopidy-spotify = throw "mopidy-spotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 mopidy-spotify-tunigo = throw "mopidy-spotify-tunigo has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 morituri = throw "'morituri' has been renamed to/replaced by 'whipper'"; # Converted to throw 2022-02-22 moz-phab = mozphab; # Added 2022-08-09 - mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2022-09-24 - mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2022-09-24 + mozart-binary = mozart2-binary; # Added 2019-09-23 + mozart = mozart2-binary; # Added 2019-09-23 mpc_cli = mpc-cli; # moved from top-level 2022-01-24 - mpd_clientlib = throw "'mpd_clientlib' has been renamed to/replaced by 'libmpdclient'"; # Converted to throw 2022-09-24 + mpd_clientlib = libmpdclient; # Added 2021-02-11 mpich2 = throw "'mpich2' has been renamed to/replaced by 'mpich'"; # Converted to throw 2022-02-22 mqtt-bench = throw "mqtt-bench has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 msf = throw "'msf' has been renamed to/replaced by 'metasploit'"; # Converted to throw 2022-02-22 multimc = throw "multimc was removed from nixpkgs; use polymc instead (see https://github.com/NixOS/nixpkgs/pull/154051 for more information)"; # Added 2022-01-08 - mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2022-09-24 - murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2022-09-24 + mumble_git = pkgs.mumble; # Added 2019-08-01 + murmur_git = pkgs.murmur; # Added 2019-08-01 mutt-with-sidebar = mutt; # Added 2022-09-17 - mysql-client = throw "'mysql-client' has been renamed to/replaced by 'mariadb.client'"; # Converted to throw 2022-09-24 - mysql = throw "'mysql' has been renamed to/replaced by 'mariadb'"; # Converted to throw 2022-09-24 + mysql-client = hiPrio mariadb.client; + mysql = mariadb; # moved from top-level 2021-03-14 - mesa_drivers = throw "'mesa_drivers' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-09-24 + # floating point textures patents are expired, + # so package reduced to alias + mesa_drivers = mesa.drivers; mesa_noglu = throw "'mesa_noglu' has been renamed to/replaced by 'mesa'"; # Converted to throw 2022-02-22 - mpv-with-scripts = throw "'mpv-with-scripts' has been renamed to/replaced by 'self.wrapMpv'"; # Converted to throw 2022-09-24 + mpv-with-scripts = self.wrapMpv self.mpv-unwrapped { }; # Added 2020-05-22 mssys = throw "'mssys' has been renamed to/replaced by 'ms-sys'"; # Converted to throw 2022-02-22 multipath_tools = throw "'multipath_tools' has been renamed to/replaced by 'multipath-tools'"; # Converted to throw 2022-02-22 mumsi = throw "mumsi has been removed from nixpkgs, as it's unmaintained and does not build anymore"; # Added 2021-11-18 mupen64plus1_5 = throw "'mupen64plus1_5' has been renamed to/replaced by 'mupen64plus'"; # Converted to throw 2022-02-22 mx = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # Added 2021-10-15 + mxisd = throw "mxisd has been removed from nixpkgs as it has reached end of life, see https://github.com/kamax-matrix/mxisd/blob/535e0a5b96ab63cb0ddef90f6f42c5866407df95/EOL.md#end-of-life-notice . ma1sd may be a suitable alternative"; # Added 2021-04-15 mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22 myxer = throw "Myxer has been removed from nixpkgs, as it has been unmaintained since Jul 31, 2021"; # Added 2022-06-08 @@ -779,11 +959,13 @@ mapAliases ({ nccl_cudatoolkit_10 = throw "nccl_cudatoolkit_10 has been renamed to cudaPackages_10.nccl"; # Added 2022-04-04 nccl_cudatoolkit_11 = throw "nccl_cudatoolkit_11 has been renamed to cudaPackages_11.nccl"; # Added 2022-04-04 - net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2022-09-24 - nagiosPluginsOfficial = throw "'nagiosPluginsOfficial' has been renamed to/replaced by 'monitoring-plugins'"; # Converted to throw 2022-09-24 + net_snmp = net-snmp; # Added 2019-12-21 + nagiosPluginsOfficial = monitoring-plugins; + navit = throw "navit has been removed from nixpkgs, due to being unmaintained"; # Added 2021-06-07 ncat = throw "'ncat' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-02-22 neap = throw "neap was removed from nixpkgs, as it relies on python2"; # Added 2022-01-12 neochat = libsForQt5.plasmaMobileGear.neochat; # added 2022-05-10 + netease-cloud-music = throw "netease-cloud-music has been removed together with deepin"; # Added 2020-08-31 nettools_mptcp = throw "'nettools_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 networkmanager_fortisslvpn = throw "'networkmanager_fortisslvpn' has been renamed to/replaced by 'networkmanager-fortisslvpn'"; # Converted to throw 2022-02-22 networkmanager_iodine = throw "'networkmanager_iodine' has been renamed to/replaced by 'networkmanager-iodine'"; # Converted to throw 2022-02-22 @@ -791,30 +973,33 @@ mapAliases ({ networkmanager_openconnect = throw "'networkmanager_openconnect' has been renamed to/replaced by 'networkmanager-openconnect'"; # Converted to throw 2022-02-22 networkmanager_openvpn = throw "'networkmanager_openvpn' has been renamed to/replaced by 'networkmanager-openvpn'"; # Converted to throw 2022-02-22 networkmanager_vpnc = throw "'networkmanager_vpnc' has been renamed to/replaced by 'networkmanager-vpnc'"; # Converted to throw 2022-02-22 + neutral-style = throw "neural-style has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 nfsUtils = throw "'nfsUtils' has been renamed to/replaced by 'nfs-utils'"; # Converted to throw 2022-02-22 nginxUnstable = throw "'nginxUnstable' has been renamed to/replaced by 'nginxMainline'"; # Converted to throw 2022-02-22 nilfs_utils = throw "'nilfs_utils' has been renamed to/replaced by 'nilfs-utils'"; # Converted to throw 2022-02-22 - nix-direnv-flakes = nix-direnv; # Added 2021-11-09 - nix-review = throw "'nix-review' has been renamed to/replaced by 'nixpkgs-review'"; # Converted to throw 2022-09-24 - nixFlakes = throw "'nixFlakes' has been renamed to/replaced by 'nixVersions.stable'"; # Converted to throw 2022-09-24 + nix-direnv-flakes = nix-direnv; + nix-review = nixpkgs-review; # Added 2019-12-22 + nixFlakes = nixVersions.stable; # Added 2021-05-21 nixStable = nixVersions.stable; # Added 2022-01-24 nixUnstable = nixVersions.unstable; # Added 2022-01-26 - nix_2_3 = nixVersions.nix_2_3; # Added 2022-01-26 - nix_2_4 = nixVersions.nix_2_4; # Added 2022-01-26 - nix_2_5 = nixVersions.nix_2_5; # Added 2022-01-26 - nix_2_6 = nixVersions.nix_2_6; # Added 2022-01-26 + nix_2_3 = nixVersions.nix_2_3; + nix_2_4 = nixVersions.nix_2_4; + nix_2_5 = nixVersions.nix_2_5; + nix_2_6 = nixVersions.nix_2_6; nixopsUnstable = nixops_unstable; # Added 2022-03-03 nixosTest = testers.nixosTest; # Added 2022-05-05 nixui = throw "nixui has been removed from nixpkgs, due to the project being unmaintained"; # Added 2022-05-23 - nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-09-24 + nmap-unfree = nmap; # Added 2021-04-06 nmap-graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Added 2022-04-26 nmap_graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Modified 2022-04-26 nodejs-10_x = throw "nodejs-10_x has been removed. Use a newer version instead."; # Added 2022-05-31 nodejs-12_x = throw "nodejs-12_x has been removed. Use a newer version instead."; # Added 2022-07-04 nologin = throw "'nologin' has been renamed to/replaced by 'shadow'"; # Converted to throw 2022-02-22 nomad_1_1 = throw "nomad_1_1 has been removed because it's outdated. Use a a newer version instead"; # Added 2022-05-22 + nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # Added 2021-05-27 noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16 nottetris2 = throw "nottetris2 was removed because it is unmaintained by upstream and broken"; # Added 2022-01-15 + now-cli = throw "now-cli has been replaced with nodePackages.vercel"; # Added 2021-08-05 ntdb = throw "ntdb has been removed: abandoned by upstream"; # Added 2022-04-21 nxproxy = throw "'nxproxy' has been renamed to/replaced by 'nx-libs'"; # Converted to throw 2022-02-22 @@ -822,27 +1007,35 @@ mapAliases ({ oathToolkit = oath-toolkit; # Added 2022-04-04 oci-image-tool = throw "oci-image-tool is no longer actively maintained, and has had major deficiencies for several years."; # Added 2022-05-14; + oracleXE = throw "oracleXE has been removed, as it's heavily outdated and unmaintained"; # Added 2020-10-09 OVMF-CSM = throw "OVMF-CSM has been removed in favor of OVMFFull"; # Added 2021-10-16 OVMF-secureBoot = throw "OVMF-secureBoot has been removed in favor of OVMFFull"; # Added 2021-10-16 - oauth2_proxy = throw "'oauth2_proxy' has been renamed to/replaced by 'oauth2-proxy'"; # Converted to throw 2022-09-24 + oauth2_proxy = oauth2-proxy; # Added 2021-04-18 ocropus = throw "ocropus has been removed: abandoned by upstream"; # Added 2022-04-24 + octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set"; # Added 2021-01-24 + ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # Added 2021-07-12 odpdown = throw "odpdown has been removed because it lacks python3 support"; # Added 2022-04-25 + ofp = throw "ofp is not compatible with odp-dpdk"; + olifant = throw "olifant has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 openbazaar = throw "openbazzar has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06 openbazaar-client = throw "openbazzar-client has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06 opencascade_oce = throw "'opencascade_oce' has been renamed to/replaced by 'opencascade'"; # Converted to throw 2022-02-22 opencl-icd = throw "'opencl-icd' has been renamed to/replaced by 'ocl-icd'"; # Converted to throw 2022-02-22 openconnect_head = openconnect_unstable; # Added 2022-03-29 openconnect_gnutls = openconnect; # Added 2022-03-29 - openelec-dvb-firmware = throw "'openelec-dvb-firmware' has been renamed to/replaced by 'libreelec-dvb-firmware'"; # Converted to throw 2022-09-24 + openconnect_pa = throw "openconnect_pa fork has been discontinued, support for GlobalProtect is now available in openconnect"; # Added 2021-05-21 + openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10 openexr_ctl = throw "'openexr_ctl' has been renamed to/replaced by 'ctl'"; # Converted to throw 2022-02-22 - openisns = throw "'openisns' has been renamed to/replaced by 'open-isns'"; # Converted to throw 2022-09-24 - openjpeg_2 = throw "'openjpeg_2' has been renamed to/replaced by 'openjpeg'"; # Converted to throw 2022-09-24 + openisns = open-isns; # Added 2020-01-28 + openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # Added 2021-01-24 + openjpeg_2 = openjpeg; # Added 2021-01-25 openmpt123 = libopenmpt; # Added 2021-09-05 opensans-ttf = throw "'opensans-ttf' has been renamed to/replaced by 'open-sans'"; # Converted to throw 2022-02-22 openssh_with_kerberos = throw "'openssh_with_kerberos' has been renamed to/replaced by 'openssh'"; # Converted to throw 2022-02-22 openssl_3_0 = openssl_3; # Added 2022-06-27 - orchis = throw "'orchis' has been renamed to/replaced by 'orchis-theme'"; # Converted to throw 2022-09-24 - osxfuse = throw "'osxfuse' has been renamed to/replaced by 'macfuse-stubs'"; # Converted to throw 2022-09-24 + orchis = orchis-theme; # Added 2021-06-09 + osxfuse = macfuse-stubs; # Added 2021-03-20 + otter-browser = throw "otter-browser has been removed from nixpkgs, as it was unmaintained"; # Added 2020-02-02 owncloudclient = throw "'owncloudclient' has been renamed to/replaced by 'owncloud-client'"; # Converted to throw 2022-02-22 ### P ### @@ -851,22 +1044,24 @@ mapAliases ({ p11_kit = throw "'p11_kit' has been renamed to/replaced by 'p11-kit'"; # Converted to throw 2022-02-22 packet-cli = metal-cli; # Added 2021-10-25 - paperless = throw "'paperless' has been renamed to/replaced by 'paperless-ngx'"; # Converted to throw 2022-09-24 + paperless = paperless-ngx; # Added 2021-06-06 paperless-ng = paperless-ngx; # Added 2022-04-11 - parity = throw "'parity' has been renamed to/replaced by 'openethereum'"; # Converted to throw 2022-09-24 + parity = openethereum; # Added 2020-08-01 parity-ui = throw "parity-ui was removed because it was broken and unmaintained by upstream"; # Added 2022-01-10 parquet-cpp = throw "'parquet-cpp' has been renamed to/replaced by 'arrow-cpp'"; # Converted to throw 2022-02-22 patchmatrix = throw "'patchmatrix' has been renamed to/replaced by 'open-music-kontrollers.patchmatrix'"; # Added 2022-03-09 pass-otp = throw "'pass-otp' has been renamed to/replaced by 'pass.withExtensions'"; # Converted to throw 2022-02-22 pbis-open = throw "pbis-open has been removed, because it is no longer maintained upstream"; # added 2021-12-15 pdf-redact-tools = throw "pdf-redact-tools has been removed from nixpkgs because the upstream has abandoned the project"; # Added 2022-01-01 + pdf2htmlEx = throw "pdf2htmlEx has been removed from nixpkgs, as it was unmaintained"; # Added 2020-11-03 pdfmod = throw "pdfmod has been removed"; # Added 2022-01-15 + pdfread = throw "pdfread has been remove because it is unmaintained for years and the sources are no longer available"; # Added 2021-07-22 pdfstudio = throw "'pdfstudio' has been replaced with 'pdfstudio', where '' is the year from the PDF Studio version number, because each license is specific to a given year"; # Added 2022-09-04 peach = asouldocs; # Added 2022-08-28 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23 perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22 perlArchiveCpio = throw "'perlArchiveCpio' has been renamed to/replaced by 'perlPackages.ArchiveCpio'"; # Converted to throw 2022-02-22 - pgadmin = pgadmin4; # Added 2022-01-14 + pgadmin = pgadmin4; pgadmin3 = throw "pgadmin3 was removed for being unmaintained, use pgadmin4 instead."; # Added 2022-03-30 pgp-tools = throw "'pgp-tools' has been renamed to/replaced by 'signing-party'"; # Converted to throw 2022-02-22 pg_tmp = throw "'pg_tmp' has been renamed to/replaced by 'ephemeralpg'"; # Converted to throw 2022-02-22 @@ -881,20 +1076,55 @@ mapAliases ({ php74Packages = php74; # Added 2022-05-24 php74Extensions = php74; # Added 2022-05-24 - php73Packages = throw "'php73Packages' has been renamed to/replaced by 'php73'"; # Converted to throw 2022-09-24 - php73Extensions = throw "'php73Extensions' has been renamed to/replaced by 'php73'"; # Converted to throw 2022-09-24 + php73 = throw "php73 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2021-06-03 + php73Packages = php73; # Added 2021-06-03 + php73Extensions = php73; # Added 2021-06-03 - php73-embed = throw "'php73-embed' has been renamed to/replaced by 'php-embed'"; # Converted to throw 2022-09-24 - php74-embed = throw "'php74-embed' has been renamed to/replaced by 'php-embed'"; # Converted to throw 2022-09-24 + php-embed = throw '' + php*-embed has been dropped, you can build something similar + with the following snippet: + php74.override { embedSupport = true; apxs2Support = false; } + ''; # Added 2020-04-01 + php73-embed = php-embed; # Added 2020-04-01 + php74-embed = php-embed; # Added 2020-04-01 - php73Packages-embed = throw "'php73Packages-embed' has been renamed to/replaced by 'phpPackages-embed'"; # Converted to throw 2022-09-24 - php74Packages-embed = throw "'php74Packages-embed' has been renamed to/replaced by 'phpPackages-embed'"; # Converted to throw 2022-09-24 + phpPackages-embed = throw '' + php*Packages-embed has been dropped, you can build something + similar with the following snippet: + (php74.override { embedSupport = true; apxs2Support = false; }).packages + ''; # Added 2020-04-01 + php73Packages-embed = phpPackages-embed; + php74Packages-embed = phpPackages-embed; - php73-unit = throw "'php73-unit' has been renamed to/replaced by 'php-unit'"; # Converted to throw 2022-09-24 - php74-unit = throw "'php74-unit' has been renamed to/replaced by 'php-unit'"; # Converted to throw 2022-09-24 + php-unit = throw '' + php*-unit has been dropped, you can build something similar with + the following snippet: + php74.override { + embedSupport = true; + apxs2Support = false; + systemdSupport = false; + phpdbgSupport = false; + cgiSupport = false; + fpmSupport = false; + } + ''; # Added 2020-04-01 + php73-unit = php-unit; # Added 2020-04-01 + php74-unit = php-unit; # Added 2020-04-01 - php73Packages-unit = throw "'php73Packages-unit' has been renamed to/replaced by 'phpPackages-unit'"; # Converted to throw 2022-09-24 - php74Packages-unit = throw "'php74Packages-unit' has been renamed to/replaced by 'phpPackages-unit'"; # Converted to throw 2022-09-24 + phpPackages-unit = throw '' + php*Packages-unit has been dropped, you can build something + similar with this following snippet: + (php74.override { + embedSupport = true; + apxs2Support = false; + systemdSupport = false; + phpdbgSupport = false; + cgiSupport = false; + fpmSupport = false; + }).packages + ''; # Added 2020-04-01 + php73Packages-unit = phpPackages-unit; + php74Packages-unit = phpPackages-unit; pidgin-with-plugins = throw "'pidgin-with-plugins' has been renamed to/replaced by 'pidgin'"; # Converted to throw 2022-02-22 pidginlatex = throw "'pidginlatex' has been renamed to/replaced by 'pidgin-latex'"; # Converted to throw 2022-02-22 @@ -908,11 +1138,12 @@ mapAliases ({ ping = throw "'ping' does not build with recent valac and has been removed. If you are just looking for the 'ping' command use either 'iputils' or 'inetutils'"; # Added 2022-04-18 piwik = throw "'piwik' has been renamed to/replaced by 'matomo'"; # Converted to throw 2022-02-22 pixie = throw "pixie has been removed: abandoned by upstream"; # Added 2022-04-21 - pkgconfig = throw "'pkgconfig' has been renamed to/replaced by 'pkg-config'"; # Converted to throw 2022-09-24 + pkgconfig = pkg-config; # Added 2018-02-02, moved to aliases.nix 2021-01-18 pkgconfigUpstream = throw "'pkgconfigUpstream' has been renamed to/replaced by 'pkg-configUpstream'"; # Converted to throw 2022-02-22 - pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2022-09-24 + planner = throw "planner has been removed from nixpkgs, as it is no longer developed and still uses python2/PyGTK"; # Added 2021-02-02 + pleroma-otp = pleroma; # Added 2021-07-10 plexpy = throw "'plexpy' has been renamed to/replaced by 'tautulli'"; # Converted to throw 2022-02-22 - pltScheme = racket; # Added 20218-01-01 + pltScheme = racket; # just to be sure pmtools = throw "'pmtools' has been renamed to/replaced by 'acpica-tools'"; # Converted to throw 2022-02-22 pocketsphinx = throw "pocketsphinx has been removed: unmaintained"; # Added 2022-04-24 polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22 @@ -923,35 +1154,40 @@ mapAliases ({ portaudio2014 = throw "'portaudio2014' has been removed"; # Added 2022-05-10 # postgresql - postgresql96 = throw "'postgresql96' has been renamed to/replaced by 'postgresql_9_6'"; # Converted to throw 2022-09-24 + postgresql96 = postgresql_9_6; postgresql_9_6 = throw "postgresql_9_6 has been removed from nixpkgs, as this version is no longer supported by upstream"; # Added 2021-12-03 # postgresql plugins - cstore_fdw = throw "'cstore_fdw' has been renamed to/replaced by 'postgresqlPackages.cstore_fdw'"; # Converted to throw 2022-09-24 - pg_cron = throw "'pg_cron' has been renamed to/replaced by 'postgresqlPackages.pg_cron'"; # Converted to throw 2022-09-24 - pg_hll = throw "'pg_hll' has been renamed to/replaced by 'postgresqlPackages.pg_hll'"; # Converted to throw 2022-09-24 - pg_repack = throw "'pg_repack' has been renamed to/replaced by 'postgresqlPackages.pg_repack'"; # Converted to throw 2022-09-24 - pg_similarity = throw "'pg_similarity' has been renamed to/replaced by 'postgresqlPackages.pg_similarity'"; # Converted to throw 2022-09-24 - pg_topn = throw "'pg_topn' has been renamed to/replaced by 'postgresqlPackages.pg_topn'"; # Converted to throw 2022-09-24 - pgjwt = throw "'pgjwt' has been renamed to/replaced by 'postgresqlPackages.pgjwt'"; # Converted to throw 2022-09-24 - pgroonga = throw "'pgroonga' has been renamed to/replaced by 'postgresqlPackages.pgroonga'"; # Converted to throw 2022-09-24 - pgtap = throw "'pgtap' has been renamed to/replaced by 'postgresqlPackages.pgtap'"; # Converted to throw 2022-09-24 - plv8 = throw "'plv8' has been renamed to/replaced by 'postgresqlPackages.plv8'"; # Converted to throw 2022-09-24 - postgis = throw "'postgis' has been renamed to/replaced by 'postgresqlPackages.postgis'"; # Converted to throw 2022-09-24 + cstore_fdw = postgresqlPackages.cstore_fdw; + pg_cron = postgresqlPackages.pg_cron; + pg_hll = postgresqlPackages.pg_hll; + pg_repack = postgresqlPackages.pg_repack; + pg_similarity = postgresqlPackages.pg_similarity; + pg_topn = postgresqlPackages.pg_topn; + pgjwt = postgresqlPackages.pgjwt; + pgroonga = postgresqlPackages.pgroonga; + pgtap = postgresqlPackages.pgtap; + plv8 = postgresqlPackages.plv8; + postgis = postgresqlPackages.postgis; tilp2 = throw "tilp2 has been removed"; # Added 2022-01-15 timekeeper = throw "timekeeper has been removed"; # Added 2022-01-16 - timescaledb = throw "'timescaledb' has been renamed to/replaced by 'postgresqlPackages.timescaledb'"; # Converted to throw 2022-09-24 - tsearch_extras = throw "'tsearch_extras' has been renamed to/replaced by 'postgresqlPackages.tsearch_extras'"; # Converted to throw 2022-09-24 + timescaledb = postgresqlPackages.timescaledb; + tlauncher = throw "tlauncher has been removed because there questionable practices and legality concerns"; + tsearch_extras = postgresqlPackages.tsearch_extras; - pinentry_curses = throw "'pinentry_curses' has been renamed to/replaced by 'pinentry-curses'"; # Converted to throw 2022-09-24 - pinentry_emacs = throw "'pinentry_emacs' has been renamed to/replaced by 'pinentry-emacs'"; # Converted to throw 2022-09-24 - pinentry_gnome = throw "'pinentry_gnome' has been renamed to/replaced by 'pinentry-gnome'"; # Converted to throw 2022-09-24 - pinentry_gtk2 = throw "'pinentry_gtk2' has been renamed to/replaced by 'pinentry-gtk2'"; # Converted to throw 2022-09-24 - pinentry_qt = throw "'pinentry_qt' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2022-09-24 - pinentry_qt5 = throw "'pinentry_qt5' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2022-09-24 + pinentry_curses = pinentry-curses; # Added 2019-10-14 + pinentry_emacs = pinentry-emacs; # Added 2019-10-14 + pinentry_gnome = pinentry-gnome; # Added 2019-10-14 + pinentry_gtk2 = pinentry-gtk2; # Added 2019-10-14 + pinentry_qt = pinentry-qt; # Added 2019-10-14 + pinentry_qt5 = pinentry-qt; # Added 2020-02-11 prboom = throw "prboom was removed because it was abandoned by upstream, use prboom-plus instead"; # Added 2022-04-24 - processing3 = throw "'processing3' has been renamed to/replaced by 'processing'"; # Converted to throw 2022-09-24 + privateer = throw "privateer was removed because it was broken"; # Added 2021-05-18 + processing3 = processing; # Added 2019-08-16 procps-ng = throw "'procps-ng' has been renamed to/replaced by 'procps'"; # Converted to throw 2022-02-22 + proglodyte-wasm = throw "proglodyte-wasm has been removed from nixpkgs, because it is unmaintained since 5 years with zero github stars"; # Added 2021-06-30 + proj_5 = throw "Proj-5 has been removed from nixpkgs, use proj instead"; # Added 2021-04-12 + prometheus-cups-exporter = throw "outdated and broken by design; removed by developer"; # Added 2021-03-16 prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31 prometheus-mesos-exporter = throw "prometheus-mesos-exporter is deprecated and archived by upstream"; # Added 2022-04-05 prometheus-unifi-exporter = throw "prometheus-unifi-exporter is deprecated and archived by upstream, use unifi-poller instead"; # Added 2022-06-03 @@ -960,18 +1196,25 @@ mapAliases ({ pulseaudio-hsphfpd = throw "pulseaudio-hsphfpd upstream has been abandoned"; # Added 2022-03-23 pulseaudio-modules-bt = throw "pulseaudio-modules-bt has been abandoned, and is superseded by pulseaudio's native bt functionality"; # Added 2022-04-01 pulseaudioLight = throw "'pulseaudioLight' has been renamed to/replaced by 'pulseaudio'"; # Converted to throw 2022-02-22 - pulseeffects-pw = throw "'pulseeffects-pw' has been renamed to/replaced by 'easyeffects'"; # Converted to throw 2022-09-24 + pulseeffects = throw "Use pulseeffects-legacy if you use PulseAudio and easyeffects if you use PipeWire"; # Added 2021-02-13 + pulseeffects-pw = easyeffects; # Added 2021-07-07 py-wmi-client = throw "py-wmi-client has been removed: abandoned by upstream"; # Added 2022-04-26 pydb = throw "pydb has been removed: abandoned by upstream"; # Added 2022-04-22 + pyIRCt = throw "pyIRCt has been removed from nixpkgs as it is unmaintained and python2-only"; + pyMAILt = throw "pyMAILt has been removed from nixpkgs as it is unmaintained and python2-only"; + pybind11 = throw "pybind11 was removed because pythonPackages.pybind11 for the appropriate version of Python should be used"; # Added 2021-05-14 pybitmessage = throw "pybitmessage was removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 - pygmentex = throw "'pygmentex' has been renamed to/replaced by 'texlive.bin.pygmentex'"; # Converted to throw 2022-09-24 - pyo3-pack = throw "'pyo3-pack' has been renamed to/replaced by 'maturin'"; # Converted to throw 2022-09-24 + pygmentex = texlive.bin.pygmentex; # Added 2019-12-15 + pyload = throw "pyload has been removed from nixpkgs, as it was unmaintained"; # Added 2021-03-21 + pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd"; # Added 2020-10-24 + pyo3-pack = maturin; pyrex = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 pyrex095 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 pyrex096 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 pyrit = throw "pyrit has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-01 python = python2; # Added 2022-01-11 python-swiftclient = swiftclient; # Added 2021-09-09 + python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead"; # Added 2021-03-08 pythonFull = python2Full; # Added 2022-01-11 pythonPackages = python.pkgs; # Added 2022-01-11 @@ -980,58 +1223,78 @@ mapAliases ({ QmidiNet = throw "'QmidiNet' has been renamed to/replaced by 'qmidinet'"; # Converted to throw 2022-02-22 qca-qt5 = throw "'qca-qt5' has been renamed to/replaced by 'libsForQt5.qca-qt5'"; # Converted to throw 2022-02-22 qca2 = throw "qca2 has been removed, because it depended on qt4"; # Added 2022-05-26 - qcsxcad = throw "'qcsxcad' has been renamed to/replaced by 'libsForQt5.qcsxcad'"; # Converted to throw 2022-09-24 + qcsxcad = libsForQt5.qcsxcad; # Added 2020-11-05 qflipper = qFlipper; # Added 2022-02-11 + qmk_firmware = throw "qmk_firmware has been removed because it was broken"; # Added 2021-04-02 + qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # Added 2020-12-02 qshowdiff = throw "'qshowdiff' (Qt4) is unmaintained and not been updated since its addition in 2010"; # Added 2022-06-14 + qt-3 = throw "qt-3 has been removed from nixpkgs, as it's unmaintained and insecure"; # Added 2021-02-15 qt5ct = libsForQt5.qt5ct; # Added 2021-12-27 - qtcurve = throw "'qtcurve' has been renamed to/replaced by 'libsForQt5.qtcurve'"; # Converted to throw 2022-09-24 + qtcurve = libsForQt5.qtcurve; # Added 2020-11-07 + qtkeychain = throw "the qtkeychain attribute (qt4 version) has been removes, use the qt5 version: libsForQt5.qtkeychain"; # Added 2021-08-04 qtscriptgenerator = throw "'qtscriptgenerator' (Qt4) is unmaintained upstream and not used in nixpkgs"; # Added 2022-06-14 + quagga = throw "quagga is no longer maintained upstream"; # Added 2021-04-22 quake3game = throw "'quake3game' has been renamed to/replaced by 'ioquake3'"; # Converted to throw 2022-02-22 + quaternion-git = throw "quaternion-git has been removed in favor of the stable version 'quaternion'"; # Added 2020-04-09 + quilter = throw "quilter has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-03 + qvim = throw "qvim has been removed"; # Added 2020-08-31 + qweechat = throw "qweechat has been removed because it was broken"; # Added 2021-03-08 qwt6 = throw "'qwt6' has been renamed to/replaced by 'libsForQt5.qwt'"; # Converted to throw 2022-02-22 ### R ### - radare2-cutter = throw "'radare2-cutter' has been renamed to/replaced by 'cutter'"; # Converted to throw 2022-09-24 + radare2-cutter = cutter; # Added 2021-03-30 railcar = throw "'railcar' has been removed, as the upstream project has been abandoned"; # Added 2022-06-27 + raspberrypi-tools = throw "raspberrypi-tools has been removed in favor of identical 'libraspberrypi'"; # Added 2020-12-24 rawdog = throw "rawdog has been removed from nixpkgs as it still requires python2"; # Added 2022-01-01 rdiff_backup = throw "'rdiff_backup' has been renamed to/replaced by 'rdiff-backup'"; # Converted to throw 2022-02-22 rdmd = throw "'rdmd' has been renamed to/replaced by 'dtools'"; # Converted to throw 2022-02-22 readline5 = throw "readline-5 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20 readline62 = throw "readline-6.2 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20 + readline80 = throw "readline-8.0 is no longer supported in nixpkgs, please use 'readline' for main supported version or 'readline81' for most recent version"; # Added 2021-04-22 + redkite = throw "redkite was archived by upstream"; # Added 2021-04-12 redshift-wlr = throw "redshift-wlr has been replaced by gammastep"; # Added 2021-12-25 reicast = throw "reicast has been removed from nixpkgs as it is unmaintained, please use flycast instead"; # Added 2022-03-07 # 3 resholve aliases below added 2022-04-08; drop after 2022-11-30? - resholvePackage = throw "resholvePackage has been renamed to resholve.mkDerivation"; # Added 2022-04-08 - resholveScript = throw "resholveScript has been renamed to resholve.writeScript"; # Added 2022-04-08 - resholveScriptBin = throw "resholveScriptBin has been renamed to resholve.writeScriptBin"; # Added 2022-04-08 + resholvePackage = throw "resholvePackage has been renamed to resholve.mkDerivation"; + resholveScript = throw "resholveScript has been renamed to resholve.writeScript"; + resholveScriptBin = throw "resholveScriptBin has been renamed to resholve.writeScriptBin"; residualvm = throw "residualvm was merged to scummvm code in 2018-06-15; consider using scummvm"; # Added 2021-11-27 retroArchCores = throw "retroArchCores has been removed. Please use overrides instead, e.g.: `retroarch.override { cores = with libretro; [ ... ]; }`"; # Added 2021-11-19 - retroshare06 = throw "'retroshare06' has been renamed to/replaced by 'retroshare'"; # Converted to throw 2022-09-24 + retroshare06 = retroshare; + rfkill = throw "rfkill has been removed, as it's included in util-linux"; # Added 2020-08-23 riak = throw "riak has been removed due to lack of maintainer to update the package"; # Added 2022-06-22 + riak-cs = throw "riak-cs is not maintained anymore"; # Added 2020-10-14 rimshot = throw "rimshot has been removed, because it is broken and no longer maintained upstream"; # Added 2022-01-15 ring-daemon = jami-daemon; # Added 2021-10-26 + rkt = throw "rkt was archived by upstream"; # Added 2020-05-16 rls = throw "rls was discontinued upstream, use rust-analyzer instead"; # Added 2022-09-06 rng_tools = throw "'rng_tools' has been renamed to/replaced by 'rng-tools'"; # Converted to throw 2022-02-22 robomongo = throw "'robomongo' has been renamed to/replaced by 'robo3t'"; # Converted to throw 2022-02-22 rockbox_utility = rockbox-utility; # Added 2022-03-17 - rpiboot-unstable = throw "'rpiboot-unstable' has been renamed to/replaced by 'rpiboot'"; # Converted to throw 2022-09-24 + rocm-runtime-ext = throw "rocm-runtime-ext has been removed, since its functionality was added to rocm-runtime"; #added 2020-08-21 + rpiboot-unstable = rpiboot; # Added 2021-07-30 rr-unstable = rr; # Added 2022-09-17 rssglx = throw "'rssglx' has been renamed to/replaced by 'rss-glx'"; # Converted to throw 2022-02-22 - runCommandNoCC = throw "'runCommandNoCC' has been renamed to/replaced by 'runCommand'"; # Converted to throw 2022-09-24 - runCommandNoCCLocal = throw "'runCommandNoCCLocal' has been renamed to/replaced by 'runCommandLocal'"; # Converted to throw 2022-09-24 + rssh = throw "rssh has been removed from nixpkgs: no upstream releases since 2012, several known CVEs"; # Added 2020-08-25 + rtv = throw "rtv was archived by upstream. Consider using tuir, an actively maintained fork"; # Added 2021-08-08 + rubyMinimal = throw "rubyMinimal was removed due to being unused"; + runCommandNoCC = runCommand; + runCommandNoCCLocal = runCommandLocal; + runwayml = throw "runwayml is now a webapp"; # Added 2021-04-17 rustracerd = throw "rustracerd has been removed because it is broken and unmaintained"; # Added 2021-10-19 - rxvt_unicode = throw "'rxvt_unicode' has been renamed to/replaced by 'rxvt-unicode-unwrapped'"; # Converted to throw 2022-09-24 - rxvt_unicode-with-plugins = throw "'rxvt_unicode-with-plugins' has been renamed to/replaced by 'rxvt-unicode'"; # Converted to throw 2022-09-24 + rxvt_unicode = rxvt-unicode-unwrapped; # Added 2020-02-02 + rxvt_unicode-with-plugins = rxvt-unicode; # Added 2020-02-02 # The alias for linuxPackages*.rtlwifi_new is defined in ./all-packages.nix, # due to it being inside the linuxPackagesFor function. - rtlwifi_new-firmware = throw "'rtlwifi_new-firmware' has been renamed to/replaced by 'rtw88-firmware'"; # Converted to throw 2022-09-24 + rtlwifi_new-firmware = rtw88-firmware; # Added 2021-03-14 ### S ### - s2n = throw "'s2n' has been renamed to/replaced by 's2n-tls'"; # Converted to throw 2022-09-24 + s2n = s2n-tls; # Added 2021-03-03 s3gof3r = throw "s3gof3r has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-04 s6Dns = throw "'s6Dns' has been renamed to/replaced by 's6-dns'"; # Converted to throw 2022-02-22 s6LinuxUtils = throw "'s6LinuxUtils' has been renamed to/replaced by 's6-linux-utils'"; # Converted to throw 2022-02-22 @@ -1041,97 +1304,116 @@ mapAliases ({ salut_a_toi = throw "salut_a_toi was removed because it was broken and used Python 2"; # added 2022-06-05 sam = throw "'sam' has been renamed to/replaced by 'deadpixi-sam'"; # Converted to throw 2022-02-22 samsungUnifiedLinuxDriver = throw "'samsungUnifiedLinuxDriver' has been renamed to/replaced by 'samsung-unified-linux-driver'"; # Converted to throw 2022-02-22 - sane-backends-git = throw "'sane-backends-git' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-09-24 + sane-backends-git = sane-backends; # Added 2021-02-19 saneBackends = throw "'saneBackends' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22 saneBackendsGit = throw "'saneBackendsGit' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22 saneFrontends = throw "'saneFrontends' has been renamed to/replaced by 'sane-frontends'"; # Converted to throw 2022-02-22 - scallion = throw "scallion has been removed, because it is currently unmaintained upstream"; # Added 2021-12-15 + scaff = throw "scaff is deprecated - replaced by https://gitlab.com/jD91mZM2/inc (not in nixpkgs yet)"; # Added 2020-03-01 + scallion = throw "scallion has been removed, because it is currently unmaintained upstream"; # added 2021-12-15 scim = throw "'scim' has been renamed to/replaced by 'sc-im'"; # Converted to throw 2022-02-22 scollector = throw "'scollector' has been renamed to/replaced by 'bosun'"; # Converted to throw 2022-02-22 scribusUnstable = throw "'scribusUnstable' has been renamed to 'scribus'"; # Added 2022-05-13 scyther = throw "scyther has been removed since it currently only supports Python 2, see https://github.com/cascremers/scyther/issues/20"; # Added 2021-10-07 - sdlmame = throw "'sdlmame' has been renamed to/replaced by 'mame'"; # Converted to throw 2022-09-24 + sdlmame = mame; # Added 2019-10-30 + seeks = throw "seeks has been removed from nixpkgs, as it was unmaintained"; # Added 2020-06-21 sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11 - session-desktop-appimage = session-desktop; # Added 2022-08-22 + session-desktop-appimage = session-desktop; shared_mime_info = throw "'shared_mime_info' has been renamed to/replaced by 'shared-mime-info'"; # Converted to throw 2022-02-22 - inherit (libsForQt5.mauiPackages) shelf; # Added 2022-05-17 + inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17 shellinabox = throw "shellinabox has been removed from nixpkgs, as it was unmaintained upstream"; # Added 2021-12-15 sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01 sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01 sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24 skrooge2 = throw "'skrooge2' has been renamed to/replaced by 'skrooge'"; # Converted to throw 2022-02-22 skype = throw "'skype' has been renamed to/replaced by 'skypeforlinux'"; # Converted to throw 2022-02-22 - slack-dark = throw "'slack-dark' has been renamed to/replaced by 'slack'"; # Converted to throw 2022-09-24 + skype4pidgin = throw "skype4pidgin has been remove from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2021-07-14 + skype_call_recorder = throw "skype_call_recorder has been removed from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2020-10-31 + slack-dark = slack; # Added 2020-03-27 slic3r-prusa3d = throw "'slic3r-prusa3d' has been renamed to/replaced by 'prusa-slicer'"; # Converted to throw 2022-02-22 slurm-full = throw "'slurm-full' has been renamed to/replaced by 'slurm'"; # Converted to throw 2022-02-22 - slurm-llnl = throw "'slurm-llnl' has been renamed to/replaced by 'slurm'"; # Converted to throw 2022-09-24 - slurm-llnl-full = throw "'slurm-llnl-full' has been renamed to/replaced by 'slurm-full'"; # Converted to throw 2022-09-24 + slurm-llnl = slurm; # renamed July 2017 + slurm-llnl-full = slurm-full; # renamed July 2017 smbclient = throw "'smbclient' has been renamed to/replaced by 'samba'"; # Converted to throw 2022-02-22 + smugline = throw "smugline has been removed from nixpkgs, as it's unmaintained and depends on deprecated libraries"; # Added 2020-11-04 snack = throw "snack has been removed: broken for 5+ years"; # Added 2022-04-21 soldat-unstable = opensoldat; # Added 2022-07-02 - solr_8 = throw "'solr_8' has been renamed to/replaced by 'solr'"; # Converted to throw 2022-09-24 + solr_8 = solr; # Added 2021-01-30 + # Added 2020-02-10 sourceHanSansPackages = { - japanese = throw "'sourceHanSansPackages.japanese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24 - korean = throw "'sourceHanSansPackages.korean' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24 - simplified-chinese = throw "'sourceHanSansPackages.simplified-chinese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24 - traditional-chinese = throw "'sourceHanSansPackages.traditional-chinese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24 + japanese = source-han-sans; + korean = source-han-sans; + simplified-chinese = source-han-sans; + traditional-chinese = source-han-sans; }; - source-han-sans-japanese = throw "'source-han-sans-japanese' has been renamed to/replaced by 'source-han-sans'"; # Converted to throw 2022-09-24 - source-han-sans-korean = throw "'source-han-sans-korean' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24 - source-han-sans-simplified-chinese = throw "'source-han-sans-simplified-chinese' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24 - source-han-sans-traditional-chinese = throw "'source-han-sans-traditional-chinese' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24 + source-han-sans-japanese = source-han-sans; + source-han-sans-korean = source-han-sans; + source-han-sans-simplified-chinese = source-han-sans; + source-han-sans-traditional-chinese = source-han-sans; sourceHanSerifPackages = { - japanese = throw "'sourceHanSerifPackages.japanese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24 - korean = throw "'sourceHanSerifPackages.korean' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24 - simplified-chinese = throw "'sourceHanSerifPackages.simplified-chinese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24 - traditional-chinese = throw "'sourceHanSerifPackages.traditional-chinese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24 + japanese = source-han-serif; + korean = source-han-serif; + simplified-chinese = source-han-serif; + traditional-chinese = source-han-serif; }; - source-han-serif-japanese = throw "'source-han-serif-japanese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24 - source-han-serif-korean = throw "'source-han-serif-korean' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24 - source-han-serif-simplified-chinese = throw "'source-han-serif-simplified-chinese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24 - source-han-serif-traditional-chinese = throw "'source-han-serif-traditional-chinese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24 + source-han-serif-japanese = source-han-serif; + source-han-serif-korean = source-han-serif; + source-han-serif-simplified-chinese = source-han-serif; + source-han-serif-traditional-chinese = source-han-serif; sourcetrail = throw "sourcetrail has been removed: abandoned by upstream"; # Added 2022-08-14 spaceOrbit = throw "'spaceOrbit' has been renamed to/replaced by 'space-orbit'"; # Converted to throw 2022-02-22 - spectral = throw "'spectral' has been renamed to/replaced by 'neochat'"; # Converted to throw 2022-09-24 + spectral = neochat; # Added 2020-12-27 speech_tools = throw "'speech_tools' has been renamed to/replaced by 'speech-tools'"; # Converted to throw 2022-02-22 speedometer = throw "speedometer has been removed: abandoned by upstream"; # Added 2022-04-24 speedtest_cli = throw "'speedtest_cli' has been renamed to/replaced by 'speedtest-cli'"; # Converted to throw 2022-02-22 sphinxbase = throw "sphinxbase has been removed: unmaintained"; # Added 2022-04-24 spice_gtk = throw "'spice_gtk' has been renamed to/replaced by 'spice-gtk'"; # Converted to throw 2022-02-22 spice_protocol = throw "'spice_protocol' has been renamed to/replaced by 'spice-protocol'"; # Converted to throw 2022-02-22 + spidermonkey_1_8_5 = throw "spidermonkey_1_8_5 has been removed, because it is based on Firefox 4.0 from 2011"; # added 2021-05-03 + spidermonkey_38 = throw "spidermonkey_38 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21 + spidermonkey_60 = throw "spidermonkey_60 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21 spidermonkey_68 = throw "spidermonkey_68 has been removed. Please use spidermonkey_91 instead"; # added 2022-01-04 - spidermonkey = throw "'spidermonkey' has been renamed to/replaced by 'spidermonkey_78'"; # Converted to throw 2022-09-24 + # spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell + spidermonkey = spidermonkey_78; # Added 2020-10-09 split2flac = throw "split2flac has been removed. Consider using the shnsplit command from shntool package or help packaging unflac."; # added 2022-01-13 - spring-boot = throw "'spring-boot' has been renamed to/replaced by 'spring-boot-cli'"; # Converted to throw 2022-09-24 + spring-boot = spring-boot-cli; # added 2020-04-24 sqlite3_analyzer = throw "'sqlite3_analyzer' has been renamed to/replaced by 'sqlite-analyzer'"; # Converted to throw 2022-02-22 sqliteInteractive = throw "'sqliteInteractive' has been renamed to/replaced by 'sqlite-interactive'"; # Converted to throw 2022-02-22 - squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2022-09-24 + squid4 = squid; # added 2019-08-22 srcml = throw "'srcml' has been removed: abandoned by upstream"; # Added 2022-07-21 sshfsFuse = throw "'sshfsFuse' has been renamed to/replaced by 'sshfs-fuse'"; # Converted to throw 2022-02-22 ssmtp = throw "'ssmtp' has been removed due to the software being unmaintained. 'msmtp' can be used as a replacement"; # Added 2022-04-17 - steam-run-native = steam-run; # Added 2022-02-21 + stanchion = throw "Stanchion was part of riak-cs which is not maintained anymore"; # added 2020-10-14 + steam-run-native = steam-run; # added 2022-02-21 stride = throw "'stride' aka. Atlassian Stride is dead since 2019 (bought by Slack)"; # added 2022-06-15 + stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # Added 2021-05-09 subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26 + subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31 sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16 + sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed"; surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22 swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14 sweep-visualizer = throw "'sweep-visualizer' is abondoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-15 - swtpm-tpm2 = throw "'swtpm-tpm2' has been renamed to/replaced by 'swtpm'"; # Converted to throw 2022-09-24 - syncthing-cli = throw "'syncthing-cli' has been renamed to/replaced by 'syncthing'"; # Converted to throw 2022-09-24 + swfdec = throw "swfdec has been removed as broken and unmaintained"; # Added 2020-08-23 + swtpm-tpm2 = swtpm; # Added 2021-02-26 + syncthing-cli = syncthing; # Added 2021-04-06 synology-drive = throw "synology-drive has been superseded by synology-drive-client"; # Added 2021-11-26 system_config_printer = throw "'system_config_printer' has been renamed to/replaced by 'system-config-printer'"; # Converted to throw 2022-02-22 + systemd-cryptsetup-generator = throw "systemd-cryptsetup-generator is now included in the systemd package"; # Added 2020-07-12 + systemd_with_lvm2 = throw "systemd_with_lvm2 is obsolete, enabled by default via the lvm module"; # Added 2020-07-12 systool = throw "'systool' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22 ### T ### tahoelafs = throw "'tahoelafs' has been renamed to/replaced by 'tahoe-lafs'"; # Converted to throw 2022-02-22 - tangogps = throw "'tangogps' has been renamed to/replaced by 'foxtrotgps'"; # Converted to throw 2022-09-24 + tangogps = foxtrotgps; # Added 2020-01-26 taplo-cli = taplo; # Added 2022-07-30 taplo-lsp = taplo; # Added 2022-07-30 + tdm = throw "tdm has been removed because nobody can figure out how to fix OpenAL integration. Use precompiled binary and `steam-run` instead"; teleconsole = throw "teleconsole is archived by upstream"; # Added 2022-04-05 + telepathy-qt = throw "telepathy-qt no longer supports Qt 4. Please use libsForQt5.telepathy instead"; # Added 2020-07-02 telepathy_farstream = throw "'telepathy_farstream' has been renamed to/replaced by 'telepathy-farstream'"; # Converted to throw 2022-02-22 telepathy_gabble = throw "'telepathy_gabble' has been renamed to/replaced by 'telepathy-gabble'"; # Converted to throw 2022-02-22 telepathy_glib = throw "'telepathy_glib' has been renamed to/replaced by 'telepathy-glib'"; # Converted to throw 2022-02-22 @@ -1142,6 +1424,7 @@ mapAliases ({ telepathy_qt = throw "'telepathy_qt' has been renamed to/replaced by 'telepathy-qt'"; # Converted to throw 2022-02-22 telepathy_qt5 = throw "'telepathy_qt5' has been renamed to/replaced by 'libsForQt5.telepathy'"; # Converted to throw 2022-02-22 telnet = throw "'telnet' has been renamed to/replaced by 'inetutils'"; # Converted to throw 2022-02-22 + terminus = throw "terminus has been removed, it was unmaintained in nixpkgs"; # Added 2021-08-21 termonad-with-packages = throw "termonad-with-packages has been renamed to just 'termonad'"; # Added 2022-10-15 terraform-full = throw "terraform-full has been removed, it was an alias for 'terraform.full'"; # Added 2022-08-02 terraform_0_13 = throw "terraform_0_13 has been removed from nixpkgs"; # Added 2022-06-26 @@ -1156,18 +1439,34 @@ mapAliases ({ tex-gyre-termes-math = throw "'tex-gyre-termes-math' has been renamed to/replaced by 'tex-gyre-math.termes'"; # Converted to throw 2022-02-22 textadept11 = textadept; # Added 2022-06-07 tftp_hpa = throw "'tftp_hpa' has been renamed to/replaced by 'tftp-hpa'"; # Converted to throw 2022-02-22 + thunderbird-68 = throw "Thunderbird 68 reached end of life with its final release 68.12.0 on 2020-08-25"; + thunderbird-bin-68 = thunderbird-68; + timescale-prometheus = promscale; # Added 2020-09-29 timedoctor = throw "'timedoctor' has been removed from nixpkgs"; # Added 2022-10-09 - timescale-prometheus = throw "'timescale-prometheus' has been renamed to/replaced by 'promscale'"; # Converted to throw 2022-09-24 timetable = throw "timetable has been removed, as the upstream project has been abandoned"; # Added 2021-09-05 tkcvs = tkrev; # Added 2022-03-07 + togglesg-download = throw "togglesg-download was removed 2021-04-30 as it's unmaintained"; # Added 2021-04-30 tomboy = throw "tomboy is not actively developed anymore and was removed"; # Added 2022-01-27 + tomcat7 = throw "tomcat7 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16 + tomcat8 = throw "tomcat8 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16 + tomcat85 = throw "tomcat85 has been removed from nixpkgs as it has reached end of life"; # Added 2020-03-11 tor-arm = throw "tor-arm has been removed from nixpkgs as the upstream project has been abandoned"; # Added 2022-01-01 torbrowser = throw "'torbrowser' has been renamed to/replaced by 'tor-browser-bundle-bin'"; # Converted to throw 2022-02-22 + torch = throw "torch has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 + torch-hdf5 = throw "torch-hdf5 has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 + torch-repl = throw "torch-repl has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 + torchPackages = throw "torchPackages has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 trang = throw "'trang' has been renamed to/replaced by 'jing-trang'"; # Converted to throw 2022-02-22 transfig = fig2dev; # Added 2022-02-15 + transmission-remote-cli = "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # Added 2020-10-14 transmission_gtk = throw "'transmission_gtk' has been renamed to/replaced by 'transmission-gtk'"; # Converted to throw 2022-02-22 transmission_remote_gtk = throw "'transmission_remote_gtk' has been renamed to/replaced by 'transmission-remote-gtk'"; # Converted to throw 2022-02-22 + transporter = throw "transporter has been removed. It was archived upstream, so it's considered abandoned"; + trebleshot = throw "trebleshot has been removed. It was archived upstream, so it's considered abandoned"; + trilium = throw "trilium has been removed. Please use trilium-desktop instead"; # Added 2020-04-29 truecrypt = throw "'truecrypt' has been renamed to/replaced by 'veracrypt'"; # Converted to throw 2022-02-22 + tuijam = throw "tuijam has been removed because Google Play Music was discontinued"; # Added 2021-03-07 + turbo-geth = throw "turbo-geth has been renamed to erigon"; # Added 2021-08-08 twister = throw "twister has been removed: abandoned by upstream and python2-only"; # Added 2022-04-26 tychus = throw "tychus has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 typora = throw "Newer versions of typora use anti-user encryption and refuse to start. As such it has been removed"; # Added 2021-09-11 @@ -1175,41 +1474,46 @@ mapAliases ({ ### U ### uade123 = uade; # Added 2022-07-30 - uberwriter = throw "'uberwriter' has been renamed to/replaced by 'apostrophe'"; # Converted to throw 2022-09-24 - ubootBeagleboneBlack = throw "'ubootBeagleboneBlack' has been renamed to/replaced by 'ubootAmx335xEVM'"; # Converted to throw 2022-09-24 + uberwriter = apostrophe; # Added 2020-04-23 + ubootBeagleboneBlack = ubootAmx335xEVM; # Added 2020-01-21 uchiwa = throw "uchiwa is deprecated and archived by upstream"; # Added 2022-05-02 ucsFonts = throw "'ucsFonts' has been renamed to/replaced by 'ucs-fonts'"; # Converted to throw 2022-02-22 + ufraw = throw "ufraw is unmaintained and has been removed from nixpkgs. Its successor, nufraw, doesn't seem to be stable enough. Consider using Darktable for now"; # Added 2020-01-11 ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22 - unicorn-emu = throw "'unicorn-emu' has been renamed to/replaced by 'unicorn'"; # Converted to throw 2022-09-24 - unifiStable = throw "'unifiStable' has been renamed to/replaced by 'unifi6'"; # Converted to throw 2022-09-24 + unicorn-emu = unicorn; # Added 2020-10-29 + unifiStable = unifi6; # Added 2020-12-28 unity3d = throw "'unity3d' is unmaintained, has seen no updates in years and depends on deprecated GTK2"; # Added 2022-06-16 - untrunc = throw "'untrunc' has been renamed to/replaced by 'untrunc-anthwlock'"; # Converted to throw 2022-09-24 - urxvt_autocomplete_all_the_things = throw "'urxvt_autocomplete_all_the_things' has been renamed to/replaced by 'rxvt-unicode-plugins.autocomplete-all-the-things'"; # Converted to throw 2022-09-24 - urxvt_bidi = throw "'urxvt_bidi' has been renamed to/replaced by 'rxvt-unicode-plugins.bidi'"; # Converted to throw 2022-09-24 - urxvt_font_size = throw "'urxvt_font_size' has been renamed to/replaced by 'rxvt-unicode-plugins.font-size'"; # Converted to throw 2022-09-24 - urxvt_perl = throw "'urxvt_perl' has been renamed to/replaced by 'rxvt-unicode-plugins.perl'"; # Converted to throw 2022-09-24 - urxvt_perls = throw "'urxvt_perls' has been renamed to/replaced by 'rxvt-unicode-plugins.perls'"; # Converted to throw 2022-09-24 - urxvt_tabbedex = throw "'urxvt_tabbedex' has been renamed to/replaced by 'rxvt-unicode-plugins.tabbedex'"; # Converted to throw 2022-09-24 - urxvt_theme_switch = throw "'urxvt_theme_switch' has been renamed to/replaced by 'rxvt-unicode-plugins.theme-switch'"; # Converted to throw 2022-09-24 - urxvt_vtwheel = throw "'urxvt_vtwheel' has been renamed to/replaced by 'rxvt-unicode-plugins.vtwheel'"; # Converted to throw 2022-09-24 + untrunc = untrunc-anthwlock; # Added 2021-02-01 + urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02 + urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02 + urxvt_font_size = rxvt-unicode-plugins.font-size; # Added 2020-02-02 + urxvt_perl = rxvt-unicode-plugins.perl; # Added 2020-02-02 + urxvt_perls = rxvt-unicode-plugins.perls; # Added 2020-02-02 + urxvt_tabbedex = rxvt-unicode-plugins.tabbedex; # Added 2020-02-02 + urxvt_theme_switch = rxvt-unicode-plugins.theme-switch; # Added 2020-02-02 + urxvt_vtwheel = rxvt-unicode-plugins.vtwheel; # Added 2020-02-02 usb_modeswitch = throw "'usb_modeswitch' has been renamed to/replaced by 'usb-modeswitch'"; # Converted to throw 2022-02-22 - usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2022-09-24 + usbguard-nox = usbguard; # Added 2019-09-04 util-linuxCurses = util-linux; # Added 2022-04-12 + utillinux = util-linux; # Added 2020-11-24 ### V ### - v4l_utils = throw "'v4l_utils' has been renamed to/replaced by 'v4l-utils'"; # Converted to throw 2022-09-24 - vamp = { - vampSDK = throw "'vamp.vampSDK' has been renamed to 'vamp-plugin-sdk'"; # Converted to throw 2022-09-24 - }; - vapor = throw "vapor was removed because it was unmaintained and upstream service no longer exists"; # Added 2022-01-15 + v4l_utils = v4l-utils; # Added 2019-08-07 + vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26 + vapor = throw "vapor was removed because it was unmaintained and upstream service no longer exists"; + varnish62 = throw "varnish62 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26 + varnish63 = throw "varnish63 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26 + varnish65 = throw "varnish65 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-09-15 varnish70 = throw "varnish70 was removed from nixpkgs, because it was superseded upstream. Please switch to a different release"; # Added 2022-03-17 - vdirsyncerStable = throw "vdirsyncerStable has been replaced by vdirsyncer"; # Converted to throw 2022-09-24 + vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168 + venus = throw "venus has been removed from nixpkgs, as it's unmaintained"; # Added 2021-02-05 vgo2nix = throw "vgo2nix has been removed, because it was deprecated. Consider using gomod2nix instead"; # added 2022-08-24 vimbWrapper = throw "'vimbWrapper' has been renamed to/replaced by 'vimb'"; # Converted to throw 2022-02-22 + virtinst = throw "virtinst has been removed, as it's included in virt-manager"; # Added 2021-07-21 virtuoso = throw "virtuoso has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-15 - virtmanager = throw "'virtmanager' has been renamed to/replaced by 'virt-manager'"; # Converted to throw 2022-09-24 - virtmanager-qt = throw "'virtmanager-qt' has been renamed to/replaced by 'virt-manager-qt'"; # Converted to throw 2022-09-24 + virtmanager = virt-manager; # Added 2019-10-29 + virtmanager-qt = virt-manager-qt; # Added 2019-10-29 virtviewer = throw "'virtviewer' has been renamed to/replaced by 'virt-viewer'"; # Converted to throw 2022-02-22 vnc2flv = throw "vnc2flv has been removed: abandoned by upstream"; # Added 2022-03-21 vorbisTools = throw "'vorbisTools' has been renamed to/replaced by 'vorbis-tools'"; # Converted to throw 2022-02-22 @@ -1219,6 +1523,7 @@ mapAliases ({ ### W ### wavesurfer = throw "wavesurfer has been removed: depended on snack which has been removed"; # Added 2022-04-21 + way-cooler = throw "way-cooler is abandoned by its author: https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"; # Added 2020-01-13 webbrowser = throw "webbrowser was removed because it's unmaintained upstream and was marked as broken in nixpkgs for over a year"; # Added 2022-03-21 webkit = throw "'webkit' has been renamed to/replaced by 'webkitgtk'"; # Converted to throw 2022-02-22 weechat-matrix-bridge = throw "'weechat-matrix-bridge' has been renamed to/replaced by 'weechatScripts.weechat-matrix-bridge'"; # Converted to throw 2022-02-22 @@ -1230,12 +1535,12 @@ mapAliases ({ wineStable = throw "'wineStable' has been renamed to/replaced by 'winePackages.stable'"; # Converted to throw 2022-02-22 wineStaging = throw "'wineStaging' has been renamed to/replaced by 'wine-staging'"; # Converted to throw 2022-02-22 wineUnstable = throw "'wineUnstable' has been renamed to/replaced by 'winePackages.unstable'"; # Converted to throw 2022-02-22 - wineWayland = wine-wayland; # Added 2022-01-03 + wineWayland = wine-wayland; winpdb = throw "winpdb has been removed: abandoned by upstream"; # Added 2022-04-22 winusb = throw "'winusb' has been renamed to/replaced by 'woeusb'"; # Converted to throw 2022-02-22 wireguard = throw "'wireguard' has been renamed to/replaced by 'wireguard-tools'"; # Converted to throw 2022-02-22 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name - wmii_hg = wmii; # Added 2022-04-25 + wmii_hg = wmii; ws = throw "ws has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 wxmupen64plus = throw "wxmupen64plus was removed because the upstream disappeared"; # Added 2022-01-31 wxcam = throw "'wxcam' has seen no updates in ten years, crashes (SIGABRT) on startup and depends on deprecated wxGTK28/GNOME2/GTK2, use 'gnome.cheese'"; # Added 2022-06-15 @@ -1243,43 +1548,58 @@ mapAliases ({ ### X ### x11 = throw "'x11' has been renamed to/replaced by 'xlibsWrapper'"; # Converted to throw 2022-02-22 + xara = throw "xara has been removed from nixpkgs. Unmaintained since 2006"; # Added 2020-06-24 xbmc = throw "'xbmc' has been renamed to/replaced by 'kodi'"; # Converted to throw 2022-02-22 xbmc-retroarch-advanced-launchers = kodi-retroarch-advanced-launchers; # Added 2021-11-19 xbmcPlain = throw "'xbmcPlain' has been renamed to/replaced by 'kodiPlain'"; # Converted to throw 2022-02-22 xbmcPlugins = throw "'xbmcPlugins' has been renamed to/replaced by 'kodiPackages'"; # Converted to throw 2022-02-22 - xdg_utils = throw "'xdg_utils' has been renamed to/replaced by 'xdg-utils'"; # Converted to throw 2022-09-24 + xdg_utils = xdg-utils; # Added 2021-02-01 + xfce4-12 = throw "xfce4-12 has been replaced by xfce4-14"; # Added 2020-03-14 xfce4-14 = xfce; - xfceUnstable = throw "'xfceUnstable' has been renamed to/replaced by 'xfce4-14'"; # Converted to throw 2022-09-24 - xineLib = throw "'xineLib' has been renamed to/replaced by 'xine-lib'"; # Converted to throw 2022-09-24 - xineUI = throw "'xineUI' has been renamed to/replaced by 'xine-ui'"; # Converted to throw 2022-09-24 + xfceUnstable = xfce4-14; # Added 2019-09-17 + xineLib = xine-lib; # Added 2021-04-27 + xineUI = xine-ui; # Added 2021-04-27 xmonad_log_applet_gnome3 = throw "'xmonad_log_applet_gnome3' has been renamed to/replaced by 'xmonad_log_applet'"; # Converted to throw 2022-02-22 xmpp-client = throw "xmpp-client has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 + xmpppy = throw "xmpppy has been removed from nixpkgs as it is unmaintained and python2-only"; xp-pen-g430 = throw "xp-pen-g430 has been renamed to xp-pen-g430-driver"; # Converted to throw 2022-06-23 xpf = throw "xpf has been removed: abandoned by upstream"; # Added 2022-04-26 xf86_video_nouveau = throw "'xf86_video_nouveau' has been renamed to/replaced by 'xorg.xf86videonouveau'"; # Converted to throw 2022-02-22 + xf86_input_mtrack = throw '' + xf86_input_mtrack has been removed from nixpkgs as it is broken and + unmaintained. Working alternatives are libinput and synaptics. + ''; + xf86_input_multitouch = throw "xf86_input_multitouch has been removed from nixpkgs"; # Added 2020-01-20 xlibs = throw "'xlibs' has been renamed to/replaced by 'xorg'"; # Converted to throw 2022-02-22 xow = throw ( "Upstream has ended support for 'xow' and the package has been removed" + "from nixpkgs. Users are urged to switch to 'xone'." ); # Added 2022-08-02 xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22 - xv = throw "'xv' has been renamed to/replaced by 'xxv'"; # Converted to throw 2022-09-24 - xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2022-09-24 + xv = xxv; # Added 2020-02-22 + xvfb_run = xvfb-run; # Added 2021-05-07 ### Y ### - yacc = throw "'yacc' has been renamed to/replaced by 'bison'"; # Converted to throw 2022-09-24 + yacc = bison; # moved from top-level 2021-03-14 yafaray-core = libyafaray; # Added 2022-09-23 yarssr = throw "yarssr has been removed as part of the python2 deprecation"; # Added 2022-01-15 youtubeDL = throw "'youtubeDL' has been renamed to/replaced by 'youtube-dl'"; # Converted to throw 2022-02-22 + ytop = throw "ytop has been abandoned by upstream. Consider switching to bottom instead"; + yubikey-neo-manager = throw "yubikey-neo-manager has been removed because it was broken. Use yubikey-manager-qt instead"; # Added 2021-03-08 yuzu-ea = yuzu-early-access; # Added 2022-08-18 - yuzu = throw "'yuzu' has been renamed to/replaced by 'yuzu-mainline'"; # Converted to throw 2022-09-24 + yuzu = yuzu-mainline; # Added 2021-01-25 ### Z ### + zabbix30 = throw "Zabbix 3.0.x is end of life, see https://www.zabbix.com/documentation/5.0/manual/installation/upgrade/sources for a direct upgrade path to 5.0.x"; # Added 2021-04-07 zdfmediathk = throw "'zdfmediathk' has been renamed to/replaced by 'mediathekview'"; # Converted to throw 2022-02-22 + zimreader = throw "zimreader has been removed from nixpkgs as it has been replaced by kiwix-serve and stopped working with modern zimlib versions"; # Added 2021-03-28 zimwriterfs = throw "zimwriterfs is now part of zim-tools"; # Added 2022-06-10. + # TODO(ekleog): add ‘wasm’ alias to ‘ocamlPackages.wasm’ after 19.03 + # branch-off + ocamlPackages_4_00_1 = throw "'ocamlPackages_4_00_1' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_4_00_1'"; # Converted to throw 2022-02-22 ocamlPackages_4_01_0 = throw "'ocamlPackages_4_01_0' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_4_01_0'"; # Converted to throw 2022-02-22 ocamlPackages_4_02 = throw "'ocamlPackages_4_02' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_4_02'"; # Converted to throw 2022-02-22 @@ -1304,15 +1624,68 @@ mapAliases ({ ocamlformat_0_17_0 = throw "ocamlformat_0_17_0 has been removed in favor of newer versions"; # Added 2022-06-01 ocamlformat_0_18_0 = throw "ocamlformat_0_18_0 has been removed in favor of newer versions"; # Added 2022-06-01 - zeroc_ice = throw "'zeroc_ice' has been renamed to 'zeroc-ice'"; # Converted to throw 2022-09-24 + zabbix44 = throw '' + Zabbix 4.4 is end of life. For details on upgrading to Zabbix 5.0 look at + https://www.zabbix.com/documentation/current/manual/installation/upgrade_notes_500 + ''; # Added 2020-08-17 - dina-font-pcf = throw "'dina-font-pcf' has been renamed to/replaced by 'dina-font'"; # Converted to throw 2022-09-24 - gnatsd = throw "'gnatsd' has been renamed to/replaced by 'nats-server'"; # Converted to throw 2022-09-24 + # Added 2019-09-06 + zeroc_ice = pkgs.zeroc-ice; - posix_man_pages = throw "'posix_man_pages' has been renamed to/replaced by 'man-pages-posix'"; # Converted to throw 2022-09-24 + # Added 2020-06-22 + zeromq3 = throw "zeromq3 has been deprecated by zeromq4"; + jzmq = throw "jzmq has been removed from nixpkgs, as it was unmaintained"; + + avian = throw '' + The package doesn't compile anymore on NixOS and both development & + maintenance is abandoned by upstream. + ''; # Cleanup before 21.11, Added 2021-05-07 + ant-dracula-theme = throw "ant-dracula-theme is now dracula-theme, and theme name is Dracula instead of Ant-Dracula"; + dina-font-pcf = dina-font; # Added 2020-02-09 + dnscrypt-proxy = throw "dnscrypt-proxy has been removed. Please use dnscrypt-proxy2"; # Added 2020-02-02 + gcc-snapshot = throw "gcc-snapshot: Marked as broken for >2 years, additionally this 'snapshot' pointed to a fairly old one from gcc7"; + gnatsd = nats-server; # Added 2019-10-28 + + obs-gstreamer = throw '' + obs-gstreamer has been converted into a plugin for use with wrapOBS. + Its new location is obs-studio-plugins.obs-gstreamer. + ''; # Added 2021-06-01 + + obs-move-transition = throw '' + obs-move-transition has been converted into a plugin for use with wrapOBS. + Its new location is obs-studio-plugins.obs-move-transition. + ''; # Added 2021-06-01 + + obs-multi-rtmp = throw '' + obs-multi-rtmp has been converted into a plugin for use with wrapOBS. + Its new location is obs-studio-plugins.obs-multi-rtmp. + ''; # Added 2021-06-01 + + obs-ndi = throw '' + obs-ndi has been converted into a plugin for use with wrapOBS. + Its new location is obs-studio-plugins.obs-ndi. + ''; # Added 2021-06-01 + + obs-v4l2sink = throw "obs-v4l2sink is integrated into upstream OBS since version 26.1"; # Added 2021-06-01 + + obs-wlrobs = throw '' + wlrobs has been converted into a plugin for use with wrapOBS. + Its new location is obs-studio-plugins.wlrobs. + ''; # Added 2021-06-01 + + oraclejdk8psu = throw "The *psu versions of oraclejdk are no longer provided by upstream"; # Cleanup before 20.09 + oraclejre8psu = oraclejdk8psu; # Cleanup before 20.09 + oraclejdk8psu_distro = oraclejdk8psu; # Cleanup before 20.09 + posix_man_pages = man-pages-posix; # Added 2021-04-15 + riot-desktop = throw "riot-desktop is now element-desktop!"; # Cleanup before 21.05 + riot-web = throw "riot-web is now element-web"; # Cleanup before 21.05 + sqldeveloper_18 = throw "sqldeveloper_18 is not maintained anymore!"; # Added 2020-02-04 + todolist = throw "todolist is now ultralist"; # Added 2020-12-27 + tor-browser-bundle = throw "tor-browser-bundle was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead"; # Added 2020-01-10 + tor-browser-unwrapped = throw "tor-browser-unwrapped was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead"; # Added 2020-01-10 torchat = throw "torchat was removed because it was broken and requires Python 2"; # added 2022-06-05 - ttyrec = throw "'ttyrec' has been renamed to/replaced by 'ovh-ttyrec'"; # Converted to throw 2022-09-24 - zplugin = throw "'zplugin' has been renamed to/replaced by 'zinit'"; # Converted to throw 2022-09-24 + ttyrec = ovh-ttyrec; # Added 2021-01-02 + zplugin = zinit; # Added 2021-01-30 zyn-fusion = zynaddsubfx; # Added 2022-08-05 inherit (stdenv.hostPlatform) system; # Added 2021-10-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0c725a0d36e..f1aece0f791 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -763,6 +763,8 @@ with pkgs; run = callPackage ../development/tools/run { }; + ruler = callPackage ../tools/security/ruler { }; + mblock-mlink = callPackage ../development/tools/mblock-mlink { }; mod = callPackage ../development/tools/mod { }; @@ -1562,9 +1564,7 @@ with pkgs; libmirage = callPackage ../applications/emulators/cdemu/libmirage.nix { }; - maiko = callPackage ../applications/emulators/maiko { - inherit (xorg) libX11; - }; + maiko = callPackage ../applications/emulators/maiko { }; mame = libsForQt514.callPackage ../applications/emulators/mame { inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback; @@ -1827,7 +1827,6 @@ with pkgs; ### APPLICATIONS/TERMINAL-EMULATORS alacritty = callPackage ../applications/terminal-emulators/alacritty { - inherit (xorg) libXcursor libXxf86vm libXi; inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL; }; @@ -1870,10 +1869,10 @@ with pkgs; microcom = callPackage ../applications/terminal-emulators/microcom { }; - mlterm = callPackage ../applications/terminal-emulators/mlterm { + mlterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/mlterm { libssh2 = null; openssl = null; - inherit (darwin.apple_sdk.frameworks) Cocoa; + inherit (darwin.apple_sdk_11_0.frameworks) Cocoa; }; mrxvt = callPackage ../applications/terminal-emulators/mrxvt { }; @@ -3194,7 +3193,6 @@ with pkgs; broot = callPackage ../tools/misc/broot { inherit (darwin.apple_sdk.frameworks) Security; - inherit (xorg) libxcb; }; bruteforce-luks = callPackage ../tools/security/bruteforce-luks { }; @@ -4502,9 +4500,7 @@ with pkgs; morsel = callPackage ../tools/text/morsel {}; - mousetweaks = callPackage ../applications/accessibility/mousetweaks { - inherit (xorg) libX11 libXtst libXfixes; - }; + mousetweaks = callPackage ../applications/accessibility/mousetweaks { }; mp3blaster = callPackage ../applications/audio/mp3blaster { }; @@ -5357,9 +5353,7 @@ with pkgs; m17n_lib = callPackage ../tools/inputmethods/m17n-lib { }; - libotf = callPackage ../tools/inputmethods/m17n-lib/otf.nix { - inherit (xorg) libXaw; - }; + libotf = callPackage ../tools/inputmethods/m17n-lib/otf.nix { }; netbird = callPackage ../tools/networking/netbird { inherit (darwin.apple_sdk_11_0.frameworks) Cocoa IOKit Kernel UserNotifications WebKit; @@ -7368,7 +7362,6 @@ with pkgs; gromit-mpx = callPackage ../tools/graphics/gromit-mpx { gtk = gtk3; libappindicator = libappindicator-gtk3; - inherit (xorg) libXdmcp; }; gron = callPackage ../development/tools/gron { }; @@ -7526,7 +7519,6 @@ with pkgs; pixz = callPackage ../tools/compression/pixz { }; plplot = callPackage ../development/libraries/plplot { - inherit (xorg) libX11; inherit (darwin.apple_sdk.frameworks) Cocoa; }; @@ -10256,6 +10248,8 @@ with pkgs; playbar2 = libsForQt5.callPackage ../applications/audio/playbar2 { }; + please = callPackage ../tools/security/please { }; + plecost = callPackage ../tools/security/plecost { }; plujain-ramp = callPackage ../applications/audio/plujain-ramp { }; @@ -10390,6 +10384,8 @@ with pkgs; prettyping = callPackage ../tools/networking/prettyping { }; + pritunl-client = callPackage ../tools/networking/pritunl-client { }; + pritunl-ssh = callPackage ../tools/networking/pritunl-ssh { }; profile-cleaner = callPackage ../tools/misc/profile-cleaner { }; @@ -11665,9 +11661,7 @@ with pkgs; squeekboard = callPackage ../applications/accessibility/squeekboard { }; - sx = callPackage ../tools/X11/sx { - inherit (xorg) xauth xorgserver; - }; + sx = callPackage ../tools/X11/sx { }; systemdgenie = libsForQt5.callPackage ../applications/system/systemdgenie { }; @@ -12024,9 +12018,7 @@ with pkgs; trdl-client = callPackage ../tools/misc/trdl-client { }; - trenchbroom = libsForQt5.callPackage ../applications/misc/trenchbroom { - inherit (xorg) libXxf86vm; - }; + trenchbroom = libsForQt5.callPackage ../applications/misc/trenchbroom { }; trickle = callPackage ../tools/networking/trickle {}; @@ -12452,9 +12444,7 @@ with pkgs; woof = callPackage ../tools/misc/woof { }; - wootility = callPackage ../tools/misc/wootility { - inherit (xorg) libxkbfile; - }; + wootility = callPackage ../tools/misc/wootility { }; wormhole-william = callPackage ../tools/networking/wormhole-william { }; @@ -14789,7 +14779,6 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Security; }; cargo-deps = callPackage ../development/tools/rust/cargo-deps { }; - cargo-download = callPackage ../development/tools/rust/cargo-download { }; cargo-edit = callPackage ../development/tools/rust/cargo-edit { inherit (darwin.apple_sdk.frameworks) Security; }; @@ -14904,7 +14893,6 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration; }; cargo-ui = callPackage ../development/tools/rust/cargo-ui { - inherit (xorg) libX11 libXcursor libXi libXrandr libxcb; inherit (darwin.apple_sdk.frameworks); }; @@ -15893,7 +15881,6 @@ with pkgs; msp430Newlib = callPackage ../development/misc/msp430/newlib.nix { }; msp430NewlibCross = callPackage ../development/misc/msp430/newlib.nix { - inherit (buildPackages.xorg) lndir; newlib = newlibCross; }; @@ -16756,9 +16743,7 @@ with pkgs; flexcpp = callPackage ../development/tools/parsing/flexc++ { }; - geis = callPackage ../development/libraries/geis { - inherit (xorg) libX11 libXext libXi libXtst; - }; + geis = callPackage ../development/libraries/geis { }; gi-docgen = callPackage ../development/tools/documentation/gi-docgen { }; @@ -17043,7 +17028,9 @@ with pkgs; libwhich = callPackage ../development/tools/misc/libwhich { }; - linuxkit = callPackage ../development/tools/misc/linuxkit { }; + linuxkit = callPackage ../development/tools/misc/linuxkit { + inherit (darwin.apple_sdk_11_0.frameworks) Virtualization; + }; lit = callPackage ../development/tools/misc/lit { }; @@ -17475,7 +17462,6 @@ with pkgs; slimerjs = callPackage ../development/tools/slimerjs {}; slint-lsp = callPackage ../development/tools/misc/slint-lsp { - inherit (xorg) libXcursor libXi; inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL; }; @@ -19612,9 +19598,7 @@ with pkgs; libbytesize = callPackage ../development/libraries/libbytesize { }; - libcaca = callPackage ../development/libraries/libcaca { - inherit (xorg) libX11 libXext; - }; + libcaca = callPackage ../development/libraries/libcaca { }; libcacard = callPackage ../development/libraries/libcacard { }; @@ -20858,7 +20842,9 @@ with pkgs; lirc = callPackage ../development/libraries/lirc { }; - liquid-dsp = callPackage ../development/libraries/liquid-dsp { inherit (darwin) cctools; }; + liquid-dsp = callPackage ../development/libraries/liquid-dsp { + inherit (darwin) autoSignDarwinBinariesHook cctools; + }; liquidfun = callPackage ../development/libraries/liquidfun { }; @@ -22475,6 +22461,8 @@ with pkgs; vrpn = callPackage ../development/libraries/vrpn { }; + vsmtp = callPackage ../servers/mail/vsmtp { }; + vsqlite = callPackage ../development/libraries/vsqlite { }; vte = callPackage ../development/libraries/vte { @@ -25789,7 +25777,7 @@ with pkgs; changie = callPackage ../development/tools/changie { }; - cherry = callPackage ../data/fonts/cherry { inherit (xorg) fonttosfnt mkfontdir; }; + cherry = callPackage ../data/fonts/cherry { }; chonburi-font = callPackage ../data/fonts/chonburi { }; @@ -25823,13 +25811,11 @@ with pkgs; culmus = callPackage ../data/fonts/culmus { }; - clearlyU = callPackage ../data/fonts/clearlyU - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + clearlyU = callPackage ../data/fonts/clearlyU { }; cm_unicode = callPackage ../data/fonts/cm-unicode {}; - creep = callPackage ../data/fonts/creep - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + creep = callPackage ../data/fonts/creep { }; crimson = callPackage ../data/fonts/crimson {}; @@ -25841,8 +25827,7 @@ with pkgs; paths = [ dejavu_fonts.out ]; }; - dina-font = callPackage ../data/fonts/dina - { inherit (buildPackages.xorg) mkfontscale; }; + dina-font = callPackage ../data/fonts/dina { }; dns-root-data = callPackage ../data/misc/dns-root-data { }; @@ -25940,8 +25925,7 @@ with pkgs; encode-sans = callPackage ../data/fonts/encode-sans { }; - envypn-font = callPackage ../data/fonts/envypn-font - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + envypn-font = callPackage ../data/fonts/envypn-font { }; execline-man-pages = skawarePackages.execline-man-pages; @@ -25987,8 +25971,7 @@ with pkgs; geolite-legacy = callPackage ../data/misc/geolite-legacy { }; - gohufont = callPackage ../data/fonts/gohufont - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + gohufont = callPackage ../data/fonts/gohufont { }; gnome-user-docs = callPackage ../data/documentation/gnome-user-docs { }; @@ -26432,8 +26415,7 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Security; }; - profont = callPackage ../data/fonts/profont - { inherit (buildPackages.xorg) mkfontscale; }; + profont = callPackage ../data/fonts/profont { }; proggyfonts = callPackage ../data/fonts/proggyfonts { }; @@ -26583,8 +26565,7 @@ with pkgs; scientifica = callPackage ../data/fonts/scientifica { }; - siji = callPackage ../data/fonts/siji - { inherit (buildPackages.xorg) mkfontscale fonttosfnt; }; + siji = callPackage ../data/fonts/siji { }; sound-theme-freedesktop = callPackage ../data/misc/sound-theme-freedesktop { }; @@ -26603,7 +26584,7 @@ with pkgs; source-han-serif = sourceHanPackages.serif; source-han-mono = sourceHanPackages.mono; - spleen = callPackage ../data/fonts/spleen { inherit (buildPackages.xorg) mkfontscale; }; + spleen = callPackage ../data/fonts/spleen { }; stilo-themes = callPackage ../data/themes/stilo { }; @@ -26615,9 +26596,9 @@ with pkgs; taskspooler = callPackage ../tools/system/taskspooler { }; - tamsyn = callPackage ../data/fonts/tamsyn { inherit (buildPackages.xorg) mkfontscale; }; + tamsyn = callPackage ../data/fonts/tamsyn { }; - tamzen = callPackage ../data/fonts/tamzen { inherit (buildPackages.xorg) mkfontscale; }; + tamzen = callPackage ../data/fonts/tamzen { }; tango-icon-theme = callPackage ../data/icons/tango-icon-theme { gtk = res.gtk2; @@ -26641,8 +26622,7 @@ with pkgs; tenderness = callPackage ../data/fonts/tenderness { }; - terminus_font = callPackage ../data/fonts/terminus-font - { inherit (buildPackages.xorg) mkfontscale; }; + terminus_font = callPackage ../data/fonts/terminus-font { }; terminus_font_ttf = callPackage ../data/fonts/terminus-font-ttf { }; @@ -26678,8 +26658,7 @@ with pkgs; ubuntu_font_family = callPackage ../data/fonts/ubuntu-font-family { }; - ucs-fonts = callPackage ../data/fonts/ucs-fonts - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + ucs-fonts = callPackage ../data/fonts/ucs-fonts { }; bront_fonts = callPackage ../data/fonts/bront { }; @@ -26691,8 +26670,7 @@ with pkgs; unfonts-core = callPackage ../data/fonts/unfonts-core { }; - uni-vga = callPackage ../data/fonts/uni-vga - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + uni-vga = callPackage ../data/fonts/uni-vga { }; unicode-character-database = callPackage ../data/misc/unicode-character-database { }; @@ -26700,14 +26678,13 @@ with pkgs; unihan-database = callPackage ../data/misc/unihan-database { }; - unifont = callPackage ../data/fonts/unifont - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + unifont = callPackage ../data/fonts/unifont { }; unifont_upper = callPackage ../data/fonts/unifont_upper { }; unscii = callPackage ../data/fonts/unscii { }; - uw-ttyp0 = callPackage ../data/fonts/uw-ttyp0 { inherit (xorg) fonttosfnt mkfontdir; }; + uw-ttyp0 = callPackage ../data/fonts/uw-ttyp0 { }; u001-font = callPackage ../data/fonts/u001 { }; @@ -27379,9 +27356,7 @@ with pkgs; ciscoPacketTracer8 = callPackage ../applications/networking/cisco-packet-tracer/8.nix { }; - claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { - inherit (xorg) libSM; - }; + claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { }; cligh = python3Packages.callPackage ../development/tools/github/cligh {}; @@ -27495,7 +27470,9 @@ with pkgs; ctop = callPackage ../tools/system/ctop { }; - cubicsdr = callPackage ../applications/radio/cubicsdr { }; + cubicsdr = callPackage ../applications/radio/cubicsdr { + inherit (darwin.apple_sdk.frameworks) Cocoa WebKit; + }; cum = callPackage ../applications/misc/cum { }; @@ -27841,7 +27818,6 @@ with pkgs; epick = callPackage ../applications/graphics/epick { inherit (darwin.apple_sdk.frameworks) AppKit IOKit; - inherit (xorg) libX11 libXcursor libXi libXrandr libxcb; }; epr = callPackage ../applications/misc/epr { }; @@ -28184,11 +28160,11 @@ with pkgs; grandorgue = callPackage ../applications/audio/grandorgue { }; greetd = recurseIntoAttrs { - greetd = callPackage ../os-specific/linux/greetd { }; - gtkgreet = callPackage ../os-specific/linux/gtkgreet { }; - dlm = callPackage ../os-specific/linux/dlm { }; - wlgreet = callPackage ../os-specific/linux/wlgreet { }; - tuigreet = callPackage ../os-specific/linux/tuigreet { }; + dlm = callPackage ../applications/display-managers/greetd/dlm.nix { }; + greetd = callPackage ../applications/display-managers/greetd { }; + gtkgreet = callPackage ../applications/display-managers/greetd/gtkgreet.nix { }; + tuigreet = callPackage ../applications/display-managers/greetd/tuigreet.nix { }; + wlgreet = callPackage ../applications/display-managers/greetd/wlgreet.nix { }; }; goldendict = libsForQt5.callPackage ../applications/misc/goldendict { @@ -29003,12 +28979,8 @@ with pkgs; }; wlroots = wlroots_0_15; - wlroots_0_14 = callPackage ../development/libraries/wlroots/0.14.nix { - inherit (xorg) xcbutilrenderutil; - }; - wlroots_0_15 = callPackage ../development/libraries/wlroots/0.15.nix { - inherit (xorg) xcbutilrenderutil; - }; + wlroots_0_14 = callPackage ../development/libraries/wlroots/0.14.nix { }; + wlroots_0_15 = callPackage ../development/libraries/wlroots/0.15.nix { }; sway-unwrapped = callPackage ../applications/window-managers/sway { }; sway = callPackage ../applications/window-managers/sway/wrapper.nix { }; @@ -29031,9 +29003,7 @@ with pkgs; tiramisu = callPackage ../applications/misc/tiramisu { }; - rlaunch = callPackage ../applications/misc/rlaunch { - inherit (xorg) libX11 libXft libXinerama; - }; + rlaunch = callPackage ../applications/misc/rlaunch { }; rootbar = callPackage ../applications/misc/rootbar {}; @@ -29093,9 +29063,7 @@ with pkgs; i3lock-pixeled = callPackage ../misc/screensavers/i3lock-pixeled { }; - betterlockscreen = callPackage ../misc/screensavers/betterlockscreen { - inherit (xorg) xdpyinfo xrandr xset; - }; + betterlockscreen = callPackage ../misc/screensavers/betterlockscreen { }; multilockscreen = callPackage ../misc/screensavers/multilockscreen { }; @@ -29255,7 +29223,6 @@ with pkgs; inkscape-extensions = recurseIntoAttrs (callPackages ../applications/graphics/inkscape/extensions.nix {}); inlyne = callPackage ../applications/misc/inlyne { - inherit (xorg) libX11 libXcursor libXi libXrandr libxcb; inherit (darwin) libobjc; inherit (darwin.apple_sdk.frameworks) AppKit ApplicationServices CoreFoundation CoreGraphics CoreServices CoreText CoreVideo Foundation Metal QuartzCore Security; }; @@ -29942,7 +29909,6 @@ with pkgs; menumaker = callPackage ../applications/misc/menumaker { }; menyoki = callPackage ../applications/graphics/menyoki { - inherit (xorg) libX11 libXrandr; inherit (darwin.apple_sdk.frameworks) AppKit; }; @@ -31587,9 +31553,7 @@ with pkgs; lightdm_qt = lightdm.override { withQt5 = true; }; - lightdm-enso-os-greeter = callPackage ../applications/display-managers/lightdm-enso-os-greeter { - inherit (xorg) libX11 libXdmcp libpthreadstubs; - }; + lightdm-enso-os-greeter = callPackage ../applications/display-managers/lightdm-enso-os-greeter { }; lightdm-gtk-greeter = callPackage ../applications/display-managers/lightdm/gtk-greeter.nix { inherit (xfce) xfce4-dev-tools; @@ -31836,6 +31800,8 @@ with pkgs; tagainijisho = libsForQt5.callPackage ../applications/office/tagainijisho {}; + tagger = callPackage ../applications/audio/tagger {}; + tahoe-lafs = callPackage ../tools/networking/p2p/tahoe-lafs {}; tailor = callPackage ../applications/version-management/tailor {}; @@ -32690,7 +32656,6 @@ with pkgs; xastir = callPackage ../applications/misc/xastir { rastermagick = imagemagick6; - inherit (xorg) libXt; }; xautomation = callPackage ../tools/X11/xautomation { }; @@ -33259,7 +33224,7 @@ with pkgs; oxen = callPackage ../applications/blockchains/oxen { stdenv = gcc10StdenvCompat; boost = boost17x; }; - masari = callPackage ../applications/blockchains/masari { boost = boost165; }; + masari = callPackage ../applications/blockchains/masari { boost = boost174; }; napari = with python3Packages; toPythonApplication napari; @@ -33772,7 +33737,6 @@ with pkgs; fish-fillets-ng = callPackage ../games/fish-fillets-ng { }; jumpy = callPackage ../games/jumpy { - inherit (xorg) libX11 libXi; inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL; }; @@ -36940,8 +36904,7 @@ with pkgs; tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; - tewi-font = callPackage ../data/fonts/tewi - { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; + tewi-font = callPackage ../data/fonts/tewi { }; texFunctions = callPackage ../tools/typesetting/tex/nix pkgs; diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index e41b075ce71..e6c9434a119 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -40,18 +40,21 @@ mapAliases ({ asyncio-nats-client = nats-py; # added 2022-02-08 Babel = babel; # added 2022-05-06 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 - bt_proximity = throw "'bt_proximity' has been renamed to/replaced by 'bt-proximity'"; # Converted to throw 2022-09-24 + blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 + bt_proximity = bt-proximity; # added 2021-07-02 carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18 class-registry = phx-class-registry; # added 2021-10-05 - ConfigArgParse = throw "'ConfigArgParse' has been renamed to/replaced by 'configargparse'"; # Converted to throw 2022-09-24 + ConfigArgParse = configargparse; # added 2021-03-18 cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14 cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23 dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24 - dateutil = throw "'dateutil' has been renamed to/replaced by 'python-dateutil'"; # Converted to throw 2022-09-24 + dateutil = python-dateutil; # added 2021-07-03 demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 - diff_cover = throw "'diff_cover' has been renamed to/replaced by 'diff-cover'"; # Converted to throw 2022-09-24 - discogs_client = throw "'discogs_client' has been renamed to/replaced by 'discogs-client'"; # Converted to throw 2022-09-24 - djangorestframework-jwt = throw "'djangorestframework-jwt' has been renamed to/replaced by 'drf-jwt'"; # Converted to throw 2022-09-24 + detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04 + dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04 + diff_cover = diff-cover; # added 2021-07-02 + discogs_client = discogs-client; # added 2021-07-02 + djangorestframework-jwt = drf-jwt; # added 2021-07-20 django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18 django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05 django_appconf = django-appconf; # added 2022-03-03 @@ -63,24 +66,26 @@ mapAliases ({ django_polymorphic = django-polymorphic; # added 2022-05-24 django_redis = django-redis; # added 2021-10-11 django_taggit = django-taggit; # added 2021-10-11 - dns = throw "'dns' has been renamed to/replaced by 'dnspython'"; # Converted to throw 2022-09-24 + dns = dnspython; # added 2017-12-10 dogpile_cache = dogpile-cache; # added 2021-10-28 dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20 eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03 email_validator = email-validator; # added 2022-06-22 fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30 + faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12 flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20 flask_testing = flask-testing; # added 2022-04-25 flask_wtf = flask-wtf; # added 2022-05-24 garminconnect-ha = garminconnect; # added 2022-02-05 + gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14 glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28 - google_api_python_client = throw "'google_api_python_client' has been renamed to/replaced by 'google-api-python-client'"; # Converted to throw 2022-09-24 - googleapis_common_protos = throw "'googleapis_common_protos' has been renamed to/replaced by 'googleapis-common-protos'"; # Converted to throw 2022-09-24 + google_api_python_client = google-api-python-client; # added 2021-03-19 + googleapis_common_protos = googleapis-common-protos; # added 2021-03-19 graphite_api = throw "graphite_api was removed, because it is no longer maintained"; # added 2022-07-10 graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09 - grpc_google_iam_v1 = throw "'grpc_google_iam_v1' has been renamed to/replaced by 'grpc-google-iam-v1'"; # Converted to throw 2022-09-24 + grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21 ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06 - HAP-python = throw "'HAP-python' has been renamed to/replaced by 'hap-python'"; # Converted to throw 2022-09-24 + HAP-python = hap-python; # added 2021-06-01 hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29 @@ -94,7 +99,7 @@ mapAliases ({ lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04 loo-py = loopy; # added 2022-05-03 Markups = markups; # added 2022-02-14 - MechanicalSoup = throw "'MechanicalSoup' has been renamed to/replaced by 'mechanicalsoup'"; # Converted to throw 2022-09-24 + MechanicalSoup = mechanicalsoup; # added 2021-06-01 memcached = python-memcached; # added 2022-05-06 mailman = throw "Please use pkgs.mailman"; # added 2022-04-29 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 @@ -112,8 +117,9 @@ mapAliases ({ poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29 postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29 powerlineMemSegment = powerline-mem-segment; # added 2021-10-08 - prometheus_client = throw "'prometheus_client' has been renamed to/replaced by 'prometheus-client'"; # Converted to throw 2022-09-24 - prompt_toolkit = throw "'prompt_toolkit' has been renamed to/replaced by 'prompt-toolkit'"; # Converted to throw 2022-09-24 + privacyidea = throw "privacyidea has been renamed to pkgs.privacyidea"; # added 2021-06-20 + prometheus_client = prometheus-client; # added 2021-06-10 + prompt_toolkit = prompt-toolkit; # added 2021-07-22 pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15 @@ -122,8 +128,10 @@ mapAliases ({ pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 pyjson5 = json5; # added 2022-08-28 + pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 PyLD = pyld; # added 2022-06-22 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0 + pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04 pyreadability = readability-lxml; # added 2022-05-24 pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 @@ -136,43 +144,48 @@ mapAliases ({ pysmart-smartx = pysmart; # added 2021-10-22 pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 pytest_6 = pytest; # added 2022-02-10 - pytestcov = throw "'pytestcov' has been renamed to/replaced by 'pytest-cov'"; # Converted to throw 2022-09-24 - pytest-pep8 = throw "'pytest-pep8' has been renamed to/replaced by 'pytestpep8'"; # Converted to throw 2022-09-24 + pytestcov = pytest-cov; # added 2021-01-04 + pytest-pep8 = pytestpep8; # added 2021-01-04 pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12 pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09 - pytestquickcheck = throw "'pytestquickcheck' has been renamed to/replaced by 'pytest-quickcheck'"; # Converted to throw 2022-09-24 - pytestrunner = throw "'pytestrunner' has been renamed to/replaced by 'pytest-runner'"; # Converted to throw 2022-09-24 + pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 + pytestquickcheck = pytest-quickcheck; # added 2021-07-20 + pytestrunner = pytest-runner; # added 2021-01-04 python-igraph = igraph; # added 2021-11-11 - python-lz4 = throw "'python-lz4' has been renamed to/replaced by 'lz4'"; # Converted to throw 2022-09-24 + python-lz4 = lz4; # added 2018-06-01 python_magic = python-magic; # added 2022-05-07 python_mimeparse = python-mimeparse; # added 2021-10-31 python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03 python-subunit = subunit; # added 2021-09-10 - pytest_xdist = throw "'pytest_xdist' has been renamed to/replaced by 'pytest-xdist'"; # Converted to throw 2022-09-24 - python_simple_hipchat = throw "'python_simple_hipchat' has been renamed to/replaced by 'python-simple-hipchat'"; # Converted to throw 2022-09-24 + pytest_xdist = pytest-xdist; # added 2021-01-04 + python_simple_hipchat = python-simple-hipchat; # added 2021-07-21 pytorch = torch; # added 2022-09-30 pytorch-bin = torch-bin; # added 2022-09-30 pytorchWithCuda = torchWithCuda; # added 2022-09-30 pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30 pytwitchapi = twitchapi; # added 2022-03-07 + qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05 repeated_test = throw "repeated_test is no longer maintained"; # added 2022-01-11 requests_oauthlib = requests-oauthlib; # added 2022-02-12 - requests_toolbelt = throw "'requests_toolbelt' has been renamed to/replaced by 'requests-toolbelt'"; # Converted to throw 2022-09-24 + requests_toolbelt = requests-toolbelt; # added 2017-09-26 roboschool = throw "roboschool is deprecated in favor of PyBullet and has been removed"; # added 2022-01-15 - ROPGadget = throw "'ROPGadget' has been renamed to/replaced by 'ropgadget'"; # Converted to throw 2022-09-24 + ROPGadget = ropgadget; # added 2021-07-06 + rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01 ruamel_base = ruamel-base; # added 2021-11-01 ruamel_yaml = ruamel-yaml; # added 2021-11-01 ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01 sapi-python-client = kbcstorage; # added 2022-04-20 - scikitlearn = throw "'scikitlearn' has been renamed to/replaced by 'scikit-learn'"; # Converted to throw 2022-09-24 - setuptools_scm = throw "'setuptools_scm' has been renamed to/replaced by 'setuptools-scm'"; # Converted to throw 2022-09-24 + scikitlearn = scikit-learn; # added 2021-07-21 + selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10 + setuptools_scm = setuptools-scm; # added 2021-06-03 sharkiqpy = sharkiq; # added 2022-05-21 - smart_open = throw "'smart_open' has been renamed to/replaced by 'smart-open'"; # Converted to throw 2022-09-24 - SPARQLWrapper = sparqlwrapper; # Added 2022-03-31 + smart_open = smart-open; # added 2021-03-14 + smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14 + SPARQLWrapper = sparqlwrapper; sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03 - sphinxcontrib_plantuml = throw "'sphinxcontrib_plantuml' has been renamed to/replaced by 'sphinxcontrib-plantuml'"; # Converted to throw 2022-09-24 + sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02 sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28 SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23 tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25 @@ -180,12 +193,13 @@ mapAliases ({ tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25 tensorflow-tensorboard = tensorboard; # added 2022-03-06 tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25 + tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05 types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30 types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30 WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29 webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29 - websocket_client = throw "'websocket_client' has been renamed to/replaced by 'websocket-client'"; # Converted to throw 2022-09-24 + websocket_client = websocket-client; # added 2021-06-15 xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31 - zc-buildout221 = throw "'zc-buildout221' has been renamed to/replaced by 'zc-buildout'"; # Converted to throw 2022-09-24 - zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules"; # Added 2021-12-08 + zc-buildout221 = zc-buildout; # added 2021-07-21 + zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules"; }) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b49f7e43e1b..5823cd11d4a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -291,6 +291,8 @@ in { aiocontextvars = callPackage ../development/python-modules/aiocontextvars { }; + aiocsv = callPackage ../development/python-modules/aiocsv { }; + aiocurrencylayer = callPackage ../development/python-modules/aiocurrencylayer { }; aiodiscover = callPackage ../development/python-modules/aiodiscover { }; @@ -9632,6 +9634,8 @@ in { readthedocs-sphinx-ext = callPackage ../development/python-modules/readthedocs-sphinx-ext { }; + reactivex = callPackage ../development/python-modules/reactivex { }; + rebulk = callPackage ../development/python-modules/rebulk { }; recaptcha_client = callPackage ../development/python-modules/recaptcha_client { };