lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
3ff69655 d8e62d8e

+1062 -1089
+12
doc/contributing/coding-conventions.chapter.md
··· 169 169 }) 170 170 ``` 171 171 172 + - Unnecessary string conversions should be avoided. Do 173 + 174 + ```nix 175 + rev = version; 176 + ``` 177 + 178 + instead of 179 + 180 + ```nix 181 + rev = "${version}"; 182 + ``` 183 + 172 184 - Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first. 173 185 174 186 - The top-level `lib` must be used in the master and 21.05 branch over its alias `stdenv.lib` as it now causes evaluation errors when aliases are disabled which is the case for ofborg.
-18
maintainers/maintainer-list.nix
··· 3709 3709 githubId = 1447245; 3710 3710 name = "Robin Gloster"; 3711 3711 }; 3712 - gnidorah = { 3713 - email = "gnidorah@users.noreply.github.com"; 3714 - github = "gnidorah"; 3715 - githubId = 12064730; 3716 - name = "gnidorah"; 3717 - }; 3718 3712 gnxlxnxx = { 3719 3713 email = "gnxlxnxx@web.de"; 3720 3714 github = "gnxlxnxx"; ··· 7019 7013 githubId = 1222539; 7020 7014 name = "Roman Naumann"; 7021 7015 }; 7022 - nand0p = { 7023 - email = "nando@hex7.com"; 7024 - github = "nand0p"; 7025 - githubId = 1916245; 7026 - name = "Fernando Jose Pando"; 7027 - }; 7028 7016 nasirhm = { 7029 7017 email = "nasirhussainm14@gmail.com"; 7030 7018 github = "nasirhm"; ··· 7706 7694 github = "periklis"; 7707 7695 githubId = 152312; 7708 7696 name = "Periklis Tsirakidis"; 7709 - }; 7710 - pesterhazy = { 7711 - email = "pesterhazy@gmail.com"; 7712 - github = "pesterhazy"; 7713 - githubId = 106328; 7714 - name = "Paulus Esterhazy"; 7715 7697 }; 7716 7698 petabyteboy = { 7717 7699 email = "milan@petabyte.dev";
+1 -1
nixos/modules/programs/sway.nix
··· 144 144 xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-wlr ]; 145 145 }; 146 146 147 - meta.maintainers = with lib.maintainers; [ gnidorah primeos colemickens ]; 147 + meta.maintainers = with lib.maintainers; [ primeos colemickens ]; 148 148 }
+1 -1
nixos/modules/services/audio/jack.nix
··· 290 290 291 291 ]; 292 292 293 - meta.maintainers = [ maintainers.gnidorah ]; 293 + meta.maintainers = [ ]; 294 294 }
+1 -1
nixos/modules/services/continuous-integration/buildbot/master.nix
··· 283 283 '') 284 284 ]; 285 285 286 - meta.maintainers = with lib.maintainers; [ nand0p mic92 lopsided98 ]; 286 + meta.maintainers = with lib.maintainers; [ mic92 lopsided98 ]; 287 287 }
+1 -1
nixos/modules/services/continuous-integration/buildbot/worker.nix
··· 191 191 }; 192 192 }; 193 193 194 - meta.maintainers = with lib.maintainers; [ nand0p ]; 194 + meta.maintainers = with lib.maintainers; [ ]; 195 195 196 196 }
+1 -1
nixos/modules/services/misc/autorandr.nix
··· 48 48 49 49 }; 50 50 51 - meta.maintainers = with maintainers; [ gnidorah ]; 51 + meta.maintainers = with maintainers; [ ]; 52 52 }
+1 -1
nixos/modules/services/misc/fstrim.nix
··· 42 42 43 43 }; 44 44 45 - meta.maintainers = with maintainers; [ gnidorah ]; 45 + meta.maintainers = with maintainers; [ ]; 46 46 }
+1 -1
nixos/modules/services/misc/gitweb.nix
··· 54 54 55 55 }; 56 56 57 - meta.maintainers = with maintainers; [ gnidorah ]; 57 + meta.maintainers = with maintainers; [ ]; 58 58 59 59 }
+1 -1
nixos/modules/services/misc/mame.nix
··· 63 63 }; 64 64 }; 65 65 66 - meta.maintainers = with lib.maintainers; [ gnidorah ]; 66 + meta.maintainers = with lib.maintainers; [ ]; 67 67 }
+1 -1
nixos/modules/services/networking/hans.nix
··· 141 141 }; 142 142 }; 143 143 144 - meta.maintainers = with maintainers; [ gnidorah ]; 144 + meta.maintainers = with maintainers; [ ]; 145 145 }
+1 -1
nixos/modules/services/security/hologram-agent.nix
··· 54 54 55 55 }; 56 56 57 - meta.maintainers = with lib.maintainers; [ nand0p ]; 57 + meta.maintainers = with lib.maintainers; [ ]; 58 58 }
+12 -3
nixos/modules/services/web-servers/nginx/default.nix
··· 154 154 155 155 ${optionalString (cfg.recommendedProxySettings) '' 156 156 proxy_redirect off; 157 - proxy_connect_timeout 60; 158 - proxy_send_timeout 60; 159 - proxy_read_timeout 60; 157 + proxy_connect_timeout ${cfg.proxyTimeout}; 158 + proxy_send_timeout ${cfg.proxyTimeout}; 159 + proxy_read_timeout ${cfg.proxyTimeout}; 160 160 proxy_http_version 1.1; 161 161 include ${recommendedProxyConfig}; 162 162 ''} ··· 398 398 type = types.bool; 399 399 description = " 400 400 Enable recommended proxy settings. 401 + "; 402 + }; 403 + 404 + proxyTimeout = mkOption { 405 + type = types.str; 406 + default = "60s"; 407 + example = "20s"; 408 + description = " 409 + Change the proxy related timeouts in recommendedProxySettings. 401 410 "; 402 411 }; 403 412
+1 -1
nixos/modules/services/web-servers/nginx/gitweb.nix
··· 89 89 90 90 }; 91 91 92 - meta.maintainers = with maintainers; [ gnidorah ]; 92 + meta.maintainers = with maintainers; [ ]; 93 93 94 94 }
+1 -1
nixos/modules/services/x11/desktop-managers/cde.nix
··· 68 68 }]; 69 69 }; 70 70 71 - meta.maintainers = [ maintainers.gnidorah ]; 71 + meta.maintainers = [ ]; 72 72 }
+1 -1
nixos/modules/virtualisation/kvmgt.nix
··· 82 82 }; 83 83 }; 84 84 85 - meta.maintainers = with maintainers; [ gnidorah ]; 85 + meta.maintainers = with maintainers; [ ]; 86 86 }
+1 -1
nixos/tests/buildbot.nix
··· 109 109 bbworker.fail("nc -z bbmaster 8011") 110 110 ''; 111 111 112 - meta.maintainers = with pkgs.lib.maintainers; [ nand0p ]; 112 + meta.maintainers = with pkgs.lib.maintainers; [ ]; 113 113 } {}
+1 -1
pkgs/applications/audio/adlplug/default.nix
··· 38 38 homepage = src.meta.homepage; 39 39 license = licenses.boost; 40 40 platforms = platforms.linux; 41 - maintainers = with maintainers; [ gnidorah ]; 41 + maintainers = with maintainers; [ ]; 42 42 }; 43 43 }
+1 -1
pkgs/applications/audio/midisheetmusic/default.nix
··· 56 56 description = "Convert MIDI Files to Piano Sheet Music for two hands"; 57 57 homepage = "http://midisheetmusic.com"; 58 58 license = licenses.gpl2; 59 - maintainers = [ maintainers.gnidorah ]; 59 + maintainers = [ ]; 60 60 platforms = platforms.linux; 61 61 }; 62 62 }
+1 -1
pkgs/applications/audio/munt/default.nix
··· 33 33 homepage = "http://munt.sourceforge.net/"; 34 34 license = with licenses; [ lgpl21 gpl3 ]; 35 35 platforms = platforms.linux; 36 - maintainers = with maintainers; [ gnidorah ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 }
+1 -1
pkgs/applications/audio/openmpt123/default.nix
··· 25 25 description = "A cross-platform command-line based module file player"; 26 26 homepage = "https://lib.openmpt.org/libopenmpt/"; 27 27 license = licenses.bsd3; 28 - maintainers = with maintainers; [ gnidorah ]; 28 + maintainers = with maintainers; [ ]; 29 29 platforms = platforms.linux; 30 30 }; 31 31 }
+2 -2
pkgs/applications/audio/uade123/default.nix
··· 19 19 description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"; 20 20 homepage = "http://zakalwe.fi/uade/"; 21 21 license = licenses.gpl2; 22 - maintainers = [ lib.maintainers.gnidorah ]; 23 - platforms = lib.platforms.unix; 22 + maintainers = [ ]; 23 + platforms = platforms.unix; 24 24 }; 25 25 }
+3 -3
pkgs/applications/backup/pika-backup/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "pika-backup"; 22 - version = "0.2.3"; 22 + version = "0.3.0"; 23 23 24 24 src = fetchFromGitLab { 25 25 domain = "gitlab.gnome.org"; 26 26 owner = "World"; 27 27 repo = "pika-backup"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-jy22eyuzM2y7vByT3TOlAUuTKtPepkB9iiHQT1YGQ88="; 29 + sha256 = "sha256-k9kl6cSohWx+MB/9jyVcTgpv02gsVwAk5KDSNqQrmzI="; 30 30 }; 31 31 32 32 cargoDeps = rustPlatform.fetchCargoTarball { 33 33 inherit src; 34 34 name = "${pname}-${version}"; 35 - sha256 = "1ndcpgw18w3l5f7vv5vw8lxhgd5y1zxfarwnyfx13m7kcv8m3vyj"; 35 + sha256 = "0r6nbffik5j82bi82cmc00b17xv9m7xn3w3sarzwfxz0h43lal8a"; 36 36 }; 37 37 38 38 patches = [
+5 -3
pkgs/applications/editors/scite/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "scite"; 5 - version = "4.0.5"; 5 + version = "5.0.2"; 6 6 7 7 src = fetchurl { 8 - url = "https://www.scintilla.org/scite405.tgz"; 9 - sha256 = "0h16wk2986nkkhhdv5g4lxlcn02qwyja24x1r6vf02r1hf46b9q2"; 8 + url = "https://www.scintilla.org/scite502.tgz"; 9 + sha256 = "00n2gr915f7kvp2250dzn6n0p6lhr6qdlm1m7y2xi6qrrky0bpan"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; ··· 14 14 sourceRoot = "scintilla/gtk"; 15 15 16 16 buildPhase = '' 17 + make 18 + cd ../../lexilla/src 17 19 make 18 20 cd ../../scite/gtk 19 21 make prefix=$out/
+1 -1
pkgs/applications/graphics/lazpaint/default.nix
··· 63 63 homepage = "https://sourceforge.net/projects/lazpaint/"; 64 64 license = licenses.gpl3; 65 65 platforms = platforms.linux; 66 - maintainers = with maintainers; [ gnidorah ]; 66 + maintainers = with maintainers; [ ]; 67 67 }; 68 68 }
+5 -8
pkgs/applications/graphics/meme/default.nix pkgs/applications/graphics/meme-image-generator/default.nix
··· 1 1 { lib 2 - , unstableGitUpdater 3 2 , buildGoModule 4 3 , fetchFromGitHub 5 4 }: 6 5 7 - buildGoModule { 8 - pname = "meme"; 9 - version = "unstable-2020-05-28"; 6 + buildGoModule rec { 7 + pname = "meme-image-generator"; 8 + version = "1.0.1"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "nomad-software"; 13 12 repo = "meme"; 14 - rev = "33a8b7d0de6996294a0464a605dacc17b26a6b02"; 15 - sha256 = "05h8d6pjszhr49xqg02nw94hm95kb7w1i7nw8jxi582fxxm2qbnm"; 13 + rev = "v${version}"; 14 + sha256 = "089r0v5az2d2njn0s3d3wd0861pcs4slg6zl0rj4cm1k5cj8yd1k"; 16 15 }; 17 16 18 17 vendorSha256 = null; 19 - 20 - passthru.updateScript = unstableGitUpdater { }; 21 18 22 19 meta = with lib; { 23 20 description = "A command line utility for creating image macro style memes";
+1 -1
pkgs/applications/misc/ArchiSteamFarm/default.nix
··· 36 36 homepage = "https://github.com/JustArchiNET/ArchiSteamFarm"; 37 37 license = licenses.asl20; 38 38 platforms = dotnetCorePackages.aspnetcore_3_1.meta.platforms; 39 - maintainers = with maintainers; [ gnidorah ]; 39 + maintainers = with maintainers; [ ]; 40 40 hydraPlatforms = []; 41 41 }; 42 42 }
+1 -1
pkgs/applications/misc/cpu-x/default.nix
··· 27 27 homepage = src.meta.homepage; 28 28 license = licenses.gpl3; 29 29 platforms = [ "x86_64-linux" ]; 30 - maintainers = with maintainers; [ gnidorah ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/applications/misc/jekyll/default.nix
··· 49 49 homepage = "https://jekyllrb.com/"; 50 50 #changelog = "https://raw.githubusercontent.com/jekyll/jekyll/v${version}/History.markdown"; 51 51 license = licenses.mit; 52 - maintainers = with maintainers; [ pesterhazy ]; 52 + maintainers = with maintainers; [ ]; 53 53 platforms = platforms.unix; 54 54 }; 55 55 }
+4 -3
pkgs/applications/misc/plasma-applet-volumewin7mixer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "plasma-applet-volumewin7mixer"; 5 - version = "25"; 5 + version = "26"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Zren"; 9 9 repo = "plasma-applet-volumewin7mixer"; 10 10 rev = "v${version}"; 11 - sha256 = "1nvz0a06qb3pfk8dfh5n5vgf3psd6k0j3vms9pskr511qsxw0dfi"; 11 + sha256 = "sha256-VMOUNtAURTHDuJBOGz2N0+3VzxBmVNC1O8dVuyUZAa4="; 12 12 }; 13 13 14 + # Adds the CMakeLists.txt not provided by upstream 14 15 patches = [ ./cmake.patch ]; 15 - postPatch = "rm build "; 16 + postPatch = "rm build"; 16 17 nativeBuildInputs = [ cmake extra-cmake-modules ]; 17 18 buildInputs = [ plasma-framework kwindowsystem plasma-pa ]; 18 19
+1 -1
pkgs/applications/misc/qdirstat/default.nix
··· 51 51 description = "Graphical disk usage analyzer"; 52 52 homepage = src.meta.homepage; 53 53 license = licenses.gpl2Plus; 54 - maintainers = with maintainers; [ gnidorah ]; 54 + maintainers = with maintainers; [ ]; 55 55 platforms = platforms.linux; 56 56 }; 57 57 }
+6 -8
pkgs/applications/misc/xplr/default.nix
··· 1 - { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }: 1 + { lib, stdenv, rustPlatform, fetchCrate, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "xplr"; 5 - version = "0.8.4"; 5 + version = "0.9.1"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "sayanarijit"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "00kmmdwwf9cll25bkszgin2021ggf9b28jlcpicin5kgw4iwlhkj"; 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "0ca6r0xkcdg1ha0n79kzxqh2ks5q3l3hgylqqy62vk51c6yrjx9x"; 12 10 }; 13 11 14 12 buildInputs = lib.optional stdenv.isDarwin libiconv; 15 13 16 - cargoSha256 = "1j43vwb885h355wdmjijz1qpkqn1dmb93hwi6vc035vkbbxs1g4r"; 14 + cargoSha256 = "1c29dakcff130fvavgq2kpy2ncpgxkil2mi14q2m9jpsrvhqcdvk"; 17 15 18 16 meta = with lib; { 19 17 description = "A hackable, minimal, fast TUI file explorer";
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 27 27 pname = "discord-canary"; 28 28 binaryName = "DiscordCanary"; 29 29 desktopName = "Discord Canary"; 30 - version = "0.0.119"; 30 + version = "0.0.121"; 31 31 src = fetchurl { 32 32 url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; 33 - sha256 = "0bzrilag7mjfhr84l956xisbaz8mmkmqizg22f9gabgcv85vwzsi"; 33 + sha256 = "0s85nh31wv39adawfmllp128n0wgyisbi604n0cngzi28rdw7bph"; 34 34 }; 35 35 }; 36 36 }.${branch}
+3 -3
pkgs/applications/networking/instant-messengers/ferdi/default.nix
··· 3 3 mkFranzDerivation rec { 4 4 pname = "ferdi"; 5 5 name = "Ferdi"; 6 - version = "5.5.0"; 6 + version = "5.6.0-beta.5"; 7 7 src = fetchurl { 8 8 url = "https://github.com/getferdi/ferdi/releases/download/v${version}/ferdi_${version}_amd64.deb"; 9 - sha256 = "0i24vcnq4iz5amqmn2fgk92ff9x9y7fg8jhc3g6ksvmcfly7af3k"; 9 + sha256 = "sha256-fDUzYir53OQ3O4o9eG70sGD+FJ0/4SDNsTfh97WFRnQ="; 10 10 }; 11 11 meta = with lib; { 12 12 description = "Combine your favorite messaging services into one application"; 13 13 homepage = "https://getferdi.com/"; 14 - license = licenses.free; 14 + license = licenses.asl20; 15 15 maintainers = [ maintainers.davidtwco ]; 16 16 platforms = [ "x86_64-linux" ]; 17 17 hydraPlatforms = [ ];
+2
pkgs/applications/networking/instant-messengers/franz/generic.nix
··· 23 23 , udev 24 24 , libnotify 25 25 , xdg-utils 26 + , mesa 26 27 }: 27 28 28 29 # Helper function for building a derivation for Franz and forks. ··· 48 49 libXtst 49 50 libXScrnSaver 50 51 ]) ++ [ 52 + mesa #libgbm 51 53 gtk3 52 54 atk 53 55 glib
+1 -1
pkgs/applications/networking/instant-messengers/rambox/default.nix
··· 21 21 description = "Free and Open Source messaging and emailing app that combines common web applications into one"; 22 22 homepage = "https://rambox.pro"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ gnidorah ma27 ]; 24 + maintainers = with maintainers; [ ma27 ]; 25 25 platforms = ["i686-linux" "x86_64-linux"]; 26 26 hydraPlatforms = []; 27 27 };
+7 -5
pkgs/applications/networking/instant-messengers/torchat/default.nix
··· 1 - { lib, stdenv, fetchurl, python, unzip, wxPython, wrapPython, tor }: 2 - stdenv.mkDerivation rec { 1 + { lib, stdenv, fetchFromGitHub, python, unzip, wxPython, wrapPython, tor }: 3 2 3 + stdenv.mkDerivation rec { 4 4 pname = "torchat"; 5 5 version = "0.9.9.553"; 6 6 7 - src = fetchurl { 8 - url = "https://github.com/prof7bit/TorChat/archive/${version}.tar.gz"; 9 - sha256 = "0rb4lvv40pz6ab5kxq40ycvh7kh1yxn7swzgv2ff2nbhi62xnzp0"; 7 + src = fetchFromGitHub { 8 + owner = "prof7bit"; 9 + repo = "TorChat"; 10 + rev = version; 11 + sha256 = "2LHG9qxZDo5rV6wsputdRo2Y1aHs+irMwt1ucFnXQE0="; 10 12 }; 11 13 12 14 nativeBuildInputs = [ unzip ];
+1 -1
pkgs/applications/networking/instant-messengers/vk-messenger/default.nix
··· 25 25 description = "Simple and Convenient Messaging App for VK"; 26 26 homepage = "https://vk.com/messenger"; 27 27 license = licenses.unfree; 28 - maintainers = [ maintainers.gnidorah ]; 28 + maintainers = [ ]; 29 29 platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"]; 30 30 }; 31 31
+3 -3
pkgs/applications/networking/ssb-patchwork/default.nix
··· 2 2 3 3 let 4 4 pname = "ssb-patchwork"; 5 - version = "3.18.0"; 5 + version = "3.18.1"; 6 6 name = "Patchwork-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/ssbc/patchwork/releases/download/v${version}/${name}.AppImage"; 10 - sha256 = "1sb9q1qj5mj4cf8d9dsc498mg8a1ri2y0p9qbh44i8ykby8jkgjc"; 10 + sha256 = "F8n6LLbgkg3z55lSY60T+pn2lra8aPt6Ztepw1gf2rI="; 11 11 }; 12 12 13 13 binary = appimageTools.wrapType2 { ··· 47 47 ''; 48 48 homepage = "https://www.scuttlebutt.nz/"; 49 49 license = licenses.agpl3; 50 - maintainers = with maintainers; [ asymmetric ninjatrappeur ]; 50 + maintainers = with maintainers; [ asymmetric ninjatrappeur cyplo ]; 51 51 platforms = [ "x86_64-linux" ]; 52 52 }; 53 53 }
+1 -1
pkgs/applications/office/mytetra/default.nix
··· 33 33 description = "Smart manager for information collecting"; 34 34 homepage = "https://webhamster.ru/site/page/index/articles/projectcode/138"; 35 35 license = licenses.gpl3; 36 - maintainers = [ maintainers.gnidorah ]; 36 + maintainers = [ ]; 37 37 platforms = platforms.linux; 38 38 }; 39 39 }
+4 -1
pkgs/applications/science/math/cntk/default.nix
··· 33 33 # Force OpenMPI to use g++ in PATH. 34 34 OMPI_CXX = "g++"; 35 35 36 + # Uses some deprecated tensorflow functions 37 + NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 38 + 36 39 buildInputs = [ openblas opencv3 libzip boost protobuf mpi ] 37 40 ++ lib.optional cudaSupport cudatoolkit 38 41 ++ lib.optional cudnnSupport cudnn; ··· 40 43 configureFlags = [ 41 44 "--with-opencv=${opencv3}" 42 45 "--with-libzip=${libzip.dev}" 43 - "--with-openblas=${openblas}" 46 + "--with-openblas=${openblas.dev}" 44 47 "--with-boost=${boost.dev}" 45 48 "--with-protobuf=${protobuf}" 46 49 "--with-mpi=${mpi}"
+1 -1
pkgs/applications/version-management/git-and-tools/gitweb/default.nix
··· 22 22 ++ [ "${git}/share/gitweb" ]; 23 23 24 24 meta = git.meta // { 25 - maintainers = with lib.maintainers; [ gnidorah ]; 25 + maintainers = with lib.maintainers; [ ]; 26 26 }; 27 27 }
+2 -2
pkgs/applications/version-management/mercurial/4.9.nix
··· 1 - { lib, stdenv, fetchurl, python2Packages, makeWrapper, unzip 1 + { lib, stdenv, fetchurl, python2Packages, makeWrapper 2 2 , guiSupport ? false, tk ? null 3 3 , ApplicationServices 4 4 , mercurialSrc ? fetchurl rec { ··· 21 21 22 22 inherit python; # pass it so that the same version can be used in hg2git 23 23 24 - nativeBuildInputs = [ makeWrapper unzip ]; 24 + nativeBuildInputs = [ makeWrapper ]; 25 25 buildInputs = [ docutils ] 26 26 ++ lib.optionals stdenv.isDarwin [ ApplicationServices ]; 27 27
+1 -1
pkgs/applications/video/kodi/unwrapped.nix
··· 45 45 kodi_src = fetchFromGitHub { 46 46 owner = "xbmc"; 47 47 repo = "xbmc"; 48 - rev = "v${kodiVersion}"; 48 + rev = "${kodiVersion}-${rel}"; 49 49 sha256 = "0jh67vw3983lnfgqzqfislawwbpq0vxxk1ljsg7mar06mlwfxb7h"; 50 50 }; 51 51
+1 -1
pkgs/data/themes/cdetheme/default.nix
··· 28 28 homepage = "https://www.gnome-look.org/p/1231025"; 29 29 license = licenses.gpl3; 30 30 platforms = platforms.all; 31 - maintainers = with maintainers; [ gnidorah ]; 31 + maintainers = with maintainers; [ ]; 32 32 hydraPlatforms = []; 33 33 }; 34 34 }
+2 -2
pkgs/data/themes/jade1/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "theme-jade1"; 5 - version = "1.12"; 5 + version = "1.13"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/madmaxms/theme-jade-1/releases/download/v${version}/jade-1-theme.tar.xz"; 9 - sha256 = "1pawdfyvpbvhb6fa27rgjp49vlbmix9pq192wjlv2wgq7v4ip9y8"; 9 + sha256 = "04a9c56w4hm8lwa8hzy5lwj4yli19gzy5wp5iinsm61qas9xgy69"; 10 10 }; 11 11 12 12 sourceRoot = ".";
+1 -1
pkgs/data/themes/kde2/default.nix
··· 25 25 homepage = "https://github.com/repos-holder/kdecoration2-kde2"; 26 26 license = licenses.bsd2; 27 27 platforms = platforms.linux; 28 - maintainers = with maintainers; [ gnidorah ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/data/themes/qtcurve/default.nix
··· 64 64 description = "Widget styles for Qt5/Plasma 5 and gtk2"; 65 65 platforms = platforms.linux; 66 66 license = licenses.lgpl21Plus; 67 - maintainers = [ maintainers.gnidorah ]; 67 + maintainers = [ ]; 68 68 }; 69 69 }
+1 -1
pkgs/desktops/cdesktopenv/default.nix
··· 75 75 description = "Common Desktop Environment"; 76 76 homepage = "https://sourceforge.net/projects/cdesktopenv/"; 77 77 license = licenses.lgpl2; 78 - maintainers = [ maintainers.gnidorah ]; 78 + maintainers = [ ]; 79 79 platforms = [ "i686-linux" "x86_64-linux" ]; 80 80 }; 81 81 }
+2 -2
pkgs/development/beam-modules/erlang-ls/default.nix
··· 1 - { fetchFromGitHub, fetchHex, stdenv, rebar3WithPlugins, lib }: 1 + { fetchFromGitHub, fetchHex, stdenv, erlang, rebar3WithPlugins, lib }: 2 2 let 3 3 version = "0.15.0"; 4 4 owner = "erlang-ls"; ··· 7 7 in stdenv.mkDerivation { 8 8 inherit version; 9 9 pname = "erlang-ls"; 10 - buildInputs = [ (rebar3WithPlugins { }) ]; 10 + buildInputs = [ erlang (rebar3WithPlugins { }) ]; 11 11 src = fetchFromGitHub { 12 12 inherit owner repo; 13 13 sha256 = "1s6zk8r5plm7ajifz17mvfrnk5mzbhj7alayink9phqbmzrypnfg";
+2 -2
pkgs/development/compilers/openjdk/15.nix
··· 22 22 sha256 = "1h8n5figc9q0k9p8b0qggyhvqagvxanfih1lj5j492c74cd1mx1l"; 23 23 }; 24 24 25 - nativeBuildInputs = [ pkg-config autoconf ]; 25 + nativeBuildInputs = [ pkg-config autoconf unzip zip file which ]; 26 26 buildInputs = [ 27 - cpio file which unzip zip perl zlib cups freetype alsaLib libjpeg giflib 27 + cpio perl zlib cups freetype alsaLib libjpeg giflib 28 28 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 29 29 libXi libXinerama libXcursor libXrandr fontconfig openjdk15-bootstrap 30 30 ] ++ lib.optionals (!headless && enableGnome2) [
+1 -1
pkgs/development/compilers/pakcs/default.nix
··· 94 94 with dynamic web pages, prototyping embedded systems). 95 95 ''; 96 96 97 - maintainers = with maintainers; [ kkallio gnidorah ]; 97 + maintainers = with maintainers; [ kkallio ]; 98 98 platforms = platforms.linux; 99 99 }; 100 100 }
-78
pkgs/development/compilers/solc/0.7.nix
··· 1 - { lib, gccStdenv, fetchzip, boost, cmake, ncurses, python3, coreutils 2 - , z3Support ? true, z3 ? null, cvc4Support ? true, cvc4 ? null 3 - , cln ? null, gmp ? null 4 - }: 5 - 6 - # compiling source/libsmtutil/CVC4Interface.cpp breaks on clang on Darwin, 7 - # general commandline tests fail at abiencoderv2_no_warning/ on clang on NixOS 8 - 9 - assert z3Support -> z3 != null && lib.versionAtLeast z3.version "4.6.0"; 10 - assert cvc4Support -> cvc4 != null && cln != null && gmp != null; 11 - 12 - let 13 - jsoncppVersion = "1.9.4"; 14 - jsoncppUrl = "https://github.com/open-source-parsers/jsoncpp/archive/${jsoncppVersion}.tar.gz"; 15 - jsoncpp = fetchzip { 16 - url = jsoncppUrl; 17 - sha256 = "0qnx5y6c90fphl9mj9d20j2dfgy6s5yr5l0xnzid0vh71zrp6jwv"; 18 - }; 19 - in 20 - gccStdenv.mkDerivation rec { 21 - 22 - pname = "solc"; 23 - version = "0.7.4"; 24 - 25 - # upstream suggests avoid using archive generated by github 26 - src = fetchzip { 27 - url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz"; 28 - sha256 = "02261l54jdbvxk612z7zsyvmchy1rx4lf27b3f616sd7r56krpkg"; 29 - }; 30 - 31 - postPatch = '' 32 - substituteInPlace cmake/jsoncpp.cmake \ 33 - --replace "${jsoncppUrl}" ${jsoncpp} 34 - ''; 35 - 36 - cmakeFlags = [ 37 - "-DBoost_USE_STATIC_LIBS=OFF" 38 - ] ++ lib.optionals (!z3Support) [ 39 - "-DUSE_Z3=OFF" 40 - ] ++ lib.optionals (!cvc4Support) [ 41 - "-DUSE_CVC4=OFF" 42 - ]; 43 - 44 - nativeBuildInputs = [ cmake ]; 45 - buildInputs = [ boost ] 46 - ++ lib.optionals z3Support [ z3 ] 47 - ++ lib.optionals cvc4Support [ cvc4 cln gmp ]; 48 - checkInputs = [ ncurses python3 ]; 49 - 50 - # Test fails on darwin for unclear reason 51 - doCheck = gccStdenv.hostPlatform.isLinux; 52 - 53 - checkPhase = '' 54 - while IFS= read -r -d ''' dir 55 - do 56 - LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$(pwd)/$dir 57 - export LD_LIBRARY_PATH 58 - done < <(find . -type d -print0) 59 - 60 - pushd .. 61 - # IPC tests need aleth avaliable, so we disable it 62 - sed -i "s/IPC_ENABLED=true/IPC_ENABLED=false\nIPC_FLAGS=\"--no-ipc\"/" ./scripts/tests.sh 63 - for i in ./scripts/*.sh ./scripts/*.py ./test/*.sh; do 64 - patchShebangs "$i" 65 - done 66 - TERM=xterm ./scripts/tests.sh 67 - popd 68 - ''; 69 - 70 - meta = with lib; { 71 - description = "Compiler for Ethereum smart contract language Solidity"; 72 - homepage = "https://github.com/ethereum/solidity"; 73 - license = licenses.gpl3; 74 - platforms = with platforms; linux; # darwin is currently broken 75 - maintainers = with maintainers; [ dbrock akru lionello sifmelcara ]; 76 - inherit version; 77 - }; 78 - }
+2 -2
pkgs/development/libraries/ace/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ace"; 5 - version = "7.0.1"; 5 + version = "7.0.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2"; 9 - sha256 = "sha256-5nH5a0tBOcGfA07eeh9EjH0vgT3gTRWYHXoeO+QFQjQ="; 9 + sha256 = "sha256-IftPSQOrZOqMLHHlUFEFa3WcvsqN5kdS5rSlGE8ETC4="; 10 10 }; 11 11 12 12 enableParallelBuilding = true;
+1 -1
pkgs/development/libraries/ethash/default.nix
··· 41 41 description = "PoW algorithm for Ethereum 1.0 based on Dagger-Hashimoto"; 42 42 homepage = "https://github.com/ethereum/ethash"; 43 43 platforms = platforms.unix; 44 - maintainers = with maintainers; [ nand0p ]; 44 + maintainers = with maintainers; [ ]; 45 45 license = licenses.asl20; 46 46 }; 47 47 }
+1 -2
pkgs/development/libraries/gdal/2.4.nix
··· 1 - { lib, stdenv, fetchurl, unzip, libjpeg, libtiff, zlib 1 + { lib, stdenv, fetchurl, libjpeg, libtiff, zlib 2 2 , postgresql, libmysqlclient, libgeotiff, python2Packages, proj, geos, openssl 3 3 , libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat 4 4 , libiconv, libxml2 ··· 16 16 sha256 = "1n6w0m2603q9cldlz0wyscp75ci561dipc36jqbf3mjmylybv0x3"; 17 17 }; 18 18 19 - nativeBuildInputs = [ unzip ]; 20 19 buildInputs = [ libjpeg libtiff libgeotiff libpng proj openssl sqlite 21 20 libspatialite poppler hdf4 qhull giflib expat libxml2 proj ] 22 21 ++ (with python2Packages; [ python numpy wrapPython ])
+1 -1
pkgs/development/libraries/gtk-engine-bluecurve/default.nix
··· 16 16 description = "Original Bluecurve engine from Red Hat's artwork package"; 17 17 license = lib.licenses.gpl2; 18 18 platforms = lib.platforms.linux; 19 - maintainers = [ lib.maintainers.gnidorah ]; 19 + maintainers = [ ]; 20 20 }; 21 21 }
+2 -2
pkgs/development/libraries/herqq/default.nix
··· 1 - { lib, mkDerivation, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }: 1 + { lib, mkDerivation, fetchFromGitHub, qmake, qtmultimedia, qtbase }: 2 2 3 3 mkDerivation rec { 4 4 version = "unstable-20-06-26"; 5 5 pname = "herqq"; 6 6 7 - nativeBuildInputs = [ qmake unzip ]; 7 + nativeBuildInputs = [ qmake ]; 8 8 buildInputs = [ qtbase qtmultimedia ]; 9 9 10 10 outputs = [ "out" "dev" ];
+1 -1
pkgs/development/libraries/hotpatch/default.nix
··· 30 30 description = "Hot patching executables on Linux using .so file injection"; 31 31 homepage = src.meta.homepage; 32 32 license = licenses.bsd3; 33 - maintainers = [ maintainers.gnidorah ]; 33 + maintainers = [ ]; 34 34 platforms = ["i686-linux" "x86_64-linux"]; 35 35 }; 36 36 }
+1 -2
pkgs/development/libraries/irrlicht/default.nix
··· 1 - { lib, stdenv, fetchzip, libGLU, libGL, unzip, libXrandr, libX11, libXxf86vm }: 1 + { lib, stdenv, fetchzip, libGLU, libGL, libXrandr, libX11, libXxf86vm }: 2 2 3 3 let 4 4 common = import ./common.nix { inherit fetchzip; }; ··· 27 27 mkdir -p $out/lib 28 28 ''; 29 29 30 - nativeBuildInputs = [ unzip ]; 31 30 buildInputs = [ libGLU libGL libXrandr libX11 libXxf86vm ]; 32 31 33 32 meta = {
+2 -2
pkgs/development/libraries/irrlicht/mac.nix
··· 1 - { lib, stdenv, fetchzip, libGLU, libGL, unzip, fetchFromGitHub, cmake, Cocoa, OpenGL, IOKit }: 1 + { lib, stdenv, fetchzip, libGLU, libGL, fetchFromGitHub, cmake, Cocoa, OpenGL, IOKit }: 2 2 3 3 let 4 4 common = import ./common.nix { inherit fetchzip; }; ··· 31 31 "-DIRRLICHT_BUILD_TOOLS=OFF" 32 32 ]; 33 33 34 - nativeBuildInputs = [ cmake unzip ]; 34 + nativeBuildInputs = [ cmake ]; 35 35 buildInputs = [ OpenGL Cocoa IOKit ]; 36 36 37 37 meta = {
+1 -1
pkgs/development/libraries/jsoncpp/default.nix
··· 51 51 inherit version; 52 52 homepage = "https://github.com/open-source-parsers/jsoncpp"; 53 53 description = "A C++ library for interacting with JSON"; 54 - maintainers = with maintainers; [ ttuegel cpages nand0p ]; 54 + maintainers = with maintainers; [ ttuegel cpages ]; 55 55 license = licenses.mit; 56 56 platforms = platforms.all; 57 57 };
+1 -1
pkgs/development/libraries/kmsxx/default.nix
··· 22 22 description = "C++11 library, utilities and python bindings for Linux kernel mode setting"; 23 23 homepage = "https://github.com/tomba/kmsxx"; 24 24 license = licenses.mpl20; 25 - maintainers = with maintainers; [ gnidorah ]; 25 + maintainers = with maintainers; [ ]; 26 26 platforms = platforms.linux; 27 27 broken = true; # marked broken 2021-03-26 28 28 };
+2 -2
pkgs/development/libraries/mygui/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libX11, unzip, cmake, ois, freetype, libuuid, 1 + { lib, stdenv, fetchFromGitHub, libX11, cmake, ois, freetype, libuuid, 2 2 boost, pkg-config, withOgre ? false, ogre ? null, libGL, libGLU ? null } : 3 3 4 4 let ··· 14 14 sha256 = "0a4zi8w18pjj813n7kmxldl1d9r1jp0iyhkw7pbqgl8f7qaq994w"; 15 15 }; 16 16 17 - nativeBuildInputs = [ cmake pkg-config unzip ]; 17 + nativeBuildInputs = [ cmake pkg-config ]; 18 18 buildInputs = [ libX11 ois freetype libuuid boost ] 19 19 ++ (if withOgre then [ ogre ] else [ libGL libGLU ]); 20 20
+1 -2
pkgs/development/libraries/openexrid-unstable/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, unzip, re2, openfx, zlib, ilmbase, libGLU, libGL, openexr }: 1 + { lib, stdenv, fetchFromGitHub, re2, openfx, zlib, ilmbase, libGLU, libGL, openexr }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "openexrid-unstable"; ··· 25 25 -I${openfx.dev}/include/OpenFX 26 26 ''; 27 27 28 - nativeBuildInputs = [ unzip ]; 29 28 buildInputs = [ re2 openfx zlib ilmbase libGLU libGL openexr ]; 30 29 31 30 enableParallelBuilding = true;
+1 -3
pkgs/development/libraries/openfx/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, unzip }: 1 + { lib, stdenv, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "openfx"; ··· 10 10 rev = "OFX_Release_1_4_TAG"; 11 11 sha256 = "0k9ggzr6bisn77mipjfvawg3mv4bz50b63v8f7w1jhldi1sfy548"; 12 12 }; 13 - 14 - nativeBuildInputs = [ unzip ]; 15 13 16 14 outputs = [ "dev" "out" ]; 17 15
+1 -2
pkgs/development/libraries/openvdb/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, unzip, openexr, boost, jemalloc, c-blosc, ilmbase, tbb }: 1 + { lib, stdenv, fetchFromGitHub, openexr, boost, jemalloc, c-blosc, ilmbase, tbb }: 2 2 3 3 stdenv.mkDerivation rec 4 4 { ··· 14 14 15 15 outputs = [ "out" ]; 16 16 17 - nativeBuildInputs = [ unzip ]; 18 17 buildInputs = [ openexr boost tbb jemalloc c-blosc ilmbase ]; 19 18 20 19 setSourceRoot = ''
+1 -1
pkgs/development/libraries/openvino/default.nix
··· 83 83 cmake 84 84 autoPatchelfHook 85 85 addOpenGLRunpath 86 + unzip 86 87 ]; 87 88 88 89 buildInputs = [ 89 90 git 90 91 protobuf 91 92 opencv 92 - unzip 93 93 python 94 94 tbb 95 95 shellcheck
+1 -1
pkgs/development/libraries/oracle-instantclient/default.nix
··· 123 123 ''; 124 124 license = licenses.unfree; 125 125 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 126 - maintainers = with maintainers; [ pesterhazy flokli ]; 126 + maintainers = with maintainers; [ flokli ]; 127 127 hydraPlatforms = []; 128 128 }; 129 129 }
+1 -1
pkgs/development/libraries/qtstyleplugins/default.nix
··· 31 31 description = "Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique"; 32 32 homepage = "http://blog.qt.io/blog/2012/10/30/cleaning-up-styles-in-qt5-and-adding-fusion/"; 33 33 license = licenses.lgpl21; 34 - maintainers = [ maintainers.gnidorah ]; 34 + maintainers = [ ]; 35 35 platforms = platforms.linux; 36 36 }; 37 37 }
+1 -1
pkgs/development/libraries/sqlite/tools.nix
··· 22 22 inherit description homepage; 23 23 downloadPage = http://sqlite.org/download.html; 24 24 license = licenses.publicDomain; 25 - maintainers = with maintainers; [ pesterhazy johnazoidberg ]; 25 + maintainers = with maintainers; [ johnazoidberg ]; 26 26 platforms = platforms.unix; 27 27 }; 28 28 };
+2 -2
pkgs/development/python-modules/apprise/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "apprise"; 8 - version = "0.9.1"; 8 + version = "0.9.3"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "sha256-FW5gt35yoXVr2+hiGBDJ/5jFFfIpn2Z9sDN8acoO4FI="; 12 + sha256 = "sha256-yKzpyJHUIkVYVwrL6oCPMd+QSVML2czWmQHCemXWAMQ="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ Babel installShellFiles ];
+1 -1
pkgs/development/python-modules/astroid/1.6.nix
··· 34 34 homepage = "https://github.com/PyCQA/astroid"; 35 35 license = licenses.lgpl2; 36 36 platforms = platforms.all; 37 - maintainers = with maintainers; [ nand0p ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+1 -1
pkgs/development/python-modules/astroid/default.nix
··· 35 35 homepage = "https://github.com/PyCQA/astroid"; 36 36 license = licenses.lgpl21Plus; 37 37 platforms = platforms.all; 38 - maintainers = with maintainers; [ nand0p ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/autobahn/default.nix
··· 73 73 description = "WebSocket and WAMP in Python for Twisted and asyncio"; 74 74 homepage = "https://crossbar.io/autobahn"; 75 75 license = licenses.mit; 76 - maintainers = with maintainers; [ nand0p ]; 76 + maintainers = with maintainers; [ ]; 77 77 }; 78 78 }
+1 -1
pkgs/development/python-modules/buildbot/default.nix
··· 101 101 meta = with lib; { 102 102 homepage = "https://buildbot.net/"; 103 103 description = "An open-source continuous integration framework for automating software build, test, and release processes"; 104 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 104 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 105 105 license = licenses.gpl2; 106 106 }; 107 107 };
+1 -1
pkgs/development/python-modules/buildbot/pkg.nix
··· 25 25 meta = with lib; { 26 26 homepage = "https://buildbot.net/"; 27 27 description = "Buildbot Packaging Helper"; 28 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 28 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 29 29 license = licenses.gpl2; 30 30 }; 31 31 }
+4 -4
pkgs/development/python-modules/buildbot/plugins.nix
··· 23 23 meta = with lib; { 24 24 homepage = "https://buildbot.net/"; 25 25 description = "Buildbot UI"; 26 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 26 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 27 27 license = licenses.gpl2; 28 28 }; 29 29 }; ··· 45 45 meta = with lib; { 46 46 homepage = "https://buildbot.net/"; 47 47 description = "Buildbot Console View Plugin"; 48 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 48 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 49 49 license = licenses.gpl2; 50 50 }; 51 51 }; ··· 67 67 meta = with lib; { 68 68 homepage = "https://buildbot.net/"; 69 69 description = "Buildbot Waterfall View Plugin"; 70 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 70 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 71 71 license = licenses.gpl2; 72 72 }; 73 73 }; ··· 89 89 meta = with lib; { 90 90 homepage = "https://buildbot.net/"; 91 91 description = "Buildbot Grid View Plugin"; 92 - maintainers = with maintainers; [ nand0p lopsided98 ]; 92 + maintainers = with maintainers; [ lopsided98 ]; 93 93 license = licenses.gpl2; 94 94 }; 95 95 };
+1 -1
pkgs/development/python-modules/buildbot/worker.nix
··· 26 26 meta = with lib; { 27 27 homepage = "https://buildbot.net/"; 28 28 description = "Buildbot Worker Daemon"; 29 - maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ]; 29 + maintainers = with maintainers; [ ryansydnor lopsided98 ]; 30 30 license = licenses.gpl2; 31 31 }; 32 32 })
+1 -1
pkgs/development/python-modules/distro/default.nix
··· 18 18 homepage = "https://github.com/nir0s/distro"; 19 19 description = "Linux Distribution - a Linux OS platform information API."; 20 20 license = licenses.asl20; 21 - maintainers = with maintainers; [ nand0p ]; 21 + maintainers = with maintainers; [ ]; 22 22 }; 23 23 }
+1 -1
pkgs/development/python-modules/execnet/default.nix
··· 37 37 description = "Distributed Python deployment and communication"; 38 38 license = licenses.mit; 39 39 homepage = "https://execnet.readthedocs.io/"; 40 - maintainers = with maintainers; [ nand0p ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 43 43 }
+1 -1
pkgs/development/python-modules/incremental/default.nix
··· 13 13 homepage = "https://github.com/twisted/treq"; 14 14 description = "Incremental is a small library that versions your Python projects"; 15 15 license = licenses.mit; 16 - maintainers = with maintainers; [ nand0p ]; 16 + maintainers = with maintainers; [ ]; 17 17 }; 18 18 }
+1 -1
pkgs/development/python-modules/isort/4.nix
··· 38 38 description = "A Python utility / library to sort Python imports"; 39 39 homepage = "https://github.com/timothycrosley/isort"; 40 40 license = licenses.mit; 41 - maintainers = with maintainers; [ couchemar nand0p ]; 41 + maintainers = with maintainers; [ couchemar ]; 42 42 }; 43 43 }
+1 -1
pkgs/development/python-modules/isort/default.nix
··· 72 72 description = "A Python utility / library to sort Python imports"; 73 73 homepage = "https://github.com/PyCQA/isort"; 74 74 license = licenses.mit; 75 - maintainers = with maintainers; [ couchemar nand0p ]; 75 + maintainers = with maintainers; [ couchemar ]; 76 76 }; 77 77 }
+1 -1
pkgs/development/python-modules/jsonref/default.nix
··· 20 20 description = "An implementation of JSON Reference for Python"; 21 21 homepage = "https://github.com/gazpachoking/jsonref"; 22 22 license = licenses.mit; 23 - maintainers = with maintainers; [ nand0p ]; 23 + maintainers = with maintainers; [ ]; 24 24 platforms = platforms.all; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/midiutil/default.nix
··· 13 13 homepage = "https://github.com/MarkCWirt/MIDIUtil"; 14 14 description = "A pure python library for creating multi-track MIDI files"; 15 15 license = licenses.mit; 16 - maintainers = [ maintainers.gnidorah ]; 16 + maintainers = [ ]; 17 17 }; 18 18 }
+1 -1
pkgs/development/python-modules/pydbus/default.nix
··· 15 15 homepage = "https://github.com/LEW21/pydbus"; 16 16 description = "Pythonic DBus library"; 17 17 license = lib.licenses.lgpl2Plus; 18 - maintainers = with lib.maintainers; [ gnidorah ]; 18 + maintainers = with lib.maintainers; [ ]; 19 19 }; 20 20 }
+1 -1
pkgs/development/python-modules/pylint/1.9.nix
··· 46 46 description = "A bug and style checker for Python"; 47 47 platforms = platforms.all; 48 48 license = licenses.gpl1Plus; 49 - maintainers = with maintainers; [ nand0p ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/pylint/default.nix
··· 67 67 homepage = "https://pylint.pycqa.org/"; 68 68 description = "A bug and style checker for Python"; 69 69 license = licenses.gpl1Plus; 70 - maintainers = with maintainers; [ nand0p ]; 70 + maintainers = with maintainers; [ ]; 71 71 }; 72 72 }
+1 -1
pkgs/development/python-modules/pysmf/default.nix
··· 16 16 homepage = "http://das.nasophon.de/pysmf/"; 17 17 description = "Python extension module for reading and writing Standard MIDI Files, based on libsmf."; 18 18 license = licenses.bsd2; 19 - maintainers = [ maintainers.gnidorah ]; 19 + maintainers = [ ]; 20 20 }; 21 21 }
+1 -1
pkgs/development/python-modules/pytest-mock/2.nix
··· 35 35 description = "Thin-wrapper around the mock package for easier use with py.test."; 36 36 homepage = "https://github.com/pytest-dev/pytest-mock"; 37 37 license = licenses.mit; 38 - maintainers = with maintainers; [ nand0p ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/pytest-mock/default.nix
··· 28 28 description = "Thin-wrapper around the mock package for easier use with pytest"; 29 29 homepage = "https://github.com/pytest-dev/pytest-mock"; 30 30 license = with licenses; [ mit ]; 31 - maintainers = with maintainers; [ nand0p ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+1 -1
pkgs/development/python-modules/pytest-server-fixtures/default.nix
··· 21 21 description = "Extensible server fixures for py.test"; 22 22 homepage = "https://github.com/manahl/pytest-plugins"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ nand0p ]; 24 + maintainers = with maintainers; [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/python-fontconfig/default.nix
··· 29 29 homepage = "https://github.com/Vayn/python-fontconfig"; 30 30 description = "Python binding for Fontconfig"; 31 31 license = lib.licenses.gpl3; 32 - maintainers = with lib.maintainers; [ gnidorah ]; 32 + maintainers = with lib.maintainers; [ ]; 33 33 }; 34 34 }
+1 -4
pkgs/development/python-modules/python-simple-hipchat/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , unzip }: 1 + { lib, buildPythonPackage, fetchPypi }: 3 2 4 3 buildPythonPackage rec { 5 4 pname = "python-simple-hipchat"; ··· 9 8 inherit pname version; 10 9 sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav"; 11 10 }; 12 - 13 - nativeBuildInputs = [ unzip ]; 14 11 15 12 meta = with lib; { 16 13 description = "Easy peasy wrapper for HipChat's v1 API";
+1 -1
pkgs/development/python-modules/ramlfications/default.nix
··· 16 16 description = "A Python RAML parser."; 17 17 homepage = "https://ramlfications.readthedocs.org"; 18 18 license = licenses.asl20; 19 - maintainers = with maintainers; [ nand0p ]; 19 + maintainers = with maintainers; [ ]; 20 20 platforms = platforms.all; 21 21 }; 22 22
+1 -1
pkgs/development/python-modules/setuptoolstrial/default.nix
··· 32 32 description = "Setuptools plugin that makes unit tests execute with trial instead of pyunit."; 33 33 homepage = "https://github.com/rutsky/setuptools-trial"; 34 34 license = licenses.bsd2; 35 - maintainers = with maintainers; [ ryansydnor nand0p ]; 35 + maintainers = with maintainers; [ ryansydnor ]; 36 36 }; 37 37 38 38 }
+1 -1
pkgs/development/python-modules/sphinx-jinja/default.nix
··· 24 24 25 25 meta = with lib; { 26 26 description = "Sphinx extension to include jinja templates in documentation"; 27 - maintainers = with maintainers; [ nand0p ]; 27 + maintainers = with maintainers; [ ]; 28 28 license = licenses.mit; 29 29 }; 30 30 }
+1 -1
pkgs/development/python-modules/sphinx/2.nix
··· 77 77 description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects"; 78 78 homepage = "http://sphinx.pocoo.org/"; 79 79 license = lib.licenses.bsd3; 80 - maintainers = with lib.maintainers; [ nand0p ]; 80 + maintainers = with lib.maintainers; [ ]; 81 81 }; 82 82 }
+1 -1
pkgs/development/python-modules/sphinx/default.nix
··· 84 84 ''; 85 85 homepage = "https://www.sphinx-doc.org"; 86 86 license = licenses.bsd3; 87 - maintainers = with maintainers; [ nand0p ]; 87 + maintainers = with maintainers; [ ]; 88 88 }; 89 89 }
+1 -1
pkgs/development/python-modules/sphinxcontrib-blockdiag/default.nix
··· 29 29 meta = with lib; { 30 30 description = "Sphinx blockdiag extension"; 31 31 homepage = "https://github.com/blockdiag/sphinxcontrib-blockdiag"; 32 - maintainers = with maintainers; [ nand0p ]; 32 + maintainers = with maintainers; [ ]; 33 33 license = licenses.bsd2; 34 34 }; 35 35
+1 -1
pkgs/development/python-modules/sphinxcontrib-spelling/default.nix
··· 26 26 meta = with lib; { 27 27 description = "Sphinx spelling extension"; 28 28 homepage = "https://bitbucket.org/dhellmann/sphinxcontrib-spelling"; 29 - maintainers = with maintainers; [ nand0p ]; 29 + maintainers = with maintainers; [ ]; 30 30 license = licenses.bsd2; 31 31 }; 32 32
+1 -1
pkgs/development/python-modules/treq/default.nix
··· 51 51 homepage = "https://github.com/twisted/treq"; 52 52 description = "A requests-like API built on top of twisted.web's Agent"; 53 53 license = licenses.mit; 54 - maintainers = with maintainers; [ nand0p ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/txaio/default.nix
··· 50 50 description = "Utilities to support code that runs unmodified on Twisted and asyncio"; 51 51 homepage = "https://github.com/crossbario/txaio"; 52 52 license = licenses.mit; 53 - maintainers = with maintainers; [ nand0p ]; 53 + maintainers = with maintainers; [ ]; 54 54 }; 55 55 }
+1 -1
pkgs/development/python-modules/txgithub/default.nix
··· 33 33 description = "GitHub API client implemented using Twisted."; 34 34 homepage = "https://github.com/tomprince/txgithub"; 35 35 license = licenses.mit; 36 - maintainers = with maintainers; [ nand0p ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 39 39 }
+1 -1
pkgs/development/python-modules/txrequests/default.nix
··· 29 29 description = "Asynchronous Python HTTP for Humans."; 30 30 homepage = "https://github.com/tardyp/txrequests"; 31 31 license = licenses.asl20; 32 - maintainers = with maintainers; [ nand0p ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 35 35 }
+1 -1
pkgs/development/python-modules/whoosh/default.nix
··· 25 25 checking library."; 26 26 homepage = "https://bitbucket.org/mchaput/whoosh"; 27 27 license = licenses.bsd2; 28 - maintainers = with maintainers; [ nand0p ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/tools/misc/cli11/default.nix
··· 34 34 description = "Command line parser for C++11"; 35 35 homepage = "https://github.com/CLIUtils/CLI11"; 36 36 platforms = platforms.unix; 37 - maintainers = with maintainers; [ nand0p ]; 37 + maintainers = with maintainers; [ ]; 38 38 license = licenses.bsd3; 39 39 }; 40 40
+2 -2
pkgs/development/tools/misc/jscoverage/default.nix
··· 1 - { autoconf, fetchurl, makedepend, perl, python3, lib, stdenv, unzip, zip }: 1 + { autoconf, fetchurl, makedepend, perl, python3, lib, stdenv, zip }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "jscoverage-0.5.1"; ··· 12 12 ./jsfalse_to_null.patch 13 13 ]; 14 14 15 - nativeBuildInputs = [ unzip perl python3 zip ]; 15 + nativeBuildInputs = [ perl python3 zip ]; 16 16 17 17 strictDeps = true; 18 18
+1 -1
pkgs/games/iortcw/sp.nix
··· 47 47 homepage = src.meta.homepage; 48 48 license = licenses.gpl3; 49 49 platforms = platforms.linux; 50 - maintainers = with maintainers; [ gnidorah ]; 50 + maintainers = with maintainers; [ ]; 51 51 }; 52 52 }
+1 -1
pkgs/games/opendune/default.nix
··· 41 41 description = "Dune, Reinvented"; 42 42 homepage = "https://github.com/OpenDUNE/OpenDUNE"; 43 43 license = licenses.gpl2; 44 - maintainers = with maintainers; [ nand0p ]; 44 + maintainers = with maintainers; [ ]; 45 45 }; 46 46 }
+1 -1
pkgs/games/openjk/default.nix
··· 58 58 homepage = "https://github.com/JACoders/OpenJK"; 59 59 license = licenses.gpl2; 60 60 platforms = platforms.linux; 61 - maintainers = with maintainers; [ gnidorah ]; 61 + maintainers = with maintainers; [ ]; 62 62 }; 63 63 }
+1 -1
pkgs/games/openmw/tes3mp.nix
··· 91 91 homepage = "https://tes3mp.com/"; 92 92 license = licenses.gpl3; 93 93 platforms = [ "x86_64-linux" "i686-linux" ]; 94 - maintainers = with maintainers; [ gnidorah ]; 94 + maintainers = with maintainers; [ ]; 95 95 }; 96 96 })
+1 -1
pkgs/games/openxray/default.nix
··· 71 71 license = licenses.unfree // { 72 72 url = "https://github.com/OpenXRay/xray-16/blob/xd_dev/License.txt"; 73 73 }; 74 - maintainers = [ maintainers.gnidorah ]; 74 + maintainers = [ ]; 75 75 platforms = [ "x86_64-linux" "i686-linux" ]; 76 76 }; 77 77 }
+2 -2
pkgs/games/osu-lazer/default.nix
··· 16 16 17 17 in stdenv.mkDerivation rec { 18 18 pname = "osu-lazer"; 19 - version = "2021.502.0"; 19 + version = "2021.515.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "ppy"; 23 23 repo = "osu"; 24 24 rev = version; 25 - sha256 = "IOneihYQry0pRXYaxZuVLIj2Ydei//khvpqwiJoakZ8="; 25 + sha256 = "c2+Ybb9wMb9FSTxprJPLKGEv2q6y0jcMA4kEN2r7yyA="; 26 26 }; 27 27 28 28 patches = [ ./bypass-tamper-detection.patch ];
+116 -131
pkgs/games/osu-lazer/deps.nix
··· 26 26 }) 27 27 (fetchNuGet { 28 28 name = "Humanizer"; 29 - version = "2.9.9"; 30 - sha256 = "07ql79qz4m7cdr6g0f0dxjywrv70xzpzz45gch73x1ad4vwc5n4m"; 29 + version = "2.8.26"; 30 + sha256 = "11kddzyzqpq9gkz0hmrblq494nh86va6wxx6z89xi6w1f4vj15ak"; 31 31 }) 32 32 (fetchNuGet { 33 33 name = "Humanizer.Core"; ··· 36 36 }) 37 37 (fetchNuGet { 38 38 name = "Humanizer.Core"; 39 - version = "2.9.9"; 40 - sha256 = "05sn5l0qg5bi8qxqxlch88zlk79z9pbh6jwln7b3yxnp4hkj4kvm"; 39 + version = "2.8.26"; 40 + sha256 = "1v8xd12yms4qq1md4vh6faxicmqrvahqdd7sdkyzrphab9v44nsm"; 41 41 }) 42 42 (fetchNuGet { 43 43 name = "Humanizer.Core.af"; 44 - version = "2.9.9"; 45 - sha256 = "0l51ll73gjjarpyknj81v8f64mg0f0zlc7q3sgcz4fkmj6n0wxb3"; 44 + version = "2.8.26"; 45 + sha256 = "0znrq4frlkq1qi20301hlzxa6mdc275fa1i1a1i8ldgk9cjq94k9"; 46 46 }) 47 47 (fetchNuGet { 48 48 name = "Humanizer.Core.ar"; 49 - version = "2.9.9"; 50 - sha256 = "1akrcrxl01phzp1cyhknwcmghhmr808dzv9aj8vzjmyq67p8mnja"; 49 + version = "2.8.26"; 50 + sha256 = "1hi7mln48p1nmxlgdq725s4cvla9nlkvbmrsql1rfjjlsy8hn6n7"; 51 51 }) 52 52 (fetchNuGet { 53 53 name = "Humanizer.Core.az"; 54 - version = "2.9.9"; 55 - sha256 = "0jsxjvhmgwngx5b1yki5g6ns7yhzn3m5invzlnl79dh09krx9pg4"; 54 + version = "2.8.26"; 55 + sha256 = "0av7ycrqwvmikqia3z3qkp9967zilrhayny17zkm0d0mnjq62vs6"; 56 56 }) 57 57 (fetchNuGet { 58 58 name = "Humanizer.Core.bg"; 59 - version = "2.9.9"; 60 - sha256 = "0l32vi52qkvx267qnykid5965199h6rcy5r04gmkv3lg2ydds0ig"; 59 + version = "2.8.26"; 60 + sha256 = "13j6zk2cmk7a119azxlpjhfwykrzk0vkf5a799fb2fzkvhnj4hkg"; 61 61 }) 62 62 (fetchNuGet { 63 63 name = "Humanizer.Core.bn-BD"; 64 - version = "2.9.9"; 65 - sha256 = "1yivbxcxh15jgy8j5fzrd40c9k75wmcd9wdy1333zwcyrwqzpx7v"; 64 + version = "2.8.26"; 65 + sha256 = "0h619sksggfi7dnaycz6bj9aiqdgn0d8dpgjgdl73crw52lr70p9"; 66 66 }) 67 67 (fetchNuGet { 68 68 name = "Humanizer.Core.cs"; 69 - version = "2.9.9"; 70 - sha256 = "05ysribnj8b2q2fcm33lcgz7mcdgx5q53w6vihyjc5s6zmlfqqfr"; 69 + version = "2.8.26"; 70 + sha256 = "11bh3k15388bi5wizaihnwqk7wb4n7q636fqjllwdhjggqrsc3f6"; 71 71 }) 72 72 (fetchNuGet { 73 73 name = "Humanizer.Core.da"; 74 - version = "2.9.9"; 75 - sha256 = "0d6swwliw0cbb03vjv2i1n8vcclwzragi1ik3m6ysbwm1m0sip5v"; 74 + version = "2.8.26"; 75 + sha256 = "09b3x3bw3cgby9qvaccnqz2y6d8gl3497dh7q0dk1iznsxbk4x4m"; 76 76 }) 77 77 (fetchNuGet { 78 78 name = "Humanizer.Core.de"; 79 - version = "2.9.9"; 80 - sha256 = "085ijfkbz4q6q90z0qc4k5hsv2acdlhli8whiikil9mlrjsjrqhi"; 79 + version = "2.8.26"; 80 + sha256 = "1pyp2a9my20wlwjjzv563kshl9fpjb2kd4cw41l4wvsz1bsq3l22"; 81 81 }) 82 82 (fetchNuGet { 83 83 name = "Humanizer.Core.el"; 84 - version = "2.9.9"; 85 - sha256 = "1f5fr6l8f4brva1jxx6migv9yhp98svwkzly1b2b6n43ngppn4jd"; 84 + version = "2.8.26"; 85 + sha256 = "0v3sdcxca4dam1y5yjh9n6v711ys0zdv38hr4kij35s6277ls6lb"; 86 86 }) 87 87 (fetchNuGet { 88 88 name = "Humanizer.Core.es"; 89 - version = "2.9.9"; 90 - sha256 = "0nwwxhp2wgq424fy2mjrgsjsm86y818zl64k6zibkcnfldm8als6"; 89 + version = "2.8.26"; 90 + sha256 = "0wh9qvqf80cngwsz2jnrsjpmaax4xa2xp8bbk5xs480kp071z37q"; 91 91 }) 92 92 (fetchNuGet { 93 93 name = "Humanizer.Core.fa"; 94 - version = "2.9.9"; 95 - sha256 = "1268lf9lxxnnax0ivyghh707fy50z09qds2jlh53dw1q0lxqgp50"; 94 + version = "2.8.26"; 95 + sha256 = "00v56ddjfv6sr6w5246gn5z0padwswvnngp8mdl7gjfg5ycmbkl1"; 96 96 }) 97 97 (fetchNuGet { 98 98 name = "Humanizer.Core.fi-FI"; 99 - version = "2.9.9"; 100 - sha256 = "1cjs78z1lc7a42b1wvcpxpydyv65rvyfvfic8k0d2flwcv98i7z2"; 99 + version = "2.8.26"; 100 + sha256 = "1pgs0j5ri50a6vhljplhrlc8jj1hrd9ggxkj60d9v5kk9xibzzyd"; 101 101 }) 102 102 (fetchNuGet { 103 103 name = "Humanizer.Core.fr"; 104 - version = "2.9.9"; 105 - sha256 = "1al0xbg6p0287v60a4s6k7vgsng6k4m0scwlshmqsqxmvfsa1wk3"; 104 + version = "2.8.26"; 105 + sha256 = "0kkhgy3yn8vfqlx3dhb9m3cazkgfxarknam4macng9y17l7wj83m"; 106 106 }) 107 107 (fetchNuGet { 108 108 name = "Humanizer.Core.fr-BE"; 109 - version = "2.9.9"; 110 - sha256 = "0jvi063lsrzds52zvq4w4qx6khkjcn5k8mp4014pzlphfhvlfbcl"; 109 + version = "2.8.26"; 110 + sha256 = "13spcx07hph366qk073pz63s56nadaac7l4mr4a66gbpqd3814kb"; 111 111 }) 112 112 (fetchNuGet { 113 113 name = "Humanizer.Core.he"; 114 - version = "2.9.9"; 115 - sha256 = "1azymmsf79dyl8ihx8kn19mymx98sjknaqrqf043fy8qwirll1wm"; 114 + version = "2.8.26"; 115 + sha256 = "1ccn82aj3rhrhsa3kvkrmjw0p687icxlfja8ngbh7sby4cszx9bk"; 116 116 }) 117 117 (fetchNuGet { 118 118 name = "Humanizer.Core.hr"; 119 - version = "2.9.9"; 120 - sha256 = "1ygi02nxssn1wrdzammr5km7ak5h8yxghfvbcmy559npg0gy2gya"; 119 + version = "2.8.26"; 120 + sha256 = "12ii79bhai3kv7zr3k9k9dh569r6p3m4l4gj25cln2isr4wdi5r9"; 121 121 }) 122 122 (fetchNuGet { 123 123 name = "Humanizer.Core.hu"; 124 - version = "2.9.9"; 125 - sha256 = "0nimza5dngvl6yyigavr1rk5068yf2fmq3w3nm128plbnc8ynxfr"; 124 + version = "2.8.26"; 125 + sha256 = "0cibbdxiqhwrjmxlr805mg3l9v0fl2ydx4m50608rkysjq6vxx7y"; 126 126 }) 127 127 (fetchNuGet { 128 128 name = "Humanizer.Core.hy"; 129 - version = "2.9.9"; 130 - sha256 = "0v11hfh39mzm27dshmakhdnbpgzg660mskn1pkmmfdprka970cfj"; 129 + version = "2.8.26"; 130 + sha256 = "15aikm04f74abm4ak8rvnnkrlcz155gibn1y81pbgsyn7yrh84v3"; 131 131 }) 132 132 (fetchNuGet { 133 133 name = "Humanizer.Core.id"; 134 - version = "2.9.9"; 135 - sha256 = "012bhisp75s4wv37ra692bfsvibnqgbfyipb2hw0743dqcy2mah2"; 134 + version = "2.8.26"; 135 + sha256 = "1i9gpzdfhmbvrqg858kqz5461sp3sh60g16dmcmyi1ik0qlspijn"; 136 136 }) 137 137 (fetchNuGet { 138 138 name = "Humanizer.Core.it"; 139 - version = "2.9.9"; 140 - sha256 = "1jj7qbia4b09hsyll524mpz67vy4z25zazwc1g10yi1sjsyah92f"; 139 + version = "2.8.26"; 140 + sha256 = "01j7qskmqcxsakbx3bkxcjyzrh6nxi2v6kfzsfb0vf980qqq331l"; 141 141 }) 142 142 (fetchNuGet { 143 143 name = "Humanizer.Core.ja"; 144 - version = "2.9.9"; 145 - sha256 = "1wqxw815287jlg6a6x3ffjhxvpa5al94jh3qkai2rw5kggcqzws4"; 146 - }) 147 - (fetchNuGet { 148 - name = "Humanizer.Core.ko-KR"; 149 - version = "2.9.9"; 150 - sha256 = "1azggn1i8gnvc89kh7mv165bd2c7fwp1m1h9k6fcdk36kl4xxb97"; 151 - }) 152 - (fetchNuGet { 153 - name = "Humanizer.Core.ku"; 154 - version = "2.9.9"; 155 - sha256 = "1qpwancwa6hgafrcdpbdb00vq08hrk77wjl64dvcjsx010n4c0fc"; 144 + version = "2.8.26"; 145 + sha256 = "07d19ns4a4pa2k4vdc1af7wj10gaflq1ny4mx6y574afkdi8v6d5"; 156 146 }) 157 147 (fetchNuGet { 158 148 name = "Humanizer.Core.lv"; 159 - version = "2.9.9"; 160 - sha256 = "1k6gxlzkpfmp8khn0dl0bfw878qpdff6zjqbirgpvlc57d00bws4"; 149 + version = "2.8.26"; 150 + sha256 = "1pm64sj65nmngyfa3hjcw67icfmlzr232hmgpnw7306sb7dxmnfv"; 161 151 }) 162 152 (fetchNuGet { 163 153 name = "Humanizer.Core.ms-MY"; 164 - version = "2.9.9"; 165 - sha256 = "0p0lc3qkq5f8354g77xgy8qc9wyc509rca8xrzgc2lpzbvb4v008"; 154 + version = "2.8.26"; 155 + sha256 = "1yx4cc023kc4k14abk2ycmjy6y2xaknaz4zria7xsadf0fabd1jc"; 166 156 }) 167 157 (fetchNuGet { 168 158 name = "Humanizer.Core.mt"; 169 - version = "2.9.9"; 170 - sha256 = "0qn2c583lbc5qg0i1inqjb7zn8vcmvmjy8k70ngb6qyl1navmvcm"; 159 + version = "2.8.26"; 160 + sha256 = "0iai35pzka9g6c3sgswki06fk6gdnq8kc88wyb4pcciivazz31px"; 171 161 }) 172 162 (fetchNuGet { 173 163 name = "Humanizer.Core.nb"; 174 - version = "2.9.9"; 175 - sha256 = "12b7dx6jp5fcwsn54i7w1qz8y3cwbl8n8hia75iy9acd9l328shk"; 164 + version = "2.8.26"; 165 + sha256 = "0xprhiyjyq6mpha2lrav59n1f48508ddvm9nmdk5sm5k26ff3l90"; 176 166 }) 177 167 (fetchNuGet { 178 168 name = "Humanizer.Core.nb-NO"; 179 - version = "2.9.9"; 180 - sha256 = "04f47z9klpj6dq1gqlbcgyrli2s3rjci75i8lrng63vjjqi7jpqh"; 169 + version = "2.8.26"; 170 + sha256 = "160c98wfh7d2xlvlra4x5rdj4klgcjwcy3gkb4ipg655byn2m1j2"; 181 171 }) 182 172 (fetchNuGet { 183 173 name = "Humanizer.Core.nl"; 184 - version = "2.9.9"; 185 - sha256 = "19l4ik73500k2nxpcpylawy1aimb0awd82521abry3az4kc1lf29"; 174 + version = "2.8.26"; 175 + sha256 = "067pqm4i1mk83fqqr0bvzrchrvxwdnff18z3djgagclh1i4xqlvk"; 186 176 }) 187 177 (fetchNuGet { 188 178 name = "Humanizer.Core.pl"; 189 - version = "2.9.9"; 190 - sha256 = "0hdh6gvz00xbrfyypwlbaw14409p75wqxraih2ckw23g8ci404l3"; 179 + version = "2.8.26"; 180 + sha256 = "1r1bbqb990war1hiag5f88yxw0k9jiid1ihb4s5bc1lzs3vfsb6x"; 191 181 }) 192 182 (fetchNuGet { 193 183 name = "Humanizer.Core.pt"; 194 - version = "2.9.9"; 195 - sha256 = "03xplyqms9hpkl2bzhnqij3il78adi8a4azrs658rslpl8fl7ksd"; 184 + version = "2.8.26"; 185 + sha256 = "1bik0vjjdzw51yl11ng9gsi3ihz50ibwh1gdhh2vd13jxjzb512p"; 196 186 }) 197 187 (fetchNuGet { 198 188 name = "Humanizer.Core.ro"; 199 - version = "2.9.9"; 200 - sha256 = "0x8qjkp8w32bhwr6509zpxlkvxb9izkgzq411hmh2sx4hrr90pzc"; 189 + version = "2.8.26"; 190 + sha256 = "12f2hry6x1p1mgx6g4kpig2jpybx52ibghvhdhjbbfhy32gv8dr0"; 201 191 }) 202 192 (fetchNuGet { 203 193 name = "Humanizer.Core.ru"; 204 - version = "2.9.9"; 205 - sha256 = "0s2f9wxqwy281zw7aiswvfk8dg0i278g4z2l3bqn9iyijqm47zxx"; 194 + version = "2.8.26"; 195 + sha256 = "1hri12kwymzvdqcr66l8yiqiw3pmf9fk492z10yqljm576kyshgg"; 206 196 }) 207 197 (fetchNuGet { 208 198 name = "Humanizer.Core.sk"; 209 - version = "2.9.9"; 210 - sha256 = "0nq27nx6xq81d5avriphm7s926xm34306v7l7c88n71kn097jzl9"; 199 + version = "2.8.26"; 200 + sha256 = "07jfgk67axw97b85dn4bwpjwf3swd74j9hdd870qps12xfp98i9j"; 211 201 }) 212 202 (fetchNuGet { 213 203 name = "Humanizer.Core.sl"; 214 - version = "2.9.9"; 215 - sha256 = "0dwszkm2xd4ysh3rrjx1zran09hl532hjrppfckqyy6n65b4axyf"; 204 + version = "2.8.26"; 205 + sha256 = "060xbzwb7p9ypbqfklih2zal2rh6h55gq4hv3i6alvlbd3vsx29n"; 216 206 }) 217 207 (fetchNuGet { 218 208 name = "Humanizer.Core.sr"; 219 - version = "2.9.9"; 220 - sha256 = "1vmfs9jp8ljlh6965pmb4afbcc9c4zlg5dn1pgbjc4miiwj6vc73"; 209 + version = "2.8.26"; 210 + sha256 = "0i2c24qmqnhp85b088qlbagxd48hcl0v1ly4m7hfbvx5s7fg8riv"; 221 211 }) 222 212 (fetchNuGet { 223 213 name = "Humanizer.Core.sr-Latn"; 224 - version = "2.9.9"; 225 - sha256 = "1dakb2zcaxmm9qw8fnsz5z12mmbjgx7jm9plxbm7jidjn7z271yl"; 214 + version = "2.8.26"; 215 + sha256 = "1911a69sqssh9f007vmxbgyj4ym2ym4423xvw6cmbfhjcrhkfpbi"; 226 216 }) 227 217 (fetchNuGet { 228 218 name = "Humanizer.Core.sv"; 229 - version = "2.9.9"; 230 - sha256 = "0jys46lz25yxx70w7y2623iabv3clf3lix8jzl8r68rj0lw6pxdz"; 231 - }) 232 - (fetchNuGet { 233 - name = "Humanizer.Core.th-TH"; 234 - version = "2.9.9"; 235 - sha256 = "0r37ckvh68xvlyszgx94a8xxmya5cqiqnvdg5syw04lj0rshc3jb"; 219 + version = "2.8.26"; 220 + sha256 = "056h8n9i18yl78f9ppzn2kkrz2cs46aqv0j5y8xq360zarggh0nm"; 236 221 }) 237 222 (fetchNuGet { 238 223 name = "Humanizer.Core.tr"; 239 - version = "2.9.9"; 240 - sha256 = "1dnba6wbf6r5a1gmf7a7136qhy1w8izbh6wimmmwqsch2sk4ng4f"; 224 + version = "2.8.26"; 225 + sha256 = "0dk8ga3fpxifxxkz0n68654h65cvrx00hy7q00m5vgvmcp70gxxn"; 241 226 }) 242 227 (fetchNuGet { 243 228 name = "Humanizer.Core.uk"; 244 - version = "2.9.9"; 245 - sha256 = "1z0kdp2qkiyb4dhy22rqfik2b2c899nzkfh10907gp9827rdz3b9"; 229 + version = "2.8.26"; 230 + sha256 = "0bnj5xqlcqp4n8i04ra78dax4854zbf2jsygvb4lpiayyyaj2bxw"; 246 231 }) 247 232 (fetchNuGet { 248 233 name = "Humanizer.Core.uz-Cyrl-UZ"; 249 - version = "2.9.9"; 250 - sha256 = "1rnqa7w8s44fnqpw4g2drcwyajd5zhmwkqipi5zfhh0bcdnj9hxx"; 234 + version = "2.8.26"; 235 + sha256 = "1bbf6mxas6brjw7rjljq5saz6v3ic6zbvm1b3c1jbk0hc0qkd7c8"; 251 236 }) 252 237 (fetchNuGet { 253 238 name = "Humanizer.Core.uz-Latn-UZ"; 254 - version = "2.9.9"; 255 - sha256 = "1i1c6dy4bdglgyhv8g13lwqlis1snl7zcpdrvidw40f74ch0zq0g"; 239 + version = "2.8.26"; 240 + sha256 = "1bfgfihpynax30g9kq8kra7c4jxps2ccxsxrs9gls47xbs35cw2f"; 256 241 }) 257 242 (fetchNuGet { 258 243 name = "Humanizer.Core.vi"; 259 - version = "2.9.9"; 260 - sha256 = "0ji0lmcm073x9fyigrw3b500drz268jarv6vfxpwxbzxd3mvnrys"; 244 + version = "2.8.26"; 245 + sha256 = "1vm765nvkp6wyfwlcgppimjrk04lkg8lscch3n1i1i5hlqxrs9ch"; 261 246 }) 262 247 (fetchNuGet { 263 248 name = "Humanizer.Core.zh-CN"; 264 - version = "2.9.9"; 265 - sha256 = "10iyrahi7rdp8lq4rxb2k9pny7da2aw9xfy2la8jdjrjgmqwffsi"; 249 + version = "2.8.26"; 250 + sha256 = "1qyl12rdh4iv1k1qcivcmxxnh8y93ainf22pmch8vvw9yjhs1y7s"; 266 251 }) 267 252 (fetchNuGet { 268 253 name = "Humanizer.Core.zh-Hans"; 269 - version = "2.9.9"; 270 - sha256 = "0f92fvzgcifaf2b64x8v52xckp1qxg88djlb9vlj083f6x29ick5"; 254 + version = "2.8.26"; 255 + sha256 = "1gqv3dyk236wlp5wb7kd4qnyrmp3cy36ycykl7zr91s25cdls5vy"; 271 256 }) 272 257 (fetchNuGet { 273 258 name = "Humanizer.Core.zh-Hant"; 274 - version = "2.9.9"; 275 - sha256 = "0v9vqn6h467q7fy3xwabnqw48p48ilwkfg62b65j0q76ppnvsnvj"; 259 + version = "2.8.26"; 260 + sha256 = "1rhzbiqbx04l3kvzjklix90fxyc6vvmmw0p564ajdiximivs0pbh"; 276 261 }) 277 262 (fetchNuGet { 278 263 name = "JetBrains.Annotations"; ··· 446 431 }) 447 432 (fetchNuGet { 448 433 name = "Microsoft.Diagnostics.Runtime"; 449 - version = "2.0.217201"; 450 - sha256 = "1r519zbbq13f76kc657wml735h9lcijkyxw6r96akn7cv9vgiwl6"; 434 + version = "2.0.222201"; 435 + sha256 = "1vsa6xbqi4f2mx85rjmq641r9zgssj0bbfcsqlsa5nx6lqh2rf2q"; 451 436 }) 452 437 (fetchNuGet { 453 438 name = "Microsoft.DotNet.PlatformAbstractions"; ··· 686 671 }) 687 672 (fetchNuGet { 688 673 name = "NuGet.Common"; 689 - version = "5.9.0"; 690 - sha256 = "1j0kk8rgssw920r7h8zfqwzsgvh3y5lalz19d5r07l9r9ngcj5w9"; 674 + version = "5.9.1"; 675 + sha256 = "0d919d15r6fzixfxz56xnayfbw9lfvpr99k7k2wlyh228l58xlng"; 691 676 }) 692 677 (fetchNuGet { 693 678 name = "NuGet.Configuration"; 694 - version = "5.9.0"; 695 - sha256 = "16wqjflqvhgq5nqa7ips63hv6wd39171q337gk5wkr9ffpwarrx9"; 679 + version = "5.9.1"; 680 + sha256 = "13v3jmirwil1w74wwsspm31rzppb7fbnh99sfig6hrqxhxyzhgnc"; 696 681 }) 697 682 (fetchNuGet { 698 683 name = "NuGet.DependencyResolver.Core"; 699 - version = "5.9.0"; 700 - sha256 = "1f1rcvl86qvix3hibm7xm5wzvwah5pc4ik9mnrgavnwixwkix9nz"; 684 + version = "5.9.1"; 685 + sha256 = "0bdmz886bmdgndy7101mq08idzwp8y73hf4l9az3jdndd6cia1ic"; 701 686 }) 702 687 (fetchNuGet { 703 688 name = "NuGet.Frameworks"; 704 - version = "5.9.0"; 705 - sha256 = "099kb0mvglhfv5b0r1ddnkl6mm8l2x5kpmm1kqs5qkchk0a1y0ci"; 689 + version = "5.9.1"; 690 + sha256 = "12fjigazzlmh63479hralrfgdcqxq6qsdr57b9zj0ipwqj0s6l3i"; 706 691 }) 707 692 (fetchNuGet { 708 693 name = "NuGet.LibraryModel"; 709 - version = "5.9.0"; 710 - sha256 = "1m6ym5dld0drpk7lm0i0ss30292rpk80b701n1nakqykfnkfhhfy"; 694 + version = "5.9.1"; 695 + sha256 = "1z1m6ik1sxsr129578dy22wspci4xavwjza0f08nm1vbb4v3y4va"; 711 696 }) 712 697 (fetchNuGet { 713 698 name = "NuGet.Packaging"; 714 - version = "5.9.0"; 715 - sha256 = "0m0sn823v0lb4h2maxcndvj2k1a0iwwl1yndbhna2ir2lq2fi4px"; 699 + version = "5.9.1"; 700 + sha256 = "0yknzgwmpkcddba3b2d1kq9yizxxdd08xcxv508brr2079g01q6d"; 716 701 }) 717 702 (fetchNuGet { 718 703 name = "NuGet.ProjectModel"; 719 - version = "5.9.0"; 720 - sha256 = "06qdfhxz5bsq2wx7i9dkc2rsr4bkk02mpyq27v6zrz36vyrckwx3"; 704 + version = "5.9.1"; 705 + sha256 = "0g3gxh0g6lcaczk9jczzkpmikxhdivfflpqw40jygs64r5837rbv"; 721 706 }) 722 707 (fetchNuGet { 723 708 name = "NuGet.Protocol"; 724 - version = "5.9.0"; 725 - sha256 = "1nvfg1xxpjqbpdmw1xa6m7sbdp19ld442vqh3x4967z6c92wvc4n"; 709 + version = "5.9.1"; 710 + sha256 = "1wz7rv262wb42s1y866w9bcvpl22dr4s915dsky8sbc69y5646wn"; 726 711 }) 727 712 (fetchNuGet { 728 713 name = "NuGet.Versioning"; 729 - version = "5.9.0"; 730 - sha256 = "1rby89nx39l533vhk0ikf16dd1d6kjjn4ld8b0y88g2mlnrdgz4m"; 714 + version = "5.9.1"; 715 + sha256 = "0vpswa6gz36z2vqwvbylmh7r9hjhlib91vbvkf0icjfkhzijjq08"; 731 716 }) 732 717 (fetchNuGet { 733 718 name = "NUnit"; ··· 746 731 }) 747 732 (fetchNuGet { 748 733 name = "ppy.osu.Framework"; 749 - version = "2021.427.0"; 750 - sha256 = "18n9g21y7asgr51fskfk3m0sx07y1mwrsdq4s065i8yk8d412mh7"; 734 + version = "2021.513.0"; 735 + sha256 = "17cqmgfd40jbdkm5rq9wl1rcvv870yqryc29k4c8bdsvxxf4arv2"; 751 736 }) 752 737 (fetchNuGet { 753 738 name = "ppy.osu.Framework.NativeLibs"; ··· 766 751 }) 767 752 (fetchNuGet { 768 753 name = "ppy.SDL2-CS"; 769 - version = "1.0.225-alpha"; 770 - sha256 = "1x8hvk9kikwi7wrvwxdxk3pkbs491iss2mvqgiw844zld5izihqc"; 754 + version = "1.0.238-alpha"; 755 + sha256 = "1n7pa7gy1hcgsfm3jix334qr6v229n1yymq58njj802l3k5g7980"; 771 756 }) 772 757 (fetchNuGet { 773 758 name = "ppy.squirrel.windows";
+1 -1
pkgs/games/quakespasm/vulkan.nix
··· 54 54 ''; 55 55 56 56 platforms = platforms.linux; 57 - maintainers = with maintainers; [ gnidorah ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+3 -3
pkgs/games/terraria-server/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "terraria-server"; 5 - version = "1.4.1.2"; 5 + version = "1.4.2.2"; 6 6 urlVersion = lib.replaceChars [ "." ] [ "" ] version; 7 7 8 8 src = fetchurl { 9 - url = "https://terraria.org/system/dedicated_servers/archives/000/000/042/original/terraria-server-${urlVersion}.zip"; 10 - sha256 = "18hcy7jfizyyp0h66rga8z948xg3nyk32rzl7hgv7ar1w43airhh"; 9 + url = "https://terraria.org/system/dedicated_servers/archives/000/000/045/original/terraria-server-${urlVersion}.zip"; 10 + sha256 = "0jz79yidnri6hrqp2aqbi8hg0w3k4nrnfbvxgy5q612fr04g6nsw"; 11 11 }; 12 12 13 13 buildInputs = [ file ];
+1 -2
pkgs/misc/drivers/foo2zjs/default.nix
··· 1 - { lib, stdenv, fetchurl, foomatic-filters, bc, unzip, ghostscript, systemd, vim, time }: 1 + { lib, stdenv, fetchurl, foomatic-filters, bc, ghostscript, systemd, vim, time }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "foo2zjs"; ··· 9 9 sha256 = "14x3wizvncdy0xgvmcx541qanwb7bg76abygqy17bxycn1zh5r1x"; 10 10 }; 11 11 12 - nativeBuildInputs = [ unzip ]; 13 12 buildInputs = [ foomatic-filters bc ghostscript systemd vim ]; 14 13 15 14 patches = [ ./no-hardcode-fw.diff ];
+2 -2
pkgs/misc/emulators/atari800/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook 2 - , unzip, zlib, SDL, readline, libGLU, libGL, libX11 }: 2 + , zlib, SDL, readline, libGLU, libGL, libX11 }: 3 3 4 4 with lib; 5 5 stdenv.mkDerivation rec { ··· 13 13 sha256 = "15l08clqqayi9izrgsz9achan6gl4x57wqsc8mad3yn0xayzz3qy"; 14 14 }; 15 15 16 - nativeBuildInputs = [ autoreconfHook unzip ]; 16 + nativeBuildInputs = [ autoreconfHook ]; 17 17 18 18 buildInputs = [ zlib SDL readline libGLU libGL libX11 ]; 19 19
+1 -1
pkgs/misc/emulators/mame/default.nix
··· 82 82 platforms = platforms.unix; 83 83 # makefile needs fixes for install target 84 84 badPlatforms = [ "aarch64-linux" ]; 85 - maintainers = with maintainers; [ gnidorah ]; 85 + maintainers = with maintainers; [ ]; 86 86 }; 87 87 }
+1 -1
pkgs/misc/screensavers/electricsheep/default.nix
··· 40 40 meta = with lib; { 41 41 description = "Electric Sheep, a distributed screen saver for evolving artificial organisms"; 42 42 homepage = "https://electricsheep.org/"; 43 - maintainers = with maintainers; [ nand0p fpletz ]; 43 + maintainers = with maintainers; [ fpletz ]; 44 44 platforms = platforms.linux; 45 45 license = licenses.gpl1; 46 46 };
+24
pkgs/misc/vim-plugins/generated.nix
··· 1290 1290 meta.homepage = "https://github.com/Shougo/echodoc.vim/"; 1291 1291 }; 1292 1292 1293 + edge = buildVimPluginFrom2Nix { 1294 + pname = "edge"; 1295 + version = "2021-05-08"; 1296 + src = fetchFromGitHub { 1297 + owner = "sainnhe"; 1298 + repo = "edge"; 1299 + rev = "8f4cc117b703168f6c5d03ef65b36b095bb3f981"; 1300 + sha256 = "0rq256pwfrxpgy9w2wx4fk9jddmb0xrifhnjkdjf3cmir8xdl7mp"; 1301 + }; 1302 + meta.homepage = "https://github.com/sainnhe/edge/"; 1303 + }; 1304 + 1293 1305 editorconfig-vim = buildVimPluginFrom2Nix { 1294 1306 pname = "editorconfig-vim"; 1295 1307 version = "2021-04-04"; ··· 5940 5952 sha256 = "0gpfdla8shaf5ykgakrsf0h0w6ygvwcv3lfpnki24l790xhdi606"; 5941 5953 }; 5942 5954 meta.homepage = "https://github.com/junegunn/vim-easy-align/"; 5955 + }; 5956 + 5957 + vim-easyescape = buildVimPluginFrom2Nix { 5958 + pname = "vim-easyescape"; 5959 + version = "2020-11-22"; 5960 + src = fetchFromGitHub { 5961 + owner = "zhou13"; 5962 + repo = "vim-easyescape"; 5963 + rev = "fd7875f1657fd54fae85088acf289b9723d8a790"; 5964 + sha256 = "0h8kmhliicbdqhximp3d961crp6qkjjs4yciksl037ds47kzrkif"; 5965 + }; 5966 + meta.homepage = "https://github.com/zhou13/vim-easyescape/"; 5943 5967 }; 5944 5968 5945 5969 vim-easygit = buildVimPluginFrom2Nix {
+2
pkgs/misc/vim-plugins/vim-plugin-names
··· 556 556 rust-lang/rust.vim 557 557 ryanoasis/vim-devicons 558 558 ryvnf/readline.vim 559 + sainnhe/edge 559 560 sainnhe/sonokai 560 561 sakhnik/nvim-gdb 561 562 saltstack/salt-vim ··· 779 780 yuki-yano/ncm2-dictionary 780 781 yunlingz/ci_dark 781 782 zah/nim.vim 783 + zhou13/vim-easyescape 782 784 ziglang/zig.vim
+2 -2
pkgs/os-specific/linux/kernel/linux-lqx.nix
··· 1 1 { lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args: 2 2 3 3 let 4 - version = "5.11.20"; 4 + version = "5.11.21"; 5 5 suffix = "lqx1"; 6 6 in 7 7 ··· 14 14 owner = "zen-kernel"; 15 15 repo = "zen-kernel"; 16 16 rev = "v${version}-${suffix}"; 17 - sha256 = "0pdn3p9v3jasgf4xffirijlx20qp9gglzlksk2gmyzg9lmf5dygi"; 17 + sha256 = "1klvik8nrqsqi5ijnga1li4gacsknmap75g2zp8f3hd3hz18d5n1"; 18 18 }; 19 19 20 20 extraMeta = {
+82 -46
pkgs/servers/gerbera/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 2 - , cmake, pkg-config 3 - # required 4 - , libupnp, libuuid, pugixml, libiconv, sqlite, zlib, spdlog, fmt 5 - # options 6 - , enableDuktape ? true, duktape 7 - , enableCurl ? true, curl 8 - , enableTaglib ? true, taglib 9 - , enableLibmagic ? true, file 10 - , enableLibmatroska ? true, libmatroska, libebml 11 - , enableAvcodec ? false, ffmpeg 12 - , enableLibexif ? true, libexif 13 - , enableExiv2 ? false, exiv2 14 - , enableFFmpegThumbnailer ? false, ffmpegthumbnailer 15 - , enableInotifyTools ? true, inotify-tools 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + # required 7 + , fmt 8 + , libiconv 9 + , libupnp 10 + , libuuid 11 + , pugixml 12 + , spdlog 13 + , sqlite 14 + , zlib 15 + # options 16 + , enableMysql ? false 17 + , libmysqlclient 18 + , enableDuktape ? true 19 + , duktape 20 + , enableCurl ? true 21 + , curl 22 + , enableTaglib ? true 23 + , taglib 24 + , enableLibmagic ? true 25 + , file 26 + , enableLibmatroska ? true 27 + , libmatroska 28 + , libebml 29 + , enableAvcodec ? false 30 + , ffmpeg 31 + , enableLibexif ? true 32 + , libexif 33 + , enableExiv2 ? false 34 + , exiv2 35 + , enableFFmpegThumbnailer ? false 36 + , ffmpegthumbnailer 37 + , enableInotifyTools ? true 38 + , inotify-tools 16 39 }: 17 40 18 - with lib; 19 41 let 20 - optionOnOff = option: if option then "on" else "off"; 21 - in stdenv.mkDerivation rec { 42 + libupnp' = libupnp.overrideAttrs (super: rec { 43 + cmakeFlags = super.cmakeFlags or [ ] ++ [ 44 + "-Dblocking_tcp_connections=OFF" 45 + "-Dreuseaddr=ON" 46 + ]; 47 + }); 48 + 49 + options = [ 50 + { name = "AVCODEC"; enable = enableAvcodec; packages = [ ffmpeg ]; } 51 + { name = "CURL"; enable = enableCurl; packages = [ curl ]; } 52 + { name = "EXIF"; enable = enableLibexif; packages = [ libexif ]; } 53 + { name = "EXIV2"; enable = enableExiv2; packages = [ exiv2 ]; } 54 + { name = "FFMPEGTHUMBNAILER"; enable = enableFFmpegThumbnailer; packages = [ ffmpegthumbnailer ]; } 55 + { name = "INOTIFY"; enable = enableInotifyTools; packages = [ inotify-tools ]; } 56 + { name = "JS"; enable = enableDuktape; packages = [ duktape ]; } 57 + { name = "MAGIC"; enable = enableLibmagic; packages = [ file ]; } 58 + { name = "MATROSKA"; enable = enableLibmatroska; packages = [ libmatroska libebml ]; } 59 + { name = "MYSQL"; enable = enableMysql; packages = [ libmysqlclient ]; } 60 + { name = "TAGLIB"; enable = enableTaglib; packages = [ taglib ]; } 61 + ]; 62 + 63 + inherit (lib) flatten optionals; 64 + 65 + in 66 + stdenv.mkDerivation rec { 22 67 pname = "gerbera"; 23 - version = "1.8.0"; 68 + version = "1.8.1"; 24 69 25 70 src = fetchFromGitHub { 26 71 repo = "gerbera"; 27 72 owner = "gerbera"; 28 73 rev = "v${version}"; 29 - sha256 = "sha256-i33pAgSOjVOoj0qGBnb8hpRMqgTCBTQmKTuZ9AkvoPg="; 74 + sha256 = "sha256-bJIT/qQOKTy2l0wsumlGNvaGqzb2mK0hHKG0S6mEG3o="; 30 75 }; 31 76 77 + postPatch = lib.optionalString enableMysql '' 78 + substituteInPlace cmake/FindMySQL.cmake \ 79 + --replace /usr/include/mysql ${lib.getDev libmysqlclient}/include/mariadb \ 80 + --replace /usr/lib/mysql ${lib.getLib libmysqlclient}/lib/mariadb 81 + ''; 82 + 32 83 cmakeFlags = [ 33 - "-DWITH_JS=${optionOnOff enableDuktape}" 34 - "-DWITH_CURL=${optionOnOff enableCurl}" 35 - "-DWITH_TAGLIB=${optionOnOff enableTaglib}" 36 - "-DWITH_MAGIC=${optionOnOff enableLibmagic}" 37 - "-DWITH_MATROSKA=${optionOnOff enableLibmatroska}" 38 - "-DWITH_AVCODEC=${optionOnOff enableAvcodec}" 39 - "-DWITH_EXIF=${optionOnOff enableLibexif}" 40 - "-DWITH_EXIV2=${optionOnOff enableExiv2}" 41 - "-DWITH_FFMPEGTHUMBNAILER=${optionOnOff enableFFmpegThumbnailer}" 42 - "-DWITH_INOTIFY=${optionOnOff enableInotifyTools}" 43 84 # systemd service will be generated alongside the service 44 85 "-DWITH_SYSTEMD=OFF" 45 - ]; 86 + ] ++ map (e: "-DWITH_${e.name}=${if e.enable then "ON" else "OFF"}") options; 46 87 47 88 nativeBuildInputs = [ cmake pkg-config ]; 48 89 49 90 buildInputs = [ 50 - libupnp libuuid pugixml libiconv sqlite zlib fmt.dev 91 + fmt 92 + libiconv 93 + libupnp' 94 + libuuid 95 + pugixml 51 96 spdlog 52 - ] 53 - ++ optionals enableDuktape [ duktape ] 54 - ++ optionals enableCurl [ curl ] 55 - ++ optionals enableTaglib [ taglib ] 56 - ++ optionals enableLibmagic [ file ] 57 - ++ optionals enableLibmatroska [ libmatroska libebml ] 58 - ++ optionals enableAvcodec [ ffmpeg.dev ] 59 - ++ optionals enableLibexif [ libexif ] 60 - ++ optionals enableExiv2 [ exiv2 ] 61 - ++ optionals enableInotifyTools [ inotify-tools ] 62 - ++ optionals enableFFmpegThumbnailer [ ffmpegthumbnailer ]; 63 - 97 + sqlite 98 + zlib 99 + ] ++ flatten (builtins.catAttrs "packages" (builtins.filter (e: e.enable) options)); 64 100 65 101 meta = with lib; { 66 102 homepage = "https://docs.gerbera.io/"; ··· 70 106 It allows to stream your digital media through your home network and consume it on all kinds 71 107 of UPnP supporting devices. 72 108 ''; 73 - license = licenses.gpl2; 74 - maintainers = [ maintainers.ardumont ]; 109 + license = licenses.gpl2Only; 110 + maintainers = with maintainers; [ ardumont ]; 75 111 platforms = platforms.linux; 76 112 }; 77 113 }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2021.5.3"; 5 + version = "2021.5.4"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ];
+6 -2
pkgs/servers/home-assistant/default.nix
··· 114 114 extraBuildInputs = extraPackages py.pkgs; 115 115 116 116 # Don't forget to run parse-requirements.py after updating 117 - hassVersion = "2021.5.3"; 117 + hassVersion = "2021.5.4"; 118 118 119 119 in with py.pkgs; buildPythonApplication rec { 120 120 pname = "homeassistant"; ··· 133 133 owner = "home-assistant"; 134 134 repo = "core"; 135 135 rev = version; 136 - sha256 = "1zc21d70n24sk8y42xq3gzisj44kn6w6fhgqrcani470hhph24ba"; 136 + sha256 = "1jxbxzhcnvxf6qkik2qmpdml41q6hlkazjqaxygyw7pyj094fp8v"; 137 137 }; 138 138 139 139 # leave this in, so users don't have to constantly update their downstream patch handling ··· 425 425 "--only-rerun RuntimeError" 426 426 # assign tests grouped by file to workers 427 427 "--dist loadfile" 428 + # enable full variable printing on error 429 + "--showlocals" 428 430 # tests are located in tests/ 429 431 "tests" 430 432 # screenlogic/test_config_flow.py: Tries to send out UDP broadcasts ··· 455 457 "test_check_package_version_does_not_match" 456 458 # homeassistant/util/thread.py:51: SystemError 457 459 "test_executor_shutdown_can_interrupt_threads" 460 + # {'theme_color': '#03A9F4'} != {'theme_color': 'blue'} 461 + "test_webhook_handle_get_config" 458 462 ]; 459 463 460 464 preCheck = ''
+1 -3
pkgs/servers/http/jboss/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, jdk }: 1 + { lib, stdenv, fetchurl, jdk }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "jboss-as-7.1.1.Final"; ··· 6 6 url = "https://download.jboss.org/jbossas/7.1/jboss-as-7.1.1.Final/jboss-as-7.1.1.Final.tar.gz"; 7 7 sha256 = "1bdjw0ib9qr498vpfbg8klqw6rl11vbz7vwn6gp1r5gpqkd3zzc8"; 8 8 }; 9 - 10 - nativeBuildInputs = [ unzip ]; 11 9 12 10 phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; 13 11
+2 -2
pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix
··· 3 3 src = fetchFromGitHub { 4 4 owner = "matrix-org"; 5 5 repo = "matrix-appservice-slack"; 6 - rev = "1.7.0"; 7 - sha256 = "sha256-0BcnG/DGvc3uh/eP0KIB5gPSpXNPlaAl78D4bVCnLHg="; 6 + rev = "1.8.0"; 7 + sha256 = "sha256-FA6SMivMnloeZmnUhGx6N+ZLDTZFO3y17xJYclkp5w0="; 8 8 }; 9 9 10 10 nodePackages = import ./node-composition.nix {
+3 -3
pkgs/servers/matrix-synapse/matrix-appservice-slack/generate-dependencies.sh
··· 1 1 #!/usr/bin/env nix-shell 2 2 #! nix-shell -i bash -p nodePackages.node2nix 3 3 4 - # Download package.json and package-lock.json from the v1.7.0 release 5 - curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.7.0/package.json -o package.json 6 - curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.7.0/package-lock.json -o package-lock.json 4 + # Download package.json and package-lock.json from the v1.8.0 release 5 + curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.8.0/package.json -o package.json 6 + curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.8.0/package-lock.json -o package-lock.json 7 7 8 8 node2nix \ 9 9 --nodejs-12 \
+557 -597
pkgs/servers/matrix-synapse/matrix-appservice-slack/node-packages.nix
··· 22 22 sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 23 23 }; 24 24 }; 25 - "@babel/highlight-7.10.4" = { 25 + "@babel/highlight-7.13.10" = { 26 26 name = "_at_babel_slash_highlight"; 27 27 packageName = "@babel/highlight"; 28 - version = "7.10.4"; 28 + version = "7.13.10"; 29 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"; 31 - sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 30 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz"; 31 + sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg=="; 32 32 }; 33 33 }; 34 - "@babel/runtime-7.12.13" = { 34 + "@babel/runtime-7.13.10" = { 35 35 name = "_at_babel_slash_runtime"; 36 36 packageName = "@babel/runtime"; 37 - version = "7.12.13"; 37 + version = "7.13.10"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz"; 40 - sha512 = "8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw=="; 39 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz"; 40 + sha512 = "4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw=="; 41 41 }; 42 42 }; 43 43 "@dabh/diagnostics-2.0.2" = { ··· 49 49 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 50 50 }; 51 51 }; 52 - "@eslint/eslintrc-0.2.2" = { 52 + "@eslint/eslintrc-0.4.0" = { 53 53 name = "_at_eslint_slash_eslintrc"; 54 54 packageName = "@eslint/eslintrc"; 55 - version = "0.2.2"; 55 + version = "0.4.0"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz"; 58 - sha512 = "EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="; 57 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 58 + sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 59 59 }; 60 60 }; 61 61 "@nodelib/fs.scandir-2.1.4" = { ··· 130 130 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 131 131 }; 132 132 }; 133 - "@types/chai-4.2.14" = { 133 + "@types/chai-4.2.16" = { 134 134 name = "_at_types_slash_chai"; 135 135 packageName = "@types/chai"; 136 - version = "4.2.14"; 136 + version = "4.2.16"; 137 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@types/chai/-/chai-4.2.14.tgz"; 139 - sha512 = "G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ=="; 138 + url = "https://registry.npmjs.org/@types/chai/-/chai-4.2.16.tgz"; 139 + sha512 = "vI5iOAsez9+roLS3M3+Xx7w+WRuDtSmF8bQkrbcIJ2sC1PcDgVoA0WGpa+bIrJ+y8zqY2oi//fUctkxtIcXJCw=="; 140 140 }; 141 141 }; 142 142 "@types/connect-3.4.34" = { ··· 148 148 sha512 = "ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ=="; 149 149 }; 150 150 }; 151 - "@types/express-4.17.10" = { 151 + "@types/express-4.17.11" = { 152 152 name = "_at_types_slash_express"; 153 153 packageName = "@types/express"; 154 - version = "4.17.10"; 154 + version = "4.17.11"; 155 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@types/express/-/express-4.17.10.tgz"; 157 - sha512 = "GRwKdE+iV6mA8glCvQ7W5iaoIhd6u1HDsNTF76UPRi7T89SLjOfeCLShVmQSgpXzcpf3zgcz2SbMiCcjnYRRxQ=="; 156 + url = "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz"; 157 + sha512 = "no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg=="; 158 158 }; 159 159 }; 160 - "@types/express-serve-static-core-4.17.18" = { 160 + "@types/express-serve-static-core-4.17.19" = { 161 161 name = "_at_types_slash_express-serve-static-core"; 162 162 packageName = "@types/express-serve-static-core"; 163 - version = "4.17.18"; 163 + version = "4.17.19"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz"; 166 - sha512 = "m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA=="; 165 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz"; 166 + sha512 = "DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA=="; 167 167 }; 168 168 }; 169 169 "@types/is-stream-1.1.0" = { ··· 175 175 sha512 = "jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg=="; 176 176 }; 177 177 }; 178 - "@types/json-schema-7.0.6" = { 178 + "@types/js-yaml-4.0.0" = { 179 + name = "_at_types_slash_js-yaml"; 180 + packageName = "@types/js-yaml"; 181 + version = "4.0.0"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.0.tgz"; 184 + sha512 = "4vlpCM5KPCL5CfGmTbpjwVKbISRYhduEJvvUWsH5EB7QInhEj94XPZ3ts/9FPiLZFqYO0xoW4ZL8z2AabTGgJA=="; 185 + }; 186 + }; 187 + "@types/json-schema-7.0.7" = { 179 188 name = "_at_types_slash_json-schema"; 180 189 packageName = "@types/json-schema"; 181 - version = "7.0.6"; 190 + version = "7.0.7"; 182 191 src = fetchurl { 183 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"; 184 - sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="; 192 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; 193 + sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 185 194 }; 186 195 }; 187 - "@types/mime-2.0.3" = { 196 + "@types/mime-1.3.2" = { 188 197 name = "_at_types_slash_mime"; 189 198 packageName = "@types/mime"; 190 - version = "2.0.3"; 199 + version = "1.3.2"; 191 200 src = fetchurl { 192 - url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz"; 193 - sha512 = "Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q=="; 201 + url = "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"; 202 + sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 194 203 }; 195 204 }; 196 - "@types/mocha-8.2.0" = { 205 + "@types/mocha-8.2.2" = { 197 206 name = "_at_types_slash_mocha"; 198 207 packageName = "@types/mocha"; 199 - version = "8.2.0"; 208 + version = "8.2.2"; 200 209 src = fetchurl { 201 - url = "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.0.tgz"; 202 - sha512 = "/Sge3BymXo4lKc31C8OINJgXLaw+7vL1/L1pGiBNpGrBiT8FQiaFpSYV0uhTaG4y78vcMBTMFsWaHDvuD+xGzQ=="; 210 + url = "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.2.tgz"; 211 + sha512 = "Lwh0lzzqT5Pqh6z61P3c3P5nm6fzQK/MMHl9UKeneAeInVflBSz1O2EkX6gM6xfJd7FBXBY5purtLx7fUiZ7Hw=="; 203 212 }; 204 213 }; 205 214 "@types/nedb-1.8.11" = { ··· 211 220 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 212 221 }; 213 222 }; 214 - "@types/node-14.14.20" = { 223 + "@types/node-14.14.41" = { 215 224 name = "_at_types_slash_node"; 216 225 packageName = "@types/node"; 217 - version = "14.14.20"; 226 + version = "14.14.41"; 218 227 src = fetchurl { 219 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz"; 220 - sha512 = "Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A=="; 228 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.41.tgz"; 229 + sha512 = "dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g=="; 221 230 }; 222 231 }; 223 232 "@types/node-emoji-1.8.1" = { ··· 229 238 sha512 = "0fRfA90FWm6KJfw6P9QGyo0HDTCmthZ7cWaBQndITlaWLTZ6njRyKwrwpzpg+n6kBXBIGKeUHEQuBx7bphGJkA=="; 230 239 }; 231 240 }; 232 - "@types/nunjucks-3.1.3" = { 241 + "@types/nunjucks-3.1.4" = { 233 242 name = "_at_types_slash_nunjucks"; 234 243 packageName = "@types/nunjucks"; 235 - version = "3.1.3"; 244 + version = "3.1.4"; 236 245 src = fetchurl { 237 - url = "https://registry.npmjs.org/@types/nunjucks/-/nunjucks-3.1.3.tgz"; 238 - sha512 = "42IiIIBdoB7ZDwCVhCWYT4fMCj+4TeacuVgh7xyT2du5EhkpA+OFeeDdYTFCUt1MrHb8Aw7ZqFvr8s1bwP9l8w=="; 246 + url = "https://registry.npmjs.org/@types/nunjucks/-/nunjucks-3.1.4.tgz"; 247 + sha512 = "cR65PLlHKW/qxxj840dbNb3ICO+iAVQzaNKJ8TcKOVKFi+QcAkhw9SCY8VFAyU41SmJMs+2nrIN2JGhX+jYb7A=="; 239 248 }; 240 249 }; 241 250 "@types/p-queue-2.3.2" = { ··· 247 256 sha512 = "eKAv5Ql6k78dh3ULCsSBxX6bFNuGjTmof5Q/T6PiECDq0Yf8IIn46jCyp3RJvCi8owaEmm3DZH1PEImjBMd/vQ=="; 248 257 }; 249 258 }; 250 - "@types/qs-6.9.5" = { 259 + "@types/qs-6.9.6" = { 251 260 name = "_at_types_slash_qs"; 252 261 packageName = "@types/qs"; 253 - version = "6.9.5"; 262 + version = "6.9.6"; 254 263 src = fetchurl { 255 - url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz"; 256 - sha512 = "/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ=="; 264 + url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz"; 265 + sha512 = "0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA=="; 257 266 }; 258 267 }; 259 268 "@types/randomstring-1.1.6" = { ··· 283 292 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 284 293 }; 285 294 }; 286 - "@types/serve-static-1.13.8" = { 295 + "@types/serve-static-1.13.9" = { 287 296 name = "_at_types_slash_serve-static"; 288 297 packageName = "@types/serve-static"; 289 - version = "1.13.8"; 298 + version = "1.13.9"; 290 299 src = fetchurl { 291 - url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz"; 292 - sha512 = "MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA=="; 300 + url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz"; 301 + sha512 = "ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA=="; 293 302 }; 294 303 }; 295 304 "@types/uuid-8.3.0" = { ··· 310 319 sha512 = "Q07IrQUSNpr+cXU4E4LtkSIBPie5GLZyyMC1QtQYRLWz701+XcoVygGUZgvLqElq1nU4ICldMYPnexlBsg3dqQ=="; 311 320 }; 312 321 }; 313 - "@types/yargs-15.0.12" = { 322 + "@types/yargs-15.0.13" = { 314 323 name = "_at_types_slash_yargs"; 315 324 packageName = "@types/yargs"; 316 - version = "15.0.12"; 325 + version = "15.0.13"; 317 326 src = fetchurl { 318 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz"; 319 - sha512 = "f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw=="; 327 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz"; 328 + sha512 = "kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ=="; 320 329 }; 321 330 }; 322 331 "@types/yargs-parser-15.0.0" = { ··· 328 337 sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 329 338 }; 330 339 }; 331 - "@typescript-eslint/eslint-plugin-4.13.0" = { 340 + "@typescript-eslint/eslint-plugin-4.22.0" = { 332 341 name = "_at_typescript-eslint_slash_eslint-plugin"; 333 342 packageName = "@typescript-eslint/eslint-plugin"; 334 - version = "4.13.0"; 343 + version = "4.22.0"; 335 344 src = fetchurl { 336 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.13.0.tgz"; 337 - sha512 = "ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w=="; 345 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz"; 346 + sha512 = "U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA=="; 338 347 }; 339 348 }; 340 - "@typescript-eslint/eslint-plugin-tslint-4.13.0" = { 349 + "@typescript-eslint/eslint-plugin-tslint-4.22.0" = { 341 350 name = "_at_typescript-eslint_slash_eslint-plugin-tslint"; 342 351 packageName = "@typescript-eslint/eslint-plugin-tslint"; 343 - version = "4.13.0"; 352 + version = "4.22.0"; 344 353 src = fetchurl { 345 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-4.13.0.tgz"; 346 - sha512 = "r6n4irL74bOx4z2f0WxnwG6MY67EESvjvK/VMoIlDelW3Q6cwunCH8ug3l8hkPtgJ7iObmUjpAWKxyF4ZdvEcw=="; 354 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-4.22.0.tgz"; 355 + sha512 = "r4lhAPmd69ohf5grgDALtekETv4WVCpvfXtT3Nf3UUO/88sn4HB4h8xN1afwL48BprQ4TxH7ZUv7Ou6xgRlkAA=="; 347 356 }; 348 357 }; 349 - "@typescript-eslint/experimental-utils-4.13.0" = { 358 + "@typescript-eslint/experimental-utils-4.22.0" = { 350 359 name = "_at_typescript-eslint_slash_experimental-utils"; 351 360 packageName = "@typescript-eslint/experimental-utils"; 352 - version = "4.13.0"; 361 + version = "4.22.0"; 353 362 src = fetchurl { 354 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.13.0.tgz"; 355 - sha512 = "/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw=="; 363 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz"; 364 + sha512 = "xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg=="; 356 365 }; 357 366 }; 358 - "@typescript-eslint/parser-4.13.0" = { 367 + "@typescript-eslint/parser-4.22.0" = { 359 368 name = "_at_typescript-eslint_slash_parser"; 360 369 packageName = "@typescript-eslint/parser"; 361 - version = "4.13.0"; 370 + version = "4.22.0"; 362 371 src = fetchurl { 363 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.13.0.tgz"; 364 - sha512 = "KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg=="; 372 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz"; 373 + sha512 = "z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q=="; 365 374 }; 366 375 }; 367 - "@typescript-eslint/scope-manager-4.13.0" = { 376 + "@typescript-eslint/scope-manager-4.22.0" = { 368 377 name = "_at_typescript-eslint_slash_scope-manager"; 369 378 packageName = "@typescript-eslint/scope-manager"; 370 - version = "4.13.0"; 379 + version = "4.22.0"; 371 380 src = fetchurl { 372 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz"; 373 - sha512 = "UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ=="; 381 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz"; 382 + sha512 = "OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q=="; 374 383 }; 375 384 }; 376 - "@typescript-eslint/types-4.13.0" = { 385 + "@typescript-eslint/types-4.22.0" = { 377 386 name = "_at_typescript-eslint_slash_types"; 378 387 packageName = "@typescript-eslint/types"; 379 - version = "4.13.0"; 388 + version = "4.22.0"; 380 389 src = fetchurl { 381 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.13.0.tgz"; 382 - sha512 = "/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ=="; 390 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz"; 391 + sha512 = "sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA=="; 383 392 }; 384 393 }; 385 - "@typescript-eslint/typescript-estree-4.13.0" = { 394 + "@typescript-eslint/typescript-estree-4.22.0" = { 386 395 name = "_at_typescript-eslint_slash_typescript-estree"; 387 396 packageName = "@typescript-eslint/typescript-estree"; 388 - version = "4.13.0"; 397 + version = "4.22.0"; 389 398 src = fetchurl { 390 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz"; 391 - sha512 = "9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg=="; 399 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz"; 400 + sha512 = "TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg=="; 392 401 }; 393 402 }; 394 - "@typescript-eslint/visitor-keys-4.13.0" = { 403 + "@typescript-eslint/visitor-keys-4.22.0" = { 395 404 name = "_at_typescript-eslint_slash_visitor-keys"; 396 405 packageName = "@typescript-eslint/visitor-keys"; 397 - version = "4.13.0"; 406 + version = "4.22.0"; 398 407 src = fetchurl { 399 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz"; 400 - sha512 = "6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g=="; 408 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz"; 409 + sha512 = "nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw=="; 401 410 }; 402 411 }; 403 412 "@ungap/promise-all-settled-1.1.2" = { ··· 473 482 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 474 483 }; 475 484 }; 476 - "ajv-7.0.3" = { 485 + "ajv-8.1.0" = { 477 486 name = "ajv"; 478 487 packageName = "ajv"; 479 - version = "7.0.3"; 488 + version = "8.1.0"; 480 489 src = fetchurl { 481 - url = "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz"; 482 - sha512 = "R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ=="; 490 + url = "https://registry.npmjs.org/ajv/-/ajv-8.1.0.tgz"; 491 + sha512 = "B/Sk2Ix7A36fs/ZkuGLIR86EdjbgR6fsAcbx9lOP/QBSXujDNbVmIS/U4Itz5k8fPFDeVZl/zQ/gJW4Jrq6XjQ=="; 483 492 }; 484 493 }; 485 494 "another-json-0.2.0" = { ··· 509 518 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 510 519 }; 511 520 }; 512 - "ansi-regex-4.1.0" = { 513 - name = "ansi-regex"; 514 - packageName = "ansi-regex"; 515 - version = "4.1.0"; 516 - src = fetchurl { 517 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 518 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 519 - }; 520 - }; 521 521 "ansi-regex-5.0.0" = { 522 522 name = "ansi-regex"; 523 523 packageName = "ansi-regex"; ··· 545 545 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 546 546 }; 547 547 }; 548 - "anymatch-3.1.1" = { 548 + "anymatch-3.1.2" = { 549 549 name = "anymatch"; 550 550 packageName = "anymatch"; 551 - version = "3.1.1"; 551 + version = "3.1.2"; 552 552 src = fetchurl { 553 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"; 554 - sha512 = "mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg=="; 553 + url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"; 554 + sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; 555 555 }; 556 556 }; 557 557 "arg-4.1.3" = { ··· 725 725 sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 726 726 }; 727 727 }; 728 - "balanced-match-1.0.0" = { 728 + "balanced-match-1.0.2" = { 729 729 name = "balanced-match"; 730 730 packageName = "balanced-match"; 731 - version = "1.0.0"; 731 + version = "1.0.2"; 732 732 src = fetchurl { 733 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 734 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 733 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 734 + sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 735 735 }; 736 736 }; 737 737 "base-x-3.0.8" = { ··· 761 761 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 762 762 }; 763 763 }; 764 - "binary-extensions-2.1.0" = { 764 + "binary-extensions-2.2.0" = { 765 765 name = "binary-extensions"; 766 766 packageName = "binary-extensions"; 767 - version = "2.1.0"; 767 + version = "2.2.0"; 768 768 src = fetchurl { 769 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; 770 - sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; 769 + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 770 + sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 771 771 }; 772 772 }; 773 773 "binary-search-tree-0.2.5" = { ··· 867 867 src = fetchurl { 868 868 url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; 869 869 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 870 + }; 871 + }; 872 + "call-bind-1.0.2" = { 873 + name = "call-bind"; 874 + packageName = "call-bind"; 875 + version = "1.0.2"; 876 + src = fetchurl { 877 + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 878 + sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 870 879 }; 871 880 }; 872 881 "callsites-3.1.0" = { ··· 878 887 sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 879 888 }; 880 889 }; 881 - "camelcase-5.3.1" = { 882 - name = "camelcase"; 883 - packageName = "camelcase"; 884 - version = "5.3.1"; 885 - src = fetchurl { 886 - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 887 - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 888 - }; 889 - }; 890 890 "camelcase-6.2.0" = { 891 891 name = "camelcase"; 892 892 packageName = "camelcase"; ··· 905 905 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 906 906 }; 907 907 }; 908 - "chai-4.2.0" = { 908 + "chai-4.3.4" = { 909 909 name = "chai"; 910 910 packageName = "chai"; 911 - version = "4.2.0"; 911 + version = "4.3.4"; 912 912 src = fetchurl { 913 - url = "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz"; 914 - sha512 = "XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw=="; 913 + url = "https://registry.npmjs.org/chai/-/chai-4.3.4.tgz"; 914 + sha512 = "yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA=="; 915 915 }; 916 916 }; 917 917 "chalk-2.4.2" = { ··· 941 941 sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 942 942 }; 943 943 }; 944 - "chokidar-3.4.1" = { 944 + "chokidar-3.5.1" = { 945 945 name = "chokidar"; 946 946 packageName = "chokidar"; 947 - version = "3.4.1"; 947 + version = "3.5.1"; 948 948 src = fetchurl { 949 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz"; 950 - sha512 = "TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g=="; 951 - }; 952 - }; 953 - "chokidar-3.4.3" = { 954 - name = "chokidar"; 955 - packageName = "chokidar"; 956 - version = "3.4.3"; 957 - src = fetchurl { 958 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 959 - sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 960 - }; 961 - }; 962 - "cliui-5.0.0" = { 963 - name = "cliui"; 964 - packageName = "cliui"; 965 - version = "5.0.0"; 966 - src = fetchurl { 967 - url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 968 - sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 949 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 950 + sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 969 951 }; 970 952 }; 971 953 "cliui-7.0.4" = { ··· 1166 1148 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 1167 1149 }; 1168 1150 }; 1169 - "debug-4.2.0" = { 1170 - name = "debug"; 1171 - packageName = "debug"; 1172 - version = "4.2.0"; 1173 - src = fetchurl { 1174 - url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 1175 - sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 1176 - }; 1177 - }; 1178 1151 "debug-4.3.1" = { 1179 1152 name = "debug"; 1180 1153 packageName = "debug"; ··· 1184 1157 sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="; 1185 1158 }; 1186 1159 }; 1187 - "decamelize-1.2.0" = { 1188 - name = "decamelize"; 1189 - packageName = "decamelize"; 1190 - version = "1.2.0"; 1191 - src = fetchurl { 1192 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 1193 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 1194 - }; 1195 - }; 1196 1160 "decamelize-4.0.0" = { 1197 1161 name = "decamelize"; 1198 1162 packageName = "decamelize"; ··· 1265 1229 sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 1266 1230 }; 1267 1231 }; 1232 + "diff-5.0.0" = { 1233 + name = "diff"; 1234 + packageName = "diff"; 1235 + version = "5.0.0"; 1236 + src = fetchurl { 1237 + url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"; 1238 + sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; 1239 + }; 1240 + }; 1268 1241 "dir-glob-3.0.1" = { 1269 1242 name = "dir-glob"; 1270 1243 packageName = "dir-glob"; ··· 1301 1274 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 1302 1275 }; 1303 1276 }; 1304 - "emoji-regex-7.0.3" = { 1305 - name = "emoji-regex"; 1306 - packageName = "emoji-regex"; 1307 - version = "7.0.3"; 1308 - src = fetchurl { 1309 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 1310 - sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 1311 - }; 1312 - }; 1313 1277 "emoji-regex-8.0.0" = { 1314 1278 name = "emoji-regex"; 1315 1279 packageName = "emoji-regex"; ··· 1382 1346 sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 1383 1347 }; 1384 1348 }; 1385 - "eslint-7.17.0" = { 1349 + "eslint-7.24.0" = { 1386 1350 name = "eslint"; 1387 1351 packageName = "eslint"; 1388 - version = "7.17.0"; 1352 + version = "7.24.0"; 1389 1353 src = fetchurl { 1390 - url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; 1391 - sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; 1354 + url = "https://registry.npmjs.org/eslint/-/eslint-7.24.0.tgz"; 1355 + sha512 = "k9gaHeHiFmGCDQ2rEfvULlSLruz6tgfA8DEn+rY9/oYPFFTlz55mM/Q/Rij1b2Y42jwZiK3lXvNTw6w6TXzcKQ=="; 1392 1356 }; 1393 1357 }; 1394 1358 "eslint-plugin-jsdoc-30.7.13" = { ··· 1400 1364 sha512 = "YM4WIsmurrp0rHX6XiXQppqKB8Ne5ATiZLJe2+/fkp9l9ExXFr43BbAbjZaVrpCT+tuPYOZ8k1MICARHnURUNQ=="; 1401 1365 }; 1402 1366 }; 1403 - "eslint-plugin-prefer-arrow-1.2.2" = { 1367 + "eslint-plugin-prefer-arrow-1.2.3" = { 1404 1368 name = "eslint-plugin-prefer-arrow"; 1405 1369 packageName = "eslint-plugin-prefer-arrow"; 1406 - version = "1.2.2"; 1370 + version = "1.2.3"; 1407 1371 src = fetchurl { 1408 - url = "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.2.tgz"; 1409 - sha512 = "C8YMhL+r8RMeMdYAw/rQtE6xNdMulj+zGWud/qIGnlmomiPRaLDGLMeskZ3alN6uMBojmooRimtdrXebLN4svQ=="; 1372 + url = "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz"; 1373 + sha512 = "J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ=="; 1410 1374 }; 1411 1375 }; 1412 1376 "eslint-scope-5.1.1" = { ··· 1463 1427 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1464 1428 }; 1465 1429 }; 1466 - "esquery-1.3.1" = { 1430 + "esquery-1.4.0" = { 1467 1431 name = "esquery"; 1468 1432 packageName = "esquery"; 1469 - version = "1.3.1"; 1433 + version = "1.4.0"; 1470 1434 src = fetchurl { 1471 - url = "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"; 1472 - sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 1435 + url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 1436 + sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 1473 1437 }; 1474 1438 }; 1475 1439 "esrecurse-4.3.0" = { ··· 1571 1535 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 1572 1536 }; 1573 1537 }; 1574 - "fast-glob-3.2.4" = { 1538 + "fast-glob-3.2.5" = { 1575 1539 name = "fast-glob"; 1576 1540 packageName = "fast-glob"; 1577 - version = "3.2.4"; 1541 + version = "3.2.5"; 1578 1542 src = fetchurl { 1579 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz"; 1580 - sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ=="; 1543 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; 1544 + sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 1581 1545 }; 1582 1546 }; 1583 1547 "fast-json-stable-stringify-2.1.0" = { ··· 1607 1571 sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg=="; 1608 1572 }; 1609 1573 }; 1610 - "fastq-1.10.0" = { 1574 + "fastq-1.11.0" = { 1611 1575 name = "fastq"; 1612 1576 packageName = "fastq"; 1613 - version = "1.10.0"; 1577 + version = "1.11.0"; 1614 1578 src = fetchurl { 1615 - url = "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz"; 1616 - sha512 = "NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA=="; 1579 + url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 1580 + sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 1617 1581 }; 1618 1582 }; 1619 1583 "fecha-4.2.0" = { ··· 1625 1589 sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 1626 1590 }; 1627 1591 }; 1628 - "file-entry-cache-6.0.0" = { 1592 + "file-entry-cache-6.0.1" = { 1629 1593 name = "file-entry-cache"; 1630 1594 packageName = "file-entry-cache"; 1631 - version = "6.0.0"; 1595 + version = "6.0.1"; 1632 1596 src = fetchurl { 1633 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 1634 - sha512 = "fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA=="; 1597 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 1598 + sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 1635 1599 }; 1636 1600 }; 1637 1601 "file-stream-rotator-0.5.7" = { ··· 1661 1625 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 1662 1626 }; 1663 1627 }; 1664 - "find-up-3.0.0" = { 1665 - name = "find-up"; 1666 - packageName = "find-up"; 1667 - version = "3.0.0"; 1668 - src = fetchurl { 1669 - url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; 1670 - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1671 - }; 1672 - }; 1673 1628 "find-up-5.0.0" = { 1674 1629 name = "find-up"; 1675 1630 packageName = "find-up"; ··· 1706 1661 sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 1707 1662 }; 1708 1663 }; 1709 - "flatted-3.1.0" = { 1664 + "flatted-3.1.1" = { 1710 1665 name = "flatted"; 1711 1666 packageName = "flatted"; 1712 - version = "3.1.0"; 1667 + version = "3.1.1"; 1713 1668 src = fetchurl { 1714 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"; 1715 - sha512 = "tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA=="; 1669 + url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 1670 + sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 1716 1671 }; 1717 1672 }; 1718 1673 "fn.name-1.1.0" = { ··· 1787 1742 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1788 1743 }; 1789 1744 }; 1790 - "fsevents-2.1.3" = { 1745 + "fsevents-2.3.2" = { 1791 1746 name = "fsevents"; 1792 1747 packageName = "fsevents"; 1793 - version = "2.1.3"; 1748 + version = "2.3.2"; 1749 + src = fetchurl { 1750 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 1751 + sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 1752 + }; 1753 + }; 1754 + "function-bind-1.1.1" = { 1755 + name = "function-bind"; 1756 + packageName = "function-bind"; 1757 + version = "1.1.1"; 1794 1758 src = fetchurl { 1795 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 1796 - sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 1759 + url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 1760 + sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 1797 1761 }; 1798 1762 }; 1799 1763 "functional-red-black-tree-1.0.1" = { ··· 1841 1805 sha1 = "ead774abee72e20409433a066366023dd6887a41"; 1842 1806 }; 1843 1807 }; 1808 + "get-intrinsic-1.1.1" = { 1809 + name = "get-intrinsic"; 1810 + packageName = "get-intrinsic"; 1811 + version = "1.1.1"; 1812 + src = fetchurl { 1813 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 1814 + sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; 1815 + }; 1816 + }; 1844 1817 "getpass-0.1.7" = { 1845 1818 name = "getpass"; 1846 1819 packageName = "getpass"; ··· 1859 1832 sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1860 1833 }; 1861 1834 }; 1862 - "glob-parent-5.1.1" = { 1835 + "glob-parent-5.1.2" = { 1863 1836 name = "glob-parent"; 1864 1837 packageName = "glob-parent"; 1865 - version = "5.1.1"; 1838 + version = "5.1.2"; 1866 1839 src = fetchurl { 1867 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"; 1868 - sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 1840 + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 1841 + sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 1869 1842 }; 1870 1843 }; 1871 1844 "globals-12.4.0" = { ··· 1877 1850 sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 1878 1851 }; 1879 1852 }; 1880 - "globby-11.0.2" = { 1853 + "globals-13.8.0" = { 1854 + name = "globals"; 1855 + packageName = "globals"; 1856 + version = "13.8.0"; 1857 + src = fetchurl { 1858 + url = "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz"; 1859 + sha512 = "rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q=="; 1860 + }; 1861 + }; 1862 + "globby-11.0.3" = { 1881 1863 name = "globby"; 1882 1864 packageName = "globby"; 1883 - version = "11.0.2"; 1865 + version = "11.0.3"; 1884 1866 src = fetchurl { 1885 - url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; 1886 - sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; 1867 + url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 1868 + sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 1887 1869 }; 1888 1870 }; 1889 1871 "growl-1.10.5" = { ··· 1913 1895 sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 1914 1896 }; 1915 1897 }; 1898 + "has-1.0.3" = { 1899 + name = "has"; 1900 + packageName = "has"; 1901 + version = "1.0.3"; 1902 + src = fetchurl { 1903 + url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 1904 + sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 1905 + }; 1906 + }; 1916 1907 "has-flag-3.0.0" = { 1917 1908 name = "has-flag"; 1918 1909 packageName = "has-flag"; ··· 1929 1920 src = fetchurl { 1930 1921 url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 1931 1922 sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 1923 + }; 1924 + }; 1925 + "has-symbols-1.0.2" = { 1926 + name = "has-symbols"; 1927 + packageName = "has-symbols"; 1928 + version = "1.0.2"; 1929 + src = fetchurl { 1930 + url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 1931 + sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 1932 1932 }; 1933 1933 }; 1934 1934 "he-1.2.0" = { ··· 2057 2057 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 2058 2058 }; 2059 2059 }; 2060 + "is-boolean-object-1.1.0" = { 2061 + name = "is-boolean-object"; 2062 + packageName = "is-boolean-object"; 2063 + version = "1.1.0"; 2064 + src = fetchurl { 2065 + url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz"; 2066 + sha512 = "a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA=="; 2067 + }; 2068 + }; 2060 2069 "is-extglob-2.1.1" = { 2061 2070 name = "is-extglob"; 2062 2071 packageName = "is-extglob"; ··· 2120 2129 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 2121 2130 }; 2122 2131 }; 2132 + "is-number-object-1.0.4" = { 2133 + name = "is-number-object"; 2134 + packageName = "is-number-object"; 2135 + version = "1.0.4"; 2136 + src = fetchurl { 2137 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz"; 2138 + sha512 = "zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw=="; 2139 + }; 2140 + }; 2123 2141 "is-plain-obj-2.1.0" = { 2124 2142 name = "is-plain-obj"; 2125 2143 packageName = "is-plain-obj"; ··· 2156 2174 sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 2157 2175 }; 2158 2176 }; 2177 + "is-string-1.0.5" = { 2178 + name = "is-string"; 2179 + packageName = "is-string"; 2180 + version = "1.0.5"; 2181 + src = fetchurl { 2182 + url = "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz"; 2183 + sha512 = "buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ=="; 2184 + }; 2185 + }; 2159 2186 "is-typedarray-1.0.0" = { 2160 2187 name = "is-typedarray"; 2161 2188 packageName = "is-typedarray"; ··· 2201 2228 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 2202 2229 }; 2203 2230 }; 2204 - "js-yaml-3.14.0" = { 2231 + "js-yaml-3.14.1" = { 2205 2232 name = "js-yaml"; 2206 2233 packageName = "js-yaml"; 2207 - version = "3.14.0"; 2234 + version = "3.14.1"; 2208 2235 src = fetchurl { 2209 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 2210 - sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 2236 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 2237 + sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 2211 2238 }; 2212 2239 }; 2213 2240 "js-yaml-4.0.0" = { ··· 2217 2244 src = fetchurl { 2218 2245 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz"; 2219 2246 sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q=="; 2247 + }; 2248 + }; 2249 + "js-yaml-4.1.0" = { 2250 + name = "js-yaml"; 2251 + packageName = "js-yaml"; 2252 + version = "4.1.0"; 2253 + src = fetchurl { 2254 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"; 2255 + sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 2220 2256 }; 2221 2257 }; 2222 2258 "jsbn-0.1.1" = { ··· 2336 2372 sha512 = "1TulyYfc4udS7ECSBT2vwJksWbkwwTX8BzeUIiq8Y07Riy7bDAAnxDaPU/tWyOVmQAcWJIEIFP9lPfBGqVoPgQ=="; 2337 2373 }; 2338 2374 }; 2339 - "locate-path-3.0.0" = { 2340 - name = "locate-path"; 2341 - packageName = "locate-path"; 2342 - version = "3.0.0"; 2343 - src = fetchurl { 2344 - url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; 2345 - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 2346 - }; 2347 - }; 2348 2375 "locate-path-6.0.0" = { 2349 2376 name = "locate-path"; 2350 2377 packageName = "locate-path"; ··· 2363 2390 sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 2364 2391 }; 2365 2392 }; 2393 + "lodash-4.17.21" = { 2394 + name = "lodash"; 2395 + packageName = "lodash"; 2396 + version = "4.17.21"; 2397 + src = fetchurl { 2398 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 2399 + sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 2400 + }; 2401 + }; 2402 + "lodash.clonedeep-4.5.0" = { 2403 + name = "lodash.clonedeep"; 2404 + packageName = "lodash.clonedeep"; 2405 + version = "4.5.0"; 2406 + src = fetchurl { 2407 + url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 2408 + sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; 2409 + }; 2410 + }; 2411 + "lodash.flatten-4.4.0" = { 2412 + name = "lodash.flatten"; 2413 + packageName = "lodash.flatten"; 2414 + version = "4.4.0"; 2415 + src = fetchurl { 2416 + url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; 2417 + sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; 2418 + }; 2419 + }; 2366 2420 "lodash.toarray-4.4.0" = { 2367 2421 name = "lodash.toarray"; 2368 2422 packageName = "lodash.toarray"; ··· 2370 2424 src = fetchurl { 2371 2425 url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz"; 2372 2426 sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; 2427 + }; 2428 + }; 2429 + "lodash.truncate-4.4.2" = { 2430 + name = "lodash.truncate"; 2431 + packageName = "lodash.truncate"; 2432 + version = "4.4.2"; 2433 + src = fetchurl { 2434 + url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 2435 + sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193"; 2373 2436 }; 2374 2437 }; 2375 2438 "log-symbols-4.0.0" = { ··· 2417 2480 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 2418 2481 }; 2419 2482 }; 2420 - "matrix-appservice-0.7.1" = { 2483 + "matrix-appservice-0.8.0" = { 2421 2484 name = "matrix-appservice"; 2422 2485 packageName = "matrix-appservice"; 2423 - version = "0.7.1"; 2486 + version = "0.8.0"; 2424 2487 src = fetchurl { 2425 - url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.7.1.tgz"; 2426 - sha512 = "oUjEz+eKfBw66FnQ3/D7PWcq+/oq9gzJVlNOMQUSGXgK70o8JT3toeFMYsJChaIimU5fIsHbTVyHC+eVGb7MSQ=="; 2488 + url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.8.0.tgz"; 2489 + sha512 = "mfgMpmV3dWLtzrd4V/3XtqUD0P44I/mTgsRreW5jMhSaUnnRGZbpptBw2q4/axbLjw2FarlWtOVgertDGMtccA=="; 2427 2490 }; 2428 2491 }; 2429 - "matrix-appservice-bridge-2.5.0" = { 2492 + "matrix-appservice-bridge-2.6.0" = { 2430 2493 name = "matrix-appservice-bridge"; 2431 2494 packageName = "matrix-appservice-bridge"; 2432 - version = "2.5.0"; 2495 + version = "2.6.0"; 2433 2496 src = fetchurl { 2434 - url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-2.5.0.tgz"; 2435 - sha512 = "L5Ddb78pqqfO6xM4SYM+Hv6N5VjmLF3D24h4g5ze5+xRfEFmfvmLdVu6rvIExawvk9i+LA0fZ95Qi3hc7SkgAQ=="; 2497 + url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-2.6.0.tgz"; 2498 + sha512 = "o1KHQHG1GdfUhTFBXVLztwbTowuCFO9/h8n2zdkRK/bZsdcXSFQVfUwDtRULcyinD4N7r0Lrwlg1LyR0pg2WSw=="; 2436 2499 }; 2437 2500 }; 2438 - "matrix-js-sdk-9.6.0" = { 2501 + "matrix-js-sdk-9.11.0" = { 2439 2502 name = "matrix-js-sdk"; 2440 2503 packageName = "matrix-js-sdk"; 2441 - version = "9.6.0"; 2504 + version = "9.11.0"; 2442 2505 src = fetchurl { 2443 - url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-9.6.0.tgz"; 2444 - sha512 = "zoNqB7z0C0QDncN7yD1K50c4C88VPofWaCQ0gNXqO/Ac1dr/xLF/46iNF9Y+dBwq7siBO9wEh20WFHMaRpeLOg=="; 2506 + url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-9.11.0.tgz"; 2507 + sha512 = "wP28ybOxyQ7lbC48QddRORYr8atEwbTqDOsu8H6u9jTTgB2qqczI/bkSoXHtutODuSeLY5x0UuwLcxVCy4yxVQ=="; 2445 2508 }; 2446 2509 }; 2447 2510 "media-typer-0.3.0" = { ··· 2480 2543 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 2481 2544 }; 2482 2545 }; 2483 - "micromatch-4.0.2" = { 2546 + "micromatch-4.0.4" = { 2484 2547 name = "micromatch"; 2485 2548 packageName = "micromatch"; 2486 - version = "4.0.2"; 2549 + version = "4.0.4"; 2487 2550 src = fetchurl { 2488 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz"; 2489 - sha512 = "y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q=="; 2551 + url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"; 2552 + sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; 2490 2553 }; 2491 2554 }; 2492 2555 "mime-1.6.0" = { ··· 2543 2606 sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2544 2607 }; 2545 2608 }; 2546 - "mocha-8.2.1" = { 2609 + "mocha-8.3.2" = { 2547 2610 name = "mocha"; 2548 2611 packageName = "mocha"; 2549 - version = "8.2.1"; 2612 + version = "8.3.2"; 2550 2613 src = fetchurl { 2551 - url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 2552 - sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 2614 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.2.tgz"; 2615 + sha512 = "UdmISwr/5w+uXLPKspgoV7/RXZwKRTiTjJ2/AC5ZiEztIoOYdfKb19+9jNmEInzx5pBsCyJQzarAxqIGBNYJhg=="; 2553 2616 }; 2554 2617 }; 2555 - "moment-2.24.0" = { 2618 + "moment-2.29.1" = { 2556 2619 name = "moment"; 2557 2620 packageName = "moment"; 2558 - version = "2.24.0"; 2621 + version = "2.29.1"; 2559 2622 src = fetchurl { 2560 - url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; 2561 - sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; 2623 + url = "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"; 2624 + sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 2562 2625 }; 2563 2626 }; 2564 2627 "morgan-1.10.0" = { ··· 2597 2660 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 2598 2661 }; 2599 2662 }; 2600 - "nanoid-3.1.12" = { 2663 + "ms-2.1.3" = { 2664 + name = "ms"; 2665 + packageName = "ms"; 2666 + version = "2.1.3"; 2667 + src = fetchurl { 2668 + url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 2669 + sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 2670 + }; 2671 + }; 2672 + "nanoid-3.1.20" = { 2601 2673 name = "nanoid"; 2602 2674 packageName = "nanoid"; 2603 - version = "3.1.12"; 2675 + version = "3.1.20"; 2604 2676 src = fetchurl { 2605 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz"; 2606 - sha512 = "1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A=="; 2677 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz"; 2678 + sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw=="; 2607 2679 }; 2608 2680 }; 2609 2681 "natural-compare-1.4.0" = { ··· 2660 2732 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 2661 2733 }; 2662 2734 }; 2663 - "nunjucks-3.2.2" = { 2735 + "nunjucks-3.2.3" = { 2664 2736 name = "nunjucks"; 2665 2737 packageName = "nunjucks"; 2666 - version = "3.2.2"; 2738 + version = "3.2.3"; 2667 2739 src = fetchurl { 2668 - url = "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz"; 2669 - sha512 = "KUi85OoF2NMygwODAy28Lh9qHmq5hO3rBlbkYoC8v377h4l8Pt5qFjILl0LWpMbOrZ18CzfVVUvIHUIrtED3sA=="; 2740 + url = "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.3.tgz"; 2741 + sha512 = "psb6xjLj47+fE76JdZwskvwG4MYsQKXUtMsPh6U0YMvmyjRtKRFcxnlXGWglNybtNTNVmGdp94K62/+NjF5FDQ=="; 2670 2742 }; 2671 2743 }; 2672 2744 "oauth-sign-0.9.0" = { ··· 2678 2750 sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 2679 2751 }; 2680 2752 }; 2681 - "object-hash-2.0.3" = { 2753 + "object-hash-2.1.1" = { 2682 2754 name = "object-hash"; 2683 2755 packageName = "object-hash"; 2684 - version = "2.0.3"; 2756 + version = "2.1.1"; 2757 + src = fetchurl { 2758 + url = "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz"; 2759 + sha512 = "VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ=="; 2760 + }; 2761 + }; 2762 + "object-inspect-1.9.0" = { 2763 + name = "object-inspect"; 2764 + packageName = "object-inspect"; 2765 + version = "1.9.0"; 2685 2766 src = fetchurl { 2686 - url = "https://registry.npmjs.org/object-hash/-/object-hash-2.0.3.tgz"; 2687 - sha512 = "JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg=="; 2767 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz"; 2768 + sha512 = "i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw=="; 2688 2769 }; 2689 2770 }; 2690 2771 "on-finished-2.3.0" = { ··· 2750 2831 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 2751 2832 }; 2752 2833 }; 2753 - "p-limit-2.3.0" = { 2754 - name = "p-limit"; 2755 - packageName = "p-limit"; 2756 - version = "2.3.0"; 2757 - src = fetchurl { 2758 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 2759 - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 2760 - }; 2761 - }; 2762 2834 "p-limit-3.1.0" = { 2763 2835 name = "p-limit"; 2764 2836 packageName = "p-limit"; ··· 2766 2838 src = fetchurl { 2767 2839 url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 2768 2840 sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 2769 - }; 2770 - }; 2771 - "p-locate-3.0.0" = { 2772 - name = "p-locate"; 2773 - packageName = "p-locate"; 2774 - version = "3.0.0"; 2775 - src = fetchurl { 2776 - url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; 2777 - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 2778 2841 }; 2779 2842 }; 2780 2843 "p-locate-5.0.0" = { ··· 2822 2885 sha512 = "rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg=="; 2823 2886 }; 2824 2887 }; 2825 - "p-try-2.2.0" = { 2826 - name = "p-try"; 2827 - packageName = "p-try"; 2828 - version = "2.2.0"; 2829 - src = fetchurl { 2830 - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 2831 - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 2832 - }; 2833 - }; 2834 2888 "packet-reader-1.0.0" = { 2835 2889 name = "packet-reader"; 2836 2890 packageName = "packet-reader"; ··· 2856 2910 src = fetchurl { 2857 2911 url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; 2858 2912 sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; 2859 - }; 2860 - }; 2861 - "path-exists-3.0.0" = { 2862 - name = "path-exists"; 2863 - packageName = "path-exists"; 2864 - version = "3.0.0"; 2865 - src = fetchurl { 2866 - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 2867 - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 2868 2913 }; 2869 2914 }; 2870 2915 "path-exists-4.0.0" = { ··· 2912 2957 sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 2913 2958 }; 2914 2959 }; 2915 - "pathval-1.1.0" = { 2960 + "pathval-1.1.1" = { 2916 2961 name = "pathval"; 2917 2962 packageName = "pathval"; 2918 - version = "1.1.0"; 2963 + version = "1.1.1"; 2919 2964 src = fetchurl { 2920 - url = "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz"; 2921 - sha1 = "b942e6d4bde653005ef6b71361def8727d0645e0"; 2965 + url = "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"; 2966 + sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ=="; 2922 2967 }; 2923 2968 }; 2924 2969 "performance-now-2.1.0" = { ··· 2939 2984 sha512 = "9wm3yX9lCfjvA98ybCyw2pADUivyNWT/yIP4ZcDVpMN0og70BUWYEGXPCTAQdGTAqnytfRADb7NERrY1qxhIqw=="; 2940 2985 }; 2941 2986 }; 2942 - "pg-connection-string-2.4.0" = { 2987 + "pg-connection-string-2.5.0" = { 2943 2988 name = "pg-connection-string"; 2944 2989 packageName = "pg-connection-string"; 2945 - version = "2.4.0"; 2990 + version = "2.5.0"; 2946 2991 src = fetchurl { 2947 - url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.4.0.tgz"; 2948 - sha512 = "3iBXuv7XKvxeMrIgym7njT+HlZkwZqqGX4Bu9cci8xHZNT+Um1gWKqCsAzcC0d95rcKMU5WBg6YRUcHyV0HZKQ=="; 2992 + url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz"; 2993 + sha512 = "r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="; 2949 2994 }; 2950 2995 }; 2951 2996 "pg-int8-1.0.1" = { ··· 2966 3011 sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg=="; 2967 3012 }; 2968 3013 }; 2969 - "pg-pool-3.2.2" = { 3014 + "pg-pool-3.3.0" = { 2970 3015 name = "pg-pool"; 2971 3016 packageName = "pg-pool"; 2972 - version = "3.2.2"; 3017 + version = "3.3.0"; 2973 3018 src = fetchurl { 2974 - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.2.2.tgz"; 2975 - sha512 = "ORJoFxAlmmros8igi608iVEbQNNZlp89diFVx6yV5v+ehmpMY9sK6QgpmgoXbmkNaBAx8cOOZh9g80kJv1ooyA=="; 3019 + url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.3.0.tgz"; 3020 + sha512 = "0O5huCql8/D6PIRFAlmccjphLYWC+JIzvUhSzXSpGaf+tjTZc4nn+Lr7mLXBbFJfvwbP0ywDv73EiaBsxn7zdg=="; 2976 3021 }; 2977 3022 }; 2978 - "pg-promise-10.8.7" = { 3023 + "pg-promise-10.10.1" = { 2979 3024 name = "pg-promise"; 2980 3025 packageName = "pg-promise"; 2981 - version = "10.8.7"; 3026 + version = "10.10.1"; 2982 3027 src = fetchurl { 2983 - url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.8.7.tgz"; 2984 - sha512 = "gSbH+NYWD4pVOpacP9uS2xH84N7nb7K4ubKlcZchhDr8ixnIURPnNJmNLJcRgtOocpjzsKymYSm6rCFZVOngSA=="; 3028 + url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.10.1.tgz"; 3029 + sha512 = "sopmuOr2PrUNh3XI0Y15ssmjcwhZnGHyGYwuDDmWFnBydq7lvrhTMBI3hefAp3YMx07+HSXfSpJse9z5vC4bsw=="; 2985 3030 }; 2986 3031 }; 2987 - "pg-protocol-1.4.0" = { 3032 + "pg-protocol-1.5.0" = { 2988 3033 name = "pg-protocol"; 2989 3034 packageName = "pg-protocol"; 2990 - version = "1.4.0"; 3035 + version = "1.5.0"; 2991 3036 src = fetchurl { 2992 - url = "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.4.0.tgz"; 2993 - sha512 = "El+aXWcwG/8wuFICMQjM5ZSAm6OWiJicFdNYo+VY3QP+8vI4SvLIWVe51PppTzMhikUJR+PsyIFKqfdXPz/yxA=="; 3037 + url = "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.5.0.tgz"; 3038 + sha512 = "muRttij7H8TqRNu/DxrAJQITO4Ac7RmX3Klyr/9mJEOBeIpgnF8f9jAfRz5d3XwQZl5qBjF9gLsUtMPJE0vezQ=="; 2994 3039 }; 2995 3040 }; 2996 3041 "pg-types-2.2.0" = { ··· 3011 3056 sha512 = "YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w=="; 3012 3057 }; 3013 3058 }; 3014 - "picomatch-2.2.2" = { 3059 + "picomatch-2.2.3" = { 3015 3060 name = "picomatch"; 3016 3061 packageName = "picomatch"; 3017 - version = "2.2.2"; 3062 + version = "2.2.3"; 3018 3063 src = fetchurl { 3019 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"; 3020 - sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="; 3064 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz"; 3065 + sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg=="; 3021 3066 }; 3022 3067 }; 3023 3068 "postgres-array-2.0.0" = { ··· 3119 3164 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 3120 3165 }; 3121 3166 }; 3167 + "qs-6.10.1" = { 3168 + name = "qs"; 3169 + packageName = "qs"; 3170 + version = "6.10.1"; 3171 + src = fetchurl { 3172 + url = "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz"; 3173 + sha512 = "M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg=="; 3174 + }; 3175 + }; 3122 3176 "qs-6.5.2" = { 3123 3177 name = "qs"; 3124 3178 packageName = "qs"; ··· 3137 3191 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 3138 3192 }; 3139 3193 }; 3140 - "qs-6.9.6" = { 3141 - name = "qs"; 3142 - packageName = "qs"; 3143 - version = "6.9.6"; 3194 + "queue-microtask-1.2.3" = { 3195 + name = "queue-microtask"; 3196 + packageName = "queue-microtask"; 3197 + version = "1.2.3"; 3144 3198 src = fetchurl { 3145 - url = "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"; 3146 - sha512 = "TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ=="; 3199 + url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 3200 + sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 3147 3201 }; 3148 3202 }; 3149 3203 "quick-lru-5.1.1" = { ··· 3191 3245 sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; 3192 3246 }; 3193 3247 }; 3194 - "readable-stream-2.3.6" = { 3195 - name = "readable-stream"; 3196 - packageName = "readable-stream"; 3197 - version = "2.3.6"; 3198 - src = fetchurl { 3199 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; 3200 - sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; 3201 - }; 3202 - }; 3203 3248 "readable-stream-2.3.7" = { 3204 3249 name = "readable-stream"; 3205 3250 packageName = "readable-stream"; ··· 3216 3261 src = fetchurl { 3217 3262 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 3218 3263 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 3219 - }; 3220 - }; 3221 - "readdirp-3.4.0" = { 3222 - name = "readdirp"; 3223 - packageName = "readdirp"; 3224 - version = "3.4.0"; 3225 - src = fetchurl { 3226 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz"; 3227 - sha512 = "0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ=="; 3228 3264 }; 3229 3265 }; 3230 3266 "readdirp-3.5.0" = { ··· 3290 3326 sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 3291 3327 }; 3292 3328 }; 3293 - "require-main-filename-2.0.0" = { 3294 - name = "require-main-filename"; 3295 - packageName = "require-main-filename"; 3296 - version = "2.0.0"; 3297 - src = fetchurl { 3298 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"; 3299 - sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 3300 - }; 3301 - }; 3302 3329 "resolve-from-4.0.0" = { 3303 3330 name = "resolve-from"; 3304 3331 packageName = "resolve-from"; ··· 3335 3362 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 3336 3363 }; 3337 3364 }; 3338 - "run-parallel-1.1.10" = { 3365 + "run-parallel-1.2.0" = { 3339 3366 name = "run-parallel"; 3340 3367 packageName = "run-parallel"; 3341 - version = "1.1.10"; 3368 + version = "1.2.0"; 3342 3369 src = fetchurl { 3343 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz"; 3344 - sha512 = "zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw=="; 3370 + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 3371 + sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 3345 3372 }; 3346 3373 }; 3347 3374 "safe-buffer-5.1.2" = { ··· 3405 3432 src = fetchurl { 3406 3433 url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; 3407 3434 sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; 3408 - }; 3409 - }; 3410 - "set-blocking-2.0.0" = { 3411 - name = "set-blocking"; 3412 - packageName = "set-blocking"; 3413 - version = "2.0.0"; 3414 - src = fetchurl { 3415 - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 3416 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 3417 3435 }; 3418 3436 }; 3419 3437 "setprototypeof-1.1.1" = { ··· 3443 3461 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 3444 3462 }; 3445 3463 }; 3464 + "side-channel-1.0.4" = { 3465 + name = "side-channel"; 3466 + packageName = "side-channel"; 3467 + version = "1.0.4"; 3468 + src = fetchurl { 3469 + url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 3470 + sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 3471 + }; 3472 + }; 3446 3473 "simple-swizzle-0.2.2" = { 3447 3474 name = "simple-swizzle"; 3448 3475 packageName = "simple-swizzle"; ··· 3576 3603 src = fetchurl { 3577 3604 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 3578 3605 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 3579 - }; 3580 - }; 3581 - "string-width-3.1.0" = { 3582 - name = "string-width"; 3583 - packageName = "string-width"; 3584 - version = "3.1.0"; 3585 - src = fetchurl { 3586 - url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 3587 - sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 3588 3606 }; 3589 3607 }; 3590 3608 "string-width-4.2.0" = { ··· 3623 3641 sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 3624 3642 }; 3625 3643 }; 3626 - "strip-ansi-5.2.0" = { 3627 - name = "strip-ansi"; 3628 - packageName = "strip-ansi"; 3629 - version = "5.2.0"; 3630 - src = fetchurl { 3631 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 3632 - sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 3633 - }; 3634 - }; 3635 3644 "strip-ansi-6.0.0" = { 3636 3645 name = "strip-ansi"; 3637 3646 packageName = "strip-ansi"; ··· 3668 3677 sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 3669 3678 }; 3670 3679 }; 3671 - "table-6.0.7" = { 3680 + "supports-color-8.1.1" = { 3681 + name = "supports-color"; 3682 + packageName = "supports-color"; 3683 + version = "8.1.1"; 3684 + src = fetchurl { 3685 + url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 3686 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 3687 + }; 3688 + }; 3689 + "table-6.2.0" = { 3672 3690 name = "table"; 3673 3691 packageName = "table"; 3674 - version = "6.0.7"; 3692 + version = "6.2.0"; 3675 3693 src = fetchurl { 3676 - url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz"; 3677 - sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g=="; 3694 + url = "https://registry.npmjs.org/table/-/table-6.2.0.tgz"; 3695 + sha512 = "WMBBLuauiLXJjth35K4vOnd/xkaZ/dxEcyoZ+YhxSwfxFqvh+av06+oRqIwbR14m1lENB1egSWOFv/bNEt2D8A=="; 3678 3696 }; 3679 3697 }; 3680 3698 "tdigest-0.1.1" = { ··· 3758 3776 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 3759 3777 }; 3760 3778 }; 3761 - "tsutils-3.19.1" = { 3779 + "tsutils-3.21.0" = { 3762 3780 name = "tsutils"; 3763 3781 packageName = "tsutils"; 3764 - version = "3.19.1"; 3782 + version = "3.21.0"; 3765 3783 src = fetchurl { 3766 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.19.1.tgz"; 3767 - sha512 = "GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw=="; 3784 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"; 3785 + sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 3768 3786 }; 3769 3787 }; 3770 3788 "tunnel-agent-0.6.0" = { ··· 3803 3821 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 3804 3822 }; 3805 3823 }; 3824 + "type-fest-0.20.2" = { 3825 + name = "type-fest"; 3826 + packageName = "type-fest"; 3827 + version = "0.20.2"; 3828 + src = fetchurl { 3829 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 3830 + sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 3831 + }; 3832 + }; 3806 3833 "type-fest-0.8.1" = { 3807 3834 name = "type-fest"; 3808 3835 packageName = "type-fest"; ··· 3821 3848 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 3822 3849 }; 3823 3850 }; 3824 - "typescript-4.1.3" = { 3851 + "typescript-4.2.4" = { 3825 3852 name = "typescript"; 3826 3853 packageName = "typescript"; 3827 - version = "4.1.3"; 3854 + version = "4.2.4"; 3828 3855 src = fetchurl { 3829 - url = "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz"; 3830 - sha512 = "B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg=="; 3856 + url = "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz"; 3857 + sha512 = "V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg=="; 3831 3858 }; 3832 3859 }; 3833 3860 "underscore-1.4.4" = { ··· 3902 3929 sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 3903 3930 }; 3904 3931 }; 3905 - "v8-compile-cache-2.2.0" = { 3932 + "v8-compile-cache-2.3.0" = { 3906 3933 name = "v8-compile-cache"; 3907 3934 packageName = "v8-compile-cache"; 3908 - version = "2.2.0"; 3935 + version = "2.3.0"; 3909 3936 src = fetchurl { 3910 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 3911 - sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 3937 + url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 3938 + sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 3912 3939 }; 3913 3940 }; 3914 3941 "vary-1.1.2" = { ··· 3938 3965 sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 3939 3966 }; 3940 3967 }; 3941 - "which-module-2.0.0" = { 3942 - name = "which-module"; 3943 - packageName = "which-module"; 3944 - version = "2.0.0"; 3945 - src = fetchurl { 3946 - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 3947 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 3948 - }; 3949 - }; 3950 3968 "wide-align-1.1.3" = { 3951 3969 name = "wide-align"; 3952 3970 packageName = "wide-align"; ··· 3965 3983 sha512 = "oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw=="; 3966 3984 }; 3967 3985 }; 3968 - "winston-daily-rotate-file-4.5.0" = { 3986 + "winston-daily-rotate-file-4.5.2" = { 3969 3987 name = "winston-daily-rotate-file"; 3970 3988 packageName = "winston-daily-rotate-file"; 3971 - version = "4.5.0"; 3989 + version = "4.5.2"; 3972 3990 src = fetchurl { 3973 - url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.0.tgz"; 3974 - sha512 = "/HqeWiU48dzGqcrABRlxYWVMdL6l3uKCtFSJyrqK+E2rLnSFNsgYpvwx15EgTitBLNzH69lQd/+z2ASryV2aqw=="; 3975 - }; 3976 - }; 3977 - "winston-transport-4.3.0" = { 3978 - name = "winston-transport"; 3979 - packageName = "winston-transport"; 3980 - version = "4.3.0"; 3981 - src = fetchurl { 3982 - url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz"; 3983 - sha512 = "B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A=="; 3991 + url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.2.tgz"; 3992 + sha512 = "DpAz9djExzFGVGRIKCKzsjOQaIINbjOUJ8CRsZGz0SQOMMcO1kM7jqTdzQAM9CRTEksZV9bBw9TT0ddQBGxs9g=="; 3984 3993 }; 3985 3994 }; 3986 3995 "winston-transport-4.4.0" = { ··· 4001 4010 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 4002 4011 }; 4003 4012 }; 4004 - "workerpool-6.0.2" = { 4013 + "workerpool-6.1.0" = { 4005 4014 name = "workerpool"; 4006 4015 packageName = "workerpool"; 4007 - version = "6.0.2"; 4008 - src = fetchurl { 4009 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz"; 4010 - sha512 = "DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q=="; 4011 - }; 4012 - }; 4013 - "wrap-ansi-5.1.0" = { 4014 - name = "wrap-ansi"; 4015 - packageName = "wrap-ansi"; 4016 - version = "5.1.0"; 4016 + version = "6.1.0"; 4017 4017 src = fetchurl { 4018 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz"; 4019 - sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 4018 + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"; 4019 + sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg=="; 4020 4020 }; 4021 4021 }; 4022 4022 "wrap-ansi-7.0.0" = { ··· 4055 4055 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 4056 4056 }; 4057 4057 }; 4058 - "y18n-4.0.1" = { 4059 - name = "y18n"; 4060 - packageName = "y18n"; 4061 - version = "4.0.1"; 4062 - src = fetchurl { 4063 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 4064 - sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 4065 - }; 4066 - }; 4067 4058 "y18n-5.0.5" = { 4068 4059 name = "y18n"; 4069 4060 packageName = "y18n"; ··· 4082 4073 sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 4083 4074 }; 4084 4075 }; 4085 - "yargs-13.3.2" = { 4086 - name = "yargs"; 4087 - packageName = "yargs"; 4088 - version = "13.3.2"; 4089 - src = fetchurl { 4090 - url = "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz"; 4091 - sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 4092 - }; 4093 - }; 4094 4076 "yargs-16.2.0" = { 4095 4077 name = "yargs"; 4096 4078 packageName = "yargs"; ··· 4100 4082 sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 4101 4083 }; 4102 4084 }; 4103 - "yargs-parser-13.1.2" = { 4104 - name = "yargs-parser"; 4105 - packageName = "yargs-parser"; 4106 - version = "13.1.2"; 4107 - src = fetchurl { 4108 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"; 4109 - sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 4110 - }; 4111 - }; 4112 4085 "yargs-parser-20.2.4" = { 4113 4086 name = "yargs-parser"; 4114 4087 packageName = "yargs-parser"; ··· 4149 4122 args = { 4150 4123 name = "matrix-appservice-slack"; 4151 4124 packageName = "matrix-appservice-slack"; 4152 - version = "1.7.0"; 4125 + version = "1.8.0"; 4153 4126 src = ./.; 4154 4127 dependencies = [ 4155 4128 sources."@babel/code-frame-7.12.11" 4156 4129 sources."@babel/helper-validator-identifier-7.12.11" 4157 - (sources."@babel/highlight-7.10.4" // { 4130 + (sources."@babel/highlight-7.13.10" // { 4158 4131 dependencies = [ 4159 4132 sources."chalk-2.4.2" 4160 4133 sources."escape-string-regexp-1.0.5" 4161 4134 ]; 4162 4135 }) 4163 - sources."@babel/runtime-7.12.13" 4136 + sources."@babel/runtime-7.13.10" 4164 4137 sources."@dabh/diagnostics-2.0.2" 4165 - (sources."@eslint/eslintrc-0.2.2" // { 4138 + (sources."@eslint/eslintrc-0.4.0" // { 4166 4139 dependencies = [ 4167 4140 sources."debug-4.3.1" 4141 + sources."globals-12.4.0" 4168 4142 sources."ignore-4.0.6" 4143 + sources."js-yaml-3.14.1" 4169 4144 sources."ms-2.1.2" 4170 4145 ]; 4171 4146 }) ··· 4185 4160 ]; 4186 4161 }) 4187 4162 sources."@types/body-parser-1.19.0" 4188 - sources."@types/chai-4.2.14" 4163 + sources."@types/chai-4.2.16" 4189 4164 sources."@types/connect-3.4.34" 4190 - sources."@types/express-4.17.10" 4191 - sources."@types/express-serve-static-core-4.17.18" 4165 + sources."@types/express-4.17.11" 4166 + sources."@types/express-serve-static-core-4.17.19" 4192 4167 sources."@types/is-stream-1.1.0" 4193 - sources."@types/json-schema-7.0.6" 4194 - sources."@types/mime-2.0.3" 4195 - sources."@types/mocha-8.2.0" 4168 + sources."@types/js-yaml-4.0.0" 4169 + sources."@types/json-schema-7.0.7" 4170 + sources."@types/mime-1.3.2" 4171 + sources."@types/mocha-8.2.2" 4196 4172 sources."@types/nedb-1.8.11" 4197 - sources."@types/node-14.14.20" 4173 + sources."@types/node-14.14.41" 4198 4174 sources."@types/node-emoji-1.8.1" 4199 - sources."@types/nunjucks-3.1.3" 4175 + sources."@types/nunjucks-3.1.4" 4200 4176 sources."@types/p-queue-2.3.2" 4201 - sources."@types/qs-6.9.5" 4177 + sources."@types/qs-6.9.6" 4202 4178 sources."@types/randomstring-1.1.6" 4203 4179 sources."@types/range-parser-1.2.3" 4204 4180 sources."@types/retry-0.12.0" 4205 - sources."@types/serve-static-1.13.8" 4181 + sources."@types/serve-static-1.13.9" 4206 4182 sources."@types/uuid-8.3.0" 4207 4183 sources."@types/ws-7.2.6" 4208 - sources."@types/yargs-15.0.12" 4184 + sources."@types/yargs-15.0.13" 4209 4185 sources."@types/yargs-parser-15.0.0" 4210 - (sources."@typescript-eslint/eslint-plugin-4.13.0" // { 4186 + (sources."@typescript-eslint/eslint-plugin-4.22.0" // { 4211 4187 dependencies = [ 4212 4188 sources."debug-4.3.1" 4213 4189 sources."ms-2.1.2" 4214 4190 ]; 4215 4191 }) 4216 - sources."@typescript-eslint/eslint-plugin-tslint-4.13.0" 4217 - sources."@typescript-eslint/experimental-utils-4.13.0" 4218 - (sources."@typescript-eslint/parser-4.13.0" // { 4192 + sources."@typescript-eslint/eslint-plugin-tslint-4.22.0" 4193 + sources."@typescript-eslint/experimental-utils-4.22.0" 4194 + (sources."@typescript-eslint/parser-4.22.0" // { 4219 4195 dependencies = [ 4220 4196 sources."debug-4.3.1" 4221 4197 sources."ms-2.1.2" 4222 4198 ]; 4223 4199 }) 4224 - sources."@typescript-eslint/scope-manager-4.13.0" 4225 - sources."@typescript-eslint/types-4.13.0" 4226 - (sources."@typescript-eslint/typescript-estree-4.13.0" // { 4200 + sources."@typescript-eslint/scope-manager-4.22.0" 4201 + sources."@typescript-eslint/types-4.22.0" 4202 + (sources."@typescript-eslint/typescript-estree-4.22.0" // { 4227 4203 dependencies = [ 4228 4204 sources."debug-4.3.1" 4229 4205 sources."ms-2.1.2" 4230 4206 ]; 4231 4207 }) 4232 - sources."@typescript-eslint/visitor-keys-4.13.0" 4208 + sources."@typescript-eslint/visitor-keys-4.22.0" 4233 4209 sources."@ungap/promise-all-settled-1.1.2" 4234 4210 sources."Slackdown-git://github.com/half-shot/slackdown#efd8934a3d9c3bf0064c0b217c5cf6b62ee697e4" 4235 4211 sources."a-sync-waterfall-1.0.1" ··· 4242 4218 sources."ansi-colors-4.1.1" 4243 4219 sources."ansi-regex-5.0.0" 4244 4220 sources."ansi-styles-3.2.1" 4245 - sources."anymatch-3.1.1" 4221 + sources."anymatch-3.1.2" 4246 4222 sources."arg-4.1.3" 4247 4223 sources."argparse-1.0.10" 4248 4224 sources."array-flatten-1.1.1" ··· 4260 4236 sources."aws-sign2-0.7.0" 4261 4237 sources."aws4-1.11.0" 4262 4238 sources."axios-0.21.1" 4263 - sources."balanced-match-1.0.0" 4239 + sources."balanced-match-1.0.2" 4264 4240 sources."base-x-3.0.8" 4265 4241 sources."basic-auth-2.0.1" 4266 4242 sources."bcrypt-pbkdf-1.0.2" 4267 - sources."binary-extensions-2.1.0" 4243 + sources."binary-extensions-2.2.0" 4268 4244 sources."binary-search-tree-0.2.5" 4269 4245 sources."bintrees-1.0.1" 4270 4246 sources."body-parser-1.19.0" ··· 4276 4252 sources."buffer-from-1.1.1" 4277 4253 sources."buffer-writer-2.0.0" 4278 4254 sources."bytes-3.1.0" 4255 + sources."call-bind-1.0.2" 4279 4256 sources."callsites-3.1.0" 4280 - sources."camelcase-5.3.1" 4257 + sources."camelcase-6.2.0" 4281 4258 sources."caseless-0.12.0" 4282 - sources."chai-4.2.0" 4259 + sources."chai-4.3.4" 4283 4260 (sources."chalk-4.1.0" // { 4284 4261 dependencies = [ 4285 4262 sources."ansi-styles-4.3.0" ··· 4290 4267 ]; 4291 4268 }) 4292 4269 sources."check-error-1.0.2" 4293 - sources."chokidar-3.4.1" 4294 - (sources."cliui-5.0.0" // { 4295 - dependencies = [ 4296 - sources."ansi-regex-4.1.0" 4297 - sources."emoji-regex-7.0.3" 4298 - sources."is-fullwidth-code-point-2.0.0" 4299 - sources."string-width-3.1.0" 4300 - sources."strip-ansi-5.2.0" 4301 - ]; 4302 - }) 4270 + sources."chokidar-3.5.1" 4303 4271 sources."color-3.0.0" 4304 4272 sources."color-convert-1.9.3" 4305 4273 sources."color-name-1.1.3" ··· 4307 4275 sources."colors-1.3.3" 4308 4276 sources."colorspace-1.1.2" 4309 4277 sources."combined-stream-1.0.8" 4278 + sources."commander-5.1.0" 4310 4279 sources."comment-parser-0.7.6" 4311 4280 sources."concat-map-0.0.1" 4312 4281 sources."content-disposition-0.5.3" ··· 4318 4287 sources."cross-spawn-7.0.3" 4319 4288 sources."dashdash-1.14.1" 4320 4289 sources."debug-2.6.9" 4321 - sources."decamelize-1.2.0" 4290 + sources."decamelize-4.0.0" 4322 4291 sources."deep-eql-3.0.1" 4323 4292 sources."deep-is-0.1.3" 4324 4293 sources."delayed-stream-1.0.0" ··· 4336 4305 sources."escalade-3.1.1" 4337 4306 sources."escape-html-1.0.3" 4338 4307 sources."escape-string-regexp-4.0.0" 4339 - (sources."eslint-7.17.0" // { 4308 + (sources."eslint-7.24.0" // { 4340 4309 dependencies = [ 4341 4310 sources."debug-4.3.1" 4342 4311 sources."ignore-4.0.6" 4312 + sources."js-yaml-3.14.1" 4313 + sources."lodash-4.17.21" 4343 4314 sources."ms-2.1.2" 4344 4315 ]; 4345 4316 }) ··· 4349 4320 sources."ms-2.1.2" 4350 4321 ]; 4351 4322 }) 4352 - sources."eslint-plugin-prefer-arrow-1.2.2" 4323 + sources."eslint-plugin-prefer-arrow-1.2.3" 4353 4324 sources."eslint-scope-5.1.1" 4354 4325 (sources."eslint-utils-2.1.0" // { 4355 4326 dependencies = [ ··· 4363 4334 ]; 4364 4335 }) 4365 4336 sources."esprima-4.0.1" 4366 - (sources."esquery-1.3.1" // { 4337 + (sources."esquery-1.4.0" // { 4367 4338 dependencies = [ 4368 4339 sources."estraverse-5.2.0" 4369 4340 ]; ··· 4381 4352 sources."extend-3.0.2" 4382 4353 sources."extsprintf-1.3.0" 4383 4354 sources."fast-deep-equal-3.1.3" 4384 - sources."fast-glob-3.2.4" 4355 + sources."fast-glob-3.2.5" 4385 4356 sources."fast-json-stable-stringify-2.1.0" 4386 4357 sources."fast-levenshtein-2.0.6" 4387 4358 sources."fast-safe-stringify-2.0.6" 4388 - sources."fastq-1.10.0" 4389 - sources."file-entry-cache-6.0.0" 4359 + sources."fastq-1.11.0" 4360 + sources."file-entry-cache-6.0.1" 4390 4361 sources."file-stream-rotator-0.5.7" 4391 4362 sources."fill-range-7.0.1" 4392 4363 sources."finalhandler-1.1.2" ··· 4394 4365 sources."finity-0.5.4" 4395 4366 sources."flat-5.0.2" 4396 4367 sources."flat-cache-3.0.4" 4397 - sources."flatted-3.1.0" 4368 + sources."flatted-3.1.1" 4398 4369 sources."fn.name-1.1.0" 4399 4370 sources."follow-redirects-1.13.1" 4400 4371 sources."forever-agent-0.6.1" ··· 4402 4373 sources."forwarded-0.1.2" 4403 4374 sources."fresh-0.5.2" 4404 4375 sources."fs.realpath-1.0.0" 4405 - sources."fsevents-2.1.3" 4376 + sources."fsevents-2.3.2" 4377 + sources."function-bind-1.1.1" 4406 4378 sources."functional-red-black-tree-1.0.1" 4407 4379 sources."generate-function-2.3.1" 4408 4380 sources."generate-object-property-1.2.0" 4409 4381 sources."get-caller-file-2.0.5" 4410 4382 sources."get-func-name-2.0.0" 4383 + sources."get-intrinsic-1.1.1" 4411 4384 sources."getpass-0.1.7" 4412 4385 sources."glob-7.1.6" 4413 - sources."glob-parent-5.1.1" 4414 - sources."globals-12.4.0" 4415 - sources."globby-11.0.2" 4386 + sources."glob-parent-5.1.2" 4387 + (sources."globals-13.8.0" // { 4388 + dependencies = [ 4389 + sources."type-fest-0.20.2" 4390 + ]; 4391 + }) 4392 + sources."globby-11.0.3" 4416 4393 sources."growl-1.10.5" 4417 4394 sources."har-schema-2.0.0" 4418 4395 sources."har-validator-5.1.5" 4396 + sources."has-1.0.3" 4419 4397 sources."has-flag-3.0.0" 4398 + sources."has-symbols-1.0.2" 4420 4399 sources."he-1.2.0" 4421 4400 sources."http-errors-1.7.2" 4422 4401 sources."http-signature-1.2.0" ··· 4430 4409 sources."ipaddr.js-1.9.1" 4431 4410 sources."is-arrayish-0.3.2" 4432 4411 sources."is-binary-path-2.1.0" 4412 + sources."is-boolean-object-1.1.0" 4433 4413 sources."is-extglob-2.1.1" 4434 4414 sources."is-fullwidth-code-point-3.0.0" 4435 4415 sources."is-glob-4.0.1" 4436 4416 sources."is-my-ip-valid-1.0.0" 4437 4417 sources."is-my-json-valid-2.20.5" 4438 4418 sources."is-number-7.0.0" 4419 + sources."is-number-object-1.0.4" 4439 4420 sources."is-plain-obj-2.1.0" 4440 4421 sources."is-property-1.0.2" 4441 4422 sources."is-stream-1.1.0" 4423 + sources."is-string-1.0.5" 4442 4424 sources."is-typedarray-1.0.0" 4443 4425 sources."isarray-1.0.0" 4444 4426 sources."isexe-2.0.0" 4445 4427 sources."isstream-0.1.2" 4446 4428 sources."js-tokens-4.0.0" 4447 - sources."js-yaml-3.14.0" 4429 + (sources."js-yaml-4.1.0" // { 4430 + dependencies = [ 4431 + sources."argparse-2.0.1" 4432 + ]; 4433 + }) 4448 4434 sources."jsbn-0.1.1" 4449 4435 sources."jsdoctypeparser-9.0.0" 4450 4436 sources."json-schema-0.2.3" ··· 4459 4445 sources."localforage-1.7.3" 4460 4446 sources."locate-path-6.0.0" 4461 4447 sources."lodash-4.17.20" 4448 + sources."lodash.clonedeep-4.5.0" 4449 + sources."lodash.flatten-4.4.0" 4462 4450 sources."lodash.toarray-4.4.0" 4451 + sources."lodash.truncate-4.4.2" 4463 4452 sources."log-symbols-4.0.0" 4464 4453 (sources."logform-2.2.0" // { 4465 4454 dependencies = [ ··· 4470 4459 sources."loglevel-1.7.1" 4471 4460 sources."lru-cache-6.0.0" 4472 4461 sources."make-error-1.3.6" 4473 - sources."matrix-appservice-0.7.1" 4474 - (sources."matrix-appservice-bridge-2.5.0" // { 4462 + (sources."matrix-appservice-0.8.0" // { 4475 4463 dependencies = [ 4476 - sources."argparse-2.0.1" 4477 - sources."js-yaml-4.0.0" 4464 + sources."argparse-1.0.10" 4465 + sources."js-yaml-3.14.1" 4478 4466 ]; 4479 4467 }) 4480 - (sources."matrix-js-sdk-9.6.0" // { 4468 + sources."matrix-appservice-bridge-2.6.0" 4469 + (sources."matrix-js-sdk-9.11.0" // { 4481 4470 dependencies = [ 4482 - sources."qs-6.9.6" 4471 + sources."qs-6.10.1" 4483 4472 ]; 4484 4473 }) 4485 4474 sources."media-typer-0.3.0" 4486 4475 sources."merge-descriptors-1.0.1" 4487 4476 sources."merge2-1.4.1" 4488 4477 sources."methods-1.1.2" 4489 - sources."micromatch-4.0.2" 4478 + sources."micromatch-4.0.4" 4490 4479 sources."mime-1.6.0" 4491 4480 sources."mime-db-1.40.0" 4492 4481 sources."mime-types-2.1.24" 4493 4482 sources."minimatch-3.0.4" 4494 4483 sources."minimist-1.2.5" 4495 4484 sources."mkdirp-0.5.5" 4496 - (sources."mocha-8.2.1" // { 4485 + (sources."mocha-8.3.2" // { 4497 4486 dependencies = [ 4498 - sources."ansi-regex-4.1.0" 4499 - sources."chokidar-3.4.3" 4500 - sources."debug-4.2.0" 4501 - sources."emoji-regex-7.0.3" 4502 - sources."has-flag-4.0.0" 4503 - sources."is-fullwidth-code-point-2.0.0" 4504 - sources."locate-path-3.0.0" 4505 - sources."ms-2.1.2" 4506 - sources."p-limit-2.3.0" 4507 - sources."p-locate-3.0.0" 4508 - sources."path-exists-3.0.0" 4509 - sources."readdirp-3.5.0" 4510 - sources."string-width-3.1.0" 4511 - sources."strip-ansi-5.2.0" 4512 - sources."supports-color-7.2.0" 4513 - (sources."yargs-13.3.2" // { 4487 + sources."argparse-2.0.1" 4488 + (sources."debug-4.3.1" // { 4514 4489 dependencies = [ 4515 - sources."find-up-3.0.0" 4490 + sources."ms-2.1.2" 4516 4491 ]; 4517 4492 }) 4493 + sources."diff-5.0.0" 4494 + sources."has-flag-4.0.0" 4495 + sources."js-yaml-4.0.0" 4496 + sources."ms-2.1.3" 4497 + sources."supports-color-8.1.1" 4518 4498 ]; 4519 4499 }) 4520 - sources."moment-2.24.0" 4500 + sources."moment-2.29.1" 4521 4501 (sources."morgan-1.10.0" // { 4522 4502 dependencies = [ 4523 4503 sources."depd-2.0.0" 4524 4504 ]; 4525 4505 }) 4526 4506 sources."ms-2.0.0" 4527 - sources."nanoid-3.1.12" 4507 + sources."nanoid-3.1.20" 4528 4508 sources."natural-compare-1.4.0" 4529 4509 sources."nedb-1.8.0" 4530 4510 sources."negotiator-0.6.2" 4531 4511 sources."node-emoji-1.10.0" 4532 4512 sources."nopt-5.0.0" 4533 4513 sources."normalize-path-3.0.0" 4534 - (sources."nunjucks-3.2.2" // { 4535 - dependencies = [ 4536 - sources."commander-5.1.0" 4537 - ]; 4538 - }) 4514 + sources."nunjucks-3.2.3" 4539 4515 sources."oauth-sign-0.9.0" 4540 - sources."object-hash-2.0.3" 4516 + sources."object-hash-2.1.1" 4517 + sources."object-inspect-1.9.0" 4541 4518 sources."on-finished-2.3.0" 4542 4519 sources."on-headers-1.0.2" 4543 4520 sources."once-1.4.0" ··· 4554 4531 }) 4555 4532 sources."p-retry-4.2.0" 4556 4533 sources."p-timeout-3.2.0" 4557 - sources."p-try-2.2.0" 4558 4534 sources."packet-reader-1.0.0" 4559 4535 sources."parent-module-1.0.1" 4560 4536 sources."parseurl-1.3.3" ··· 4563 4539 sources."path-key-3.1.1" 4564 4540 sources."path-to-regexp-0.1.7" 4565 4541 sources."path-type-4.0.0" 4566 - sources."pathval-1.1.0" 4542 + sources."pathval-1.1.1" 4567 4543 sources."performance-now-2.1.0" 4568 4544 sources."pg-8.5.1" 4569 - sources."pg-connection-string-2.4.0" 4545 + sources."pg-connection-string-2.5.0" 4570 4546 sources."pg-int8-1.0.1" 4571 4547 sources."pg-minify-1.6.2" 4572 - sources."pg-pool-3.2.2" 4573 - sources."pg-promise-10.8.7" 4574 - sources."pg-protocol-1.4.0" 4548 + sources."pg-pool-3.3.0" 4549 + sources."pg-promise-10.10.1" 4550 + sources."pg-protocol-1.5.0" 4575 4551 sources."pg-types-2.2.0" 4576 4552 sources."pgpass-1.0.4" 4577 - sources."picomatch-2.2.2" 4553 + sources."picomatch-2.2.3" 4578 4554 sources."postgres-array-2.0.0" 4579 4555 sources."postgres-bytea-1.0.0" 4580 4556 sources."postgres-date-1.0.7" ··· 4587 4563 sources."psl-1.8.0" 4588 4564 sources."punycode-2.1.1" 4589 4565 sources."qs-6.7.0" 4566 + sources."queue-microtask-1.2.3" 4590 4567 sources."quick-lru-5.1.1" 4591 4568 sources."randombytes-2.1.0" 4592 4569 sources."randomstring-1.1.5" 4593 4570 sources."range-parser-1.2.1" 4594 4571 sources."raw-body-2.4.0" 4595 4572 sources."readable-stream-3.6.0" 4596 - sources."readdirp-3.4.0" 4573 + sources."readdirp-3.5.0" 4597 4574 sources."regenerator-runtime-0.13.7" 4598 4575 sources."regexpp-3.1.0" 4599 4576 sources."regextras-0.7.1" ··· 4606 4583 }) 4607 4584 sources."require-directory-2.1.1" 4608 4585 sources."require-from-string-2.0.2" 4609 - sources."require-main-filename-2.0.0" 4610 4586 sources."resolve-from-4.0.0" 4611 4587 sources."retry-0.12.0" 4612 4588 sources."reusify-1.0.4" 4613 4589 sources."rimraf-3.0.2" 4614 - sources."run-parallel-1.1.10" 4590 + sources."run-parallel-1.2.0" 4615 4591 sources."safe-buffer-5.1.2" 4616 4592 sources."safer-buffer-2.1.2" 4617 4593 sources."semver-7.3.4" ··· 4622 4598 }) 4623 4599 sources."serialize-javascript-5.0.1" 4624 4600 sources."serve-static-1.14.1" 4625 - sources."set-blocking-2.0.0" 4626 4601 sources."setprototypeof-1.1.1" 4627 4602 sources."shebang-command-2.0.0" 4628 4603 sources."shebang-regex-3.0.0" 4604 + sources."side-channel-1.0.4" 4629 4605 sources."simple-swizzle-0.2.2" 4630 4606 sources."slash-3.0.0" 4631 4607 (sources."slice-ansi-4.0.0" // { ··· 4655 4631 sources."strip-ansi-6.0.0" 4656 4632 sources."strip-json-comments-3.1.1" 4657 4633 sources."supports-color-5.5.0" 4658 - (sources."table-6.0.7" // { 4634 + (sources."table-6.2.0" // { 4659 4635 dependencies = [ 4660 - sources."ajv-7.0.3" 4636 + sources."ajv-8.1.0" 4661 4637 sources."json-schema-traverse-1.0.0" 4662 4638 ]; 4663 4639 }) ··· 4670 4646 sources."triple-beam-1.3.0" 4671 4647 sources."ts-node-9.1.1" 4672 4648 sources."tslib-1.14.1" 4673 - sources."tsutils-3.19.1" 4649 + sources."tsutils-3.21.0" 4674 4650 sources."tunnel-agent-0.6.0" 4675 4651 sources."tweetnacl-0.14.5" 4676 4652 sources."type-check-0.4.0" 4677 4653 sources."type-detect-4.0.8" 4678 4654 sources."type-fest-0.8.1" 4679 4655 sources."type-is-1.6.18" 4680 - sources."typescript-4.1.3" 4656 + sources."typescript-4.2.4" 4681 4657 sources."underscore-1.4.4" 4682 4658 sources."unhomoglyph-1.0.6" 4683 4659 sources."unpipe-1.0.0" ··· 4685 4661 sources."util-deprecate-1.0.2" 4686 4662 sources."utils-merge-1.0.1" 4687 4663 sources."uuid-8.3.2" 4688 - sources."v8-compile-cache-2.2.0" 4664 + sources."v8-compile-cache-2.3.0" 4689 4665 sources."vary-1.1.2" 4690 4666 sources."verror-1.10.0" 4691 4667 sources."which-2.0.2" 4692 - sources."which-module-2.0.0" 4693 4668 (sources."wide-align-1.1.3" // { 4694 4669 dependencies = [ 4695 4670 sources."ansi-regex-3.0.0" ··· 4710 4685 }) 4711 4686 ]; 4712 4687 }) 4713 - sources."winston-daily-rotate-file-4.5.0" 4714 - (sources."winston-transport-4.3.0" // { 4688 + sources."winston-daily-rotate-file-4.5.2" 4689 + (sources."winston-transport-4.4.0" // { 4715 4690 dependencies = [ 4716 - sources."readable-stream-2.3.6" 4691 + sources."readable-stream-2.3.7" 4717 4692 sources."string_decoder-1.1.1" 4718 4693 ]; 4719 4694 }) 4720 4695 sources."word-wrap-1.2.3" 4721 - sources."workerpool-6.0.2" 4722 - (sources."wrap-ansi-5.1.0" // { 4723 - dependencies = [ 4724 - sources."ansi-regex-4.1.0" 4725 - sources."emoji-regex-7.0.3" 4726 - sources."is-fullwidth-code-point-2.0.0" 4727 - sources."string-width-3.1.0" 4728 - sources."strip-ansi-5.2.0" 4729 - ]; 4730 - }) 4696 + sources."workerpool-6.1.0" 4731 4697 sources."wrappy-1.0.2" 4732 4698 sources."ws-5.2.2" 4733 4699 sources."xtend-4.0.2" 4734 - sources."y18n-4.0.1" 4735 4700 sources."yallist-4.0.0" 4736 4701 (sources."yargs-16.2.0" // { 4737 4702 dependencies = [ ··· 4744 4709 sources."yargs-parser-20.2.4" 4745 4710 ]; 4746 4711 }) 4747 - sources."yargs-parser-13.1.2" 4748 - (sources."yargs-unparser-2.0.0" // { 4749 - dependencies = [ 4750 - sources."camelcase-6.2.0" 4751 - sources."decamelize-4.0.0" 4752 - ]; 4753 - }) 4712 + sources."yargs-parser-20.2.4" 4713 + sources."yargs-unparser-2.0.0" 4754 4714 sources."yn-3.1.1" 4755 4715 sources."yocto-queue-0.1.0" 4756 4716 ];
+1 -1
pkgs/servers/nas/default.nix
··· 29 29 description = "A network transparent, client/server audio transport system"; 30 30 homepage = "http://radscan.com/nas.html"; 31 31 license = licenses.mit; 32 - maintainers = [ maintainers.gnidorah ]; 32 + maintainers = [ ]; 33 33 platforms = platforms.linux; 34 34 }; 35 35 }
+3 -3
pkgs/servers/web-apps/galene/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "galene"; 5 - version = "0.3.3"; 5 + version = "0.3.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jech"; 9 9 repo = "galene"; 10 10 rev = "galene-${version}"; 11 - sha256 = "sha256-8CgNMI7zOeDxrnmQNDM61Bgpw+N0sc7HR9c+YsQTO5I="; 11 + sha256 = "sha256-yb+gEex4WEvIAEMuSTkw25rsBTL9tlfhf9qQtISWUd0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-qOHuZGMr0CPwy/DuuWYCDSe24Y6ivg1uQJGXCuKGV/M="; 14 + vendorSha256 = "sha256-Vm7tTTQJyZZVbORl5ziy4GJ34kHh5dh0ojX/ZuTpshA="; 15 15 16 16 outputs = [ "out" "static" ]; 17 17
+2 -2
pkgs/tools/archivers/zpaq/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, perl, unzip }: 1 + { lib, stdenv, fetchFromGitHub, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zpaq"; ··· 11 11 sha256 = "0v44rlg9gvwc4ggr2lhcqll8ppal3dk7zsg5bqwcc5lg3ynk2pz4"; 12 12 }; 13 13 14 - nativeBuildInputs = [ perl /* for pod2man */ unzip ]; 14 + nativeBuildInputs = [ perl /* for pod2man */ ]; 15 15 16 16 preBuild = let 17 17 CPPFLAGS = with stdenv; ""
+1 -1
pkgs/tools/audio/mididings/default.nix
··· 32 32 description = "A MIDI router and processor based on Python, supporting ALSA and JACK MIDI"; 33 33 homepage = "http://das.nasophon.de/mididings"; 34 34 license = licenses.gpl2; 35 - maintainers = [ maintainers.gnidorah ]; 35 + maintainers = [ ]; 36 36 platforms = platforms.linux; 37 37 }; 38 38 }
+1 -1
pkgs/tools/audio/opl3bankeditor/default.nix
··· 22 22 homepage = src.meta.homepage; 23 23 license = licenses.gpl3; 24 24 platforms = platforms.linux; 25 - maintainers = with maintainers; [ gnidorah ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+1 -1
pkgs/tools/audio/video2midi/default.nix
··· 29 29 description = "Youtube synthesia video to midi conversion tool"; 30 30 homepage = src.meta.homepage; 31 31 license = licenses.gpl3; 32 - maintainers = [ maintainers.gnidorah ]; 32 + maintainers = [ ]; 33 33 platforms = platforms.linux; 34 34 }; 35 35 }
+1 -1
pkgs/tools/graphics/flam3/default.nix
··· 17 17 meta = with lib; { 18 18 description = "Cosmic recursive fractal flames"; 19 19 homepage = "https://flam3.com/"; 20 - maintainers = [ maintainers.nand0p ]; 20 + maintainers = with maintainers; [ ]; 21 21 platforms = platforms.linux; 22 22 license = licenses.gpl3Plus; 23 23 };
+1 -1
pkgs/tools/graphics/glee/default.nix
··· 26 26 meta = with lib; { 27 27 description = "GL Easy Extension Library"; 28 28 homepage = "https://sourceforge.net/p/glee/glee/"; 29 - maintainers = with maintainers; [ nand0p ]; 29 + maintainers = with maintainers; [ ]; 30 30 platforms = platforms.linux; 31 31 license = licenses.gpl3; 32 32 };
+1 -1
pkgs/tools/graphics/twilight/default.nix
··· 25 25 homepage = src.meta.homepage; 26 26 license = licenses.mit; 27 27 platforms = platforms.linux; 28 - maintainers = with maintainers; [ gnidorah ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+2 -2
pkgs/tools/misc/debian-devscripts/default.nix
··· 1 - {lib, stdenv, fetchurl, unzip, xz, dpkg 1 + {lib, stdenv, fetchurl, xz, dpkg 2 2 , libxslt, docbook_xsl, makeWrapper 3 3 , python3Packages 4 4 , perlPackages, curl, gnupg, diffutils ··· 16 16 sha256 = "0xy1nvqrnifx46g8ch69pk31by0va6hn10wpi1fkrsrgncanjjh1"; 17 17 }; 18 18 19 - nativeBuildInputs = [ makeWrapper unzip ]; 19 + nativeBuildInputs = [ makeWrapper ]; 20 20 buildInputs = [ xz dpkg libxslt python setuptools curl gnupg diffutils ] ++ 21 21 (with perlPackages; [ perl CryptSSLeay LWP TimeDate DBFile FileDesktopEntry ParseDebControl LWPProtocolHttps ]); 22 22
+1 -1
pkgs/tools/misc/ethminer/default.nix
··· 79 79 description = "Ethereum miner with OpenCL${lib.optionalString cudaSupport ", CUDA"} and stratum support"; 80 80 homepage = "https://github.com/ethereum-mining/ethminer"; 81 81 platforms = [ "x86_64-linux" ]; 82 - maintainers = with maintainers; [ nand0p atemu ]; 82 + maintainers = with maintainers; [ atemu ]; 83 83 license = licenses.gpl3Only; 84 84 broken = cudaSupport; 85 85 };
+1 -1
pkgs/tools/misc/me_cleaner/default.nix
··· 19 19 with the final purpose of reducing its ability to interact with the system. 20 20 ''; 21 21 license = licenses.gpl3; 22 - maintainers = with maintainers; [ gnidorah ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -2
pkgs/tools/misc/vorbisgain/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, libogg, libvorbis }: 1 + { lib, stdenv, fetchurl, libogg, libvorbis }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "vorbisgain-0.37"; ··· 10 10 11 11 hardeningDisable = [ "format" ]; 12 12 13 - nativeBuildInputs = [ unzip ]; 14 13 buildInputs = [ libogg libvorbis ]; 15 14 16 15 patchPhase = ''
+1 -1
pkgs/tools/misc/woeusb/default.nix
··· 54 54 description = "Create bootable USB disks from Windows ISO images"; 55 55 homepage = "https://github.com/slacka/WoeUSB"; 56 56 license = licenses.gpl3; 57 - maintainers = with maintainers; [ bjornfor gnidorah ]; 57 + maintainers = with maintainers; [ bjornfor ]; 58 58 platforms = platforms.linux; 59 59 }; 60 60 }
+1 -1
pkgs/tools/networking/httperf/default.nix
··· 29 29 meta = with lib; { 30 30 description = "The httperf HTTP load generator"; 31 31 homepage = "https://github.com/httperf/httperf"; 32 - maintainers = with maintainers; [ nand0p ]; 32 + maintainers = with maintainers; [ ]; 33 33 license = licenses.gpl2; 34 34 platforms = platforms.all; 35 35 };
+1 -1
pkgs/tools/networking/phodav/default.nix
··· 27 27 description = "WebDav server implementation and library using libsoup"; 28 28 homepage = "https://wiki.gnome.org/phodav"; 29 29 license = licenses.lgpl21; 30 - maintainers = with maintainers; [ gnidorah ]; 30 + maintainers = with maintainers; [ ]; 31 31 platforms = platforms.linux; 32 32 }; 33 33 }
+1 -1
pkgs/tools/security/hologram/default.nix
··· 20 20 meta = with lib; { 21 21 homepage = "https://github.com/AdRoll/hologram/"; 22 22 description = "Easy, painless AWS credentials on developer laptops"; 23 - maintainers = with maintainers; [ nand0p ]; 23 + maintainers = with maintainers; [ ]; 24 24 license = licenses.asl20; 25 25 }; 26 26 }
+47
pkgs/tools/system/fancy-motd/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, bc, curl, figlet, fortune, gawk, iproute2, procps }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "fancy-motd"; 5 + version = "unstable-2021-05-15"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "bcyran"; 9 + repo = pname; 10 + rev = "b25c1e7d76927d7f947a048d844dad4400de3598"; 11 + sha256 = "05jazmijk3im1wl4nprkwmrq6bxhb3ah8syyqym109blajy72841"; 12 + }; 13 + 14 + buildInputs = [ bc curl figlet fortune gawk iproute2 ]; 15 + 16 + postPatch = '' 17 + substituteInPlace motd.sh \ 18 + --replace 'BASE_DIR="$(dirname "$(readlink -f "$0")")"' "BASE_DIR=\"$out/lib\"" 19 + 20 + substituteInPlace modules/20-uptime \ 21 + --replace "uptime -p" "${procps}/bin/uptime -p" 22 + 23 + # does not work on nixos 24 + rm modules/41-updates 25 + ''; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + install -D motd.sh $out/bin/motd 31 + 32 + install -D framework.sh $out/lib/framework.sh 33 + install -D config.sh.example $out/lib/config.sh 34 + find modules -type f -exec install -D {} $out/lib/{} \; 35 + 36 + runHook postInstall 37 + ''; 38 + 39 + meta = with lib; { 40 + description = "Fancy, colorful MOTD written in bash. Server status at a glance."; 41 + homepage = "https://github.com/bcyran/fancy-motd"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ rhoriguchi ]; 44 + platforms = platforms.linux; 45 + mainProgram = "motd"; 46 + }; 47 + }
+1 -1
pkgs/tools/system/ps_mem/default.nix
··· 17 17 description = "A utility to accurately report the in core memory usage for a program"; 18 18 homepage = "https://github.com/pixelb/ps_mem"; 19 19 license = licenses.lgpl21; 20 - maintainers = [ maintainers.gnidorah ]; 20 + maintainers = [ ]; 21 21 platforms = platforms.linux; 22 22 }; 23 23 }
+1
pkgs/top-level/aliases.nix
··· 440 440 mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # added 2020-08-15 441 441 matrique = spectral; # added 2020-01-27 442 442 mbedtls_1_3 = throw "mbedtls_1_3 is end of life, see https://tls.mbed.org/kb/how-to/upgrade-2.0"; # added 2019-12-08 443 + meme = meme-image-generator; # added 2021-04-21 443 444 mess = mame; # added 2019-10-30 444 445 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23 445 446 mcomix = throw "mcomix has been removed from nixpkgs, as it's unmaintained; try mcomix3 a Python 3 fork"; # added 2019-12-10, modified 2020-11-25
+4 -4
pkgs/top-level/all-packages.nix
··· 4449 4449 4450 4450 fakechroot = callPackage ../tools/system/fakechroot { }; 4451 4451 4452 + fancy-motd = callPackage ../tools/system/fancy-motd { }; 4453 + 4452 4454 fastpbkdf2 = callPackage ../development/libraries/fastpbkdf2 { }; 4453 4455 4454 4456 fanficfare = callPackage ../tools/text/fanficfare { }; ··· 11729 11731 11730 11732 smlpkg = callPackage ../tools/package-management/smlpkg { }; 11731 11733 11732 - solc = solc_0_8; 11733 - solc_0_8 = callPackage ../development/compilers/solc { }; 11734 - solc_0_7 = callPackage ../development/compilers/solc/0.7.nix { }; 11734 + solc = callPackage ../development/compilers/solc { }; 11735 11735 11736 11736 souffle = callPackage ../development/compilers/souffle { 11737 11737 autoreconfHook = buildPackages.autoreconfHook269; ··· 24848 24848 24849 24849 melonDS = libsForQt5.callPackage ../misc/emulators/melonDS { }; 24850 24850 24851 - meme = callPackage ../applications/graphics/meme { }; 24851 + meme-image-generator = callPackage ../applications/graphics/meme-image-generator { }; 24852 24852 24853 24853 meme-suite = callPackage ../applications/science/biology/meme-suite { }; 24854 24854
-3
pkgs/top-level/dotnet-packages.nix
··· 9 9 , pkg-config 10 10 , mono 11 11 , fsharp 12 - , unzip 13 12 , overrides ? {} 14 13 }: 15 14 ··· 896 895 rev = "7871fa26914593fdb2f2500df1196df7b8aecb1c"; 897 896 sha256 = "07r63xam6icm17pf6amh1qkmna13nxa3ncdan7a3ql307i5isriz"; 898 897 }; 899 - 900 - nativeBuildInputs = [ unzip ]; 901 898 902 899 phases = [ "unpackPhase" "installPhase" ]; 903 900