lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
c90a48c2 9d2a6192

+977 -383
+6
maintainers/maintainer-list.nix
··· 3744 3744 githubId = 537775; 3745 3745 name = "Emery Hemingway"; 3746 3746 }; 3747 + eigengrau = { 3748 + email = "seb@schattenkopie.de"; 3749 + name = "Sebastian Reuße"; 3750 + github = "eigengrau"; 3751 + githubId = 4939947; 3752 + }; 3747 3753 eikek = { 3748 3754 email = "eike.kettner@posteo.de"; 3749 3755 github = "eikek";
+28
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 72 72 </listitem> 73 73 <listitem> 74 74 <para> 75 + <literal>emacs</literal> enables native compilation which 76 + means: 77 + </para> 78 + <itemizedlist spacing="compact"> 79 + <listitem> 80 + <para> 81 + emacs packages from nixpkgs, builtin or not, will do 82 + native compilation ahead of time so you can enjoy the 83 + benefit of native compilation without compiling them on 84 + you machine; 85 + </para> 86 + </listitem> 87 + <listitem> 88 + <para> 89 + emacs packages from somewhere else, e.g. 90 + <literal>package-install</literal>, will do asynchronously 91 + deferred native compilation. If you do not want this, 92 + maybe to avoid CPU consumption for compilation, you can 93 + use 94 + <literal>(setq native-comp-deferred-compilation nil)</literal> 95 + to disable it while still enjoy the benefit of native 96 + compilation for packages from nixpkgs. 97 + </para> 98 + </listitem> 99 + </itemizedlist> 100 + </listitem> 101 + <listitem> 102 + <para> 75 103 <literal>nixos-generate-config</literal> now generates 76 104 configurations that can be built in pure mode. This is 77 105 achieved by setting the new
+4
nixos/doc/manual/release-notes/rl-2211.section.md
··· 35 35 for a transition period so that in time the ecosystem can switch without 36 36 breaking compatibility with any supported NixOS release. 37 37 38 + - `emacs` enables native compilation which means: 39 + - emacs packages from nixpkgs, builtin or not, will do native compilation ahead of time so you can enjoy the benefit of native compilation without compiling them on you machine; 40 + - emacs packages from somewhere else, e.g. `package-install`, will do asynchronously deferred native compilation. If you do not want this, maybe to avoid CPU consumption for compilation, you can use `(setq native-comp-deferred-compilation nil)` to disable it while still enjoy the benefit of native compilation for packages from nixpkgs. 41 + 38 42 - `nixos-generate-config` now generates configurations that can be built in pure 39 43 mode. This is achieved by setting the new `nixpkgs.hostPlatform` option. 40 44
+2
nixos/lib/systemd-lib.nix
··· 285 285 Documentation = toString config.documentation; } 286 286 // optionalAttrs (config.onFailure != []) { 287 287 OnFailure = toString config.onFailure; } 288 + // optionalAttrs (config.onSuccess != []) { 289 + OnSuccess = toString config.onSuccess; } 288 290 // optionalAttrs (options.startLimitIntervalSec.isDefined) { 289 291 StartLimitIntervalSec = toString config.startLimitIntervalSec; 290 292 } // optionalAttrs (options.startLimitBurst.isDefined) {
+9
nixos/lib/systemd-unit-options.nix
··· 206 206 ''; 207 207 }; 208 208 209 + onSuccess = mkOption { 210 + default = []; 211 + type = types.listOf unitNameType; 212 + description = '' 213 + A list of one or more units that are activated when 214 + this unit enters the "inactive" state. 215 + ''; 216 + }; 217 + 209 218 startLimitBurst = mkOption { 210 219 type = types.int; 211 220 description = ''
+8
nixos/modules/hardware/video/hidpi.nix
··· 11 11 console.earlySetup = mkDefault true; 12 12 boot.loader.systemd-boot.consoleMode = mkDefault "1"; 13 13 14 + 15 + # Grayscale anti-aliasing for fonts 16 + fonts.fontconfig.antialias = mkDefault true; 17 + fonts.fontconfig.subpixel = { 18 + rgba = mkDefault "none"; 19 + lcdfilter = mkDefault "none"; 20 + }; 21 + 14 22 # TODO Find reasonable defaults X11 & wayland 15 23 }; 16 24 }
+2 -2
nixos/modules/security/acme/doc.xml
··· 81 81 }; 82 82 83 83 # We can also add a different vhost and reuse the same certificate 84 - # but we have to append extraDomainNames manually. 85 - <link linkend="opt-security.acme.certs._name_.extraDomainNames">security.acme.certs."foo.example.com".extraDomainNames</link> = [ "baz.example.com" ]; 84 + # but we have to append extraDomainNames manually beforehand: 85 + # <link linkend="opt-security.acme.certs._name_.extraDomainNames">security.acme.certs."foo.example.com".extraDomainNames</link> = [ "baz.example.com" ]; 86 86 "baz.example.com" = { 87 87 <link linkend="opt-services.nginx.virtualHosts._name_.forceSSL">forceSSL</link> = true; 88 88 <link linkend="opt-services.nginx.virtualHosts._name_.useACMEHost">useACMEHost</link> = "foo.example.com";
+1 -1
nixos/modules/tasks/network-interfaces-systemd.nix
··· 134 134 # Most of these route options have not been tested. 135 135 # Please fix or report any mistakes you may find. 136 136 routeConfig = 137 - optionalAttrs (route.prefixLength > 0) { 137 + optionalAttrs (route.address != null && route.prefixLength != null) { 138 138 Destination = "${route.address}/${toString route.prefixLength}"; 139 139 } // 140 140 optionalAttrs (route.options ? fastopen_no_cookie) {
+3 -1
nixos/tests/bitcoind.nix
··· 13 13 users.rpc2.passwordHMAC = "1495e4a3ad108187576c68f7f9b5ddc5$accce0881c74aa01bb8960ff3bdbd39f607fd33178147679e055a4ac35f53225"; 14 14 }; 15 15 }; 16 + 17 + environment.etc."test.blank".text = ""; 16 18 services.bitcoind."testnet" = { 17 19 enable = true; 18 - configFile = "/test.blank"; 20 + configFile = "/etc/test.blank"; 19 21 testnet = true; 20 22 rpc = { 21 23 port = 18332;
+1 -1
pkgs/applications/editors/emacs/generic.nix
··· 26 26 , withWebP ? false 27 27 , srcRepo ? true, autoreconfHook ? null, texinfo ? null 28 28 , siteStart ? ./site-start.el 29 - , nativeComp ? false 29 + , nativeComp ? true 30 30 , withAthena ? false 31 31 , withToolkitScrollBars ? true 32 32 , withPgtk ? false
+6 -6
pkgs/applications/editors/vscode/vscode.nix
··· 15 15 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 16 16 17 17 sha256 = { 18 - x86_64-linux = "04frcbgjvnik1b4ipvyk6v99i9mydkwj9g6b58rns4xd52p9v3sj"; 19 - x86_64-darwin = "1jhj15jn0xqahjldyibqp22l2bs4g1s76rzwp27nmcmp7d9frrlj"; 20 - aarch64-linux = "03vpq8l4392xaqp48jp7994hp29ayr9ny69svyrrdhyasrcsrb9c"; 21 - aarch64-darwin = "0k0nw4jx3cqcjla4ms2p2b57axgn9f69glp1qc9bqv28cbdnyzv8"; 22 - armv7l-linux = "0vz3cfwmcm0s79z3sx0c2l2nnsprassp4yxqh6gy5g4p9b7rr61k"; 18 + x86_64-linux = "08p4l47zr4dm7mw65wwdsf6q1wkzkzg3l2y5zrs3ng3nafql96zs"; 19 + x86_64-darwin = "1pf8xpg2sb0iwfaixvzhmglqrrky2625b66fjwlc5zkj0dlff106"; 20 + aarch64-linux = "1c35s7zykcrqf3va1cv7hqf1dp3cl70kdvqv3vgflqldc1wcza9h"; 21 + aarch64-darwin = "1jpsf54x7yy53d6766gpw90ngdi6kicpqm1qbzbmmsasndl7rklp"; 22 + armv7l-linux = "10vj751bjdkzsdcrdpq6xb430pdhdbz8ysk835ir64i3mv6ygi7k"; 23 23 }.${system} or throwSystem; 24 24 in 25 25 callPackage ./generic.nix rec { 26 26 # Please backport all compatible updates to the stable release. 27 27 # This is important for the extension ecosystem. 28 - version = "1.70.1"; 28 + version = "1.70.2"; 29 29 pname = "vscode"; 30 30 31 31 executableName = "code" + lib.optionalString isInsiders "-insiders";
+2 -2
pkgs/applications/networking/cluster/temporal/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "temporal"; 5 - version = "1.17.2"; 5 + version = "1.17.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "temporalio"; 9 9 repo = "temporal"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-V80v8nRHAshPnyWdBb4ahCn5FfzT906oZlhalZ547Nk="; 11 + sha256 = "sha256-FT1GOhB3PN5CBktMm5Z2xe6MF3U/BUQj7XViinTjWG4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-MT/BmGTdyEzmXjuwlA6WhLIWlrQz3Wc4Tl5dMI1587Q=";
+8 -4
pkgs/applications/networking/feedreaders/newsflash/default.nix
··· 15 15 , webkitgtk 16 16 , glib-networking 17 17 , librsvg 18 - , xdg-utils 19 18 , gst_all_1 19 + , xdg-utils 20 20 }: 21 21 22 22 stdenv.mkDerivation rec { ··· 78 78 79 79 # SVG support for gdk-pixbuf 80 80 librsvg 81 - 82 - # Open links in browser 83 - xdg-utils 84 81 ] ++ (with gst_all_1; [ 85 82 # Audio & video support for webkitgtk WebView 86 83 gstreamer ··· 88 85 gst-plugins-good 89 86 gst-plugins-bad 90 87 ]); 88 + 89 + preFixup = '' 90 + gappsWrapperArgs+=(--suffix PATH : "${lib.makeBinPath [ 91 + # Open links in browser 92 + xdg-utils 93 + ]}") 94 + ''; 91 95 92 96 meta = with lib; { 93 97 description = "A modern feed reader designed for the GNOME desktop";
+2 -2
pkgs/applications/science/logic/cbmc/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "cbmc"; 16 - version = "5.63.0"; 16 + version = "5.64.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "diffblue"; 20 20 repo = pname; 21 21 rev = "${pname}-${version}"; 22 - sha256 = "sha256-4tn3wsmaYdo5/QaZc3MLxVGF0x8dmRKeygF/8A+Ww1o="; 22 + sha256 = "sha256-FQoUNJV5eq/qGc6fdNlMHQADGipx9dxkb4EFRNX7h6w="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+1
pkgs/applications/video/obs-studio/plugins/default.nix
··· 11 11 obs-nvfbc = callPackage ./obs-nvfbc.nix {}; 12 12 obs-pipewire-audio-capture = callPackage ./obs-pipewire-audio-capture.nix {}; 13 13 obs-vkcapture = callPackage ./obs-vkcapture.nix {}; 14 + obs-backgroundremoval = callPackage ./obs-backgroundremoval.nix {}; 14 15 }
+36
pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval-includes.patch
··· 1 + diff --git a/src/Model.h b/src/Model.h 2 + index 5c21eae..74b8078 100644 3 + --- a/src/Model.h 4 + +++ b/src/Model.h 5 + @@ -1,13 +1,8 @@ 6 + #ifndef MODEL_H 7 + #define MODEL_H 8 + 9 + -#if defined(__APPLE__) 10 + #include <onnxruntime/core/session/onnxruntime_cxx_api.h> 11 + #include <onnxruntime/core/providers/cpu/cpu_provider_factory.h> 12 + -#else 13 + -#include <onnxruntime_cxx_api.h> 14 + -#include <cpu_provider_factory.h> 15 + -#endif 16 + #ifdef _WIN32 17 + #ifdef WITH_CUDA 18 + #include <cuda_provider_factory.h> 19 + diff --git a/src/background-filter.cpp b/src/background-filter.cpp 20 + index 9fa5794..5d66aee 100644 21 + --- a/src/background-filter.cpp 22 + +++ b/src/background-filter.cpp 23 + @@ -1,13 +1,8 @@ 24 + #include <obs-module.h> 25 + #include <media-io/video-scaler.h> 26 + 27 + -#if defined(__APPLE__) 28 + #include <onnxruntime/core/session/onnxruntime_cxx_api.h> 29 + #include <onnxruntime/core/providers/cpu/cpu_provider_factory.h> 30 + -#else 31 + -#include <onnxruntime_cxx_api.h> 32 + -#include <cpu_provider_factory.h> 33 + -#endif 34 + #ifdef _WIN32 35 + #ifdef WITH_CUDA 36 + #include <cuda_provider_factory.h>
+45
pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , cmake 6 + , obs-studio 7 + , onnxruntime 8 + , opencv 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "obs-backgroundremoval"; 13 + version = "0.4.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "royshil"; 17 + repo = "obs-backgroundremoval"; 18 + rev = "v${version}"; 19 + sha256 = "sha256-TI1FlhE0+JL50gAZCSsI+g8savX8GRQkH3jYli/66hQ="; 20 + }; 21 + 22 + nativeBuildInputs = [ cmake ]; 23 + buildInputs = [ obs-studio onnxruntime opencv ]; 24 + 25 + dontWrapQtApps = true; 26 + 27 + cmakeFlags = [ 28 + "-DLIBOBS_INCLUDE_DIR=${obs-studio.src}/libobs" 29 + "-DOnnxruntime_INCLUDE_DIRS=${onnxruntime.dev}/include/onnxruntime/core/session" 30 + ]; 31 + 32 + patches = [ ./obs-backgroundremoval-includes.patch ]; 33 + 34 + prePatch = '' 35 + sed -i 's/version_from_git()/set(VERSION "${version}")/' CMakeLists.txt 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "OBS plugin to replace the background in portrait images and video"; 40 + homepage = "https://github.com/royshil/obs-backgroundremoval"; 41 + maintainers = with maintainers; [ puffnfresh ]; 42 + license = licenses.mit; 43 + platforms = [ "x86_64-linux" "i686-linux" ]; 44 + }; 45 + }
+3 -3
pkgs/applications/virtualization/cloud-hypervisor/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cloud-hypervisor"; 5 - version = "25.0"; 5 + version = "26.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloud-hypervisor"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vYF0ReYUcWaMbJW920sJHqw6OwzlRS1c/zjG8COs3OI="; 11 + sha256 = "sha256-choTT20TVp42nN/vS6xCDA7Mbf1ZuAE1tFQZn49g9ak="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ openssl ] ++ lib.optional stdenv.isAarch64 dtc; 16 16 17 - cargoSha256 = "sha256-l0nczPcncLhKw9yGmFozLzW5EOdeZcVGp0a84j4wN0w="; 17 + cargoSha256 = "sha256-mmyaT24he33wLI3zLOOKhVtzrPRyWzKgXUvc37suy5E="; 18 18 19 19 OPENSSL_NO_VENDOR = true; 20 20
+45
pkgs/development/compilers/ballerina/default.nix
··· 1 + { ballerina, lib, writeText, runCommand, makeWrapper, fetchzip, stdenv, openjdk }: 2 + let 3 + version = "2201.1.0"; 4 + codeName = "swan-lake"; 5 + in stdenv.mkDerivation { 6 + pname = "ballerina"; 7 + inherit version; 8 + 9 + src = fetchzip { 10 + url = "https://dist.ballerina.io/downloads/${version}/ballerina-${version}-${codeName}.zip"; 11 + sha256 = "sha256-WZ6CvgnES1indYeMSuC3odDqwR2J27k+D8RktvHsELs="; 12 + }; 13 + 14 + nativeBuildInputs = [ makeWrapper ]; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + cp -rv distributions/ballerina-${version} $out 19 + runHook postInstall 20 + ''; 21 + preFixup = '' 22 + wrapProgram $out/bin/bal --set JAVA_HOME ${openjdk}/lib/openjdk 23 + ''; 24 + 25 + passthru.tests.smokeTest = let 26 + helloWorld = writeText "hello-world.bal" '' 27 + import ballerina/io; 28 + public function main() { 29 + io:println("Hello, World!"); 30 + } 31 + ''; 32 + in runCommand "ballerina-${version}-smoketest" { } '' 33 + ${ballerina}/bin/bal run ${helloWorld} >$out 34 + read result <$out 35 + [[ $result = "Hello, World!" ]] 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "An open-source programming language for the cloud"; 40 + license = licenses.asl20; 41 + platforms = openjdk.meta.platforms; 42 + maintainers = with maintainers; [ eigengrau ]; 43 + sourceProvenance = with sourceTypes; [ binaryBytecode ]; 44 + }; 45 + }
+2 -2
pkgs/development/compilers/gcc/12/default.nix
··· 70 70 ./PR106102-musl-poison-cpp.patch 71 71 ./PR106102-musl-poison-jit.patch 72 72 ] ++ optional (stdenv.isDarwin && stdenv.isAarch64) (fetchpatch { 73 - url = "https://github.com/fxcoudert/gcc/compare/releases/gcc-11.1.0...gcc-11.1.0-arm-20210504.diff"; 74 - sha256 = "sha256-JqCGJAfbOxSmkNyq49aFHteK/RFsCSLQrL9mzUCnaD0="; 73 + url = "https://github.com/Homebrew/formula-patches/raw/76677f2b/gcc/gcc-12.1.0-arm.diff"; 74 + sha256 = "sha256-IcCYHSCAElJqTAZELJnRRWo0/SlkgQzSvoMjYr3pgD0="; 75 75 }) 76 76 ++ optional langD ../libphobos.patch 77 77
+2 -2
pkgs/development/interpreters/jruby/default.nix
··· 6 6 jruby = stdenv.mkDerivation rec { 7 7 pname = "jruby"; 8 8 9 - version = "9.3.6.0"; 9 + version = "9.3.7.0"; 10 10 11 11 src = fetchurl { 12 12 url = "https://s3.amazonaws.com/jruby.org/downloads/${version}/jruby-bin-${version}.tar.gz"; 13 - sha256 = "sha256-dHr2r5mmdPII9A2o2yLXfG2kk6gygOmQtS1SOr2UmeI="; 13 + sha256 = "sha256-lKeos77qwiU6iHbnOt+sa+zssrVNLd+mjyRdyBln0ME="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ makeWrapper ];
+5 -4
pkgs/development/interpreters/renpy/default.nix
··· 10 10 # base_version is of the form major.minor.patch 11 11 # vc_version is of the form YYMMDDCC 12 12 # version corresponds to the tag on GitHub 13 - base_version = "8.0.0"; 14 - vc_version = "22062402"; 13 + base_version = "8.0.1"; 14 + vc_version = "22070801"; 15 15 version = "${base_version}.${vc_version}"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "renpy"; 19 19 repo = "renpy"; 20 20 rev = version; 21 - sha256 = "sha256-37Hbs0i5eXMjVaETX7ImJCak0y8XtEHUaRFceA9J39A="; 21 + sha256 = "sha256-rwRykovY8vv+boQiaSjCBoGxGpT1dF3qdEyxkykrKyk="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 41 41 42 42 patches = [ 43 43 ./renpy-system-fribidi.diff 44 + ./shutup-erofs-errors.patch 44 45 ]; 45 46 46 47 postPatch = '' ··· 71 72 72 73 makeWrapper ${python.interpreter} $out/bin/renpy \ 73 74 --set PYTHONPATH "$PYTHONPATH:$out/${python.sitePackages}" \ 74 - --add-flags "-O $out/share/renpy/renpy.py" 75 + --add-flags "$out/share/renpy/renpy.py" 75 76 76 77 runHook postInstall 77 78 '';
+29
pkgs/development/interpreters/renpy/shutup-erofs-errors.patch
··· 1 + From 1660c8f20ac807fcd0ce65a8b9dc31e646a40711 Mon Sep 17 00:00:00 2001 2 + From: =?UTF-8?q?=E5=A4=9C=E5=9D=82=E9=9B=85?= 3 + <23130178+ShadowRZ@users.noreply.github.com> 4 + Date: Sat, 13 Aug 2022 19:26:42 +0800 5 + Subject: [PATCH] Don't print a backtrace on EROFS 6 + 7 + This can shut up EROFS errors caused by writing to read-only /nix/store. 8 + --- 9 + renpy/script.py | 4 ++++ 10 + 1 file changed, 4 insertions(+) 11 + 12 + diff --git a/renpy/script.py b/renpy/script.py 13 + index 3e5dae8..8f103c1 100644 14 + --- a/renpy/script.py 15 + +++ b/renpy/script.py 16 + @@ -656,6 +656,10 @@ class Script(object): 17 + rpydigest = hashlib.md5(fullf.read()).digest() 18 + 19 + self.write_rpyc_md5(f, rpydigest) 20 + + except OSError as e: 21 + + if e.errno != 30: 22 + + import traceback 23 + + traceback.print_exc() 24 + except Exception: 25 + import traceback 26 + traceback.print_exc() 27 + -- 28 + 2.37.1 29 +
+34
pkgs/development/libraries/caroline/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, vala, meson, ninja, pkg-config, glib, libgee, gtk3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "caroline"; 5 + version = "0.3.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "dcharles525"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-v423h9EC/h6B9VABhkvmYcyYXKPpvqhI8O7ZjbO637k"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + vala 16 + meson 17 + ninja 18 + pkg-config 19 + ]; 20 + 21 + buildInputs = [ 22 + glib 23 + libgee 24 + gtk3 25 + ]; 26 + 27 + meta = with lib; { 28 + description = " A simple Cairo Chart Library for GTK and Vala"; 29 + homepage = "https://github.com/dcharles525/Caroline"; 30 + maintainers = with maintainers; [ grindhold ]; 31 + license = licenses.mit; 32 + platforms = platforms.unix; 33 + }; 34 + }
+18 -19
pkgs/development/libraries/gcr/default.nix
··· 1 - { lib, stdenv 1 + { stdenv 2 + , lib 2 3 , fetchurl 3 - , fetchpatch 4 4 , pkg-config 5 5 , meson 6 6 , ninja ··· 17 17 , systemd 18 18 , gobject-introspection 19 19 , wrapGAppsHook 20 - , libxslt 20 + , gi-docgen 21 21 , vala 22 22 , gnome 23 23 , python3 ··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "gcr"; 29 - version = "3.41.0"; 29 + version = "3.41.1"; 30 30 31 - outputs = [ "out" "dev" ]; 31 + outputs = [ "out" "dev" "devdoc" ]; 32 32 33 33 src = fetchurl { 34 34 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 35 - sha256 = "CQn8SeqK1IMtJ1ZP8v0dxmZpbioHxzlBxIgp5gVy2gE="; 35 + sha256 = "u3Eoo8L+u/7pwDuQ131JjQzrI3sHiYAtYBhcccS+ok8="; 36 36 }; 37 37 38 - patches = [ 39 - # Pull upstream fix for meson-0.60: 40 - # https://gitlab.gnome.org/GNOME/gcr/-/merge_requests/81 41 - (fetchpatch { 42 - name = "meson-0.60.patch"; 43 - url = "https://gitlab.gnome.org/GNOME/gcr/-/commit/b3ca1d02bb0148ca787ac4aead164d7c8ce2c4d8.patch"; 44 - sha256 = "15gwxkcm5q5p87p5lrqwgykpzx5gmk179xd3481yak93yhbvy165"; 45 - }) 46 - ]; 47 - 48 38 nativeBuildInputs = [ 49 39 pkg-config 50 40 meson ··· 52 42 ninja 53 43 gettext 54 44 gobject-introspection 55 - libxslt 45 + gi-docgen 56 46 wrapGAppsHook 57 47 vala 58 48 shared-mime-info ··· 65 55 pango 66 56 libsecret 67 57 openssh 58 + ] ++ lib.optionals stdenv.isLinux [ 68 59 systemd 69 60 ]; 70 61 ··· 79 70 ]; 80 71 81 72 mesonFlags = [ 82 - "-Dgtk_doc=false" 83 73 # We are still using ssh-agent from gnome-keyring. 84 74 # https://github.com/NixOS/nixpkgs/issues/140824 85 75 "-Dssh_agent=false" 76 + ] ++ lib.optionals (!stdenv.isLinux) [ 77 + "-Dsystemd=disabled" 86 78 ]; 87 79 88 80 doCheck = false; # fails 21 out of 603 tests, needs dbus daemon ··· 90 82 PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user"; 91 83 92 84 postPatch = '' 93 - patchShebangs build/ gcr/fixtures/ 85 + patchShebangs gcr/fixtures/ 94 86 95 87 chmod +x meson_post_install.py 96 88 patchShebangs meson_post_install.py 89 + substituteInPlace meson_post_install.py --replace ".so" "${stdenv.hostPlatform.extensions.sharedLibrary}" 90 + ''; 91 + 92 + postFixup = '' 93 + # Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back. 94 + moveToOutput "share/doc" "$devdoc" 97 95 ''; 98 96 99 97 passthru = { 100 98 updateScript = gnome.updateScript { 101 99 packageName = pname; 100 + freeze = true; 102 101 }; 103 102 }; 104 103
+2 -2
pkgs/development/python-modules/aioecowitt/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "aioecowitt"; 13 - version = "2022.7.0"; 13 + version = "2022.08.2"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "home-assistant-libs"; 20 20 repo = pname; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-GALBhapE31CM2mqBrgcdQf5SJV+edN3kj35r0cf7BcU="; 22 + hash = "sha256-y0oPEsCW3jdd7jzBelCsUnrvDpzxP+Dtb/pQRrGTYDQ="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+55
pkgs/development/python-modules/atc-ble/default.nix
··· 1 + { lib 2 + , bluetooth-sensor-state-data 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , poetry-core 6 + , pycryptodomex 7 + , pytestCheckHook 8 + , pythonOlder 9 + , sensor-state-data 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "atc-ble"; 14 + version = "0.1.0"; 15 + format = "pyproject"; 16 + 17 + disabled = pythonOlder "3.9"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "Bluetooth-Devices"; 21 + repo = pname; 22 + rev = "v${version}"; 23 + hash = "sha256-rwOFKxUlbbNIDJRdCmZpHstXwxcTnvlExgcVDdGbIVY="; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + poetry-core 28 + ]; 29 + 30 + propagatedBuildInputs = [ 31 + bluetooth-sensor-state-data 32 + pycryptodomex 33 + sensor-state-data 34 + ]; 35 + 36 + checkInputs = [ 37 + pytestCheckHook 38 + ]; 39 + 40 + postPatch = '' 41 + substituteInPlace pyproject.toml \ 42 + --replace " --cov=atc_ble --cov-report=term-missing:skip-covered" "" 43 + ''; 44 + 45 + pythonImportsCheck = [ 46 + "atc_ble" 47 + ]; 48 + 49 + meta = with lib; { 50 + description = "Library for ATC devices with custom firmware"; 51 + homepage = "https://github.com/Bluetooth-Devices/atc-ble"; 52 + license = with licenses; [ mit ]; 53 + maintainers = with maintainers; [ fab ]; 54 + }; 55 + }
+30 -17
pkgs/development/python-modules/atsim_potentials/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , configparser 5 5 , pyparsing 6 - , pytest 6 + , pytestCheckHook 7 7 , future 8 8 , openpyxl 9 9 , wrapt 10 + , scipy 11 + , cexprtk 12 + , deepdiff 13 + , sympy 10 14 }: 11 15 12 16 buildPythonPackage rec { 13 17 version = "0.4.0"; 14 - pname = "atsim.potentials"; 18 + pname = "atsim-potentials"; 15 19 16 - src = fetchPypi { 17 - inherit pname version; 18 - sha256 = "0c3e4e2323e969880f17a9924642e0991be5761f50b254bcbadd046db3be6390"; 20 + src = fetchFromGitHub { 21 + owner = "mjdrushton"; 22 + repo = pname; 23 + rev = version; 24 + sha256 = "sha256-MwjRVd54qa8uJOi9yRXU+Vrve50ndftJUl+TFZKVzQM="; 19 25 }; 20 26 21 - checkInputs = [ pytest ]; 27 + postPatch = '' 28 + # Remove conflicting openpyxl dependency version check 29 + sed -i '/openpyxl==2.6.4/d' setup.py 30 + ''; 31 + 22 32 propagatedBuildInputs = [ 33 + cexprtk 23 34 configparser 24 35 future 25 36 openpyxl 26 37 pyparsing 38 + scipy 39 + sympy 27 40 wrapt 28 41 ]; 29 42 30 - postPatch = '' 31 - substituteInPlace setup.py \ 32 - --replace "wrapt==1.11.2" "wrapt~=1.11" 33 - ''; 43 + checkInputs = [ 44 + deepdiff 45 + pytestCheckHook 46 + ]; 34 47 35 - # tests are not included with release 36 - doCheck = false; 48 + disabledTests = [ 49 + # Missing lammps executable 50 + "eam_tabulate_example2TestCase" 51 + "test_pymath" 52 + ]; 37 53 38 - checkPhase = '' 39 - py.test 40 - ''; 54 + pythonImportsCheck = [ "atsim.potentials" ]; 41 55 42 56 meta = with lib; { 43 57 homepage = "https://github.com/mjdrushton/atsim-potentials"; 44 58 description = "Provides tools for working with pair and embedded atom method potential models including tabulation routines for DL_POLY and LAMMPS"; 45 59 license = licenses.mit; 46 60 maintainers = [ maintainers.costrouc ]; 47 - broken = true; # missing cexprtk package 48 61 }; 49 62 }
+2 -2
pkgs/development/python-modules/azure-mgmt-network/default.nix
··· 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 - version = "21.0.0"; 12 + version = "21.0.1"; 13 13 pname = "azure-mgmt-network"; 14 14 format = "setuptools"; 15 15 ··· 18 18 src = fetchPypi { 19 19 inherit pname version; 20 20 extension = "zip"; 21 - hash = "sha256-NwVC9ln7qXDJMwtCc9AyTOq7wnum3xv5DYAg8AmGR8g="; 21 + hash = "sha256-7PduPg0JK4f/3q/b5pq58TjqVk+Iu+vxa+aJKDnScy8="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+45
pkgs/development/python-modules/bless/default.nix
··· 1 + { lib 2 + , aioconsole 3 + , bleak 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , numpy 7 + , pytestCheckHook 8 + , pythonOlder 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "bless"; 13 + version = "0.2.4"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "kevincar"; 20 + repo = pname; 21 + rev = "v${version}"; 22 + hash = "sha256-lC1M6/9uawi4KpcK4/fAygENa9rZv9c7qCVdsZYtl5Q="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + bleak 27 + ]; 28 + 29 + checkInputs = [ 30 + aioconsole 31 + numpy 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "bless" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "Library for creating a BLE Generic Attribute Profile (GATT) server"; 41 + homepage = "https://github.com/kevincar/bless"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+26
pkgs/development/python-modules/cexprtk/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , pytestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "cexprtk"; 9 + version = "0.4.0"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "sha256-c7QXB+oXzkRveiPpNrW/HY8pMtpZx/RtDpJMVE7fY/A="; 14 + }; 15 + 16 + checkInputs = [ pytestCheckHook ]; 17 + 18 + pythonImportsCheck = [ "cexprtk" ]; 19 + 20 + meta = with lib; { 21 + description = "Mathematical expression parser, cython wrapper"; 22 + homepage = "https://github.com/mjdrushton/cexprtk"; 23 + license = licenses.cpl10; 24 + maintainers = with maintainers; [ onny ]; 25 + }; 26 + }
+2 -2
pkgs/development/python-modules/fastcore/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "fastcore"; 11 - version = "1.5.17"; 11 + version = "1.5.18"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "fastai"; 18 18 repo = pname; 19 19 rev = "refs/tags/${version}"; 20 - sha256 = "sha256-glDjqcNLnk2p4zqfICiTLtENMYQ5S6UshwkP797NljY="; 20 + sha256 = "sha256-Ur12ewTfJyUUzrQyTP8qydzjxnHFcJDAw9xChN+mZ1Y="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-audit-log/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-audit-log"; 5 - version = "0.2.3"; 5 + version = "0.2.4"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "sha256-Yi8baD1TgpLr1zNH2i+CBeY+3gwL7Aq5nnmgZcSSZr0="; 9 + sha256 = "sha256-qr5VQ2ceT4qcekwOPqmoe6K6K5b5/61vqgIgmQDh8wg="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ googleapis-common-protos protobuf ];
+2 -2
pkgs/development/python-modules/jupyterlab/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "jupyterlab"; 13 - version = "3.4.4"; 13 + version = "3.4.5"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-WioP3SK9hiitRbYY41IDh8MqSBjjrxEtutH2STBN/CA="; 20 + sha256 = "sha256-Ry9reZbHX2mRWSSDwm2f4gWlmnHMvOFYQkABVdxk9Zs="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/pygame_sdl2/default.nix
··· 9 9 10 10 src = fetchurl { 11 11 url = "https://www.renpy.org/dl/${renpy_version}/pygame_sdl2-${version}-for-renpy-${renpy_version}.tar.gz"; 12 - sha256 = "sha256-iKsnmuSBzfHlIOHUwWECfvPa9LuBbCr9Kmq5dolxUlU="; 12 + sha256 = "sha256-/PCw2sF3CxiBXV7WZcTl6NAs+v++od4Fs6uYFUhJMH8="; 13 13 }; 14 14 15 15 # force rebuild of headers needed for install
+2 -2
pkgs/development/python-modules/pyskyqremote/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyskyqremote"; 12 - version = "0.3.15"; 12 + version = "0.3.16"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "RogerSelwyn"; 19 19 repo = "skyq_remote"; 20 20 rev = "refs/tags/${version}"; 21 - sha256 = "sha256-K21ASxMcFsT0qevjXDPmVIQjdW56UT8QMOuyT7e2yDc="; 21 + sha256 = "sha256-zzVUXjpFCeyoYcerKJuK12nCf7tVJ7WdDvMDruGgAhc="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-awair/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "python-awair"; 15 - version = "0.2.3"; 15 + version = "0.2.4"; 16 16 format = "pyproject"; 17 17 disabled = pythonOlder "3.6"; 18 18 ··· 20 20 owner = "ahayworth"; 21 21 repo = "python_awair"; 22 22 rev = version; 23 - sha256 = "sha256-Roqmwamv/2/O87jfyymCGgRlw/woUhCNIuM9MLT3+Cw="; 23 + sha256 = "sha256-zdZyA6adM4bfEYupdZl7CzMjwyfRkQBrntNh0MusynE="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ poetry-core ];
+2 -2
pkgs/development/python-modules/qingping-ble/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "qingping-ble"; 13 - version = "0.2.3"; 13 + version = "0.2.4"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "bluetooth-devices"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - hash = "sha256-+iUZIsaSYgptHXtNSc9sJiBU8CUEFPDsLVGuFR5WvDw="; 22 + hash = "sha256-ggIRUW7JC7vgdwd42aw73T2+fNaSYRlg20CxwwwcE/U="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/related/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "related"; 14 - version = "0.7.2"; 14 + version = "0.7.3"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "w0XmNWh1xF08qitH22lQgTRNqO6qyYrYd2dc6x3Fop0="; 21 + hash = "sha256-IqmbqAW6PubN9GBXrMs5Je4u1XkgLl9camSGNrlrFJA="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/scikit-survival/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "scikit-survival"; 20 - version = "0.17.2"; 20 + version = "0.18.0"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - sha256 = "sha256-eP58TcFxNG0J32YgnaGhWkkjAC08F3ooPLwMv4ZUA1U="; 24 + sha256 = "sha256-LfQESmKxSJ4tWlp3EZTBajOxZC3IEOUtJmX8A5ROpmU="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/sensor-state-data/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "sensor-state-data"; 13 - version = "2.2.0"; 13 + version = "2.3.1"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "Bluetooth-Devices"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - hash = "sha256-ThROGmCNsOOJ65sOXRS1FefwN8Wf2DmHP294y3JVQvk="; 22 + hash = "sha256-jAg/xz7HqXiQuC/fNtUS1gKHdISduHfiWPaWucGAPMY="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+10 -2
pkgs/development/python-modules/tableaudocumentapi/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , lxml 5 + , pytestCheckHook 4 6 }: 5 7 6 8 buildPythonPackage rec { ··· 12 14 sha256 = "sha256-ahR+o4UgFLm/9aFsEqmlwXkcgTjqI0wU2Tl9EjVjLZs="; 13 15 }; 14 16 15 - # tests not inclued with release 17 + propagatedBuildInputs = [ lxml ]; 18 + 19 + checkInputs = [ pytestCheckHook ]; 20 + 21 + pythonImportsCheck = [ "tableaudocumentapi" ]; 22 + 23 + # ModuleNotFoundError: No module named 'test.assets' 16 24 doCheck = false; 17 25 18 26 meta = with lib; { 19 27 description = "A Python module for working with Tableau files"; 20 28 homepage = "https://github.com/tableau/document-api-python"; 21 29 license = licenses.mit; 22 - maintainers = [ maintainers.costrouc ]; 30 + maintainers = with maintainers; [ costrouc ]; 23 31 }; 24 32 }
+33 -34
pkgs/development/tools/misc/blackfire/default.nix
··· 8 8 , common-updater-scripts 9 9 }: 10 10 11 - let 12 - version = "2.8.1"; 13 - 14 - sources = { 15 - "x86_64-linux" = fetchurl { 16 - url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_amd64.deb"; 17 - sha256 = "znaM00jM6yrpb+bGTxzJUxViCUzv4G+CYK2EB5dxhfY="; 18 - }; 19 - "i686-linux" = fetchurl { 20 - url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_i386.deb"; 21 - sha256 = "QIY4qGm333H5MWhe3CIfEieqTEk8st5A7SJHkwGnnxw="; 22 - }; 23 - "aarch64-linux" = fetchurl { 24 - url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_arm64.deb"; 25 - sha256 = "eZbKoKYC2tt4Rxn5OJr7iA1aJlYFC0tpRmbLq7qSrIU="; 26 - }; 27 - "aarch64-darwin" = fetchurl { 28 - url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_arm64.pkg.tar.gz"; 29 - sha256 = "tn2vF3v7KfF7CfWqyydL5Iyh5tP9Tez87PJH+URgSIw="; 30 - }; 31 - "x86_64-darwin" = fetchurl { 32 - url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_amd64.pkg.tar.gz"; 33 - sha256 = "CRFlnqpX4j2CMGzS+UvXwNty2mHpONOjym6UJPE2Yg4="; 34 - }; 35 - }; 36 - in 37 11 stdenv.mkDerivation rec { 38 12 pname = "blackfire"; 39 - inherit version; 13 + version = "2.10.0"; 40 14 41 - src = sources.${stdenv.hostPlatform.system}; 15 + src = passthru.sources.${stdenv.hostPlatform.system} or (throw "Unsupported platform for blackfire: ${stdenv.hostPlatform.system}"); 42 16 43 - nativeBuildInputs = lib.optionals stdenv.isLinux [ dpkg ]; 17 + nativeBuildInputs = lib.optionals stdenv.isLinux [ 18 + dpkg 19 + ]; 44 20 45 21 dontUnpack = true; 46 22 ··· 78 54 ''; 79 55 80 56 passthru = { 81 - updateScript = writeShellScript "update-${pname}" '' 57 + sources = { 58 + "x86_64-linux" = fetchurl { 59 + url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_amd64.deb"; 60 + sha256 = "kyYmPU/y7pR2kx5ymDMuJvinTo5hpKs0Jy3LZPjDJyw="; 61 + }; 62 + "i686-linux" = fetchurl { 63 + url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_i386.deb"; 64 + sha256 = "swaZmlEoKSmH95pqAYW3ygOzQKkedWhc7FOMy3RnJFs="; 65 + }; 66 + "aarch64-linux" = fetchurl { 67 + url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_arm64.deb"; 68 + sha256 = "QjrLn+gxoJovMlLsIe24BNKVaFK3vgFk9BwRHSl/y3M="; 69 + }; 70 + "aarch64-darwin" = fetchurl { 71 + url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_arm64.pkg.tar.gz"; 72 + sha256 = "pBzSswicNK8z/asmGhj+IhBSS0mPJSf91XBX75AGAtY="; 73 + }; 74 + "x86_64-darwin" = fetchurl { 75 + url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_amd64.pkg.tar.gz"; 76 + sha256 = "ekeA/+N59mgDtkchEP1p4jz74goaPySmvZ6urCLcUNw="; 77 + }; 78 + }; 79 + 80 + updateScript = writeShellScript "update-blackfire" '' 82 81 set -o errexit 83 82 export PATH="${lib.makeBinPath [ curl jq common-updater-scripts ]}" 84 83 NEW_VERSION=$(curl -s https://blackfire.io/api/v1/releases | jq .cli --raw-output) ··· 88 87 exit 0 89 88 fi 90 89 91 - for platform in ${lib.concatStringsSep " " meta.platforms}; do 92 - update-source-version "blackfire" "0" "${lib.fakeSha256}" "--system=$platform" 93 - update-source-version "blackfire" "$NEW_VERSION" "--system=$platform" --ignore-same-hash 90 + for platform in ${lib.escapeShellArgs meta.platforms}; do 91 + update-source-version "blackfire" "0" "${lib.fakeSha256}" --source-key="sources.$platform" 92 + update-source-version "blackfire" "$NEW_VERSION" --source-key="sources.$platform" 94 93 done 95 94 ''; 96 95 }; ··· 101 100 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 102 101 license = licenses.unfree; 103 102 maintainers = with maintainers; [ jtojnar shyim ]; 104 - platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ]; 103 + platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" ]; 105 104 }; 106 105 }
+197 -197
pkgs/development/tools/mongosh/gen/packages.nix
··· 40 40 sha512 = "dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg=="; 41 41 }; 42 42 }; 43 - "@babel/core-7.18.2" = { 43 + "@babel/core-7.17.12" = { 44 44 name = "_at_babel_slash_core"; 45 45 packageName = "@babel/core"; 46 - version = "7.18.2"; 46 + version = "7.17.12"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz"; 49 - sha512 = "A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ=="; 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.17.12.tgz"; 49 + sha512 = "44ODe6O1IVz9s2oJE3rZ4trNNKTX9O7KpQpfAP4t8QII/zwrVRHL7i2pxhqtcY7tqMLrrKfMlBKnm1QlrRFs5w=="; 50 50 }; 51 51 }; 52 - "@babel/generator-7.18.2" = { 52 + "@babel/generator-7.17.12" = { 53 53 name = "_at_babel_slash_generator"; 54 54 packageName = "@babel/generator"; 55 - version = "7.18.2"; 55 + version = "7.17.12"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz"; 58 - sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; 57 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.12.tgz"; 58 + sha512 = "V49KtZiiiLjH/CnIW6OjJdrenrGoyh6AmKQ3k2AZFKozC1h846Q4NYlZ5nqAigPDUXfGzC88+LOUuG8yKd2kCw=="; 59 59 }; 60 60 }; 61 - "@babel/helper-compilation-targets-7.18.2" = { 61 + "@babel/helper-compilation-targets-7.17.10" = { 62 62 name = "_at_babel_slash_helper-compilation-targets"; 63 63 packageName = "@babel/helper-compilation-targets"; 64 - version = "7.18.2"; 64 + version = "7.17.10"; 65 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz"; 67 - sha512 = "s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ=="; 66 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz"; 67 + sha512 = "gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ=="; 68 68 }; 69 69 }; 70 - "@babel/helper-environment-visitor-7.18.2" = { 70 + "@babel/helper-environment-visitor-7.16.7" = { 71 71 name = "_at_babel_slash_helper-environment-visitor"; 72 72 packageName = "@babel/helper-environment-visitor"; 73 - version = "7.18.2"; 73 + version = "7.16.7"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz"; 76 - sha512 = "14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="; 75 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; 76 + sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 77 77 }; 78 78 }; 79 79 "@babel/helper-function-name-7.17.9" = { ··· 103 103 sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 104 104 }; 105 105 }; 106 - "@babel/helper-module-transforms-7.18.0" = { 106 + "@babel/helper-module-transforms-7.17.12" = { 107 107 name = "_at_babel_slash_helper-module-transforms"; 108 108 packageName = "@babel/helper-module-transforms"; 109 - version = "7.18.0"; 109 + version = "7.17.12"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz"; 112 - sha512 = "kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA=="; 111 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.12.tgz"; 112 + sha512 = "t5s2BeSWIghhFRPh9XMn6EIGmvn8Lmw5RVASJzkIx1mSemubQQBNIZiQD7WzaFmaHIrjAec4x8z9Yx8SjJ1/LA=="; 113 113 }; 114 114 }; 115 115 "@babel/helper-plugin-utils-7.17.12" = { ··· 121 121 sha512 = "JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA=="; 122 122 }; 123 123 }; 124 - "@babel/helper-simple-access-7.18.2" = { 124 + "@babel/helper-simple-access-7.17.7" = { 125 125 name = "_at_babel_slash_helper-simple-access"; 126 126 packageName = "@babel/helper-simple-access"; 127 - version = "7.18.2"; 127 + version = "7.17.7"; 128 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz"; 130 - sha512 = "7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ=="; 129 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz"; 130 + sha512 = "txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA=="; 131 131 }; 132 132 }; 133 133 "@babel/helper-split-export-declaration-7.16.7" = { ··· 157 157 sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; 158 158 }; 159 159 }; 160 - "@babel/helpers-7.18.2" = { 160 + "@babel/helpers-7.17.9" = { 161 161 name = "_at_babel_slash_helpers"; 162 162 packageName = "@babel/helpers"; 163 - version = "7.18.2"; 163 + version = "7.17.9"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz"; 166 - sha512 = "j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg=="; 165 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz"; 166 + sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q=="; 167 167 }; 168 168 }; 169 169 "@babel/highlight-7.17.12" = { ··· 175 175 sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="; 176 176 }; 177 177 }; 178 - "@babel/parser-7.18.4" = { 178 + "@babel/parser-7.17.12" = { 179 179 name = "_at_babel_slash_parser"; 180 180 packageName = "@babel/parser"; 181 - version = "7.18.4"; 181 + version = "7.17.12"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.4.tgz"; 184 - sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; 183 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.12.tgz"; 184 + sha512 = "FLzHmN9V3AJIrWfOpvRlZCeVg/WLdicSnTMsLur6uDj9TT8ymUlG9XxURdW/XvuygK+2CW0poOJABdA4m/YKxA=="; 185 185 }; 186 186 }; 187 - "@babel/plugin-transform-destructuring-7.18.0" = { 187 + "@babel/plugin-transform-destructuring-7.17.12" = { 188 188 name = "_at_babel_slash_plugin-transform-destructuring"; 189 189 packageName = "@babel/plugin-transform-destructuring"; 190 - version = "7.18.0"; 190 + version = "7.17.12"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz"; 193 - sha512 = "Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw=="; 192 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.12.tgz"; 193 + sha512 = "P8pt0YiKtX5UMUL5Xzsc9Oyij+pJE6JuC+F1k0/brq/OOGs5jDa1If3OY0LRWGvJsJhI+8tsiecL3nJLc0WTlg=="; 194 194 }; 195 195 }; 196 196 "@babel/plugin-transform-parameters-7.17.12" = { ··· 211 211 sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 212 212 }; 213 213 }; 214 - "@babel/runtime-7.18.3" = { 214 + "@babel/runtime-7.17.9" = { 215 215 name = "_at_babel_slash_runtime"; 216 216 packageName = "@babel/runtime"; 217 - version = "7.18.3"; 217 + version = "7.17.9"; 218 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz"; 220 - sha512 = "38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="; 219 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz"; 220 + sha512 = "lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg=="; 221 221 }; 222 222 }; 223 223 "@babel/template-7.16.7" = { ··· 229 229 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 230 230 }; 231 231 }; 232 - "@babel/traverse-7.18.2" = { 232 + "@babel/traverse-7.17.12" = { 233 233 name = "_at_babel_slash_traverse"; 234 234 packageName = "@babel/traverse"; 235 - version = "7.18.2"; 235 + version = "7.17.12"; 236 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz"; 238 - sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA=="; 237 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.12.tgz"; 238 + sha512 = "zULPs+TbCvOkIFd4FrG53xrpxvCBwLIgo6tO0tJorY7YV2IWFxUfS/lXDJbGgfyYt9ery/Gxj2niwttNnB0gIw=="; 239 239 }; 240 240 }; 241 - "@babel/types-7.18.4" = { 241 + "@babel/types-7.17.12" = { 242 242 name = "_at_babel_slash_types"; 243 243 packageName = "@babel/types"; 244 - version = "7.18.4"; 244 + version = "7.17.12"; 245 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"; 247 - sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="; 246 + url = "https://registry.npmjs.org/@babel/types/-/types-7.17.12.tgz"; 247 + sha512 = "rH8i29wcZ6x9xjzI5ILHL/yZkbQnCERdHlogKuIb4PUr7do4iT8DPekrTbBLWTnRQm6U0GYABbTMSzijmEqlAg=="; 248 248 }; 249 249 }; 250 250 "@hapi/hoek-9.3.0" = { ··· 319 319 sha512 = "o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w=="; 320 320 }; 321 321 }; 322 - "@mongodb-js/devtools-connect-1.4.3" = { 322 + "@mongodb-js/devtools-connect-1.4.2" = { 323 323 name = "_at_mongodb-js_slash_devtools-connect"; 324 324 packageName = "@mongodb-js/devtools-connect"; 325 - version = "1.4.3"; 325 + version = "1.4.2"; 326 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@mongodb-js/devtools-connect/-/devtools-connect-1.4.3.tgz"; 328 - sha512 = "Y7j5XZo+bmphN/IERA9p++91ZYEXPagONUVP7seQ04ha2jHwB6lr6WudPWcRw7NkzPj/PuEjA50lJXtt2ilA3Q=="; 327 + url = "https://registry.npmjs.org/@mongodb-js/devtools-connect/-/devtools-connect-1.4.2.tgz"; 328 + sha512 = "rNbjzMPQWxKbMc5hEL+BZPSvoh/f9k2DvqE7ilR7B/NjSt2QFo66nz5RFQbQchaB1XA8+K73ch2SPlYrZl0Exw=="; 329 329 }; 330 330 }; 331 - "@mongosh/arg-parser-1.5.0" = { 331 + "@mongosh/arg-parser-1.4.2" = { 332 332 name = "_at_mongosh_slash_arg-parser"; 333 333 packageName = "@mongosh/arg-parser"; 334 - version = "1.5.0"; 334 + version = "1.4.2"; 335 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-1.5.0.tgz"; 337 - sha512 = "6zoeSMXpQUACKL2O+4W8p9T0oxo9Ff65aRROTNsWPDu4o4VJ/axV6Eram9QJH7TeQNrXaBqsMdjZW5dm9oOtaw=="; 336 + url = "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-1.4.2.tgz"; 337 + sha512 = "jRGIuVwIsIH7EP2fWJa0V5D2/3qo+D9d+h25Zm0DNEPcV097nzZCQD2maHAfM47Cy3Yrq94ZnbNsmme1BDfF9Q=="; 338 338 }; 339 339 }; 340 - "@mongosh/async-rewriter2-1.5.0" = { 340 + "@mongosh/async-rewriter2-1.4.2" = { 341 341 name = "_at_mongosh_slash_async-rewriter2"; 342 342 packageName = "@mongosh/async-rewriter2"; 343 - version = "1.5.0"; 343 + version = "1.4.2"; 344 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-1.5.0.tgz"; 346 - sha512 = "Bwkmy0+kPODoymC+bXd0u+IAr0B+0O3dKm6XJos7oxyaPfq7Fg/r7pvE80EaseLGmZ5HssIgZ1qBEcmdaIdWxA=="; 345 + url = "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-1.4.2.tgz"; 346 + sha512 = "P6YEwvAbhLVze2BjPXfCK1qc+aSrNWgmDWMoOvwsqfE7at+HNwf/GuPRH5gq9yL1ABm27nYsPpMf+ZK08fy0Mw=="; 347 347 }; 348 348 }; 349 - "@mongosh/autocomplete-1.5.0" = { 349 + "@mongosh/autocomplete-1.4.2" = { 350 350 name = "_at_mongosh_slash_autocomplete"; 351 351 packageName = "@mongosh/autocomplete"; 352 - version = "1.5.0"; 352 + version = "1.4.2"; 353 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-1.5.0.tgz"; 355 - sha512 = "wfF7pgTYLwkhXTgk+xdPOqmRMprJ3KKgC2EYS8ZqtjwCdV1wwxFSHh5r0VW3rnBrBUlT9wMVHaxkBH+raA/EGA=="; 354 + url = "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-1.4.2.tgz"; 355 + sha512 = "7H6dKF5PgSGE1YpABWYcAyI8HoTFN+Xpg74bVqeCMX2XyDYEgea/bvHWF3TzH0RSvCgme5oD2s36+8XqV9ehlw=="; 356 356 }; 357 357 }; 358 - "@mongosh/cli-repl-1.5.0" = { 358 + "@mongosh/cli-repl-1.4.2" = { 359 359 name = "_at_mongosh_slash_cli-repl"; 360 360 packageName = "@mongosh/cli-repl"; 361 - version = "1.5.0"; 361 + version = "1.4.2"; 362 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-1.5.0.tgz"; 364 - sha512 = "o63KWMPKlO0ZhDtiQ3JTrcrKX0Za1PaJYMZwN2IuUJZNFuOrvL2209y8hVjgpjt3ZvaAjTkNZLnQuHhX2NAnTg=="; 363 + url = "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-1.4.2.tgz"; 364 + sha512 = "KpzE+a2g9ouGwveBB7GpEohm04krEQLGzMcqHFQBAMM7L53hBMSw0ZwFQtmh+ZwKGR6fSnQYbh923T0yl0RzUw=="; 365 365 }; 366 366 }; 367 - "@mongosh/editor-1.5.0" = { 367 + "@mongosh/editor-1.4.2" = { 368 368 name = "_at_mongosh_slash_editor"; 369 369 packageName = "@mongosh/editor"; 370 - version = "1.5.0"; 370 + version = "1.4.2"; 371 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@mongosh/editor/-/editor-1.5.0.tgz"; 373 - sha512 = "Kss+QDyzU1Aad1ckCmG4ZM1AkTgh3aFKRtnCH1cKY43H72OzRbtVrgduiA6OndYBjjFs8G3RIGKBkDr+0tUmKw=="; 372 + url = "https://registry.npmjs.org/@mongosh/editor/-/editor-1.4.2.tgz"; 373 + sha512 = "DWeQKMPX7AGnEdX4o1RIRQ1T6ugX94pZPPgUYGllViyICTGu1oPTyH79Fj+ZUHMUQPGKvVcTHH4afg/ePbV+hw=="; 374 374 }; 375 375 }; 376 - "@mongosh/errors-1.5.0" = { 376 + "@mongosh/errors-1.4.2" = { 377 377 name = "_at_mongosh_slash_errors"; 378 378 packageName = "@mongosh/errors"; 379 - version = "1.5.0"; 379 + version = "1.4.2"; 380 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@mongosh/errors/-/errors-1.5.0.tgz"; 382 - sha512 = "JfZ1h1/+1hTbdWITX/K0yCE4aE20l87aPyQIjiKS5tbiDzYN/Ef6tN1N5PHc7k6wgJMEdkhn7Gnj/unyfXLa/g=="; 381 + url = "https://registry.npmjs.org/@mongosh/errors/-/errors-1.4.2.tgz"; 382 + sha512 = "7oXUztbH5FKsiU2+RcDIhA8QIPqL0fpHjJa8GIIcuMyERPx1CnJsrbbQEayNznc+FZ4w2tmuzy2Fes8wmfoqEg=="; 383 383 }; 384 384 }; 385 - "@mongosh/history-1.5.0" = { 385 + "@mongosh/history-1.4.2" = { 386 386 name = "_at_mongosh_slash_history"; 387 387 packageName = "@mongosh/history"; 388 - version = "1.5.0"; 388 + version = "1.4.2"; 389 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@mongosh/history/-/history-1.5.0.tgz"; 391 - sha512 = "ce7a4PgNMEpWbmFe/GoEiyuQjkUS+5dwOBOSFC+iIERb3AK8aCSYInUaMfylmmNKy9vCxCUvco8CndBzqIkNmA=="; 390 + url = "https://registry.npmjs.org/@mongosh/history/-/history-1.4.2.tgz"; 391 + sha512 = "DC6bXz7nfTacKNF+b2KzQ9Or5wMSJ+xwuWq8j2P0uLFJZihtlaUDAmSCGoWEYP71+pEpsOFM1eYHPq50bqw1bA=="; 392 392 }; 393 393 }; 394 - "@mongosh/i18n-1.5.0" = { 394 + "@mongosh/i18n-1.4.2" = { 395 395 name = "_at_mongosh_slash_i18n"; 396 396 packageName = "@mongosh/i18n"; 397 - version = "1.5.0"; 397 + version = "1.4.2"; 398 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@mongosh/i18n/-/i18n-1.5.0.tgz"; 400 - sha512 = "Z3iD0u9lxCL4EqVKi4eukBNQR4BlUpteo1qPv4nVmQd3JyJJNIwehKFYx7B9D2ASilasPXjFJ+WbnQCVJBW9XA=="; 399 + url = "https://registry.npmjs.org/@mongosh/i18n/-/i18n-1.4.2.tgz"; 400 + sha512 = "m7TUQf8MKJwVjpsmpf6DQF8XtTo978AFaOMz8CSapNP8HHARcMXYmurOUqYRJk8fFVXRjRi8XxlwQjH0dkbAuA=="; 401 401 }; 402 402 }; 403 - "@mongosh/js-multiline-to-singleline-1.5.0" = { 403 + "@mongosh/js-multiline-to-singleline-1.4.2" = { 404 404 name = "_at_mongosh_slash_js-multiline-to-singleline"; 405 405 packageName = "@mongosh/js-multiline-to-singleline"; 406 - version = "1.5.0"; 406 + version = "1.4.2"; 407 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-1.5.0.tgz"; 409 - sha512 = "bf87XYMrQMu+7fpStusgdZ5lfrE94PfeQKDsuMEF75AQOwll9EFfy5xcBxSFtNR1BssPFhW2NjWu924QG9HiJQ=="; 408 + url = "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-1.4.2.tgz"; 409 + sha512 = "K31Ra+BEvJeyyvbhpe2atKJ+38w+ctUwxlMt2Cjl/I/zxwAD6ecEsN4smZpbOf/IFwHvYizGVqH2ceZoaV//FQ=="; 410 410 }; 411 411 }; 412 - "@mongosh/logging-1.5.0" = { 412 + "@mongosh/logging-1.4.2" = { 413 413 name = "_at_mongosh_slash_logging"; 414 414 packageName = "@mongosh/logging"; 415 - version = "1.5.0"; 415 + version = "1.4.2"; 416 416 src = fetchurl { 417 - url = "https://registry.npmjs.org/@mongosh/logging/-/logging-1.5.0.tgz"; 418 - sha512 = "9rBP9VTldQixkkVVkLees9DG77tccm6+fL4rHFLbGGjmsAc6krUeiRYfLfCMiWlbBGJ2wgmbqmECkK+gCn6Kbw=="; 417 + url = "https://registry.npmjs.org/@mongosh/logging/-/logging-1.4.2.tgz"; 418 + sha512 = "FHwAf9VFMtBBzAL6NkFremFu5SepSmgYHmW345gHfcfwyPrxqiXnpiCfXKuGkHBhWYroiuRwoRCua05tt+h8zA=="; 419 419 }; 420 420 }; 421 - "@mongosh/service-provider-core-1.5.0" = { 421 + "@mongosh/service-provider-core-1.4.2" = { 422 422 name = "_at_mongosh_slash_service-provider-core"; 423 423 packageName = "@mongosh/service-provider-core"; 424 - version = "1.5.0"; 424 + version = "1.4.2"; 425 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-1.5.0.tgz"; 427 - sha512 = "DKduPWGLWRbSsk+Vv7FDYmcxp7OnOIDtEWHq5A4m5rG/v/Tduv5ZRwVd+aXf7FF0mbZO0kPZxb0HyAhpayCUpg=="; 426 + url = "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-1.4.2.tgz"; 427 + sha512 = "lI92M7lxKowxataEQBk2TKjAN7m3uZ7Oqpe5ujl1yKT5tR3cqUaZCWC3Zdxh7QdqKwDgfEhHIbssqHB8GsstWg=="; 428 428 }; 429 429 }; 430 - "@mongosh/service-provider-server-1.5.0" = { 430 + "@mongosh/service-provider-server-1.4.2" = { 431 431 name = "_at_mongosh_slash_service-provider-server"; 432 432 packageName = "@mongosh/service-provider-server"; 433 - version = "1.5.0"; 433 + version = "1.4.2"; 434 434 src = fetchurl { 435 - url = "https://registry.npmjs.org/@mongosh/service-provider-server/-/service-provider-server-1.5.0.tgz"; 436 - sha512 = "+Wf8qzKQ+Eshe/xHR1Kx7f/y9CVWEEORs0DzfChA2XyP6RzQV4LiX/REeM72rwvvJdM9z2LSj9x35Hf0qllcPw=="; 435 + url = "https://registry.npmjs.org/@mongosh/service-provider-server/-/service-provider-server-1.4.2.tgz"; 436 + sha512 = "0nqRXdpONrrXUhBmMdjWEf5SYKT1eV9m/l9m3CDp+64Nrd9eODe66QwqgkIZ8T/1iusR6GNt7nSCY8+dT3H8Gg=="; 437 437 }; 438 438 }; 439 - "@mongosh/shell-api-1.5.0" = { 439 + "@mongosh/shell-api-1.4.2" = { 440 440 name = "_at_mongosh_slash_shell-api"; 441 441 packageName = "@mongosh/shell-api"; 442 - version = "1.5.0"; 442 + version = "1.4.2"; 443 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-1.5.0.tgz"; 445 - sha512 = "PfJntaZwsOh00LUcXL4DejEK80jl55bhf8YqIMxCROCJHytujEB+wlunDdVUOAzoEAN5/wkn29slBO9YZ/Vl2w=="; 444 + url = "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-1.4.2.tgz"; 445 + sha512 = "Lan05KEvhIDRttDbts3H19uJNZMUbKvMLXdcJ3FRpH8JKc53wRBETpu247+muuZnGL5EKhm3QMqMlhwHl8dtfw=="; 446 446 }; 447 447 }; 448 - "@mongosh/shell-evaluator-1.5.0" = { 448 + "@mongosh/shell-evaluator-1.4.2" = { 449 449 name = "_at_mongosh_slash_shell-evaluator"; 450 450 packageName = "@mongosh/shell-evaluator"; 451 - version = "1.5.0"; 451 + version = "1.4.2"; 452 452 src = fetchurl { 453 - url = "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-1.5.0.tgz"; 454 - sha512 = "44wLL1zwnBkvECzvz5BZJhVul2K+H7ewQS6Dlzl0PhVmDHBZGSxUD+IJqmNzFkOm26m221nqf+s+75dLbtPN4w=="; 453 + url = "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-1.4.2.tgz"; 454 + sha512 = "X2LLGvoyqwFVLJ+K7Whv+c/vL+ilGy2f/zd862uw9dOAA6xgmz+Ecjco9u8hCpkmtOq3MaXv9AGYPttZi32uzg=="; 455 455 }; 456 456 }; 457 - "@mongosh/snippet-manager-1.5.0" = { 457 + "@mongosh/snippet-manager-1.4.2" = { 458 458 name = "_at_mongosh_slash_snippet-manager"; 459 459 packageName = "@mongosh/snippet-manager"; 460 - version = "1.5.0"; 460 + version = "1.4.2"; 461 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-1.5.0.tgz"; 463 - sha512 = "oyr+g5rJ+oUUeTi2N7JZw328+GArMSvjUilwfjSomjccths3PSHMQ3iMNb2rdKLE7QOqHM0763fv4b7qa1Utxw=="; 462 + url = "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-1.4.2.tgz"; 463 + sha512 = "3CcOKYvzFpwYp+jtHf2zPPUtW4L4apq7Vp4Su/kJ7+XODQySI6QVsf1PyF8KKbbz8eS1QR/USo1AX4KR7gfFsw=="; 464 464 }; 465 465 }; 466 - "@mongosh/types-1.5.0" = { 466 + "@mongosh/types-1.4.2" = { 467 467 name = "_at_mongosh_slash_types"; 468 468 packageName = "@mongosh/types"; 469 - version = "1.5.0"; 469 + version = "1.4.2"; 470 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@mongosh/types/-/types-1.5.0.tgz"; 472 - sha512 = "rXmnqIp6Z1hOXCqDxQFUztykCkzvxNUrrzxbbj8irKwLTn3to3gpoKZcK+rmRdqZYCVxVKnwunFDnfYwHLpf8Q=="; 471 + url = "https://registry.npmjs.org/@mongosh/types/-/types-1.4.2.tgz"; 472 + sha512 = "JbjI6XYociDvq25BW/0Kp8cilUVH2jPd8IOxtziceGKd+o/MOmaJv+Fz1s7nSA/BlCy3D4AHHekFhSl/e0YPwg=="; 473 473 }; 474 474 }; 475 475 "@segment/loosely-validate-event-2.0.0" = { ··· 553 553 sha512 = "/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ=="; 554 554 }; 555 555 }; 556 - "@types/node-17.0.38" = { 556 + "@types/node-17.0.34" = { 557 557 name = "_at_types_slash_node"; 558 558 packageName = "@types/node"; 559 - version = "17.0.38"; 559 + version = "17.0.34"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.38.tgz"; 562 - sha512 = "5jY9RhV7c0Z4Jy09G+NIDTsCZ5G0L5n+Z+p+Y7t5VJHM30bgwzSjVtlcBxqAj+6L/swIlvtOSzr8rBk/aNyV2g=="; 561 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.34.tgz"; 562 + sha512 = "XImEz7XwTvDBtzlTnm8YvMqGW/ErMWBsKZ+hMTvnDIjGCKxwK5Xpc+c/oQjOauwq8M4OS11hEkpjX8rrI/eEgA=="; 563 563 }; 564 564 }; 565 565 "@types/sinon-10.0.11" = { ··· 814 814 sha512 = "NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg=="; 815 815 }; 816 816 }; 817 - "bson-4.6.4" = { 817 + "bson-4.6.3" = { 818 818 name = "bson"; 819 819 packageName = "bson"; 820 - version = "4.6.4"; 820 + version = "4.6.3"; 821 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/bson/-/bson-4.6.4.tgz"; 823 - sha512 = "TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ=="; 822 + url = "https://registry.npmjs.org/bson/-/bson-4.6.3.tgz"; 823 + sha512 = "rAqP5hcUVJhXP2MCSNVsf0oM2OGU1So6A9pVRDYayvJ5+hygXHQApf87wd5NlhPM1J9RJnbqxIG/f8QTzRoQ4A=="; 824 824 }; 825 825 }; 826 826 "buffer-5.7.1" = { ··· 832 832 sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 833 833 }; 834 834 }; 835 - "caniuse-lite-1.0.30001346" = { 835 + "caniuse-lite-1.0.30001341" = { 836 836 name = "caniuse-lite"; 837 837 packageName = "caniuse-lite"; 838 - version = "1.0.30001346"; 838 + version = "1.0.30001341"; 839 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz"; 841 - sha512 = "q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ=="; 840 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001341.tgz"; 841 + sha512 = "2SodVrFFtvGENGCv0ChVJIDQ0KPaS1cg7/qtfMaICgeMolDdo/Z2OD32F0Aq9yl6F4YFwGPBS5AaPqNYiW4PoA=="; 842 842 }; 843 843 }; 844 844 "chalk-2.4.2" = { ··· 910 910 version = "1.1.3"; 911 911 src = fetchurl { 912 912 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 913 - sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 913 + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 914 914 }; 915 915 }; 916 916 "color-name-1.1.4" = { ··· 937 937 version = "1.2.1"; 938 938 src = fetchurl { 939 939 url = "https://registry.npmjs.org/component-type/-/component-type-1.2.1.tgz"; 940 - sha512 = "Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg=="; 940 + sha1 = "8a47901700238e4fc32269771230226f24b415a9"; 941 941 }; 942 942 }; 943 943 "concat-map-0.0.1" = { ··· 946 946 version = "0.0.1"; 947 947 src = fetchurl { 948 948 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 949 - sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 949 + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 950 950 }; 951 951 }; 952 952 "config-chain-1.1.13" = { ··· 982 982 version = "0.0.2"; 983 983 src = fetchurl { 984 984 url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"; 985 - sha512 = "mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="; 985 + sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"; 986 986 }; 987 987 }; 988 988 "debug-4.3.4" = { ··· 1012 1012 sha512 = "M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g=="; 1013 1013 }; 1014 1014 }; 1015 - "electron-to-chromium-1.4.144" = { 1015 + "electron-to-chromium-1.4.137" = { 1016 1016 name = "electron-to-chromium"; 1017 1017 packageName = "electron-to-chromium"; 1018 - version = "1.4.144"; 1018 + version = "1.4.137"; 1019 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.144.tgz"; 1021 - sha512 = "R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg=="; 1020 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz"; 1021 + sha512 = "0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA=="; 1022 1022 }; 1023 1023 }; 1024 1024 "emphasize-3.0.0" = { ··· 1045 1045 version = "1.0.5"; 1046 1046 src = fetchurl { 1047 1047 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1048 - sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 1048 + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1049 1049 }; 1050 1050 }; 1051 1051 "escape-string-regexp-4.0.0" = { ··· 1066 1066 sha512 = "CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA=="; 1067 1067 }; 1068 1068 }; 1069 - "follow-redirects-1.15.1" = { 1069 + "follow-redirects-1.15.0" = { 1070 1070 name = "follow-redirects"; 1071 1071 packageName = "follow-redirects"; 1072 - version = "1.15.1"; 1072 + version = "1.15.0"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz"; 1075 - sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="; 1074 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.0.tgz"; 1075 + sha512 = "aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ=="; 1076 1076 }; 1077 1077 }; 1078 1078 "format-0.2.2" = { ··· 1081 1081 version = "0.2.2"; 1082 1082 src = fetchurl { 1083 1083 url = "https://registry.npmjs.org/format/-/format-0.2.2.tgz"; 1084 - sha512 = "wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww=="; 1084 + sha1 = "d6170107e9efdc4ed30c9dc39016df942b5cb58b"; 1085 1085 }; 1086 1086 }; 1087 1087 "fs-minipass-2.1.0" = { ··· 1099 1099 version = "1.0.0"; 1100 1100 src = fetchurl { 1101 1101 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1102 - sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 1102 + sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1103 1103 }; 1104 1104 }; 1105 1105 "gensync-1.0.0-beta.2" = { ··· 1144 1144 version = "3.0.0"; 1145 1145 src = fetchurl { 1146 1146 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 1147 - sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; 1147 + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1148 1148 }; 1149 1149 }; 1150 1150 "has-flag-4.0.0" = { ··· 1162 1162 version = "9.12.0"; 1163 1163 src = fetchurl { 1164 1164 url = "https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz"; 1165 - sha512 = "qNnYpBDO/FQwYVur1+sQBQw7v0cxso1nOYLklqWh6af8ROwwTVoII5+kf/BVa8354WL4ad6rURHYGUXCbD9mMg=="; 1165 + sha1 = "e6d9dbe57cbefe60751f02af336195870c90c01e"; 1166 1166 }; 1167 1167 }; 1168 1168 "hijack-stream-1.0.0" = { ··· 1189 1189 version = "1.0.6"; 1190 1190 src = fetchurl { 1191 1191 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 1192 - sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 1192 + sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1193 1193 }; 1194 1194 }; 1195 1195 "inherits-2.0.4" = { ··· 1252 1252 version = "2.0.0"; 1253 1253 src = fetchurl { 1254 1254 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 1255 - sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; 1255 + sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 1256 1256 }; 1257 1257 }; 1258 1258 "joi-17.6.0" = { ··· 1270 1270 version = "1.1.0"; 1271 1271 src = fetchurl { 1272 1272 url = "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz"; 1273 - sha512 = "bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ=="; 1273 + sha1 = "b8417b750661a392bee2c2537c68b2a9d4977cd5"; 1274 1274 }; 1275 1275 }; 1276 1276 "js-beautify-1.14.3" = { ··· 1333 1333 version = "4.0.1"; 1334 1334 src = fetchurl { 1335 1335 url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; 1336 - sha512 = "0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="; 1336 + sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 1337 1337 }; 1338 1338 }; 1339 1339 "lowlight-1.9.2" = { ··· 1495 1495 version = "1.1.0"; 1496 1496 src = fetchurl { 1497 1497 url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz"; 1498 - sha512 = "C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ=="; 1498 + sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d"; 1499 1499 }; 1500 1500 }; 1501 1501 "nanobus-4.5.0" = { ··· 1534 1534 sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; 1535 1535 }; 1536 1536 }; 1537 - "node-releases-2.0.5" = { 1537 + "node-releases-2.0.4" = { 1538 1538 name = "node-releases"; 1539 1539 packageName = "node-releases"; 1540 - version = "2.0.5"; 1540 + version = "2.0.4"; 1541 1541 src = fetchurl { 1542 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz"; 1543 - sha512 = "U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q=="; 1542 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz"; 1543 + sha512 = "gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ=="; 1544 1544 }; 1545 1545 }; 1546 1546 "nopt-5.0.0" = { ··· 1558 1558 version = "2.0.6"; 1559 1559 src = fetchurl { 1560 1560 url = "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz"; 1561 - sha512 = "qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA=="; 1561 + sha1 = "4ad080936d443c2561aed9f2197efffe25f4e506"; 1562 1562 }; 1563 1563 }; 1564 1564 "once-1.4.0" = { ··· 1567 1567 version = "1.4.0"; 1568 1568 src = fetchurl { 1569 1569 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 1570 - sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 1570 + sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1571 1571 }; 1572 1572 }; 1573 1573 "path-is-absolute-1.0.1" = { ··· 1576 1576 version = "1.0.1"; 1577 1577 src = fetchurl { 1578 1578 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 1579 - sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 1579 + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1580 1580 }; 1581 1581 }; 1582 1582 "path-key-3.1.1" = { ··· 1612 1612 version = "1.2.4"; 1613 1613 src = fetchurl { 1614 1614 url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; 1615 - sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="; 1615 + sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 1616 1616 }; 1617 1617 }; 1618 1618 "pseudomap-1.0.2" = { ··· 1621 1621 version = "1.0.2"; 1622 1622 src = fetchurl { 1623 1623 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 1624 - sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 1624 + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 1625 1625 }; 1626 1626 }; 1627 1627 "punycode-2.1.1" = { ··· 1946 1946 mongosh = nodeEnv.buildNodePackage { 1947 1947 name = "mongosh"; 1948 1948 packageName = "mongosh"; 1949 - version = "1.5.0"; 1949 + version = "1.4.2"; 1950 1950 src = fetchurl { 1951 - url = "https://registry.npmjs.org/mongosh/-/mongosh-1.5.0.tgz"; 1952 - sha512 = "/SdcqHwQdb2hJ39ZkBHHlXtu12pCoYCRbC19nCeBnkNAU3HdxCPjCI1bG+XdDRc8XZzksnMxDatTOiyAEUkTXA=="; 1951 + url = "https://registry.npmjs.org/mongosh/-/mongosh-1.4.2.tgz"; 1952 + sha512 = "VPXujpv4rb7oRSqtuROhToSx1hz04uRatX5ynW5YrCCx/+AGPoawfzWfaBgm1RkqoBFm88bnsEKSL81bDPAhAw=="; 1953 1953 }; 1954 1954 dependencies = [ 1955 1955 sources."@ampproject/remapping-2.2.0" 1956 1956 sources."@babel/code-frame-7.16.7" 1957 1957 sources."@babel/compat-data-7.17.10" 1958 - (sources."@babel/core-7.18.2" // { 1958 + (sources."@babel/core-7.17.12" // { 1959 1959 dependencies = [ 1960 1960 sources."semver-6.3.0" 1961 1961 ]; 1962 1962 }) 1963 - (sources."@babel/generator-7.18.2" // { 1963 + (sources."@babel/generator-7.17.12" // { 1964 1964 dependencies = [ 1965 1965 sources."@jridgewell/gen-mapping-0.3.1" 1966 1966 ]; 1967 1967 }) 1968 - (sources."@babel/helper-compilation-targets-7.18.2" // { 1968 + (sources."@babel/helper-compilation-targets-7.17.10" // { 1969 1969 dependencies = [ 1970 1970 sources."semver-6.3.0" 1971 1971 ]; 1972 1972 }) 1973 - sources."@babel/helper-environment-visitor-7.18.2" 1973 + sources."@babel/helper-environment-visitor-7.16.7" 1974 1974 sources."@babel/helper-function-name-7.17.9" 1975 1975 sources."@babel/helper-hoist-variables-7.16.7" 1976 1976 sources."@babel/helper-module-imports-7.16.7" 1977 - sources."@babel/helper-module-transforms-7.18.0" 1977 + sources."@babel/helper-module-transforms-7.17.12" 1978 1978 sources."@babel/helper-plugin-utils-7.17.12" 1979 - sources."@babel/helper-simple-access-7.18.2" 1979 + sources."@babel/helper-simple-access-7.17.7" 1980 1980 sources."@babel/helper-split-export-declaration-7.16.7" 1981 1981 sources."@babel/helper-validator-identifier-7.16.7" 1982 1982 sources."@babel/helper-validator-option-7.16.7" 1983 - sources."@babel/helpers-7.18.2" 1983 + sources."@babel/helpers-7.17.9" 1984 1984 sources."@babel/highlight-7.17.12" 1985 - sources."@babel/parser-7.18.4" 1986 - sources."@babel/plugin-transform-destructuring-7.18.0" 1985 + sources."@babel/parser-7.17.12" 1986 + sources."@babel/plugin-transform-destructuring-7.17.12" 1987 1987 sources."@babel/plugin-transform-parameters-7.17.12" 1988 1988 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 1989 - sources."@babel/runtime-7.18.3" 1989 + sources."@babel/runtime-7.17.9" 1990 1990 sources."@babel/template-7.16.7" 1991 - sources."@babel/traverse-7.18.2" 1992 - sources."@babel/types-7.18.4" 1991 + sources."@babel/traverse-7.17.12" 1992 + sources."@babel/types-7.17.12" 1993 1993 sources."@hapi/hoek-9.3.0" 1994 1994 sources."@hapi/topo-5.1.0" 1995 1995 sources."@jridgewell/gen-mapping-0.1.1" ··· 1997 1997 sources."@jridgewell/set-array-1.1.1" 1998 1998 sources."@jridgewell/sourcemap-codec-1.4.13" 1999 1999 sources."@jridgewell/trace-mapping-0.3.13" 2000 - sources."@mongodb-js/devtools-connect-1.4.3" 2001 - sources."@mongosh/arg-parser-1.5.0" 2002 - (sources."@mongosh/async-rewriter2-1.5.0" // { 2000 + sources."@mongodb-js/devtools-connect-1.4.2" 2001 + sources."@mongosh/arg-parser-1.4.2" 2002 + (sources."@mongosh/async-rewriter2-1.4.2" // { 2003 2003 dependencies = [ 2004 2004 sources."@babel/core-7.16.12" 2005 2005 sources."semver-6.3.0" 2006 2006 ]; 2007 2007 }) 2008 - sources."@mongosh/autocomplete-1.5.0" 2009 - sources."@mongosh/cli-repl-1.5.0" 2010 - sources."@mongosh/editor-1.5.0" 2011 - sources."@mongosh/errors-1.5.0" 2012 - sources."@mongosh/history-1.5.0" 2013 - sources."@mongosh/i18n-1.5.0" 2014 - sources."@mongosh/js-multiline-to-singleline-1.5.0" 2015 - sources."@mongosh/logging-1.5.0" 2016 - sources."@mongosh/service-provider-core-1.5.0" 2017 - sources."@mongosh/service-provider-server-1.5.0" 2018 - sources."@mongosh/shell-api-1.5.0" 2019 - sources."@mongosh/shell-evaluator-1.5.0" 2020 - (sources."@mongosh/snippet-manager-1.5.0" // { 2008 + sources."@mongosh/autocomplete-1.4.2" 2009 + sources."@mongosh/cli-repl-1.4.2" 2010 + sources."@mongosh/editor-1.4.2" 2011 + sources."@mongosh/errors-1.4.2" 2012 + sources."@mongosh/history-1.4.2" 2013 + sources."@mongosh/i18n-1.4.2" 2014 + sources."@mongosh/js-multiline-to-singleline-1.4.2" 2015 + sources."@mongosh/logging-1.4.2" 2016 + sources."@mongosh/service-provider-core-1.4.2" 2017 + sources."@mongosh/service-provider-server-1.4.2" 2018 + sources."@mongosh/shell-api-1.4.2" 2019 + sources."@mongosh/shell-evaluator-1.4.2" 2020 + (sources."@mongosh/snippet-manager-1.4.2" // { 2021 2021 dependencies = [ 2022 2022 sources."escape-string-regexp-4.0.0" 2023 2023 ]; 2024 2024 }) 2025 - sources."@mongosh/types-1.5.0" 2025 + sources."@mongosh/types-1.4.2" 2026 2026 sources."@segment/loosely-validate-event-2.0.0" 2027 2027 sources."@sideway/address-4.1.4" 2028 2028 sources."@sideway/formula-3.0.0" ··· 2032 2032 sources."@types/babel__template-7.4.1" 2033 2033 sources."@types/babel__traverse-7.17.1" 2034 2034 sources."@types/chai-4.3.1" 2035 - sources."@types/node-17.0.38" 2035 + sources."@types/node-17.0.34" 2036 2036 sources."@types/sinon-10.0.11" 2037 2037 sources."@types/sinon-chai-3.2.8" 2038 2038 sources."@types/sinonjs__fake-timers-8.1.2" ··· 2060 2060 sources."base64-js-1.5.1" 2061 2061 sources."brace-expansion-1.1.11" 2062 2062 sources."browserslist-4.20.3" 2063 - sources."bson-4.6.4" 2063 + sources."bson-4.6.3" 2064 2064 sources."buffer-5.7.1" 2065 - sources."caniuse-lite-1.0.30001346" 2065 + sources."caniuse-lite-1.0.30001341" 2066 2066 sources."chalk-2.4.2" 2067 2067 sources."charenc-0.0.2" 2068 2068 sources."chownr-2.0.0" ··· 2082 2082 sources."semver-5.7.1" 2083 2083 ]; 2084 2084 }) 2085 - sources."electron-to-chromium-1.4.144" 2085 + sources."electron-to-chromium-1.4.137" 2086 2086 (sources."emphasize-3.0.0" // { 2087 2087 dependencies = [ 2088 2088 sources."ansi-styles-4.3.0" ··· 2096 2096 sources."escalade-3.1.1" 2097 2097 sources."escape-string-regexp-1.0.5" 2098 2098 sources."fault-1.0.4" 2099 - sources."follow-redirects-1.15.1" 2099 + sources."follow-redirects-1.15.0" 2100 2100 sources."format-0.2.2" 2101 2101 sources."fs-minipass-2.1.0" 2102 2102 sources."fs.realpath-1.0.0" ··· 2160 2160 sources."nanoscheduler-1.0.3" 2161 2161 sources."nanotiming-7.3.1" 2162 2162 sources."node-fetch-2.6.7" 2163 - sources."node-releases-2.0.5" 2163 + sources."node-releases-2.0.4" 2164 2164 sources."nopt-5.0.0" 2165 2165 sources."numeral-2.0.6" 2166 2166 sources."once-1.4.0"
+2 -2
pkgs/development/tools/sd-local/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "sd-local"; 5 - version = "1.0.42"; 5 + version = "1.0.43"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "screwdriver-cd"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xPskMKInmaWi5dwx5E5z1ssTQ6Smj1L40Voy++g7Rhs="; 11 + sha256 = "sha256-qFEug8fGOi5IwnA1P3FHKte7eiviNk/x8SdDss9J5vo="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-43hcIIGqBscMjQzaIGdMqV5lq3od4Ls4TJdTeFGtu5Y=";
+3 -3
pkgs/development/tools/sentry-cli/default.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "sentry-cli"; 12 - version = "2.5.1"; 12 + version = "2.5.2"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "getsentry"; 16 16 repo = "sentry-cli"; 17 17 rev = version; 18 - sha256 = "sha256-4X3IzLZRiyQpTwZ/4tl1nBPhSmuZLelEzOxvjCVnaIQ="; 18 + sha256 = "sha256-l632b+Cxs9jiahbeZYzjXDiw+LE2MUgx4negEh9jMAc="; 19 19 }; 20 20 doCheck = false; 21 21 ··· 25 25 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 26 26 nativeBuildInputs = [ pkg-config ]; 27 27 28 - cargoSha256 = "sha256-VsJrdQph8GJrQc0DWskvVdjvtsirEQxEIgr3vr62ktY="; 28 + cargoSha256 = "sha256-uVzUCwYJo3CRykGHSfxigi2N9YSsxh0q8xMXuOe2Zsk="; 29 29 30 30 meta = with lib; { 31 31 homepage = "https://docs.sentry.io/cli/";
+34
pkgs/development/tools/zq/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildGoModule 5 + , testers 6 + , zq 7 + }: 8 + 9 + buildGoModule rec { 10 + pname = "zq"; 11 + version = "1.2.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "brimdata"; 15 + repo = "zed"; 16 + rev = "v${version}"; 17 + hash = "sha256-BK4LB37jr/9O0sjYgFtnEkbFqTsp/1+hcmCNMFDPiPM="; 18 + }; 19 + 20 + vendorSha256 = "sha256-oAkQRUaEP/RNjpDH4U8XFVokf7KiLk0OWMX+U7qny70="; 21 + 22 + subPackages = [ "cmd/zq" ]; 23 + 24 + ldflags = [ "-s" "-X" "github.com/brimdata/zed/cli.Version=${version}" ]; 25 + 26 + passthru.tests = testers.testVersion { package = zq; }; 27 + 28 + meta = with lib; { 29 + description = "A command-line tool for processing data in diverse input formats, providing search, analytics, and extensive transformations using the Zed language"; 30 + homepage = "https://zed.brimdata.io"; 31 + license = licenses.bsd3; 32 + maintainers = with maintainers; [ knl ]; 33 + }; 34 + }
+1
pkgs/servers/gpsd/default.nix
··· 81 81 patchShebangs . 82 82 sed -e "s|systemd_dir = .*|systemd_dir = '$out/lib/systemd/system'|" -i SConscript 83 83 export TAR=noop 84 + substituteInPlace SConscript --replace "env['CCVERSION']" "env['CC']" 84 85 85 86 sconsFlags+=" udevdir=$out/lib/udev" 86 87 sconsFlags+=" python_libdir=$out/lib/${python3Packages.python.libPrefix}/site-packages"
+2 -2
pkgs/servers/monitoring/prometheus/postgres-exporter.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "postgres_exporter"; 5 - version = "0.11.0"; 5 + version = "0.11.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "prometheus-community"; 9 9 repo = "postgres_exporter"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-XrCO77R/rfkhSvebMjYwhe8JJ/Ley4VrXMqi5jax86k="; 11 + sha256 = "sha256-Bi24tg/ukFLmSbhAY3gZqT7qc0xWwLlLQxGB6F+qiUQ="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-ocapAJAQD84zISbTduAf3QyjaZ0UroNMdQig6IBNDpw=";
+2 -2
pkgs/servers/redpanda/default.nix
··· 1 1 { lib, stdenv, fetchzip }: 2 2 3 3 let 4 - version = "22.1.7"; 4 + version = "22.2.1"; 5 5 platform = if stdenv.isLinux then "linux" else "darwin"; 6 6 arch = if stdenv.isAarch64 then "arm" else "amd"; 7 7 sha256s = { 8 8 darwin.amd = "sha256-AXk3aP1SGiHTfHTCBRTagX0DAVmdcVVIkxWaTnZxB8g="; 9 9 darwin.arm = "sha256-pvOVvNc8lZ2d2fVZVYWvumVWYpnLORNY/3o1t4BN2N4="; 10 - linux.amd = "sha256-FjDDrJmLvelQ8PmTEtnvV+5zpixizR0bowoJPLyPFcA="; 10 + linux.amd = "sha256-cj/XzGtDGpsxWvVK1wiRn14TvvzonaL2hnPit0/7F3A="; 11 11 linux.arm = "sha256-WHjYAbytiu747jFqN0KZ/CkIwAVI7fb32ywtRiQOBm8="; 12 12 }; 13 13 in stdenv.mkDerivation rec {
+3 -3
pkgs/servers/rtsp-simple-server/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "rtsp-simple-server"; 8 - version = "0.19.3"; 8 + version = "0.20.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aler9"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-nIxh6mbpkM5vX0S2ze8ylfEP1B07/DaqjoF8jDirJb8="; 14 + hash = "sha256-egmTcEhfBxUw8fOpcft0Sna7zXxAfI264yZECDpWYQE="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-zz2RLmljfOw5DtQuFkfS47yHq/bWMJzmmJf+PBlPJJQ="; 17 + vendorSha256 = "sha256-C8+PVFLpFsowjnwMXwyC9TnNcsb8FEPBcWRgtExO7mw="; 18 18 19 19 # Tests need docker 20 20 doCheck = false;
+2 -2
pkgs/servers/snappymail/default.nix
··· 2 2 , dataPath ? "/var/lib/snappymail" }: 3 3 stdenv.mkDerivation rec { 4 4 pname = "snappymail"; 5 - version = "2.17.0"; 5 + version = "2.17.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/the-djmaze/snappymail/releases/download/v${version}/snappymail-${version}.tar.gz"; 9 - sha256 = "sha256-Z8By/X4IheOyCT7F4KArBN+CFUTcSn0VZchcYhAJsCU="; 9 + sha256 = "sha256-CKUVi0M9DhhfJRQQIq6gLGspta0BcEK1VpIolhGs3a0="; 10 10 }; 11 11 12 12 sourceRoot = "snappymail";
+2 -2
pkgs/tools/graphics/editres/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "editres"; 5 - version = "1.0.7"; 5 + version = "1.0.8"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://xorg/individual/app/editres-${version}.tar.gz"; 9 - sha256 = "10mbgijb6ac6wqb2grpy9mrazzw68jxjkxr9cbdf1111pa64yj19"; 9 + sha256 = "sha256-LVbWB3vHZ6+n4DD+ssNy/mvok/7EApoj9FodVZ/YRq4="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+35
pkgs/tools/misc/coinlive/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , openssl 4 + , pkg-config 5 + , rustPlatform 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "coinlive"; 10 + version = "0.2.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "mayeranalytics"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + hash = "sha256-i21C1ZSAPoUOBlnDQl40/17yRqmNx3wkjswHJeV9vko="; 17 + }; 18 + 19 + cargoSha256 = "sha256-0pUXCY5rZWh26KGD2OU2+M9L0RtCIan6hmuNeIeBEHI="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + openssl 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Live cryptocurrency prices CLI"; 31 + homepage = "https://github.com/mayeranalytics/coinlive"; 32 + license = licenses.gpl3Only; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+3 -3
pkgs/tools/misc/starship/default.nix
··· 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "starship"; 17 - version = "1.10.1"; 17 + version = "1.10.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "starship"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-ujv2lqhzsug9Qpco+4doMGH+0yG5cZZzLmSLr0MBmZk="; 23 + sha256 = "sha256-RSARAcId8U5b6vH4m5Zr6FqV1OFolqC+wyfqZbJZH4w="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ installShellFiles cmake ]; ··· 38 38 --zsh <($out/bin/starship completions zsh) 39 39 ''; 40 40 41 - cargoSha256 = "sha256-iZvjU/GzC/ssXcd+UeV57IA0hKT45cQ09VBB4BNYw50="; 41 + cargoSha256 = "sha256-UhTbrORUp+aP0SF1XjgpTunS0bpRvYxvUwEKBH7wFnQ="; 42 42 43 43 preCheck = '' 44 44 HOME=$TMPDIR
+5 -6
pkgs/tools/misc/via/default.nix
··· 2 2 3 3 let 4 4 pname = "via"; 5 - version = "1.3.1"; 5 + version = "2.0.5"; 6 6 name = "${pname}-${version}"; 7 - nameExecutable = pname; 8 7 src = fetchurl { 9 8 url = "https://github.com/the-via/releases/releases/download/v${version}/via-${version}-linux.AppImage"; 10 9 name = "via-${version}-linux.AppImage"; 11 - sha256 = "d2cd73d280a265149fedb24161ec7c575523596c4d30898ad6b5875e09b3f34a"; 10 + sha256 = "sha256-APNtzfeV6z8IF20bomcgMq7mwcK1fbDdFF77Xr0UPOs="; 12 11 }; 13 12 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 13 in appimageTools.wrapType2 { ··· 22 21 23 22 extraInstallCommands = '' 24 23 mv $out/bin/${name} $out/bin/${pname} 25 - install -m 444 -D ${appimageContents}/via.desktop -t $out/share/applications 26 - substituteInPlace $out/share/applications/via.desktop \ 24 + install -m 444 -D ${appimageContents}/via-nativia.desktop -t $out/share/applications 25 + substituteInPlace $out/share/applications/via-nativia.desktop \ 27 26 --replace 'Exec=AppRun' 'Exec=${pname}' 28 27 cp -r ${appimageContents}/usr/share/icons $out/share 29 28 ··· 34 33 meta = with lib; { 35 34 description = "Yet another keyboard configurator"; 36 35 homepage = "https://caniusevia.com/"; 37 - license = licenses.unfree; 36 + license = licenses.gpl3; 38 37 maintainers = with maintainers; [ emilytrau ]; 39 38 platforms = [ "x86_64-linux" ]; 40 39 };
+2 -2
pkgs/tools/misc/yt-dlp/default.nix
··· 20 20 # The websites yt-dlp deals with are a very moving target. That means that 21 21 # downloads break constantly. Because of that, updates should always be backported 22 22 # to the latest stable release. 23 - version = "2022.8.14"; 23 + version = "2022.8.19"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "sha256-mizrdqTMSKqAEn7/ioU9nIt+/ovhIcISPcv9PQa8lF8="; 27 + sha256 = "sha256-zCkKyKH+xiaEF2X+0S96Hr3+AXka5cXzeU7fzjXYGEM="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [ brotli certifi mutagen pycryptodomex websockets ];
+87
pkgs/tools/networking/hostapd-mana/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , pkg-config 6 + , libnl 7 + , openssl 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "hostapd-mana"; 12 + version = "2.6.5"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "sensepost"; 16 + repo = pname; 17 + rev = version; 18 + hash = "sha256-co5LMJAUYSdcvhLv1gfjDvdVqdSXgjtFoiQ7+KxR07M="; 19 + }; 20 + 21 + patches = [ 22 + # Fix compile errors with GCC 10 on newer Kali 23 + (fetchpatch { 24 + url = "https://github.com/sensepost/hostapd-mana/commit/8581994d8d19646da63e1e37cde27dd4c966e526.patch"; 25 + hash = "sha256-UBkhuqvX1nFiceECAIC9B13ReKbrAAUtPKjqD17mQgg="; 26 + }) 27 + ]; 28 + 29 + nativeBuildInputs = [ pkg-config ]; 30 + buildInputs = [ libnl openssl ]; 31 + 32 + extraConfig = '' 33 + CONFIG_DRIVER_WIRED=y 34 + CONFIG_LIBNL32=y 35 + CONFIG_EAP_SIM=y 36 + CONFIG_EAP_AKA=y 37 + CONFIG_EAP_AKA_PRIME=y 38 + CONFIG_EAP_PAX=y 39 + CONFIG_EAP_PWD=y 40 + CONFIG_EAP_SAKE=y 41 + CONFIG_EAP_GPSK=y 42 + CONFIG_EAP_GPSK_SHA256=y 43 + CONFIG_EAP_FAST=y 44 + CONFIG_EAP_IKEV2=y 45 + CONFIG_EAP_TNC=y 46 + CONFIG_EAP_EKE=y 47 + CONFIG_RADIUS_SERVER=y 48 + CONFIG_IEEE80211R=y 49 + CONFIG_IEEE80211N=y 50 + CONFIG_IEEE80211AC=y 51 + CONFIG_FULL_DYNAMIC_VLAN=y 52 + CONFIG_VLAN_NETLINK=y 53 + CONFIG_TLS=openssl 54 + CONFIG_TLSV11=y 55 + CONFIG_TLSV12=y 56 + CONFIG_INTERNETWORKING=y 57 + CONFIG_HS20=y 58 + CONFIG_ACS=y 59 + CONFIG_GETRANDOM=y 60 + CONFIG_SAE=y 61 + ''; 62 + 63 + postPatch = '' 64 + substituteInPlace hostapd/Makefile --replace /usr/local $out 65 + ''; 66 + 67 + configurePhase = '' 68 + runHook preConfigure 69 + cd hostapd 70 + cp -v defconfig .config 71 + echo "$extraConfig" >> .config 72 + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libnl-${lib.versions.major libnl.version}.0)" 73 + runHook postConfigure 74 + ''; 75 + 76 + preInstall = '' 77 + mkdir -p $out/bin 78 + ''; 79 + 80 + meta = with lib; { 81 + homepage = "https://github.com/sensepost/hostapd-mana"; 82 + description = "A featureful rogue wifi access point tool"; 83 + license = licenses.bsd3; 84 + maintainers = with maintainers; [ lourkeur ]; 85 + platforms = platforms.linux; 86 + }; 87 + }
+24
pkgs/tools/networking/q/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "q"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "natesales"; 9 + repo = "q"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Esg2i8UNT+SuW9+jsnVEOt1ot822CamZ3JoR8ReY0+4="; 12 + }; 13 + 14 + vendorHash = "sha256-oarXbxROTd7knHr9GKlrPnnS6ehkps2ZYYsUS9cn6ek="; 15 + 16 + doCheck = false; # tries to resolve DNS 17 + 18 + meta = { 19 + description = "A tiny and feature-rich command line DNS client with support for UDP, TCP, DoT, DoH, DoQ, and ODoH"; 20 + homepage = "https://github.com/natesales/q"; 21 + license = lib.licenses.gpl3Only; 22 + maintainers = [ lib.maintainers.das_j ]; 23 + }; 24 + }
+3 -3
pkgs/tools/networking/zerotierone/default.nix
··· 15 15 16 16 let 17 17 pname = "zerotierone"; 18 - version = "1.10.0"; 18 + version = "1.10.1"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "zerotier"; 22 22 repo = "ZeroTierOne"; 23 23 rev = version; 24 - sha256 = "sha256-2lxXgQArHTFCuSBbKRSaLka42p2INLDg0z3TZ+J5msc="; 24 + sha256 = "sha256-Y0klfE7ANQl1uYMkRg+AaIiJYSVPT6zME7tDMg2xbOk="; 25 25 }; 26 26 in stdenv.mkDerivation { 27 27 inherit pname version src; ··· 29 29 cargoDeps = rustPlatform.fetchCargoTarball { 30 30 src = "${src}/zeroidc"; 31 31 name = "${pname}-${version}"; 32 - sha256 = "sha256-Q9uBUD5xxo5gcTQTedVqQv+Z7B1TTPWtaTSuWo7WEPM="; 32 + sha256 = "sha256-8K4zAXo85MT4pfIsg7DZAO+snfwzdo2TozVw17KhX4Q="; 33 33 }; 34 34 postPatch = "cp ${src}/zeroidc/Cargo.lock Cargo.lock"; 35 35
+3 -3
pkgs/tools/security/cosign/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cosign"; 5 - version = "1.10.1"; 5 + version = "1.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-DMNjzTor22uyTzieWsni9wvscfU7uCFuf3AXOYP4LRo="; 11 + sha256 = "sha256-fEgcxxDbSr8rVZ35MwLjT7tinQ1JuqddWRtftTjDdpY="; 12 12 }; 13 13 14 14 buildInputs = lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite) ··· 16 16 17 17 nativeBuildInputs = [ pkg-config installShellFiles ]; 18 18 19 - vendorSha256 = "sha256-onRfo3ZK/+uEa0xR7P9IlEsd2aXy9foJjZl0UBO/cbs="; 19 + vendorSha256 = "sha256-AdsXijxqpsx2Mh0xAvUoie6Oy3ywnGJ1WMg9ZBLWHgc="; 20 20 21 21 subPackages = [ 22 22 "cmd/cosign"
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.2.12" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.2.13"
+8 -8
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 38794f11b8a4c685c1f90b832a9a77974f5e0471 4 - ref: refs/tags/6.2.12 3 + revision: 6241267e515db4b2902831fda1bc41773fb24529 4 + ref: refs/tags/6.2.13 5 5 specs: 6 - metasploit-framework (6.2.12) 6 + metasploit-framework (6.2.13) 7 7 actionpack (~> 6.0) 8 8 activerecord (~> 6.0) 9 9 activesupport (~> 6.0) ··· 130 130 arel-helpers (2.14.0) 131 131 activerecord (>= 3.1.0, < 8) 132 132 aws-eventstream (1.2.0) 133 - aws-partitions (1.618.0) 133 + aws-partitions (1.619.0) 134 134 aws-sdk-core (3.132.0) 135 135 aws-eventstream (~> 1, >= 1.0.2) 136 136 aws-partitions (~> 1, >= 1.525.0) 137 137 aws-sigv4 (~> 1.1) 138 138 jmespath (~> 1, >= 1.6.1) 139 - aws-sdk-ec2 (1.327.0) 139 + aws-sdk-ec2 (1.328.0) 140 140 aws-sdk-core (~> 3, >= 3.127.0) 141 141 aws-sigv4 (~> 1.1) 142 142 aws-sdk-iam (1.69.0) ··· 252 252 metasploit_payloads-mettle (1.0.18) 253 253 method_source (1.0.0) 254 254 mini_portile2 (2.8.0) 255 - minitest (5.16.2) 255 + minitest (5.16.3) 256 256 mqtt (0.5.0) 257 257 msgpack (1.5.4) 258 258 multi_json (1.15.0) ··· 402 402 ttfunk (1.7.0) 403 403 tzinfo (2.0.5) 404 404 concurrent-ruby (~> 1.0) 405 - tzinfo-data (1.2022.2) 405 + tzinfo-data (1.2022.3) 406 406 tzinfo (>= 1.0.0) 407 407 unf (0.1.4) 408 408 unf_ext ··· 439 439 metasploit-framework! 440 440 441 441 BUNDLED WITH 442 - 2.3.9 442 + 2.3.20
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 15 }; 16 16 in stdenv.mkDerivation rec { 17 17 pname = "metasploit-framework"; 18 - version = "6.2.12"; 18 + version = "6.2.13"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "rapid7"; 22 22 repo = "metasploit-framework"; 23 23 rev = version; 24 - sha256 = "sha256-KIpPThnT0hMeJu75yvv1YIXxb2B5SJhS2SibMAn+EU8="; 24 + sha256 = "sha256-95G9iqejcc2t4pUmzNoDE9/9f6NstPjLDJigQhZAo4E="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ makeWrapper ];
+11 -11
pkgs/tools/security/metasploit/gemset.nix
··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "1wv819cag3bhq07d4xjspinakqdfw97chpd9s6qqr70xicpl43zn"; 107 + sha256 = "0vgbfpxpybq5hr87knpc65ha0cyckbq2i00y8wd8sc3j663sffm2"; 108 108 type = "gem"; 109 109 }; 110 - version = "1.618.0"; 110 + version = "1.619.0"; 111 111 }; 112 112 aws-sdk-core = { 113 113 groups = ["default"]; ··· 124 124 platforms = []; 125 125 source = { 126 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "0gdqf0dfkqk4q6x9rz9dq0sliqmybdfkbfzyifm4y2pvqaiybgir"; 127 + sha256 = "1x9wcq89bp8785qqx8jlj4isbqq5w5kisfdd275r6p2chmm1mw47"; 128 128 type = "gem"; 129 129 }; 130 - version = "1.327.0"; 130 + version = "1.328.0"; 131 131 }; 132 132 aws-sdk-iam = { 133 133 groups = ["default"]; ··· 614 614 platforms = []; 615 615 source = { 616 616 fetchSubmodules = false; 617 - rev = "38794f11b8a4c685c1f90b832a9a77974f5e0471"; 618 - sha256 = "0kqizq4k16r8v599hj3rc1pz31b0ypxwmygf4qg17lnk3574z2i8"; 617 + rev = "6241267e515db4b2902831fda1bc41773fb24529"; 618 + sha256 = "10d380b4584q1k5zid3cldzzvpqk0gdcq9lmwanwswd3ly5bv4gp"; 619 619 type = "git"; 620 620 url = "https://github.com/rapid7/metasploit-framework"; 621 621 }; 622 - version = "6.2.12"; 622 + version = "6.2.13"; 623 623 }; 624 624 metasploit-model = { 625 625 groups = ["default"]; ··· 686 686 platforms = []; 687 687 source = { 688 688 remotes = ["https://rubygems.org"]; 689 - sha256 = "14a9ign0hj3z3j4cpfplj2djaskx3skzyx4fl3x53d7saxmhrgn1"; 689 + sha256 = "0516ypqlx0mlcfn5xh7qppxqc3xndn1fnadxawa8wld5dkcimy30"; 690 690 type = "gem"; 691 691 }; 692 - version = "5.16.2"; 692 + version = "5.16.3"; 693 693 }; 694 694 mqtt = { 695 695 groups = ["default"]; ··· 1447 1447 platforms = []; 1448 1448 source = { 1449 1449 remotes = ["https://rubygems.org"]; 1450 - sha256 = "0792pfxr0n143r424ibl4ahpd5yl9yxnnwifiy8qdc14j2c7bsz8"; 1450 + sha256 = "0k62nrh30sinsfbs17w8cahydf3vm3j14l0l0ba78vfh429cv4i3"; 1451 1451 type = "gem"; 1452 1452 }; 1453 - version = "1.2022.2"; 1453 + version = "1.2022.3"; 1454 1454 }; 1455 1455 unf = { 1456 1456 groups = ["default"];
+1 -1
pkgs/tools/security/mkp224o/default.nix
··· 22 22 { suffix = "donna-sse2"; configureFlags = ["--enable-donna-sse2"]; } 23 23 ] ++ lib.optionals (!stdenv.isDarwin && stdenv.isx86_64) [ 24 24 { suffix = "amd64-51-30k"; configureFlags = ["--enable-amd64-51-30k"]; } 25 - { suffix = "amd64-64-20k"; configureFlags = ["--enable-amd64-64-24k"]; } 25 + { suffix = "amd64-64-24k"; configureFlags = ["--enable-amd64-64-24k"]; } 26 26 ]; 27 27 in 28 28 lib.concatMapStrings ({suffix, configureFlags}: ''
+2
pkgs/top-level/aliases.nix
··· 380 380 electrum-dash = throw "electrum-dash has been removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 381 381 382 382 # Emacs 383 + emacs28NativeComp = emacs28; # Added 2022-06-08 383 384 emacs28Packages = emacs28.pkgs; # Added 2021-10-04 384 385 emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 386 + emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 385 387 emacsPackages = emacs.pkgs; # Added 2020-12-18 386 388 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 387 389 emacsPackagesNg = emacs.pkgs; # Added 2019-08-07
+12 -5
pkgs/top-level/all-packages.nix
··· 327 327 328 328 buildMaven = callPackage ../build-support/build-maven.nix {}; 329 329 330 + caroline = callPackage ../development/libraries/caroline { }; 331 + 330 332 castget = callPackage ../applications/networking/feedreaders/castget { }; 331 333 332 334 castxml = callPackage ../development/tools/castxml { ··· 1284 1286 1285 1287 pferd = callPackage ../tools/misc/pferd {}; 1286 1288 1289 + q = callPackage ../tools/networking/q {}; 1290 + 1287 1291 qFlipper = libsForQt515.callPackage ../tools/misc/qflipper { }; 1288 1292 1289 1293 quich = callPackage ../tools/misc/quich { } ; ··· 1365 1369 1366 1370 breitbandmessung = callPackage ../applications/networking/breitbandmessung { }; 1367 1371 1372 + zq = callPackage ../development/tools/zq { buildGoModule = buildGo118Module; }; 1373 + 1368 1374 ### APPLICATIONS/EMULATORS 1369 1375 1370 1376 atari800 = callPackage ../applications/emulators/atari800 { }; ··· 1448 1454 hatari = callPackage ../applications/emulators/hatari { }; 1449 1455 1450 1456 hercules = callPackage ../applications/emulators/hercules { }; 1457 + 1458 + hostapd-mana = callPackage ../tools/networking/hostapd-mana { }; 1451 1459 1452 1460 image-analyzer = callPackage ../applications/emulators/cdemu/analyzer.nix { }; 1453 1461 ··· 12849 12857 12850 12858 avra = callPackage ../development/compilers/avra { }; 12851 12859 12860 + ballerina = callPackage ../development/compilers/ballerina { }; 12861 + 12852 12862 beekeeper-studio = callPackage ../development/tools/database/beekeeper-studio { }; 12853 12863 12854 12864 bigloo = callPackage ../development/compilers/bigloo { }; ··· 17530 17540 soxt = callPackage ../development/libraries/soxt { }; 17531 17541 17532 17542 CoinMP = callPackage ../development/libraries/CoinMP { }; 17543 + 17544 + coinlive = callPackage ../tools/misc/coinlive { }; 17533 17545 17534 17546 cointop = callPackage ../applications/misc/cointop { }; 17535 17547 ··· 26959 26971 em = callPackage ../applications/editors/em { }; 26960 26972 26961 26973 emacs = emacs28; 26962 - emacsNativeComp = emacs28NativeComp; 26963 26974 emacs-nox = emacs28-nox; 26964 26975 26965 26976 emacs28 = callPackage ../applications/editors/emacs/28.nix { ··· 26972 26983 gpm = null; 26973 26984 inherit (darwin.apple_sdk.frameworks) AppKit GSS ImageIO; 26974 26985 inherit (darwin) sigtool; 26975 - }; 26976 - 26977 - emacs28NativeComp = emacs28.override { 26978 - nativeComp = true; 26979 26986 }; 26980 26987 26981 26988 emacs28-nox = lowPrio (emacs28.override {
+6
pkgs/top-level/python-packages.nix
··· 812 812 813 813 asysocks = callPackage ../development/python-modules/asysocks { }; 814 814 815 + atc-ble = callPackage ../development/python-modules/atc-ble { }; 816 + 815 817 atenpdu = callPackage ../development/python-modules/atenpdu { }; 816 818 817 819 atlassian-python-api = callPackage ../development/python-modules/atlassian-python-api { }; ··· 1366 1368 1367 1369 blebox-uniapi = callPackage ../development/python-modules/blebox-uniapi { }; 1368 1370 1371 + bless = callPackage ../development/python-modules/bless { }; 1372 + 1369 1373 blessed = callPackage ../development/python-modules/blessed { }; 1370 1374 1371 1375 blessings = callPackage ../development/python-modules/blessings { }; ··· 1636 1640 cement = callPackage ../development/python-modules/cement { }; 1637 1641 1638 1642 censys = callPackage ../development/python-modules/censys { }; 1643 + 1644 + cexprtk = callPackage ../development/python-modules/cexprtk { }; 1639 1645 1640 1646 coincurve = callPackage ../development/python-modules/coincurve { 1641 1647 inherit (pkgs) secp256k1;