Merge staging-next into staging

+3200 -2817
+4
.github/CODEOWNERS
··· 176 /pkgs/applications/editors/emacs @adisbladis 177 /pkgs/top-level/emacs-packages.nix @adisbladis 178 179 # VimPlugins 180 /pkgs/misc/vim-plugins @jonringer @softinio 181
··· 176 /pkgs/applications/editors/emacs @adisbladis 177 /pkgs/top-level/emacs-packages.nix @adisbladis 178 179 + # Neovim 180 + /pkgs/applications/editors/neovim @jonringer 181 + /pkgs/applications/editors/neovim @teto 182 + 183 # VimPlugins 184 /pkgs/misc/vim-plugins @jonringer @softinio 185
+1 -3
doc/builders/packages/kakoune.xml
··· 6 <para> 7 Kakoune can be built to autoload plugins: 8 <programlisting>(kakoune.override { 9 - configure = { 10 - plugins = with pkgs.kakounePlugins; [ parinfer-rust ]; 11 - }; 12 })</programlisting> 13 </para> 14 </section>
··· 6 <para> 7 Kakoune can be built to autoload plugins: 8 <programlisting>(kakoune.override { 9 + plugins = with pkgs.kakounePlugins; [ parinfer-rust ]; 10 })</programlisting> 11 </para> 12 </section>
+12
maintainers/maintainer-list.nix
··· 7407 githubId = 1217934; 7408 name = "José Romildo Malaquias"; 7409 }; 7410 rongcuid = { 7411 email = "rongcuid@outlook.com"; 7412 github = "rongcuid"; ··· 9891 email = "wilsonehusin@gmail.com"; 9892 github = "wilsonehusin"; 9893 githubId = 14004487; 9894 }; 9895 }
··· 7407 githubId = 1217934; 7408 name = "José Romildo Malaquias"; 7409 }; 7410 + ronanmacf = { 7411 + email = "macfhlar@tcd.ie"; 7412 + github = "ronanmacf"; 7413 + githubId = 25930627; 7414 + name = "Ronan Mac Fhlannchadha"; 7415 + }; 7416 rongcuid = { 7417 email = "rongcuid@outlook.com"; 7418 github = "rongcuid"; ··· 9897 email = "wilsonehusin@gmail.com"; 9898 github = "wilsonehusin"; 9899 githubId = 14004487; 9900 + }; 9901 + bb2020 = { 9902 + email = "bb2020@users.noreply.github.com"; 9903 + github = "bb2020"; 9904 + githubId = 19290397; 9905 + name = "Tunc Uzlu"; 9906 }; 9907 }
+1 -1
nixos/modules/services/hardware/tlp.nix
··· 39 default = ""; 40 description = '' 41 Verbatim additional configuration variables for TLP. 42 - DEPRECATED: use services.tlp.config instead. 43 ''; 44 }; 45 };
··· 39 default = ""; 40 description = '' 41 Verbatim additional configuration variables for TLP. 42 + DEPRECATED: use services.tlp.settings instead. 43 ''; 44 }; 45 };
+1 -1
nixos/modules/services/torrent/transmission.nix
··· 197 install -D -m 600 -o '${cfg.user}' -g '${cfg.group}' /dev/stdin \ 198 '${cfg.home}/${settingsDir}/settings.json' 199 '')]; 200 - ExecStart="${pkgs.transmission}/bin/transmission-daemon -f"; 201 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 202 User = cfg.user; 203 Group = cfg.group;
··· 197 install -D -m 600 -o '${cfg.user}' -g '${cfg.group}' /dev/stdin \ 198 '${cfg.home}/${settingsDir}/settings.json' 199 '')]; 200 + ExecStart="${pkgs.transmission}/bin/transmission-daemon -f -g ${cfg.home}/${settingsDir}"; 201 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 202 User = cfg.user; 203 Group = cfg.group;
+2 -4
nixos/modules/services/web-apps/nextcloud.nix
··· 549 }; 550 "/" = { 551 priority = 900; 552 - extraConfig = if major < 20 553 - then "rewrite ^ /index.php;" 554 - else "try_files $uri $uri/ /index.php$request_uri;"; 555 }; 556 "~ ^/store-apps" = { 557 priority = 201; ··· 575 "~ ^/(?:\\.|autotest|occ|issue|indie|db_|console)".extraConfig = '' 576 return 404; 577 ''; 578 - ${if major < 20 then "~ ^\\/(?:index|remote|public|cron|core\\/ajax\\/update|status|ocs\\/v[12]|updater\\/.+|oc[ms]-provider\\/.+|.+\\/richdocumentscode\\/proxy)\\.php(?:$|\\/)" else "~ \\.php(?:$|/)"} = { 579 priority = 500; 580 extraConfig = '' 581 include ${config.services.nginx.package}/conf/fastcgi.conf;
··· 549 }; 550 "/" = { 551 priority = 900; 552 + extraConfig = "rewrite ^ /index.php;"; 553 }; 554 "~ ^/store-apps" = { 555 priority = 201; ··· 573 "~ ^/(?:\\.|autotest|occ|issue|indie|db_|console)".extraConfig = '' 574 return 404; 575 ''; 576 + "~ ^\\/(?:index|remote|public|cron|core\\/ajax\\/update|status|ocs\\/v[12]|updater\\/.+|oc[ms]-provider\\/.+|.+\\/richdocumentscode\\/proxy)\\.php(?:$|\\/)" = { 577 priority = 500; 578 extraConfig = '' 579 include ${config.services.nginx.package}/conf/fastcgi.conf;
+12 -5
nixos/modules/services/web-servers/nginx/default.nix
··· 261 ssl_trusted_certificate ${vhost.sslTrustedCertificate}; 262 ''} 263 264 - ${optionalString (vhost.basicAuthFile != null || vhost.basicAuth != {}) '' 265 - auth_basic secured; 266 - auth_basic_user_file ${if vhost.basicAuthFile != null then vhost.basicAuthFile else mkHtpasswd vhostName vhost.basicAuth}; 267 - ''} 268 269 ${mkLocations vhost.locations} 270 ··· 293 ${optionalString (config.return != null) "return ${config.return};"} 294 ${config.extraConfig} 295 ${optionalString (config.proxyPass != null && cfg.recommendedProxySettings) "include ${recommendedProxyConfig};"} 296 } 297 '') (sortProperties (mapAttrsToList (k: v: v // { location = k; }) locations))); 298 - mkHtpasswd = vhostName: authDef: pkgs.writeText "${vhostName}.htpasswd" ( 299 concatStringsSep "\n" (mapAttrsToList (user: password: '' 300 ${user}:{PLAIN}${password} 301 '') authDef)
··· 261 ssl_trusted_certificate ${vhost.sslTrustedCertificate}; 262 ''} 263 264 + ${mkBasicAuth vhostName vhost} 265 266 ${mkLocations vhost.locations} 267 ··· 290 ${optionalString (config.return != null) "return ${config.return};"} 291 ${config.extraConfig} 292 ${optionalString (config.proxyPass != null && cfg.recommendedProxySettings) "include ${recommendedProxyConfig};"} 293 + ${mkBasicAuth "sublocation" config} 294 } 295 '') (sortProperties (mapAttrsToList (k: v: v // { location = k; }) locations))); 296 + 297 + mkBasicAuth = name: zone: optionalString (zone.basicAuthFile != null || zone.basicAuth != {}) (let 298 + auth_file = if zone.basicAuthFile != null 299 + then zone.basicAuthFile 300 + else mkHtpasswd name zone.basicAuth; 301 + in '' 302 + auth_basic secured; 303 + auth_basic_user_file ${auth_file}; 304 + ''); 305 + mkHtpasswd = name: authDef: pkgs.writeText "${name}.htpasswd" ( 306 concatStringsSep "\n" (mapAttrsToList (user: password: '' 307 ${user}:{PLAIN}${password} 308 '') authDef)
+28
nixos/modules/services/web-servers/nginx/location-options.nix
··· 9 10 { 11 options = { 12 proxyPass = mkOption { 13 type = types.nullOr types.str; 14 default = null;
··· 9 10 { 11 options = { 12 + basicAuth = mkOption { 13 + type = types.attrsOf types.str; 14 + default = {}; 15 + example = literalExample '' 16 + { 17 + user = "password"; 18 + }; 19 + ''; 20 + description = '' 21 + Basic Auth protection for a vhost. 22 + 23 + WARNING: This is implemented to store the password in plain text in the 24 + Nix store. 25 + ''; 26 + }; 27 + 28 + basicAuthFile = mkOption { 29 + type = types.nullOr types.path; 30 + default = null; 31 + description = '' 32 + Basic Auth password file for a vhost. 33 + Can be created via: <command>htpasswd -c &lt;filename&gt; &lt;username&gt;</command>. 34 + 35 + WARNING: The generate file contains the users' passwords in a 36 + non-cryptographically-securely hashed way. 37 + ''; 38 + }; 39 + 40 proxyPass = mkOption { 41 type = types.nullOr types.str; 42 default = null;
+5 -2
nixos/modules/services/web-servers/nginx/vhost-options.nix
··· 198 Basic Auth protection for a vhost. 199 200 WARNING: This is implemented to store the password in plain text in the 201 - nix store. 202 ''; 203 }; 204 ··· 207 default = null; 208 description = '' 209 Basic Auth password file for a vhost. 210 - Can be created via: <command>htpasswd -c &lt;filename&gt; &lt;username&gt;</command> 211 ''; 212 }; 213
··· 198 Basic Auth protection for a vhost. 199 200 WARNING: This is implemented to store the password in plain text in the 201 + Nix store. 202 ''; 203 }; 204 ··· 207 default = null; 208 description = '' 209 Basic Auth password file for a vhost. 210 + Can be created via: <command>htpasswd -c &lt;filename&gt; &lt;username&gt;</command>. 211 + 212 + WARNING: The generate file contains the users' passwords in a 213 + non-cryptographically-securely hashed way. 214 ''; 215 }; 216
+10 -1
nixos/modules/services/x11/redshift.nix
··· 82 ''; 83 }; 84 85 extraOptions = mkOption { 86 type = types.listOf types.str; 87 default = []; ··· 114 partOf = [ "graphical-session.target" ]; 115 serviceConfig = { 116 ExecStart = '' 117 - ${cfg.package}/bin/redshift \ 118 -l ${providerString} \ 119 -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ 120 -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
··· 82 ''; 83 }; 84 85 + executable = mkOption { 86 + type = types.str; 87 + default = "/bin/redshift"; 88 + example = "/bin/redshift-gtk"; 89 + description = '' 90 + Redshift executable to use within the package. 91 + ''; 92 + }; 93 + 94 extraOptions = mkOption { 95 type = types.listOf types.str; 96 default = []; ··· 123 partOf = [ "graphical-session.target" ]; 124 serviceConfig = { 125 ExecStart = '' 126 + ${cfg.package}${cfg.executable} \ 127 -l ${providerString} \ 128 -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ 129 -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
+1
nixos/tests/all-tests.nix
··· 242 nfs4 = handleTest ./nfs { version = 4; }; 243 nghttpx = handleTest ./nghttpx.nix {}; 244 nginx = handleTest ./nginx.nix {}; 245 nginx-etag = handleTest ./nginx-etag.nix {}; 246 nginx-pubhtml = handleTest ./nginx-pubhtml.nix {}; 247 nginx-sandbox = handleTestOn ["x86_64-linux"] ./nginx-sandbox.nix {};
··· 242 nfs4 = handleTest ./nfs { version = 4; }; 243 nghttpx = handleTest ./nghttpx.nix {}; 244 nginx = handleTest ./nginx.nix {}; 245 + nginx-auth = handleTest ./nginx-auth.nix {}; 246 nginx-etag = handleTest ./nginx-etag.nix {}; 247 nginx-pubhtml = handleTest ./nginx-pubhtml.nix {}; 248 nginx-sandbox = handleTestOn ["x86_64-linux"] ./nginx-sandbox.nix {};
+47
nixos/tests/nginx-auth.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "nginx-auth"; 3 + 4 + nodes = { 5 + webserver = { pkgs, lib, ... }: { 6 + services.nginx = let 7 + root = pkgs.runCommand "testdir" {} '' 8 + mkdir "$out" 9 + echo hello world > "$out/index.html" 10 + ''; 11 + in { 12 + enable = true; 13 + 14 + virtualHosts.lockedroot = { 15 + inherit root; 16 + basicAuth.alice = "jane"; 17 + }; 18 + 19 + virtualHosts.lockedsubdir = { 20 + inherit root; 21 + locations."/sublocation/" = { 22 + alias = "${root}/"; 23 + basicAuth.bob = "john"; 24 + }; 25 + }; 26 + }; 27 + }; 28 + }; 29 + 30 + testScript = '' 31 + webserver.wait_for_unit("nginx") 32 + webserver.wait_for_open_port(80) 33 + 34 + webserver.fail("curl --fail --resolve lockedroot:80:127.0.0.1 http://lockedroot") 35 + webserver.succeed( 36 + "curl --fail --resolve lockedroot:80:127.0.0.1 http://alice:jane@lockedroot" 37 + ) 38 + 39 + webserver.succeed("curl --fail --resolve lockedsubdir:80:127.0.0.1 http://lockedsubdir") 40 + webserver.fail( 41 + "curl --fail --resolve lockedsubdir:80:127.0.0.1 http://lockedsubdir/sublocation/index.html" 42 + ) 43 + webserver.succeed( 44 + "curl --fail --resolve lockedsubdir:80:127.0.0.1 http://bob:john@lockedsubdir/sublocation/index.html" 45 + ) 46 + ''; 47 + })
-1
nixos/tests/prometheus.nix
··· 19 secret_key = s3.secretKey; 20 insecure = true; 21 signature_version2 = false; 22 - encrypt_sse = false; 23 put_user_metadata = {}; 24 http_config = { 25 idle_conn_timeout = "0s";
··· 19 secret_key = s3.secretKey; 20 insecure = true; 21 signature_version2 = false; 22 put_user_metadata = {}; 23 http_config = { 24 idle_conn_timeout = "0s";
+1 -1
pkgs/applications/audio/bchoppr/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 - rev = "${version}"; 11 sha256 = "1nd6byy75f0rbz9dm9drhxmpsfhxhg0y7q3v2m3098llynhy9k2j"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 + rev = version; 11 sha256 = "1nd6byy75f0rbz9dm9drhxmpsfhxhg0y7q3v2m3098llynhy9k2j"; 12 }; 13
+1 -1
pkgs/applications/audio/bsequencer/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 - rev = "${version}"; 11 sha256 = "0hagnn104ybzdp13r95idw20fhmzif8p3kmiypnr20m6c64rdd29"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 + rev = version; 11 sha256 = "0hagnn104ybzdp13r95idw20fhmzif8p3kmiypnr20m6c64rdd29"; 12 }; 13
+1 -1
pkgs/applications/audio/bslizr/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 - rev = "${version}"; 11 sha256 = "1f7xrljvsy7a1p8c7wln2zhwarl3ara7gbjxkpyh47wfdpigpdb0"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = pname; 10 + rev = version; 11 sha256 = "1f7xrljvsy7a1p8c7wln2zhwarl3ara7gbjxkpyh47wfdpigpdb0"; 12 }; 13
+2 -2
pkgs/applications/audio/drumkv1/default.nix
··· 2 3 mkDerivation rec { 4 pname = "drumkv1"; 5 - version = "0.9.16"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/drumkv1/${pname}-${version}.tar.gz"; 9 - sha256 = "1r55575w9r0ifysw9mgxjvv0fszvx8ykjgim3zczf3mb5s9ngavv"; 10 }; 11 12 buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
··· 2 3 mkDerivation rec { 4 pname = "drumkv1"; 5 + version = "0.9.18"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/drumkv1/${pname}-${version}.tar.gz"; 9 + sha256 = "1bzkaz7sqx1pvirja8zm7i2ckzl5ad6xspr4840389ik3l8qpnr5"; 10 }; 11 12 buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
+2 -2
pkgs/applications/audio/geonkick/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "geonkick"; 6 - version = "2.4.0"; 7 8 src = fetchFromGitLab { 9 owner = "iurie-sw"; 10 repo = pname; 11 rev = "v${version}"; 12 - sha256 = "1ibsfyzkvzijv929p91db56gaxm582b7nikbn10wbbjvv4f46mmj"; 13 }; 14 15 nativeBuildInputs = [ cmake pkg-config ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "geonkick"; 6 + version = "2.5.0"; 7 8 src = fetchFromGitLab { 9 owner = "iurie-sw"; 10 repo = pname; 11 rev = "v${version}"; 12 + sha256 = "19zbz4v2n5ph4af721xls7ignmis2q2yqyd0m97g9b3njrgnfy3n"; 13 }; 14 15 nativeBuildInputs = [ cmake pkg-config ];
+2 -2
pkgs/applications/audio/jamulus/default.nix
··· 3 4 mkDerivation rec { 5 pname = "jamulus"; 6 - version = "3.5.10"; 7 src = fetchFromGitHub { 8 owner = "corrados"; 9 repo = "jamulus"; 10 rev = "r${stdenv.lib.replaceStrings [ "." ] [ "_" ] version}"; 11 - sha256 = "0bw2v40csjmlkvkhr3dh0g1a7mfqrs1xkqjsii61yfzy2ckbsi82"; 12 }; 13 14 nativeBuildInputs = [ pkg-config qmake ];
··· 3 4 mkDerivation rec { 5 pname = "jamulus"; 6 + version = "3.6.0"; 7 src = fetchFromGitHub { 8 owner = "corrados"; 9 repo = "jamulus"; 10 rev = "r${stdenv.lib.replaceStrings [ "." ] [ "_" ] version}"; 11 + sha256 = "06x9b2kjsgk8kddhif0x59nwzhnwjmq40x3w5nrphqaimqlrhlcf"; 12 }; 13 14 nativeBuildInputs = [ pkg-config qmake ];
+7 -6
pkgs/applications/audio/musescore/default.nix
··· 1 - { stdenv, mkDerivation, lib, fetchzip, cmake, pkgconfig 2 , alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis 3 , portaudio, portmidi, qtbase, qtdeclarative, qtgraphicaleffects 4 , qtquickcontrols2, qtscript, qtsvg, qttools ··· 7 8 mkDerivation rec { 9 pname = "musescore"; 10 - version = "3.5.0"; 11 12 - src = fetchzip { 13 - url = "https://github.com/musescore/MuseScore/releases/download/v3.5/MuseScore-${version}.zip"; 14 - sha256 = "0m598xh0s4f5m4l2ymy7g44bbvc14bcfi4gifhjnrg091rsk57c9"; 15 - stripRoot = false; 16 }; 17 18 patches = [
··· 1 + { stdenv, mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig 2 , alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis 3 , portaudio, portmidi, qtbase, qtdeclarative, qtgraphicaleffects 4 , qtquickcontrols2, qtscript, qtsvg, qttools ··· 7 8 mkDerivation rec { 9 pname = "musescore"; 10 + version = "3.5.2"; 11 12 + src = fetchFromGitHub { 13 + owner = "musescore"; 14 + repo = "MuseScore"; 15 + rev = "v${version}"; 16 + sha256 = "VA0+npLUUXQJHalD01pmFTTum2Re7FiiyAwU1XvR93s="; 17 }; 18 19 patches = [
+2 -2
pkgs/applications/blockchains/exodus/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "exodus"; 7 - version = "20.8.28"; 8 9 src = fetchurl { 10 url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip"; 11 - sha256 = "fde9165f71f0d641f6892ddce3ec26d200e8095a383f2b4c8f924de4041d65ef"; 12 }; 13 14 sourceRoot = ".";
··· 4 5 stdenv.mkDerivation rec { 6 pname = "exodus"; 7 + version = "20.10.23"; 8 9 src = fetchurl { 10 url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip"; 11 + sha256 = "083hcxljqg36ilpy6xa4j455ngpc775qgam0dbj26kg7sh33dz2c"; 12 }; 13 14 sourceRoot = ".";
+9
pkgs/applications/editors/kakoune/default.nix
··· 30 $out/bin/kak -ui json -E "kill 0" 31 ''; 32 33 meta = { 34 homepage = "http://kakoune.org/"; 35 description = "A vim inspired text editor";
··· 30 $out/bin/kak -ui json -E "kill 0" 31 ''; 32 33 + postInstall = '' 34 + # make share/kak/autoload a directory, so we can use symlinkJoin with plugins 35 + cd "$out/share/kak" 36 + autoload_target=$(readlink autoload) 37 + rm autoload 38 + mkdir autoload 39 + ln -s --relative "$autoload_target" autoload 40 + ''; 41 + 42 meta = { 43 homepage = "http://kakoune.org/"; 44 description = "A vim inspired text editor";
+2 -2
pkgs/applications/editors/kakoune/plugins/default.nix
··· 1 - { pkgs, parinfer-rust }: 2 3 { 4 - inherit parinfer-rust; 5 6 case-kak = pkgs.callPackage ./case.kak.nix { }; 7 kak-ansi = pkgs.callPackage ./kak-ansi.nix { };
··· 1 + { pkgs, parinfer-rust, rep }: 2 3 { 4 + inherit parinfer-rust rep; 5 6 case-kak = pkgs.callPackage ./case.kak.nix { }; 7 kak-ansi = pkgs.callPackage ./kak-ansi.nix { };
+24 -37
pkgs/applications/editors/kakoune/wrapper.nix
··· 1 - { stdenv, bash }: 2 - with stdenv.lib; 3 - 4 - kakoune: 5 6 let 7 - getPlugins = { plugins ? [] }: plugins; 8 9 - wrapper = { configure ? {} }: 10 - stdenv.mkDerivation rec { 11 - pname = "kakoune"; 12 - version = getVersion kakoune; 13 14 - src = ./.; 15 - buildCommand = '' 16 - mkdir -p $out/share/kak 17 - for plugin in ${strings.escapeShellArgs (getPlugins configure)}; do 18 - if [[ -d $plugin/share/kak/autoload ]]; then 19 - find "$plugin/share/kak/autoload" -type f -name '*.kak'| while read rcfile; do 20 - printf 'source "%s"\n' "$rcfile" 21 - done 22 - fi 23 - done >>$out/share/kak/plugins.kak 24 25 - mkdir -p $out/bin 26 - substitute ${src}/wrapper.sh $out/bin/kak \ 27 - --subst-var-by bash "${bash}" \ 28 - --subst-var-by kakoune "${kakoune}" \ 29 - --subst-var-by out "$out" 30 - chmod +x $out/bin/kak 31 ''; 32 33 - preferLocalBuild = true; 34 - buildInputs = [ bash kakoune ]; 35 - passthru = { unwrapped = kakoune; }; 36 - 37 - meta = kakoune.meta // { 38 - # prefer wrapper over the package 39 - priority = (kakoune.meta.priority or 0) - 1; 40 - hydraPlatforms = []; 41 - }; 42 - }; 43 - in 44 - makeOverridable wrapper
··· 1 + { symlinkJoin, makeWrapper, kakoune, plugins ? [], configure ? {} }: 2 3 let 4 + # "plugins" is the preferred way, but some configurations may be 5 + # using "configure.plugins", so accept both 6 + requestedPlugins = plugins ++ (configure.plugins or []); 7 8 + in 9 + symlinkJoin { 10 + name = "kakoune-${kakoune.version}"; 11 + 12 + buildInputs = [ makeWrapper ]; 13 + 14 + paths = [ kakoune ] ++ requestedPlugins; 15 16 + postBuild = '' 17 + # location of kak binary is used to find ../share/kak/autoload, 18 + # unless explicitly overriden with KAKOUNE_RUNTIME 19 + rm "$out/bin/kak" 20 + makeWrapper "${kakoune}/bin/kak" "$out/bin/kak" --set KAKOUNE_RUNTIME "$out/share/kak" 21 22 + # currently kakoune ignores doc files if they are symlinks, so workaround by 23 + # copying doc files over, so they become regular files... 24 + mkdir "$out/DELETE_ME" 25 + mv "$out/share/kak/doc" "$out/DELETE_ME" 26 + cp -r --dereference "$out/DELETE_ME/doc" "$out/share/kak" 27 + rm -Rf "$out/DELETE_ME" 28 ''; 29 30 + meta = kakoune.meta // { priority = (kakoune.meta.priority or 0) - 1; }; 31 + }
-30
pkgs/applications/editors/kakoune/wrapper.sh
··· 1 - #!@bash@/bin/bash 2 - 3 - # We use the -E option to load plugins. This only makes sense when we are 4 - # starting a new session, so we detect that. Also, Kakoune can only handle 5 - # one -E option, so we prepend loading plugins to an existing one. 6 - args=( "$@" ) 7 - loadPlugins=true 8 - EValueOffset=-1 9 - pluginScript='@out@/share/kak/plugins.kak' 10 - 11 - for (( i = 0; i < ${#args[@]}; i++ )); do 12 - case "${args[i]}" in 13 - -n|-c|-l|-p|-clear|-version) loadPlugins=false;; 14 - -E) EValueOffset=$(( i + 1 ));; 15 - --) break;; 16 - esac 17 - case "${args[i]}" in 18 - -E|-c|-e|-s|-p|-f|-i|-ui|-debug) i=$(( i + 1 ));; 19 - esac 20 - done 21 - 22 - if [[ $loadPlugins = true ]]; then 23 - if (( EValueOffset >= 0 )); then 24 - args[EValueOffset]="source '$pluginScript'"$'\n'"${args[EValueOffset]}" 25 - else 26 - args=( "-E" "source '$pluginScript'" "${args[@]}" ) 27 - fi 28 - fi 29 - 30 - exec @kakoune@/bin/kak "${args[@]}"
···
+1 -1
pkgs/applications/editors/marker/default.nix
··· 18 src = fetchFromGitHub { 19 owner = "fabiocolacio"; 20 repo = "Marker"; 21 - rev = "${version}"; 22 fetchSubmodules = true; 23 sha256 = "1iy7izyprf050bix8am1krqivgyxnhx3jm775v8f80cgbqxy7m5r"; 24 };
··· 18 src = fetchFromGitHub { 19 owner = "fabiocolacio"; 20 repo = "Marker"; 21 + rev = version; 22 fetchSubmodules = true; 23 sha256 = "1iy7izyprf050bix8am1krqivgyxnhx3jm775v8f80cgbqxy7m5r"; 24 };
+10 -9
pkgs/applications/editors/neovim/utils.nix
··· 24 withPython2 ? false 25 /* the function you would have passed to python.withPackages */ 26 , extraPython2Packages ? (_: [ ]) 27 - , withPython3 ? true 28 /* the function you would have passed to python3.withPackages */ 29 , extraPython3Packages ? (_: [ ]) 30 , withNodeJs ? false ··· 35 36 # for forward compability, when adding new environments, haskell etc. 37 , ... 38 - }: 39 let 40 rubyEnv = bundlerEnv { 41 name = "neovim-ruby-env"; ··· 44 ln -sf ${ruby}/bin/* $out/bin 45 ''; 46 }; 47 - 48 49 requiredPlugins = vimUtils.requiredPlugins configure; 50 getDeps = attrname: map (plugin: plugin.${attrname} or (_: [ ])); ··· 100 manifestRc = vimUtils.vimrcContent (configure // { customRC = ""; }); 101 neovimRcContent = vimUtils.vimrcContent configure; 102 in 103 - { 104 wrapperArgs = makeWrapperArgs; 105 inherit neovimRcContent; 106 inherit manifestRc; 107 - inherit rubyEnv; 108 inherit python2Env; 109 inherit python3Env; 110 }; 111 112 genProviderSettings = prog: withProg: ··· 141 extraPythonPackages = compatFun extraPythonPackages; 142 inherit withPython3; 143 extraPython3Packages = compatFun extraPython3Packages; 144 - inherit withNodeJs withRuby; 145 - 146 inherit configure; 147 }; 148 in 149 wrapNeovimUnstable neovim (res // { 150 wrapperArgs = lib.escapeShellArgs ( 151 - res.wrapperArgs ++ [ "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}" ]) 152 - + " " + extraMakeWrapperArgs 153 ; 154 }); 155 in
··· 24 withPython2 ? false 25 /* the function you would have passed to python.withPackages */ 26 , extraPython2Packages ? (_: [ ]) 27 + , withPython3 ? true 28 /* the function you would have passed to python3.withPackages */ 29 , extraPython3Packages ? (_: [ ]) 30 , withNodeJs ? false ··· 35 36 # for forward compability, when adding new environments, haskell etc. 37 , ... 38 + }@args: 39 let 40 rubyEnv = bundlerEnv { 41 name = "neovim-ruby-env"; ··· 44 ln -sf ${ruby}/bin/* $out/bin 45 ''; 46 }; 47 48 requiredPlugins = vimUtils.requiredPlugins configure; 49 getDeps = attrname: map (plugin: plugin.${attrname} or (_: [ ])); ··· 99 manifestRc = vimUtils.vimrcContent (configure // { customRC = ""; }); 100 neovimRcContent = vimUtils.vimrcContent configure; 101 in 102 + args // { 103 wrapperArgs = makeWrapperArgs; 104 inherit neovimRcContent; 105 inherit manifestRc; 106 inherit python2Env; 107 inherit python3Env; 108 + inherit withNodeJs; 109 + } // lib.optionalAttrs withRuby { 110 + inherit rubyEnv; 111 }; 112 113 genProviderSettings = prog: withProg: ··· 142 extraPythonPackages = compatFun extraPythonPackages; 143 inherit withPython3; 144 extraPython3Packages = compatFun extraPython3Packages; 145 + inherit withNodeJs withRuby viAlias vimAlias; 146 inherit configure; 147 }; 148 in 149 wrapNeovimUnstable neovim (res // { 150 wrapperArgs = lib.escapeShellArgs ( 151 + res.wrapperArgs ++ lib.optionals (configure != {}) [ 152 + "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}" 153 + ]) + " " + extraMakeWrapperArgs 154 ; 155 }); 156 in
+3 -3
pkgs/applications/editors/neovim/wrapper.nix
··· 18 , manifestRc ? null 19 , withPython2 ? true, python2Env ? null 20 , withPython3 ? true, python3Env ? null 21 - , withNodeJs? false 22 - , withRuby ? true, rubyEnv ? null 23 , vimAlias ? false 24 , viAlias ? false 25 , ... ··· 52 + optionalString withPython3 '' 53 makeWrapper ${python3Env}/bin/python3 $out/bin/nvim-python3 --unset PYTHONPATH 54 '' 55 - + optionalString withRuby '' 56 ln -s ${rubyEnv}/bin/neovim-ruby-host $out/bin/nvim-ruby 57 '' 58 + optionalString withNodeJs ''
··· 18 , manifestRc ? null 19 , withPython2 ? true, python2Env ? null 20 , withPython3 ? true, python3Env ? null 21 + , withNodeJs ? false 22 + , rubyEnv ? null 23 , vimAlias ? false 24 , viAlias ? false 25 , ... ··· 52 + optionalString withPython3 '' 53 makeWrapper ${python3Env}/bin/python3 $out/bin/nvim-python3 --unset PYTHONPATH 54 '' 55 + + optionalString (rubyEnv != null) '' 56 ln -s ${rubyEnv}/bin/neovim-ruby-host $out/bin/nvim-ruby 57 '' 58 + optionalString withNodeJs ''
+2 -2
pkgs/applications/graphics/ImageMagick/7.0.nix
··· 14 else throw "ImageMagick is not supported on this platform."; 15 16 cfg = { 17 - version = "7.0.10-27"; 18 - sha256 = "1fqwbg2ws6ix3bymx7ncb4k4f6bg8q44n9xnlvngjapflnrmhcph"; 19 patches = []; 20 }; 21 in
··· 14 else throw "ImageMagick is not supported on this platform."; 15 16 cfg = { 17 + version = "7.0.10-35"; 18 + sha256 = "0hcqvn3n3ip2fia48d1nb1m4r5ir00vbaa62xqni30kglh3n2sfh"; 19 patches = []; 20 }; 21 in
+5 -2
pkgs/applications/graphics/digikam/default.nix
··· 118 "-DENABLE_QWEBENGINE=on" 119 ]; 120 121 preFixup = '' 122 - gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ gnumake hugin enblend-enfuse ]}) 123 - gappsWrapperArgs+=(--suffix DK_PLUGIN_PATH : ${placeholder "out"}/${qtbase.qtPluginPrefix}/${pname}) 124 substituteInPlace $out/bin/digitaglinktree \ 125 --replace "/usr/bin/perl" "${perl}/bin/perl" \ 126 --replace "/usr/bin/sqlite3" "${sqlite}/bin/sqlite3"
··· 118 "-DENABLE_QWEBENGINE=on" 119 ]; 120 121 + dontWrapGApps = true; 122 + 123 preFixup = '' 124 + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") 125 + qtWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ gnumake hugin enblend-enfuse ]}) 126 + qtWrapperArgs+=(--suffix DK_PLUGIN_PATH : ${placeholder "out"}/${qtbase.qtPluginPrefix}/${pname}) 127 substituteInPlace $out/bin/digitaglinktree \ 128 --replace "/usr/bin/perl" "${perl}/bin/perl" \ 129 --replace "/usr/bin/sqlite3" "${sqlite}/bin/sqlite3"
+1 -1
pkgs/applications/graphics/drawpile/default.nix
··· 74 src = fetchFromGitHub { 75 owner = "drawpile"; 76 repo = "drawpile"; 77 - rev = "${version}"; 78 sha256 = "sha256-AFFY+FcY9ExAur13OoWR9285RZtBe6jnRIrwi5raiCM="; 79 }; 80
··· 74 src = fetchFromGitHub { 75 owner = "drawpile"; 76 repo = "drawpile"; 77 + rev = version; 78 sha256 = "sha256-AFFY+FcY9ExAur13OoWR9285RZtBe6jnRIrwi5raiCM="; 79 }; 80
+2 -2
pkgs/applications/graphics/mandelbulber/default.nix
··· 19 20 mkDerivation rec { 21 pname = "mandelbulber"; 22 - version = "2.22"; 23 24 src = fetchFromGitHub { 25 owner = "buddhi1980"; 26 repo = "mandelbulber2"; 27 rev = version; 28 - sha256 = "011y2nl0jakf29cxprjmj1ifqc9iva61q5f4kk47b03gq7jw8sl4"; 29 }; 30 31 nativeBuildInputs = [
··· 19 20 mkDerivation rec { 21 pname = "mandelbulber"; 22 + version = "2.23"; 23 24 src = fetchFromGitHub { 25 owner = "buddhi1980"; 26 repo = "mandelbulber2"; 27 rev = version; 28 + sha256 = "08izphj7jyk3wsq3qbzaf2fplys80vr39wliqc1i4c5cr90nrq1l"; 29 }; 30 31 nativeBuildInputs = [
-4
pkgs/applications/kde/default.nix
··· 27 28 { 29 lib, libsForQt5, fetchurl, 30 - okteta 31 }: 32 33 let ··· 210 rocs = callPackage ./rocs.nix {}; 211 spectacle = callPackage ./spectacle.nix {}; 212 yakuake = callPackage ./yakuake.nix {}; 213 - # Okteta was removed from kde applications and will now be released independently 214 - # Lets keep an alias for compatibility reasons 215 - inherit okteta; 216 }; 217 218 in lib.makeScope libsForQt5.newScope packages
··· 27 28 { 29 lib, libsForQt5, fetchurl, 30 }: 31 32 let ··· 209 rocs = callPackage ./rocs.nix {}; 210 spectacle = callPackage ./spectacle.nix {}; 211 yakuake = callPackage ./yakuake.nix {}; 212 }; 213 214 in lib.makeScope libsForQt5.newScope packages
+10 -2
pkgs/applications/kde/kdenlive.nix
··· 25 , frei0r 26 , phonon-backend-gstreamer 27 , qtdeclarative 28 , qtquickcontrols2 29 , qtscript 30 - , qtwebkit 31 , rttr 32 , kpurpose 33 , kdeclarative ··· 60 mlt 61 phonon-backend-gstreamer 62 qtdeclarative 63 qtquickcontrols2 64 qtscript 65 - qtwebkit 66 shared-mime-info 67 libv4l 68 ffmpeg-full ··· 84 sed -i CMakeLists.txt -e '/find_package(Qt5 REQUIRED/ s|)| Concurrent)|' 85 substituteAllInPlace src/kdenlivesettings.kcfg 86 ''; 87 # Frei0r path needs to be set too or Kdenlive will complain. See: 88 # https://github.com/NixOS/nixpkgs/issues/83885 89 # https://github.com/NixOS/nixpkgs/issues/29614#issuecomment-488849325 90 qtWrapperArgs = [ 91 "--set FREI0R_PATH ${frei0r}/lib/frei0r-1" 92 ]; 93 meta = { 94 license = with lib.licenses; [ gpl2Plus ]; 95 };
··· 25 , frei0r 26 , phonon-backend-gstreamer 27 , qtdeclarative 28 + , qtmultimedia 29 , qtquickcontrols2 30 , qtscript 31 , rttr 32 , kpurpose 33 , kdeclarative ··· 60 mlt 61 phonon-backend-gstreamer 62 qtdeclarative 63 + qtmultimedia 64 qtquickcontrols2 65 qtscript 66 shared-mime-info 67 libv4l 68 ffmpeg-full ··· 84 sed -i CMakeLists.txt -e '/find_package(Qt5 REQUIRED/ s|)| Concurrent)|' 85 substituteAllInPlace src/kdenlivesettings.kcfg 86 ''; 87 + 88 + dontWrapGApps = true; 89 + 90 # Frei0r path needs to be set too or Kdenlive will complain. See: 91 # https://github.com/NixOS/nixpkgs/issues/83885 92 # https://github.com/NixOS/nixpkgs/issues/29614#issuecomment-488849325 93 qtWrapperArgs = [ 94 "--set FREI0R_PATH ${frei0r}/lib/frei0r-1" 95 ]; 96 + 97 + preFixup = '' 98 + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") 99 + ''; 100 + 101 meta = { 102 license = with lib.licenses; [ gpl2Plus ]; 103 };
+46
pkgs/applications/misc/OSCAR/default.nix
···
··· 1 + { stdenv, mkDerivation, fetchFromGitLab, qmake, qtbase, qttools, qtserialport, libGLU }: 2 + mkDerivation rec { 3 + pname = "OSCAR"; 4 + version = "1.2.0"; 5 + 6 + src = fetchFromGitLab { 7 + owner = "pholy"; 8 + repo = "OSCAR-code"; 9 + rev = "v${version}"; 10 + sha256 = "10r37d8c2avr167n2s9lhld1c9hmckm444fq163z1jsy9jpid6mg"; 11 + }; 12 + 13 + buildInputs = [ qtbase qttools qtserialport libGLU ]; 14 + nativeBuildInputs = [ qmake ]; 15 + postPatch = '' 16 + substituteInPlace oscar/oscar.pro --replace "/bin/bash" "${stdenv.shell}" 17 + ''; 18 + 19 + qmakeFlags = [ "OSCAR_QT.pro" ]; 20 + 21 + installPhase = '' 22 + install -d $out/bin 23 + install -d $out/share/OSCAR/Help 24 + install -d $out/share/OSCAR/Html 25 + install -d $out/share/OSCAR/Translations 26 + install -d $out/share/icons/OSCAR 27 + install -d $out/share/applications 28 + install -T oscar/OSCAR $out/bin/OSCAR 29 + # help browser was removed 'temporarily' in https://gitlab.com/pholy/OSCAR-code/-/commit/57c3e4c33ccdd2d0eddedbc24c0e4f2969da3841 30 + # install oscar/Help/* $out/share/OSCAR/Help 31 + install oscar/Html/* $out/share/OSCAR/Html 32 + install oscar/Translations/* $out/share/OSCAR/Translations 33 + install -T Building/Linux/OSCAR.png $out/share/icons/OSCAR/OSCAR.png 34 + install -T Building/Linux/OSCAR.desktop $out/share/applications/OSCAR.desktop 35 + ''; 36 + 37 + meta = with stdenv.lib; { 38 + homepage = "https://www.sleepfiles.com/OSCAR/"; 39 + description = "Software for reviewing and exploring data produced by CPAP and related machines used in the treatment of sleep apnea"; 40 + license = licenses.gpl3; 41 + maintainers = [ maintainers.roconnor ]; 42 + # Someone needs to create a suitable installPhase for Darwin and Windows. 43 + # See https://gitlab.com/pholy/OSCAR-code/-/tree/master/Building. 44 + broken = !stdenv.hostPlatform.isLinux; 45 + }; 46 + }
+1 -1
pkgs/applications/misc/ausweisapp2/default.nix
··· 8 src = fetchFromGitHub { 9 owner = "Governikus"; 10 repo = "AusweisApp2"; 11 - rev = "${version}"; 12 sha256 = "1vibk3wmn54qr2mwz537hrr959y0r1zabp0gsijhzj2mk68g9pnb"; 13 }; 14
··· 8 src = fetchFromGitHub { 9 owner = "Governikus"; 10 repo = "AusweisApp2"; 11 + rev = version; 12 sha256 = "1vibk3wmn54qr2mwz537hrr959y0r1zabp0gsijhzj2mk68g9pnb"; 13 }; 14
+1 -1
pkgs/applications/misc/batsignal/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "electrickite"; 9 repo = "batsignal"; 10 - rev = "${version}"; 11 sha256 = "12hj0j18db34x0xzgj6xmhvxm966d05z0rl3d9rlrcd2q96lilwf"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "electrickite"; 9 repo = "batsignal"; 10 + rev = version; 11 sha256 = "12hj0j18db34x0xzgj6xmhvxm966d05z0rl3d9rlrcd2q96lilwf"; 12 }; 13
+2 -2
pkgs/applications/misc/chewing-editor/default.nix
··· 7 8 src = fetchFromGitHub { 9 owner = "chewing"; 10 - repo = "${pname}"; 11 - rev = "${version}"; 12 sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w"; 13 }; 14
··· 7 8 src = fetchFromGitHub { 9 owner = "chewing"; 10 + repo = pname; 11 + rev = version; 12 sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w"; 13 }; 14
+1 -1
pkgs/applications/misc/dupeguru/default.nix
··· 9 src = fetchFromGitHub { 10 owner = "arsenetar"; 11 repo = "dupeguru"; 12 - rev = "${version}"; 13 sha256 = "0ma4f1c6vmpz8gi4sdy43x1ik7wh42wayvk1iq520d3i714kfcpy"; 14 fetchSubmodules = true; 15 };
··· 9 src = fetchFromGitHub { 10 owner = "arsenetar"; 11 repo = "dupeguru"; 12 + rev = version; 13 sha256 = "0ma4f1c6vmpz8gi4sdy43x1ik7wh42wayvk1iq520d3i714kfcpy"; 14 fetchSubmodules = true; 15 };
+2 -2
pkgs/applications/misc/effitask/default.nix
··· 13 14 src = fetchFromGitHub { 15 owner = "sanpii"; 16 - repo = "${pname}"; 17 - rev = "${version}"; 18 sha256 = "09bffxdp43s8b1rpmsgqr2kyz3i4jbd2yrwbxw21fj3sf3mwb9ig"; 19 }; 20
··· 13 14 src = fetchFromGitHub { 15 owner = "sanpii"; 16 + repo = pname; 17 + rev = version; 18 sha256 = "09bffxdp43s8b1rpmsgqr2kyz3i4jbd2yrwbxw21fj3sf3mwb9ig"; 19 }; 20
+2 -2
pkgs/applications/misc/fetchmail/default.nix
··· 1 { stdenv, fetchurl, openssl }: 2 3 let 4 - version = "6.4.12"; 5 in 6 stdenv.mkDerivation { 7 pname = "fetchmail"; ··· 9 10 src = fetchurl { 11 url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz"; 12 - sha256 = "11s83af63gs9nnrjb66yq58xriyvi8hzj4ykxp3kws5z3nby111b"; 13 }; 14 15 buildInputs = [ openssl ];
··· 1 { stdenv, fetchurl, openssl }: 2 3 let 4 + version = "6.4.13"; 5 in 6 stdenv.mkDerivation { 7 pname = "fetchmail"; ··· 9 10 src = fetchurl { 11 url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz"; 12 + sha256 = "1qablzgwx3a516vdhckx3pv716x9r7nyfyr6fbncif861c3cya3x"; 13 }; 14 15 buildInputs = [ openssl ];
+1 -1
pkgs/applications/misc/fuzzel/default.nix
··· 6 7 src = fetchgit { 8 url = "https://codeberg.org/dnkl/fuzzel"; 9 - rev = "${version}"; 10 sha256 = "0c0p9spklzmy9f7abz3mvw0vp6zgnk3ns1i6ks95ljjb3kqy9vs2"; 11 }; 12
··· 6 7 src = fetchgit { 8 url = "https://codeberg.org/dnkl/fuzzel"; 9 + rev = version; 10 sha256 = "0c0p9spklzmy9f7abz3mvw0vp6zgnk3ns1i6ks95ljjb3kqy9vs2"; 11 }; 12
+2 -2
pkgs/applications/misc/gphoto2/default.nix
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 - name = "gphoto2-2.5.23"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/gphoto/${name}.tar.bz2"; 10 - sha256 = "1laqwhxr0xhbykmp0dhd3j4rr2lhj5y228s31afnqxp700hhk1yz"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig gettext libtool ];
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 + name = "gphoto2-2.5.26"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/gphoto/${name}.tar.bz2"; 10 + sha256 = "0bxbcn31xalsvjp8fra324hf2105y3ps7zlyfz11v71j0lxj2lvn"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig gettext libtool ];
+2 -2
pkgs/applications/misc/hr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "hr"; 5 - version = "1.2"; 6 7 src = fetchFromGitHub { 8 owner = "LuRsT"; 9 repo = "hr"; 10 rev = version; 11 - sha256 = "162vkip2772jl59lschpinimpg4ssiyg7fq0va5cx4d7wldpqmks"; 12 }; 13 14 dontBuild = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "hr"; 5 + version = "1.3"; 6 7 src = fetchFromGitHub { 8 owner = "LuRsT"; 9 repo = "hr"; 10 rev = version; 11 + sha256 = "068kq37lbqfjzh28rlvkprni38ii991naawylwvq6d43y9dpzs2b"; 12 }; 13 14 dontBuild = true;
+1 -1
pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix
··· 8 src = fetchFromGitHub { 9 owner = "pfn"; 10 repo = "keepasshttp"; 11 - #rev = "${version}"; 12 # for 1.8.4.2 the tag is at the wrong commit (they fixed stuff 13 # afterwards and didn't move the tag), hence reference by commitid 14 rev = "c2c4eb5388a02169400cba7a67be325caabdcc37";
··· 8 src = fetchFromGitHub { 9 owner = "pfn"; 10 repo = "keepasshttp"; 11 + # rev = version; 12 # for 1.8.4.2 the tag is at the wrong commit (they fixed stuff 13 # afterwards and didn't move the tag), hence reference by commitid 14 rev = "c2c4eb5388a02169400cba7a67be325caabdcc37";
+2 -2
pkgs/applications/misc/keepass/default.nix
··· 3 4 with builtins; buildDotnetPackage rec { 5 baseName = "keepass"; 6 - version = "2.45"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/keepass/KeePass-${version}-Source.zip"; 10 - sha256 = "07wyp3k2kiprr47mc4vxb7vmh7g5kshcqw0gq3qr87gi78c9i66m"; 11 }; 12 13 sourceRoot = ".";
··· 3 4 with builtins; buildDotnetPackage rec { 5 baseName = "keepass"; 6 + version = "2.46"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/keepass/KeePass-${version}-Source.zip"; 10 + sha256 = "0zyclydgyg8nhwxrzw7x4f82975cqdmp12py33k6sballx6jhgiy"; 11 }; 12 13 sourceRoot = ".";
+2 -2
pkgs/applications/misc/krename/default.nix
··· 7 8 let 9 pname = "krename"; 10 - version = "5.0.0"; 11 12 in mkDerivation rec { 13 name = "${pname}-${version}"; 14 15 src = fetchurl { 16 url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; 17 - sha256 = "136j1dkqrhv458rjh5v3vzjhvq6dhz7k79zk6mmx8zvqacc7cq8a"; 18 }; 19 20 buildInputs = [ taglib exiv2 podofo ];
··· 7 8 let 9 pname = "krename"; 10 + version = "5.0.1"; 11 12 in mkDerivation rec { 13 name = "${pname}-${version}"; 14 15 src = fetchurl { 16 url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; 17 + sha256 = "0zbadxjp13jqxgb58wslhm0wy2lhpdq1bgbvyhyn21mssfppib6a"; 18 }; 19 20 buildInputs = [ taglib exiv2 podofo ];
+2 -2
pkgs/applications/misc/minder/default.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "minder"; 11 - version = "1.9.2"; 12 13 src = fetchFromGitHub { 14 owner = "phase1geo"; 15 repo = pname; 16 rev = version; 17 - sha256 = "0lhwwx515f0ycpinkhgbjnik7dj2c7fckikbgzwkzzs25xqp9ayj"; 18 }; 19 20 nativeBuildInputs = [ pkgconfig meson ninja python3 wrapGAppsHook vala shared-mime-info ];
··· 8 9 stdenv.mkDerivation rec { 10 pname = "minder"; 11 + version = "1.11.3"; 12 13 src = fetchFromGitHub { 14 owner = "phase1geo"; 15 repo = pname; 16 rev = version; 17 + sha256 = "137kyf82n5a2v0cm9q02rhv8rmbjgnj60h64prq90h0d42prj3gd"; 18 }; 19 20 nativeBuildInputs = [ pkgconfig meson ninja python3 wrapGAppsHook vala shared-mime-info ];
+1 -1
pkgs/applications/misc/pwsafe/default.nix
··· 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 - rev = "${version}"; 15 sha256 = "0nh5jnf5yls2qv5hpfhm6i854zsknyh7d93c987a0cg14sg820fv"; 16 }; 17
··· 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 + rev = version; 15 sha256 = "0nh5jnf5yls2qv5hpfhm6i854zsknyh7d93c987a0cg14sg820fv"; 16 }; 17
+1 -1
pkgs/applications/misc/solaar/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "pwr-Solaar"; 9 repo = "Solaar"; 10 - rev = "${version}"; 11 sha256 = "0k5z9dap6rawiafkg1x7zjx51ala7wra6j6lvc2nn0y8r79yp7a9"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "pwr-Solaar"; 9 repo = "Solaar"; 10 + rev = version; 11 sha256 = "0k5z9dap6rawiafkg1x7zjx51ala7wra6j6lvc2nn0y8r79yp7a9"; 12 }; 13
+385 -385
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 { 2 - version = "82.0"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ach/firefox-82.0.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha256 = "beebf265e84b2bd961dcedaf82ed0cb6b89ef9ea37a0ec7ce1e6abfb78c44b23"; 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/af/firefox-82.0.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha256 = "c58bc5dab361ccc70a94268e1dcb444524145ab9f53a6aa3b186dd806ac111bf"; 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/an/firefox-82.0.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha256 = "75092675363111128ab808211747276c2cadae6a4ea5c8b28807acebb73cf733"; 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ar/firefox-82.0.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha256 = "52adca504f18d6adfb02f346622a5b2b7e417cd6f243c566b79a01014efca53f"; 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ast/firefox-82.0.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 - sha256 = "fa4133422e8d1969c111e7d066f51710f3b53b7e5e3a88de5dd84b8e6faaea89"; 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/az/firefox-82.0.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 - sha256 = "0adc103451ac0d6671f62f3e1940d8d1fb5a6ed2544d015de9a02d75ffaca02c"; 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/be/firefox-82.0.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 - sha256 = "df27f72cc733bac439ed3dba89443286dfb2ca3af4efa33db161964c84293223"; 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/bg/firefox-82.0.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 - sha256 = "34190a84296246c3aa159067a9d575be628963c5c2e193512b8754524fa94503"; 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/bn/firefox-82.0.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 - sha256 = "5eadf29b34dad12f373e675d349f093562b7e38a817f7faa76fcad273ababe2d"; 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/br/firefox-82.0.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 - sha256 = "53c6f9a4c5185ebf62c087dbe78163dcd46fe8bd3bf764a133a37116dbdf96a0"; 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/bs/firefox-82.0.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 - sha256 = "260419497fa79e176558f0a5ee43e1bf717ec4782742969bbaaea39cba04c908"; 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ca-valencia/firefox-82.0.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 - sha256 = "b2de05d651de2096559b9c40c75212baeff759632aabe70fa9c82283b5ae02d2"; 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ca/firefox-82.0.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 - sha256 = "bb3ce2ca6c6d536bdabab8ad549623aaf287a6b7dc708a7888961d8aa72271a1"; 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/cak/firefox-82.0.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 - sha256 = "8c918ef50f2e1db8e5e51420e6dcf6fad0a4f3f4e7054b9f3292a98ee804cfe9"; 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/cs/firefox-82.0.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 - sha256 = "b8a4557ce44275e471e028c7fdac7259914cea670116991dfffb3a85fd111149"; 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/cy/firefox-82.0.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 - sha256 = "45f3438b6218655c26ef846923af9860b5957f0cd1f3f0407a2aa80c20b54519"; 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/da/firefox-82.0.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 - sha256 = "d015f6abed9728bdf06b922ba9edae3272950dc795cef120179ed21ed633b136"; 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/de/firefox-82.0.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 - sha256 = "29748fa89f1b0995f23cddec986379c9ddd89fc158d56591288eedd3345e52ef"; 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/dsb/firefox-82.0.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 - sha256 = "cae1494636a96530e01c58d8a8914c2f2866eee16f96356dc89dd4cf98b67fe6"; 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/el/firefox-82.0.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 - sha256 = "28b09aed5ae0f9d7454d4e43955675535b7bcaf6a79d157aec1f3dc3fd6b922f"; 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/en-CA/firefox-82.0.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 - sha256 = "d9fd41938262b2b43f91898b6509e11095ff851e249f066de4728d1c53edc1e2"; 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/en-GB/firefox-82.0.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 - sha256 = "45385629837dca1afd1d9e6cf24aa3a656c180350e86740a47896cea612af934"; 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/en-US/firefox-82.0.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 - sha256 = "4305f43e72aa46ae42882eaa4e436b22c5142a4c9b2dc9f9ccc3292e18a5e39a"; 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/eo/firefox-82.0.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 - sha256 = "a7a9c9b927b590e6140967dc8988e63534bcecd68cbed7262af77826d4dcb65f"; 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/es-AR/firefox-82.0.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 - sha256 = "e675a8d221812e8642f4d67449df2fed72412197c997acda804fa11aa3032ab6"; 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/es-CL/firefox-82.0.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 - sha256 = "63968f8e55e9bc24ef220546aaff53a6a2ee93f395e4af4543515fddfbb8d175"; 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/es-ES/firefox-82.0.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 - sha256 = "fbc9948bf2e18ec24e1989592b755050177fc2e505610dfff23d775cbc8c394b"; 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/es-MX/firefox-82.0.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 - sha256 = "e30cd73dafda4e54a27f6201738ed355fee2c4b7672765362d2d37dfd3aaf316"; 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/et/firefox-82.0.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 - sha256 = "39b2575e2e8b6799b3d646c357aa119cefbcaaa0f8645437a1e5b9ced78d154b"; 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/eu/firefox-82.0.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 - sha256 = "b68837bea81a4018eb298ed2ea567f5367165a83e3233064c49b4d77bae30500"; 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/fa/firefox-82.0.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 - sha256 = "28edeeef1bee9b87e7aad6fa76b10bb83eafd90933487389aa7e1c3ca268bb0c"; 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ff/firefox-82.0.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 - sha256 = "21651607d2b7555996292e31a9fb0245c44e557333eb16c4b8c63f895872e9a8"; 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/fi/firefox-82.0.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 - sha256 = "2138da6e55db8fc9e90736b81fd0aec3f81a8b3882eb7aa78d816afd303f423e"; 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/fr/firefox-82.0.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 - sha256 = "ea18177416ca979820721b44cfc735ce7a47a6cdd0480d2f72c5b72dac559967"; 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/fy-NL/firefox-82.0.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 - sha256 = "152f3f1cebd0d6b94348bdbab74676faa605155c2020c32aca26c8ef2004dea2"; 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ga-IE/firefox-82.0.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 - sha256 = "9e125c8c28854bd8ba25088b5b3b9b5aca3370dbb385200efe09c2d747cb78c5"; 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/gd/firefox-82.0.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 - sha256 = "3568f741bc94e1c600158fc37d699d2b3f72ea5b8dc78c804e734dbd0c8ebd06"; 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/gl/firefox-82.0.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 - sha256 = "f3b1437772a66728f999ed0827e6cd14f13b08773bab21aa530e04212867c6bc"; 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/gn/firefox-82.0.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 - sha256 = "08b6c72f58d47e2442b6bd72c20025d2c23e9a4899a359ab48382e0088b68ac2"; 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/gu-IN/firefox-82.0.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 - sha256 = "cf8d0967d9b16bdb8b0ed4ab0f572187003e861fe544b4d258a8b757c68733c8"; 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/he/firefox-82.0.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 - sha256 = "42698b6833f395124fdd85307985827574a779ca00b71b4d9713e6f1348e93f3"; 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/hi-IN/firefox-82.0.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 - sha256 = "141c53b0ac4c9d14c3a8579be7dff6a194fa3926a388387fdf0fa82ae94ddf78"; 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/hr/firefox-82.0.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 - sha256 = "1159742531dc262a764a3bcaba7c15d4384846adc2df25b367dd3709dff3e2bc"; 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/hsb/firefox-82.0.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 - sha256 = "c412cb345c588af3f7d462bef0f28e9d47550eb341f667b21ddcd9de3970dbec"; 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/hu/firefox-82.0.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 - sha256 = "1fa586fa875235e397479ec1a4f25e25a3b5abbec5ba524ce90caabd9c1d8b4b"; 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/hy-AM/firefox-82.0.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 - sha256 = "f50e5258073bfe6f72918853e15c083c64f427aa858ca04a35d4b230ca496da0"; 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ia/firefox-82.0.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 - sha256 = "523a8c9d5b76efbf7b9525cb83a1ddb3f3b096ce442815a0fec632550a0d848f"; 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/id/firefox-82.0.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 - sha256 = "394966ef0c7d5d203f37cc41fd2bdbd3569921c17b6b0baeef2c93386f50409a"; 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/is/firefox-82.0.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 - sha256 = "8dccf799cdc1af733382d9a9f96f3dd4d774a8e481a0a465af788b646c964d81"; 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/it/firefox-82.0.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 - sha256 = "bd9cfba5a4006b8ab1b1c7fb75ea54d92c3e8f88fb33ea203655486c31d40078"; 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ja/firefox-82.0.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 - sha256 = "c2f4b1361bef84be0b4409147617f701cfe19741ce7d1b70ffff292ab4b4394b"; 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ka/firefox-82.0.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 - sha256 = "956eea50eb32e150c95a1fad99ee4f9fa05d80919612ac7c276af7d830612594"; 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/kab/firefox-82.0.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 - sha256 = "7d4b30c299083d0fc3b3c0f2efd9bee1d3bd05ca29b3b291de05816304b54e20"; 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/kk/firefox-82.0.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 - sha256 = "8c781741557932663a68f0d3d52e1e5f1fd2a25617645ff8aca986c1ba638bb2"; 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/km/firefox-82.0.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 - sha256 = "60e71694edf19046a2c0ac474daa40157d3ff9a974c9924b5278ba889e680c18"; 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/kn/firefox-82.0.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 - sha256 = "2beabb264e3247a35e16a08d428799a62f9d50297e3824f31eb8f5341f85319a"; 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ko/firefox-82.0.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 - sha256 = "d3bc2f79ee0e2a15a56d9c2a29d78daa1ba28abbd2fd7a2eb7f4a8810bdc61bb"; 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/lij/firefox-82.0.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 - sha256 = "4d723edcb08c066d4ff5eae520ad27aea85e6287bc37e656a7ccdf3f09d0722b"; 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/lt/firefox-82.0.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 - sha256 = "56282e57b79c0ed78fe839b4c5d444d6c8ccec001b3f16bd566ec8c2f9f0520c"; 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/lv/firefox-82.0.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 - sha256 = "6748371e3a52387dfde06d1a623528a117a686b7252199a63dc166348a0f219b"; 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/mk/firefox-82.0.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 - sha256 = "eaa8fde559b53b533d0b7275b5b79fba9cb42d31118a281f1b7fe17cc0f0e3c7"; 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/mr/firefox-82.0.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 - sha256 = "674ba4962bd455793b99f07a9f40709220d40a55e6ebd516bc15b54bf04655b7"; 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ms/firefox-82.0.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 - sha256 = "91291fcff394f30b4f60968f183c3125961fb593eef5a9e839024d83d001cdab"; 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/my/firefox-82.0.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 - sha256 = "1634f5d90130dfa27301588856c4f49bce0bb33c047d653bd46e255ce07e2414"; 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/nb-NO/firefox-82.0.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 - sha256 = "e35752e9fe37cd3a8518b042f2e287f29aa91213be680b111948e9115e5da523"; 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ne-NP/firefox-82.0.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 - sha256 = "17c5d7c04727b775ea544b4e6203e181b4f26d7fd833900fd3dbae853a8dede9"; 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/nl/firefox-82.0.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 - sha256 = "d9ff2809b7d4b1fb30f0c61b5ab7c776bd4096940908afcc25472f4b4f78407c"; 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/nn-NO/firefox-82.0.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 - sha256 = "0da44925c235fb19bd823464046150a57ce710be8f8f2593612e97bd0bd3d591"; 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/oc/firefox-82.0.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 - sha256 = "62a0679bfbdf27055924753661b20b2a022ba60e50bcbcca89ea7ec28394d3c0"; 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/pa-IN/firefox-82.0.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 - sha256 = "f3f51aaeec650043cf70d2dccddd18ef8d184b61061a42b2d5ca4b06e891c8e1"; 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/pl/firefox-82.0.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 - sha256 = "a1a6ec0eebab8905dc53e58d781369ebce792f1a34e8702c7d9bea082238a1ff"; 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/pt-BR/firefox-82.0.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 - sha256 = "76a3ee37676ad9260dfe8d434fde3eafe4d9615568056164058344bfec11bcaa"; 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/pt-PT/firefox-82.0.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 - sha256 = "6d0a39416ea8fa33b53f6aa886bff4cf35f0eeacd622c0572abf1b62ab067fb1"; 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/rm/firefox-82.0.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 - sha256 = "cf66f96c69b89879ec2ee51050640f5e18aabc3c1ef14f6ee8479f4f12ff2d96"; 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ro/firefox-82.0.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 - sha256 = "d4a70b102a860cc7f1556eb63d03ad64bebc5e0f22be5fb1ac3d833527b38964"; 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ru/firefox-82.0.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 - sha256 = "e57613ab5c57551721cad739b025a9c998fe79f3a354ec626dc9bc5f88943550"; 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/si/firefox-82.0.tar.bz2"; 385 locale = "si"; 386 arch = "linux-x86_64"; 387 - sha256 = "9565b8bfdf98c0e8b04c7fc6af23af2b04fee815ce6faab3188756e7b30985b5"; 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/sk/firefox-82.0.tar.bz2"; 390 locale = "sk"; 391 arch = "linux-x86_64"; 392 - sha256 = "05e190e6ced4d275a93da20e9922a631628db467e4a5dcf7c94cb7d728ffcbef"; 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/sl/firefox-82.0.tar.bz2"; 395 locale = "sl"; 396 arch = "linux-x86_64"; 397 - sha256 = "6fa4092cfa0d20f01a0e746a2adec4a31091579de08c5adaba186743cadaf04e"; 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/son/firefox-82.0.tar.bz2"; 400 locale = "son"; 401 arch = "linux-x86_64"; 402 - sha256 = "4ad179b62c19de8171299301a312c4b4aec4805c4d255308d8a2ec840cc3058b"; 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/sq/firefox-82.0.tar.bz2"; 405 locale = "sq"; 406 arch = "linux-x86_64"; 407 - sha256 = "0dab51efdbb69e6cbb1aeca8fae9d82709238b54bc40141335ff790f7ca91ff6"; 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/sr/firefox-82.0.tar.bz2"; 410 locale = "sr"; 411 arch = "linux-x86_64"; 412 - sha256 = "59523733a24aa0bab201560711a8a47cc684e8027eb5c06f814b0d59c6a985ad"; 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/sv-SE/firefox-82.0.tar.bz2"; 415 locale = "sv-SE"; 416 arch = "linux-x86_64"; 417 - sha256 = "53cbef7e2eba73d2ad27ec6ed717f1c69c71281d4e33a1d7e721ec30c372663b"; 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ta/firefox-82.0.tar.bz2"; 420 locale = "ta"; 421 arch = "linux-x86_64"; 422 - sha256 = "7d866f79b6e80c76c2ddfdca477962f1b37dc3eeacd5270a90e4a0a0ee461cf2"; 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/te/firefox-82.0.tar.bz2"; 425 locale = "te"; 426 arch = "linux-x86_64"; 427 - sha256 = "846fadf4e10bc6f89db7b9a3ad06c17a85695779cd5f1c06414d6f4baef52921"; 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/th/firefox-82.0.tar.bz2"; 430 locale = "th"; 431 arch = "linux-x86_64"; 432 - sha256 = "e2087d50eb61ba597a67af0cc3460ed3ac7e8af218b374e4c5294463aac8ce44"; 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/tl/firefox-82.0.tar.bz2"; 435 locale = "tl"; 436 arch = "linux-x86_64"; 437 - sha256 = "60a05602462133f36d29942dc5123aa0c71b1aaf2ab142efff6f7abc9cadcad6"; 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/tr/firefox-82.0.tar.bz2"; 440 locale = "tr"; 441 arch = "linux-x86_64"; 442 - sha256 = "5cfc8cc8945f4a177af80df37653a61f310f413cd4ab3e5df55ed4457d7318b8"; 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/trs/firefox-82.0.tar.bz2"; 445 locale = "trs"; 446 arch = "linux-x86_64"; 447 - sha256 = "2cf90e62d2e1272aaa8d7acfb7ac51b35e9a3aef23f12aea2213146db324ac66"; 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/uk/firefox-82.0.tar.bz2"; 450 locale = "uk"; 451 arch = "linux-x86_64"; 452 - sha256 = "bf0503793d0887754b2c4b87b92c4dcf111d8f5fcc27a288af3686fce2201366"; 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/ur/firefox-82.0.tar.bz2"; 455 locale = "ur"; 456 arch = "linux-x86_64"; 457 - sha256 = "015e0e28477896710481a925c4bec0ceefd0c9f39179a13441b673031854ab1e"; 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/uz/firefox-82.0.tar.bz2"; 460 locale = "uz"; 461 arch = "linux-x86_64"; 462 - sha256 = "0c372b3f8d98f41f2a69a62ffefa6181bb9d7d1a74c7a60a2603ee3a8883d635"; 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/vi/firefox-82.0.tar.bz2"; 465 locale = "vi"; 466 arch = "linux-x86_64"; 467 - sha256 = "96b1a4aa05e054a7ec78bf314d151385b2a7a6f6ea3225993242ba798772e100"; 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/xh/firefox-82.0.tar.bz2"; 470 locale = "xh"; 471 arch = "linux-x86_64"; 472 - sha256 = "68d69dc60b730b5ffe7a54943bc9404d0915b3730f840711a3c078bc8b71396a"; 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/zh-CN/firefox-82.0.tar.bz2"; 475 locale = "zh-CN"; 476 arch = "linux-x86_64"; 477 - sha256 = "b21aedfb3eb7cb8fac85fa9d9f8741ff182ada6635bbb669ec95c0cefc0edb5a"; 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-x86_64/zh-TW/firefox-82.0.tar.bz2"; 480 locale = "zh-TW"; 481 arch = "linux-x86_64"; 482 - sha256 = "81963acd1e8a92ab416fe4dae6f1c14f554d6d6a83fcd1d5021e5796bf5d7a98"; 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ach/firefox-82.0.tar.bz2"; 485 locale = "ach"; 486 arch = "linux-i686"; 487 - sha256 = "12b85628724e5c5acc545ba462b7f916d775dedde3eeb4141799f0f3d65ba6c2"; 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/af/firefox-82.0.tar.bz2"; 490 locale = "af"; 491 arch = "linux-i686"; 492 - sha256 = "66f1e12cbabfcaa3c51e68d06b213dcdf29292e981b18ace9ce6df9bfe3f9dd8"; 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/an/firefox-82.0.tar.bz2"; 495 locale = "an"; 496 arch = "linux-i686"; 497 - sha256 = "6b61f6db8cd323371f8a4949ff455c79374a2efa0c327611128aaa397a02a025"; 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ar/firefox-82.0.tar.bz2"; 500 locale = "ar"; 501 arch = "linux-i686"; 502 - sha256 = "180633af5e8cfd13d832c9268d4b0eb44b2292b549d3d1093364db9967fc3e82"; 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ast/firefox-82.0.tar.bz2"; 505 locale = "ast"; 506 arch = "linux-i686"; 507 - sha256 = "aa95f2894bbaf61fd74bcfb00218f73e77b83250c25b472e9938ce0e94403583"; 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/az/firefox-82.0.tar.bz2"; 510 locale = "az"; 511 arch = "linux-i686"; 512 - sha256 = "3c42220f655d6d8785b0763d5d829744d0e579acff44cd146ec85378ef2800a9"; 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/be/firefox-82.0.tar.bz2"; 515 locale = "be"; 516 arch = "linux-i686"; 517 - sha256 = "02fd047e0808ccdcaf484ab6fcc6d306ce97c6a401be4a0071eb310f31ccd45c"; 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/bg/firefox-82.0.tar.bz2"; 520 locale = "bg"; 521 arch = "linux-i686"; 522 - sha256 = "556fbaef8fac39cebf0152e0c5945c6179aa013a724c4903b5553c12518913ca"; 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/bn/firefox-82.0.tar.bz2"; 525 locale = "bn"; 526 arch = "linux-i686"; 527 - sha256 = "3a30215151a6e937a1555f28333b2763e5bcb825e4159267c4897f666206737f"; 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/br/firefox-82.0.tar.bz2"; 530 locale = "br"; 531 arch = "linux-i686"; 532 - sha256 = "9db07dc18e3925f20d1cdd668eb26dc279f7ee38bd71e0085e47ca9400938974"; 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/bs/firefox-82.0.tar.bz2"; 535 locale = "bs"; 536 arch = "linux-i686"; 537 - sha256 = "7ad72fb89ac7ae6f453e5476759319b3e46a814a5ea3b74fa95350a20aeec2a1"; 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ca-valencia/firefox-82.0.tar.bz2"; 540 locale = "ca-valencia"; 541 arch = "linux-i686"; 542 - sha256 = "73f45df139c85e6b583fe0f5c5e429631154d02c7de5832e85366fceccec2854"; 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ca/firefox-82.0.tar.bz2"; 545 locale = "ca"; 546 arch = "linux-i686"; 547 - sha256 = "53f64671ca7527147f91fe2ec72053420866ec15f7d8f6175d88cde75f574514"; 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/cak/firefox-82.0.tar.bz2"; 550 locale = "cak"; 551 arch = "linux-i686"; 552 - sha256 = "93471086769bbdedf2a6a7a63ed2fecaa785c9c1f337bb1e726462976604dfff"; 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/cs/firefox-82.0.tar.bz2"; 555 locale = "cs"; 556 arch = "linux-i686"; 557 - sha256 = "e9e1d7f0a0a5766d0ef1ec8f9eb747fcd28333425d139fa1f78891142f1aa91c"; 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/cy/firefox-82.0.tar.bz2"; 560 locale = "cy"; 561 arch = "linux-i686"; 562 - sha256 = "60caa6cb482ff870572551605e1b644d79901f1852b0bcd7ba64f926eb923bfe"; 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/da/firefox-82.0.tar.bz2"; 565 locale = "da"; 566 arch = "linux-i686"; 567 - sha256 = "726f620abbf287fb03d68127a7985e52a8e4ee176994bc7b0e8d10e7f3dd42a1"; 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/de/firefox-82.0.tar.bz2"; 570 locale = "de"; 571 arch = "linux-i686"; 572 - sha256 = "ebc0cffa8a0300165a39ee1fdfaf4c404d2204683117c6b5d7ae708a4a495053"; 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/dsb/firefox-82.0.tar.bz2"; 575 locale = "dsb"; 576 arch = "linux-i686"; 577 - sha256 = "e296964d066ab5799b0974c1841f36352040d9f6ad769e730f801a0b77eaaed8"; 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/el/firefox-82.0.tar.bz2"; 580 locale = "el"; 581 arch = "linux-i686"; 582 - sha256 = "f1282eff07c147d33b114a76335cb4c6bfddc66518d2749d65d5613899a3cda3"; 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/en-CA/firefox-82.0.tar.bz2"; 585 locale = "en-CA"; 586 arch = "linux-i686"; 587 - sha256 = "51ab497caf7a529e8b430280b8015ab3b8a5df3486ef81f3ffe721d1f0c2d752"; 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/en-GB/firefox-82.0.tar.bz2"; 590 locale = "en-GB"; 591 arch = "linux-i686"; 592 - sha256 = "1a4f64d190155f3b090828261ec2ce0f61e4b3b2662a3f445291ee201c0fdfe0"; 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/en-US/firefox-82.0.tar.bz2"; 595 locale = "en-US"; 596 arch = "linux-i686"; 597 - sha256 = "2039a8e94fcda9bcad97d62059579d64744da522c7d65beac0edcbd2e128a06f"; 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/eo/firefox-82.0.tar.bz2"; 600 locale = "eo"; 601 arch = "linux-i686"; 602 - sha256 = "1abf7e1a14264220bf83b998c71ae8d1cb7e5187c09a9ae2be1424761760955b"; 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/es-AR/firefox-82.0.tar.bz2"; 605 locale = "es-AR"; 606 arch = "linux-i686"; 607 - sha256 = "83bc86693bbb7dfaeae244c1120f5426b85b13f56756f299e3e3c902a0700851"; 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/es-CL/firefox-82.0.tar.bz2"; 610 locale = "es-CL"; 611 arch = "linux-i686"; 612 - sha256 = "b2ff29fe620aaa62e9b20ae1576574b2e4c7893eb664fb7c6f722a80093d81bf"; 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/es-ES/firefox-82.0.tar.bz2"; 615 locale = "es-ES"; 616 arch = "linux-i686"; 617 - sha256 = "47f526244e2d7426d7a9d2faa1e114032bd43309c480a21523645c415ac54a17"; 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/es-MX/firefox-82.0.tar.bz2"; 620 locale = "es-MX"; 621 arch = "linux-i686"; 622 - sha256 = "f2f7f4e251574d11ea69854d0f5a9f7b078aa220d5fb1ef8275e25e4e75389a6"; 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/et/firefox-82.0.tar.bz2"; 625 locale = "et"; 626 arch = "linux-i686"; 627 - sha256 = "88ac5af23fa85690fe992ff457f79c991d4802e54a5a3a73682b3b1c6d444856"; 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/eu/firefox-82.0.tar.bz2"; 630 locale = "eu"; 631 arch = "linux-i686"; 632 - sha256 = "2fa7483b6be6503a5aa584895d6b177b51f94c344e0869638f6dc065437d69ff"; 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/fa/firefox-82.0.tar.bz2"; 635 locale = "fa"; 636 arch = "linux-i686"; 637 - sha256 = "f9cf6f19e3faf9c206a4286224089855aa2fad94bb99250855925e167aa65943"; 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ff/firefox-82.0.tar.bz2"; 640 locale = "ff"; 641 arch = "linux-i686"; 642 - sha256 = "b6171880f459eed455cab78fbf9a695168f23bb26c361099cd23f682a99704c6"; 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/fi/firefox-82.0.tar.bz2"; 645 locale = "fi"; 646 arch = "linux-i686"; 647 - sha256 = "6f5d5eaa2e4a60122a18b998932645f6abe7542e04298d13cf5004804de12bb8"; 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/fr/firefox-82.0.tar.bz2"; 650 locale = "fr"; 651 arch = "linux-i686"; 652 - sha256 = "1d239e0c59c17c3e8de5f88df643a2b59b55a1816f8d2779c115311c6729bf89"; 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/fy-NL/firefox-82.0.tar.bz2"; 655 locale = "fy-NL"; 656 arch = "linux-i686"; 657 - sha256 = "7307baffe92d133f2b3b957c8592d7ef18e1129aebadb9c1a26b8f462ecb9b84"; 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ga-IE/firefox-82.0.tar.bz2"; 660 locale = "ga-IE"; 661 arch = "linux-i686"; 662 - sha256 = "1ae40826795c01e45921cee1293990a227f219ed20398b77cb8cf382207ed0d2"; 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/gd/firefox-82.0.tar.bz2"; 665 locale = "gd"; 666 arch = "linux-i686"; 667 - sha256 = "108f11cade989829a103e67090f03dec890b371004fe047215fe2feda8217a7b"; 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/gl/firefox-82.0.tar.bz2"; 670 locale = "gl"; 671 arch = "linux-i686"; 672 - sha256 = "3be9987167773e448d194bcde682242576968ca04cdba2b3728e454b965a9b21"; 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/gn/firefox-82.0.tar.bz2"; 675 locale = "gn"; 676 arch = "linux-i686"; 677 - sha256 = "be87dc9ecfe75423c59fd189896a508040f5f962828855f50a01fb4a46a6beb1"; 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/gu-IN/firefox-82.0.tar.bz2"; 680 locale = "gu-IN"; 681 arch = "linux-i686"; 682 - sha256 = "c2b1290375af17d0d63dfa90b006025dd8f9e7b35628caa782c849826df2fb53"; 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/he/firefox-82.0.tar.bz2"; 685 locale = "he"; 686 arch = "linux-i686"; 687 - sha256 = "9579aa350b3cc6c0814c24361a5b7a7b3ec75245f050ad994ab20e850b520f41"; 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/hi-IN/firefox-82.0.tar.bz2"; 690 locale = "hi-IN"; 691 arch = "linux-i686"; 692 - sha256 = "25a037775d64ceaa137fde2367e26f846e755f98edaf0fd04526b4afc80b17cb"; 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/hr/firefox-82.0.tar.bz2"; 695 locale = "hr"; 696 arch = "linux-i686"; 697 - sha256 = "c84de35ed70512cd608de909ce887f0bbf79d5894a82facd94af478b1cc54764"; 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/hsb/firefox-82.0.tar.bz2"; 700 locale = "hsb"; 701 arch = "linux-i686"; 702 - sha256 = "2d5ce7160c14b3770d19c3d32a068c1a08623ac2c3b0036d5f18ba7645463fbb"; 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/hu/firefox-82.0.tar.bz2"; 705 locale = "hu"; 706 arch = "linux-i686"; 707 - sha256 = "bf0fa325c588eacb758697ed13a4aba6416ce35f6cae31891ff4b5ea0296e094"; 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/hy-AM/firefox-82.0.tar.bz2"; 710 locale = "hy-AM"; 711 arch = "linux-i686"; 712 - sha256 = "f45b28645f8dc656d291cbea9e969cca090014f1c4d508f2a0d8f500ce949066"; 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ia/firefox-82.0.tar.bz2"; 715 locale = "ia"; 716 arch = "linux-i686"; 717 - sha256 = "ac1ee6f6450f62fd4e0de61366b83a0fc8d7b7be5731591e83c4393ba2a6e9f6"; 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/id/firefox-82.0.tar.bz2"; 720 locale = "id"; 721 arch = "linux-i686"; 722 - sha256 = "8117c5e493362fba30de0cb27cd5a8ef7ab9b31655701b44c9ab06a6b73af60a"; 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/is/firefox-82.0.tar.bz2"; 725 locale = "is"; 726 arch = "linux-i686"; 727 - sha256 = "118b2dac91511e0e68a7dee939f586a9d9b31cc117d6295053a6125fe7e3bf57"; 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/it/firefox-82.0.tar.bz2"; 730 locale = "it"; 731 arch = "linux-i686"; 732 - sha256 = "8680148fda005fd63ce5af1230060f7510a4b7b096da1f5dd864b9824990faff"; 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ja/firefox-82.0.tar.bz2"; 735 locale = "ja"; 736 arch = "linux-i686"; 737 - sha256 = "eedf01ce82bce136c03a62de3437b42e52280e87c8491133116926ec7481b7a0"; 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ka/firefox-82.0.tar.bz2"; 740 locale = "ka"; 741 arch = "linux-i686"; 742 - sha256 = "63c060cb338ee1a0bec05fa8b3749f21503dd3d78548b5673fa4b44b64ef0536"; 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/kab/firefox-82.0.tar.bz2"; 745 locale = "kab"; 746 arch = "linux-i686"; 747 - sha256 = "ba10887d808f197cffa458ba50d3cc7696be176dd088747a50adf676a0d1d666"; 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/kk/firefox-82.0.tar.bz2"; 750 locale = "kk"; 751 arch = "linux-i686"; 752 - sha256 = "c93f19c29f0a47854ec1b90e8e4e5e77a08f5c2a3589fd3753c9aa6ceb6d515e"; 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/km/firefox-82.0.tar.bz2"; 755 locale = "km"; 756 arch = "linux-i686"; 757 - sha256 = "7066bcd6a37faaf5db2ff5eca5c1049cdd4a9a1c034133de866b7d9d97913c03"; 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/kn/firefox-82.0.tar.bz2"; 760 locale = "kn"; 761 arch = "linux-i686"; 762 - sha256 = "04d941f96c92525298e391a38ef24ee2d31411bd9f3d36ca2f667e3d400513e3"; 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ko/firefox-82.0.tar.bz2"; 765 locale = "ko"; 766 arch = "linux-i686"; 767 - sha256 = "b8fbf8316f2a3d93303ce52f63a08d7604ba8143d7bfbed6782912ab19609436"; 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/lij/firefox-82.0.tar.bz2"; 770 locale = "lij"; 771 arch = "linux-i686"; 772 - sha256 = "a655f743a2397f808fe514e0e86f6297c3a8ff113bdd360249309d449ff5444c"; 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/lt/firefox-82.0.tar.bz2"; 775 locale = "lt"; 776 arch = "linux-i686"; 777 - sha256 = "dd4f654d1c8dfaf0a318c5633865649a8298fa92fb71b7c66ed9369710df2ea8"; 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/lv/firefox-82.0.tar.bz2"; 780 locale = "lv"; 781 arch = "linux-i686"; 782 - sha256 = "820f1c5d3da3ae84b0a0c80dca3210ee61024a23141fb2111b5e609843aeb55d"; 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/mk/firefox-82.0.tar.bz2"; 785 locale = "mk"; 786 arch = "linux-i686"; 787 - sha256 = "51991978ac9db66b157b6921941219ed6f2be3ed2ec9a1fd74933117a5708743"; 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/mr/firefox-82.0.tar.bz2"; 790 locale = "mr"; 791 arch = "linux-i686"; 792 - sha256 = "1012cc8a38bb7a3250d2328af5c3afef05b8316137ecea20e3941bb1428a4d4f"; 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ms/firefox-82.0.tar.bz2"; 795 locale = "ms"; 796 arch = "linux-i686"; 797 - sha256 = "584504c48e0f0f28ba8b6dc5341743293b7f1795ea5c1c9a31c348c76cc62313"; 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/my/firefox-82.0.tar.bz2"; 800 locale = "my"; 801 arch = "linux-i686"; 802 - sha256 = "5c4aa84945631ddb576f1a75120d5ccba9ec6d37f2ca7fa74fd673bfd3d4bd5b"; 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/nb-NO/firefox-82.0.tar.bz2"; 805 locale = "nb-NO"; 806 arch = "linux-i686"; 807 - sha256 = "d35d5cdf2b5ebb145c1c54a5e0d95501a38783a207d47e01eec4cf85a64541b5"; 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ne-NP/firefox-82.0.tar.bz2"; 810 locale = "ne-NP"; 811 arch = "linux-i686"; 812 - sha256 = "af2f8135a7913914752a0f759c98a078823c6824a76625a6be4077563dafd3f2"; 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/nl/firefox-82.0.tar.bz2"; 815 locale = "nl"; 816 arch = "linux-i686"; 817 - sha256 = "beac8d7493bca8319c04f36d8e60985ebefa8af716db9aedf253d7b1bca496d2"; 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/nn-NO/firefox-82.0.tar.bz2"; 820 locale = "nn-NO"; 821 arch = "linux-i686"; 822 - sha256 = "62e2abdda830a869247220edc5d623dd40d463d96458980f2b1aa70352f45dc8"; 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/oc/firefox-82.0.tar.bz2"; 825 locale = "oc"; 826 arch = "linux-i686"; 827 - sha256 = "d670d46d4641e4b89b3e9fd09e226ebc9822d43c8611020e410c0a239ee6d3d6"; 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/pa-IN/firefox-82.0.tar.bz2"; 830 locale = "pa-IN"; 831 arch = "linux-i686"; 832 - sha256 = "244fd49efcb7579813b493904e63a889eaa832fa326b2da3fd4e5988bcee0294"; 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/pl/firefox-82.0.tar.bz2"; 835 locale = "pl"; 836 arch = "linux-i686"; 837 - sha256 = "31c4cbc76456d9e0d76ab98c997049d17940cc5f461941c72ba85e07b0859516"; 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/pt-BR/firefox-82.0.tar.bz2"; 840 locale = "pt-BR"; 841 arch = "linux-i686"; 842 - sha256 = "8c73c44493d265291f253ae7e739613a1cec1e82678021f3ee1738990eb101bd"; 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/pt-PT/firefox-82.0.tar.bz2"; 845 locale = "pt-PT"; 846 arch = "linux-i686"; 847 - sha256 = "934e69f1c07b69c59c3e680ec7ab6d5e8bcf54e5a1e4bc32ef5782c15222544c"; 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/rm/firefox-82.0.tar.bz2"; 850 locale = "rm"; 851 arch = "linux-i686"; 852 - sha256 = "a825c9319954997f285370b4f13e20fe1b0eda62621b71570b2d7606e5a5668c"; 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ro/firefox-82.0.tar.bz2"; 855 locale = "ro"; 856 arch = "linux-i686"; 857 - sha256 = "df1de4c7dd186bd8b6558c6c4e902a1721ad3f73a40dd5163b82e98323931436"; 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ru/firefox-82.0.tar.bz2"; 860 locale = "ru"; 861 arch = "linux-i686"; 862 - sha256 = "4c02fa376103c6fb69f2610045a5f922a6a305b11f92899e9d7f42725cfe9ad2"; 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/si/firefox-82.0.tar.bz2"; 865 locale = "si"; 866 arch = "linux-i686"; 867 - sha256 = "bc429d437ede468610dfb4f807d7107a6a0f60b32c425d61cf13cbfb4f1aceed"; 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/sk/firefox-82.0.tar.bz2"; 870 locale = "sk"; 871 arch = "linux-i686"; 872 - sha256 = "6e6620e108c4e6c0acafec1921ec4d99912dd0ca4d36d62cc5bef6127ca04c33"; 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/sl/firefox-82.0.tar.bz2"; 875 locale = "sl"; 876 arch = "linux-i686"; 877 - sha256 = "7aa6392e83496ebfba7b5ea4576aab2d28088c88558d88af74a588954bc5af20"; 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/son/firefox-82.0.tar.bz2"; 880 locale = "son"; 881 arch = "linux-i686"; 882 - sha256 = "3134725ede0ba297dc895b3682cc6ecf73931c0779a0fc979166f2ed652b6d4e"; 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/sq/firefox-82.0.tar.bz2"; 885 locale = "sq"; 886 arch = "linux-i686"; 887 - sha256 = "33d3a6bcdcfb199360770c677849e064d3727f3629b34f9913faccd5f173c6bb"; 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/sr/firefox-82.0.tar.bz2"; 890 locale = "sr"; 891 arch = "linux-i686"; 892 - sha256 = "b9ea179cc648bfb7688e5b21a0a5d128bd0247171b9e9114459a4ed7fe352281"; 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/sv-SE/firefox-82.0.tar.bz2"; 895 locale = "sv-SE"; 896 arch = "linux-i686"; 897 - sha256 = "18227f53b7317262270f4ed973b080649d3011ea52ab434d56a09e91d750c8e3"; 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ta/firefox-82.0.tar.bz2"; 900 locale = "ta"; 901 arch = "linux-i686"; 902 - sha256 = "8c70c66802d6966e04462f934bfe16c94007209b4b6ecccbfe1cc044cd3c19d0"; 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/te/firefox-82.0.tar.bz2"; 905 locale = "te"; 906 arch = "linux-i686"; 907 - sha256 = "c36cd994a88688e3af5360f24bdc6a69960723bc2dd196f3d42ab8d6099abbfb"; 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/th/firefox-82.0.tar.bz2"; 910 locale = "th"; 911 arch = "linux-i686"; 912 - sha256 = "2ded98d2d5957ee42c665a1789ae4fbc549af60a08adf1e51baf7022db5f03cb"; 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/tl/firefox-82.0.tar.bz2"; 915 locale = "tl"; 916 arch = "linux-i686"; 917 - sha256 = "14135d1ae961084d7979bb3ee13fa50bb2f59d8ea9fe18400084aedcd6ca5388"; 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/tr/firefox-82.0.tar.bz2"; 920 locale = "tr"; 921 arch = "linux-i686"; 922 - sha256 = "4ac2f0a8729427e508f9aaf3c6606145b84ea47009724a1d07c3182fbeb4678b"; 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/trs/firefox-82.0.tar.bz2"; 925 locale = "trs"; 926 arch = "linux-i686"; 927 - sha256 = "c7bf44d74cead7b7a5d44bb16331a113d8fb630c0bfa9740045ecc5d6858a099"; 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/uk/firefox-82.0.tar.bz2"; 930 locale = "uk"; 931 arch = "linux-i686"; 932 - sha256 = "7a796554c241f21c16573f20b2b1907a4f7af4cccf441739b9826e2140f640cf"; 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/ur/firefox-82.0.tar.bz2"; 935 locale = "ur"; 936 arch = "linux-i686"; 937 - sha256 = "8d5bdda725bad1479c32a18504fb584ac290f94e994b4c00a0686bb09bfb6913"; 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/uz/firefox-82.0.tar.bz2"; 940 locale = "uz"; 941 arch = "linux-i686"; 942 - sha256 = "699bf3bd19bc7f4f213791ef2bd7ce8db0693928be611b952c6c8b34861efae1"; 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/vi/firefox-82.0.tar.bz2"; 945 locale = "vi"; 946 arch = "linux-i686"; 947 - sha256 = "731e97ab6e96cf3da549b1cd954fbd4c48112ba12792bf1b94f9ce5628505c47"; 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/xh/firefox-82.0.tar.bz2"; 950 locale = "xh"; 951 arch = "linux-i686"; 952 - sha256 = "0078f3303b80aa63b1f664c49255077632729a5461b74a875e8cfb0ce3a23bb9"; 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/zh-CN/firefox-82.0.tar.bz2"; 955 locale = "zh-CN"; 956 arch = "linux-i686"; 957 - sha256 = "fe9cb3a43e12c64aa12e40e8f52651e1c4ef09a52bbb51a3492acf8a535172c1"; 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/82.0/linux-i686/zh-TW/firefox-82.0.tar.bz2"; 960 locale = "zh-TW"; 961 arch = "linux-i686"; 962 - sha256 = "020b7887120b134c127d444b59a5ce052fffd7653fffacaec9b0e4902e86158a"; 963 } 964 ]; 965 }
··· 1 { 2 + version = "82.0.2"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ach/firefox-82.0.2.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha256 = "7850a7cdf7f842d8ebac2d7d24f0823b1743b7fe139987554bc3f54af47c31f9"; 8 } 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/af/firefox-82.0.2.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha256 = "c43b0e976a553840da783139ecf2c8a59823da6a31a1d3b5588c496c270260e6"; 13 } 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/an/firefox-82.0.2.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha256 = "4f9103c6043e2fa7ceb0021e09e8616a4e4484d19641e6fc67cde0b60136d8aa"; 18 } 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ar/firefox-82.0.2.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha256 = "7f8bddc573ca33cd48b6e29709c80d8dd617a46f1435303fa0931ecc413b69e2"; 23 } 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ast/firefox-82.0.2.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 + sha256 = "d0bac8231fd4e9e777754378ff5b2e697379666b682c512d4d4d17a3bd82ad10"; 28 } 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/az/firefox-82.0.2.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 + sha256 = "3d0a5facfdce39e798ef72d22e737860327a669f1752deee7192877a2635ce97"; 33 } 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/be/firefox-82.0.2.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 + sha256 = "70606a5e490c3a0dcd1bf9b291c5d16525e044eca667166abbf1d75b58f3922b"; 38 } 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/bg/firefox-82.0.2.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 + sha256 = "501ba77092a68b32ba6048360f8695f52756593241f4a8d210a072260792cde2"; 43 } 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/bn/firefox-82.0.2.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 + sha256 = "f465d794e887b6867bae0e9f768e468876ae7f31a78e91725ccc8f7d965ebfd2"; 48 } 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/br/firefox-82.0.2.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 + sha256 = "977beb4edf63e823087ce9e62ebb1c1d122991de4a350cfcfc93427b3f381608"; 53 } 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/bs/firefox-82.0.2.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 + sha256 = "3951d25f3f1eeadde330e0a68fd581595fa56fc5e98bb4baa3fa707879377674"; 58 } 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ca-valencia/firefox-82.0.2.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 + sha256 = "466fe1080eac737ed87cd83580f585fe5e685090b0d5b6a4c2c5a01ca33175bc"; 63 } 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ca/firefox-82.0.2.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 + sha256 = "6e13af5bdbbe50b8101e60a15d22f9f561d1846e67689a23a933f6fffa73b9ce"; 68 } 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/cak/firefox-82.0.2.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 + sha256 = "a96ca82a2723e90595b76279b3b2a902cf4f121afa448784bf684cf26c514c8c"; 73 } 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/cs/firefox-82.0.2.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 + sha256 = "bfeac431918060b210d35ac74e7333b0c0f851435275c81f2ae76af34e3a05e8"; 78 } 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/cy/firefox-82.0.2.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 + sha256 = "7f81dd91072ff34551394ef969c62baae625c648f5d880f5754862855f71dc74"; 83 } 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/da/firefox-82.0.2.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 + sha256 = "b21dcd0ecd9f0010852a143a38d5d0a77dc9240a49d959b00f101491d3a01e10"; 88 } 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/de/firefox-82.0.2.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 + sha256 = "56429f714fc1bb06efded1c601741ba3cc98788ed54ae345518328f9dcdf7f5d"; 93 } 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/dsb/firefox-82.0.2.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 + sha256 = "bafc42263929851718a7cf38163aa3c020b0631b0a0e5ce8fe238849f7cd76e2"; 98 } 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/el/firefox-82.0.2.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 + sha256 = "e1e8bb8cf866ea69465250a3f760a3cf9e9b06fe15ad03737c6739da5a5df2be"; 103 } 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/en-CA/firefox-82.0.2.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 + sha256 = "f3a252002ceae09c56334010167861abb84840466c939fc87f0ce39aa1537566"; 108 } 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/en-GB/firefox-82.0.2.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 + sha256 = "2f384fdadb06254d12aa1c39b7cff6c26be4b7617d0b845a0efef2c92515cbf0"; 113 } 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/en-US/firefox-82.0.2.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 + sha256 = "d95758297ac2db1a050e6431b637855c4a58222db7d9014c3a8322448083a4d2"; 118 } 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/eo/firefox-82.0.2.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 + sha256 = "0591aa9225572cdce7036eff924dd3337b85625bdeb6d59aacdc7a06c5af1f71"; 123 } 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/es-AR/firefox-82.0.2.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 + sha256 = "455b211bf85363089721803255829e4e7891cb43b2b6f35f85bf8a7242c360b3"; 128 } 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/es-CL/firefox-82.0.2.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 + sha256 = "b5d22bbd082eb5b6df2ab8002b465f64afdfb2c06b352a90c72e491aeab81336"; 133 } 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/es-ES/firefox-82.0.2.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 + sha256 = "678c9ecf360ad9231f31a8f761a48e793b6438b598d200619e5fd54a3296e1d5"; 138 } 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/es-MX/firefox-82.0.2.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 + sha256 = "daf28e88dacd3202c759caec279244aa9bf418420df9ea11896658e53c966061"; 143 } 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/et/firefox-82.0.2.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 + sha256 = "c42572576da4d6fd4cfbe5cc518b2c7dc68353141f952eaeadbd9b8679b98d95"; 148 } 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/eu/firefox-82.0.2.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 + sha256 = "5945c782ae8d23473ec1d4682d7fc5a0c524e494393e96c98e3202061fa6551a"; 153 } 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/fa/firefox-82.0.2.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 + sha256 = "8b5f607d7726333fa9f012d5d9e74170350e205717f7ad0bd7aceec60620ab16"; 158 } 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ff/firefox-82.0.2.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 + sha256 = "996f0efe4c3eab9152a254077a53e994888fb20345302ed1718f8edba67a9bf0"; 163 } 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/fi/firefox-82.0.2.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 + sha256 = "2830c7775e54f3adbda827b5fae13fdde7fb4b3c8b37644273a88da33db78f2a"; 168 } 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/fr/firefox-82.0.2.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 + sha256 = "bec556a28a30c478e36c3ea1463950039458d1a7442bd7a9807f31cc4ca003fb"; 173 } 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/fy-NL/firefox-82.0.2.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 + sha256 = "b549eb7900d15f8606face90c521aac596230b25705f7dc459c039e8ef559698"; 178 } 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ga-IE/firefox-82.0.2.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 + sha256 = "5a69d9bd67dbae5e8659bf3980d373c485bc67d5719c3b37948d2054f92ecdfe"; 183 } 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/gd/firefox-82.0.2.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 + sha256 = "6d76b0659f3d0b0793cbc963dfbd6d20c7c91aa46aec1ab9cf9192d003eda3dc"; 188 } 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/gl/firefox-82.0.2.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 + sha256 = "4cdfa36bd0d880135ff959a04eed53b958684253f99469c45aea39cb4a25d1ec"; 193 } 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/gn/firefox-82.0.2.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 + sha256 = "3cd0ffe9756155181cf68d2fdbc858a93be41104cfbac408adc98b72bcbb215d"; 198 } 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/gu-IN/firefox-82.0.2.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 + sha256 = "083ee03240b7b1f4238a464844bfad31334a21a8dd025f1d12a252c2cca1049a"; 203 } 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/he/firefox-82.0.2.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 + sha256 = "36f8951cb387fb733d689ff2a77b563e8315f76b434c283867aaedc264b227c5"; 208 } 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/hi-IN/firefox-82.0.2.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 + sha256 = "6d041154437f97a0dc4b3ec3125f2cbebc10dd2089ed0f98df1c1a6a85b7a536"; 213 } 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/hr/firefox-82.0.2.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 + sha256 = "4c5b7921cba2d915240d6d9b0bf515f9299827e75a84eb089626561cc9042db3"; 218 } 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/hsb/firefox-82.0.2.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 + sha256 = "4123ec9fda1e94d4433107999905d7cca0dc2b6cfa5c5c78d3a1d29983a5960b"; 223 } 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/hu/firefox-82.0.2.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 + sha256 = "4c0afb928ad0b87a3efb26f09da8c5ef1ac415e14ac47b30463663ddb1955376"; 228 } 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/hy-AM/firefox-82.0.2.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 + sha256 = "a2676e1450d88ab97b41cb4ee012da2a6240b739eca68e53d9607bbe0f7a313b"; 233 } 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ia/firefox-82.0.2.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 + sha256 = "8494561d37a9d41d0c8683e793419d51ba3780b8229fe98a819ce675f8dc6aa3"; 238 } 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/id/firefox-82.0.2.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 + sha256 = "3bbc1f1acba6fe029ef1a526e3e16f6000cac1ff226be21850e9e52348b5fe49"; 243 } 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/is/firefox-82.0.2.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 + sha256 = "16fa5428d2a467bbe458c82544a3859386cfd8051de266d7af5656430a408535"; 248 } 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/it/firefox-82.0.2.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 + sha256 = "5b891f5a9bd4362c6b00cbcd846d724926f2862887c3db2d6fa55f968c7e0d3f"; 253 } 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ja/firefox-82.0.2.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 + sha256 = "a3469c0b8fa55dd271768ddd491ddf1730d732d9abd697dbf779fa820f4b6d4b"; 258 } 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ka/firefox-82.0.2.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 + sha256 = "8115d086a7330139f03a25209384651209b0e998a3b754ba1f79f26beddd28ce"; 263 } 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/kab/firefox-82.0.2.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 + sha256 = "c2a7cf201875831fad0eec3b558a4be41c847279f7a66fb8e1006084a385c5d8"; 268 } 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/kk/firefox-82.0.2.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 + sha256 = "33aecd099402158a1fd6dc47ccdddc1476f21e31a1f25c6cd8518226de7f5d23"; 273 } 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/km/firefox-82.0.2.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 + sha256 = "060686475df4e47104229d02d42760e5762fc1a9d8d785a8116670a24b7cb897"; 278 } 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/kn/firefox-82.0.2.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 + sha256 = "3b86716fd6da73f439593a3915d24710176d9be1aa3d19313c2554962e55dc51"; 283 } 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ko/firefox-82.0.2.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 + sha256 = "5fd1b0b428c57886552aabdaea3f691227f40cc19d18f851a2c880b1a1c8141f"; 288 } 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/lij/firefox-82.0.2.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 + sha256 = "227f8dfd5b861f9e8edf1037c8f374dcae3aceefc61effab0e51907603fc21d8"; 293 } 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/lt/firefox-82.0.2.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 + sha256 = "9ef7177b9fa3965a394dde8a39503fd8975829faca86e281d046f8fed50bdf27"; 298 } 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/lv/firefox-82.0.2.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 + sha256 = "ac98c34657aca401de5943724a7f8607d1370b78f80c211547010911a11be498"; 303 } 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/mk/firefox-82.0.2.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 + sha256 = "457fd0ccb4d43e99f39c89db76dc5d4cd79c560a578d1ff3229cd1d49493356d"; 308 } 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/mr/firefox-82.0.2.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 + sha256 = "3bad6fb96f29a3fac72eef3f53b48e9ff10a273da069eda050fa24bdf3ee8ec1"; 313 } 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ms/firefox-82.0.2.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 + sha256 = "20573511691d2615c9095988cea73d7fbb522a0b4ae958da1749ae8ee1ff31d8"; 318 } 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/my/firefox-82.0.2.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 + sha256 = "4f4a7abd9a1409ab49ad956cc1cad0adb9254b3203d9d19b7fc967284d051554"; 323 } 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/nb-NO/firefox-82.0.2.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 + sha256 = "c0480f74895deecbad2f58b1b4876fdfc2c920269f4c91143c9cac41d67162f1"; 328 } 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ne-NP/firefox-82.0.2.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 + sha256 = "11fff99c2bf87ce9b5c315ffab4a305bed0d5170ffc4f65d00d5b5b380687214"; 333 } 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/nl/firefox-82.0.2.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 + sha256 = "a19b8a18022f9317303e7aba19415f45133b19849fae440ec41ec5e9016a532c"; 338 } 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/nn-NO/firefox-82.0.2.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 + sha256 = "cc68e10b523681110a597c7583ede6ae08d20529bc001fa5059c9056287f3587"; 343 } 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/oc/firefox-82.0.2.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 + sha256 = "a54056be66f78421a7f70cd5860ad5e804abd35017b02ca600c459c86c82ef50"; 348 } 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/pa-IN/firefox-82.0.2.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 + sha256 = "6a64174c90146c52b462a2e8b921880927774b6d9b6478df26ea194735c6eb6c"; 353 } 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/pl/firefox-82.0.2.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 + sha256 = "558f08956b019d8046ac6c0e3a9922f79176d9997129e795901f40ce04651e55"; 358 } 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/pt-BR/firefox-82.0.2.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 + sha256 = "bcc8c4d9a55c8669cd378b2f89cfa61da82e54be360fb754be78289c2ab8434f"; 363 } 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/pt-PT/firefox-82.0.2.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 + sha256 = "29ef81f9675b589122d311dd0f3075d48c99fb34aee9f9906d490585bd407468"; 368 } 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/rm/firefox-82.0.2.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 + sha256 = "390bd332f1fae6f5a48cc7b8bdd285b282689446977d859e37d8a097920dec9e"; 373 } 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ro/firefox-82.0.2.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 + sha256 = "1398529679e4220844a0b1880c0ff174fe2faa8b1c30c6041c1cd790d16a83fd"; 378 } 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ru/firefox-82.0.2.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 + sha256 = "a9ba4ded0a67ae842896aa75de3dda2b427d0748244649aa9c2db17dd35a9d02"; 383 } 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/si/firefox-82.0.2.tar.bz2"; 385 locale = "si"; 386 arch = "linux-x86_64"; 387 + sha256 = "a95b03c4085c096207a895d3ad193be7823da4e894793c0378391da5faaf01e5"; 388 } 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/sk/firefox-82.0.2.tar.bz2"; 390 locale = "sk"; 391 arch = "linux-x86_64"; 392 + sha256 = "ce09728fc05f18a549c9083d383c58d4a62371d69a01d30f5aba782a60ec70b6"; 393 } 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/sl/firefox-82.0.2.tar.bz2"; 395 locale = "sl"; 396 arch = "linux-x86_64"; 397 + sha256 = "c344aa40296d249f2c6c85718fd6a9b30be0407b7df7eb73f1810cc873f03477"; 398 } 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/son/firefox-82.0.2.tar.bz2"; 400 locale = "son"; 401 arch = "linux-x86_64"; 402 + sha256 = "3356b16e9174c90cc8e1deee262b8381fbfc34e9cd03e6f7bd48072861de5be5"; 403 } 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/sq/firefox-82.0.2.tar.bz2"; 405 locale = "sq"; 406 arch = "linux-x86_64"; 407 + sha256 = "a90e1dada0ef38114f1a8ba7236d8bc97285dc46f81334c86ee7a9a03c8d2b0d"; 408 } 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/sr/firefox-82.0.2.tar.bz2"; 410 locale = "sr"; 411 arch = "linux-x86_64"; 412 + sha256 = "d44891e53c9a41770dffb2fa744e3cea0a655194e218b70881e1f070aef07d69"; 413 } 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/sv-SE/firefox-82.0.2.tar.bz2"; 415 locale = "sv-SE"; 416 arch = "linux-x86_64"; 417 + sha256 = "e53a4ca8a04d7858c30260999b6acc09b8146ae8a8f4e558d62cca1ce18e7689"; 418 } 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ta/firefox-82.0.2.tar.bz2"; 420 locale = "ta"; 421 arch = "linux-x86_64"; 422 + sha256 = "a89ab7047cbbabde8a03e301f8067b130d37eb0ad7ddaf750051175dd721b6d0"; 423 } 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/te/firefox-82.0.2.tar.bz2"; 425 locale = "te"; 426 arch = "linux-x86_64"; 427 + sha256 = "6f80b934ff3bf696b4753f2cbf146d9151f40def404d6d749cf8de022be194ff"; 428 } 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/th/firefox-82.0.2.tar.bz2"; 430 locale = "th"; 431 arch = "linux-x86_64"; 432 + sha256 = "c37a9708768ddf723a2423ba0999e88b09a51028d7736234ffcaf8a32f56df8b"; 433 } 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/tl/firefox-82.0.2.tar.bz2"; 435 locale = "tl"; 436 arch = "linux-x86_64"; 437 + sha256 = "5ab670b24e2ee1c4b4c7fe518e9d3967c85f0e27ea2c7a4ba82bbdaabc6c4fd9"; 438 } 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/tr/firefox-82.0.2.tar.bz2"; 440 locale = "tr"; 441 arch = "linux-x86_64"; 442 + sha256 = "7e51ae3fca81e691675196b298a9b03de9e798f4fc032da8e5da295820a7d2c6"; 443 } 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/trs/firefox-82.0.2.tar.bz2"; 445 locale = "trs"; 446 arch = "linux-x86_64"; 447 + sha256 = "60263ac369cdc9aa9a8ab0dcb60219f3e14563fed709b99d8352c1b0469e9433"; 448 } 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/uk/firefox-82.0.2.tar.bz2"; 450 locale = "uk"; 451 arch = "linux-x86_64"; 452 + sha256 = "38f8e0ed748427991ee9c45694460d3eee28a5f94ee1ff59eafcf9eb93fab9c3"; 453 } 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/ur/firefox-82.0.2.tar.bz2"; 455 locale = "ur"; 456 arch = "linux-x86_64"; 457 + sha256 = "65e19c2395ff45bff79beb1aa4d9c18faaceb5a7000c6de672f6c1d6964571e0"; 458 } 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/uz/firefox-82.0.2.tar.bz2"; 460 locale = "uz"; 461 arch = "linux-x86_64"; 462 + sha256 = "d3967c3bbbd0ddd880a7cab3a359b946a7b99515c9b82bba044a33138822d864"; 463 } 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/vi/firefox-82.0.2.tar.bz2"; 465 locale = "vi"; 466 arch = "linux-x86_64"; 467 + sha256 = "a142d7ddc06c688666811ace6a9c32f28e74006f29eff4aa4aaae105f64a34ac"; 468 } 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/xh/firefox-82.0.2.tar.bz2"; 470 locale = "xh"; 471 arch = "linux-x86_64"; 472 + sha256 = "a696daecebfb59e8a798dcc6eb241ce10562438a013f243dd60ac8671091f585"; 473 } 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/zh-CN/firefox-82.0.2.tar.bz2"; 475 locale = "zh-CN"; 476 arch = "linux-x86_64"; 477 + sha256 = "d1167e254dc6c16d5d4e38cd8b98bbc065e369d7bd7414e6871b028c601118a2"; 478 } 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-x86_64/zh-TW/firefox-82.0.2.tar.bz2"; 480 locale = "zh-TW"; 481 arch = "linux-x86_64"; 482 + sha256 = "453ebd33173b2ae4a5120d73e3e0fdde57b480e3f66ef2fffaba27390ae945ae"; 483 } 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ach/firefox-82.0.2.tar.bz2"; 485 locale = "ach"; 486 arch = "linux-i686"; 487 + sha256 = "c7840623cb65c9c28285d41694a85990e0bda181697e229ad4b71478dec8bf2c"; 488 } 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/af/firefox-82.0.2.tar.bz2"; 490 locale = "af"; 491 arch = "linux-i686"; 492 + sha256 = "24915613ccc58840ccb1564ebacc906b96c7f171822f722265e02b8ee41b0dca"; 493 } 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/an/firefox-82.0.2.tar.bz2"; 495 locale = "an"; 496 arch = "linux-i686"; 497 + sha256 = "d7acf25c0fce89775827a1e8198fccd117b94dafe5fd9820f557cee88379da8b"; 498 } 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ar/firefox-82.0.2.tar.bz2"; 500 locale = "ar"; 501 arch = "linux-i686"; 502 + sha256 = "d24c74365c1b9384e8954f9b6ce4f2742bea269de7a20f448971a957f096ecf2"; 503 } 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ast/firefox-82.0.2.tar.bz2"; 505 locale = "ast"; 506 arch = "linux-i686"; 507 + sha256 = "0b858a243143f6afa68bb14f836fbf4a7245cb2856432004222422ceeb4c4d57"; 508 } 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/az/firefox-82.0.2.tar.bz2"; 510 locale = "az"; 511 arch = "linux-i686"; 512 + sha256 = "80ef7662e88c0fc1711bf385443917b325dfa46252b837f043f41fab0139967b"; 513 } 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/be/firefox-82.0.2.tar.bz2"; 515 locale = "be"; 516 arch = "linux-i686"; 517 + sha256 = "93c087192c67e074ab3b00fdf55d485f39c7b86cba4fd801e61d2f61e511a191"; 518 } 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/bg/firefox-82.0.2.tar.bz2"; 520 locale = "bg"; 521 arch = "linux-i686"; 522 + sha256 = "19afb87d93e3a01305c24b725b8ed764f8ae2e31e72a8ce4132f1d6451589321"; 523 } 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/bn/firefox-82.0.2.tar.bz2"; 525 locale = "bn"; 526 arch = "linux-i686"; 527 + sha256 = "e607dd2195d4a19d366de1f084bcdc91d4832287752c4a449d445eb7aaaff463"; 528 } 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/br/firefox-82.0.2.tar.bz2"; 530 locale = "br"; 531 arch = "linux-i686"; 532 + sha256 = "dbd5fa26f0b9b20933820005022af238a5f72c8688dc10a4aafa0318af67b342"; 533 } 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/bs/firefox-82.0.2.tar.bz2"; 535 locale = "bs"; 536 arch = "linux-i686"; 537 + sha256 = "7d3d4e3bc630e69b655f4668365359996266d15864b776fbe2e6a8773e212410"; 538 } 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ca-valencia/firefox-82.0.2.tar.bz2"; 540 locale = "ca-valencia"; 541 arch = "linux-i686"; 542 + sha256 = "a14d58cd78c72c29307887a91b534a7553ad2b4e81da5615bfb8a918d4abce60"; 543 } 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ca/firefox-82.0.2.tar.bz2"; 545 locale = "ca"; 546 arch = "linux-i686"; 547 + sha256 = "2aac2aa56702b1269b5b5755da2663621da1603e6ad956afe07d86ff54d3e64e"; 548 } 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/cak/firefox-82.0.2.tar.bz2"; 550 locale = "cak"; 551 arch = "linux-i686"; 552 + sha256 = "333cf7d04c22f644f0286102b498727dc448339de26fa1a1cfd353ad1b05a1ae"; 553 } 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/cs/firefox-82.0.2.tar.bz2"; 555 locale = "cs"; 556 arch = "linux-i686"; 557 + sha256 = "3d3756f69b0acfc95abd5ab21b9b77cd2272afdcb7056fa4b961c1528e467447"; 558 } 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/cy/firefox-82.0.2.tar.bz2"; 560 locale = "cy"; 561 arch = "linux-i686"; 562 + sha256 = "97d16b2b8def95897751397a8f5293931e1620d2b17b6a6f036d47abc79ae822"; 563 } 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/da/firefox-82.0.2.tar.bz2"; 565 locale = "da"; 566 arch = "linux-i686"; 567 + sha256 = "f97a2ded9c529e992df15b797afe0622a1d02cdf3e01fa46794b4ddddcfed0ac"; 568 } 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/de/firefox-82.0.2.tar.bz2"; 570 locale = "de"; 571 arch = "linux-i686"; 572 + sha256 = "4d9aba854f86075d29772957d7f31804ecdc1bc465315afbf0bd807a40f39bc5"; 573 } 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/dsb/firefox-82.0.2.tar.bz2"; 575 locale = "dsb"; 576 arch = "linux-i686"; 577 + sha256 = "bdf18303c3e67f6bda97c709460214bcad60dc11c35fb996bb628f79bb7d0a9b"; 578 } 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/el/firefox-82.0.2.tar.bz2"; 580 locale = "el"; 581 arch = "linux-i686"; 582 + sha256 = "29e9a29e97fea8cb4eb03c8ad67c8fb37e534199073202f381c6a9c50a9d6572"; 583 } 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/en-CA/firefox-82.0.2.tar.bz2"; 585 locale = "en-CA"; 586 arch = "linux-i686"; 587 + sha256 = "7fd41cc61c01491048cd37db223007a568a8470eea693e76e3f3394901b1af5b"; 588 } 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/en-GB/firefox-82.0.2.tar.bz2"; 590 locale = "en-GB"; 591 arch = "linux-i686"; 592 + sha256 = "818d44931c9ed4b4c258de26b33040409ebfe9a4856eb1f80715d15687ea9fdb"; 593 } 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/en-US/firefox-82.0.2.tar.bz2"; 595 locale = "en-US"; 596 arch = "linux-i686"; 597 + sha256 = "54a64c8fbb263df7e05b8532f0d6f50bd34f6b3cf3080ffc99c123b6b7009210"; 598 } 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/eo/firefox-82.0.2.tar.bz2"; 600 locale = "eo"; 601 arch = "linux-i686"; 602 + sha256 = "87e497515f1a90d315e58f592d9360baef382bb986cc17a1a20e9ea9013550fc"; 603 } 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/es-AR/firefox-82.0.2.tar.bz2"; 605 locale = "es-AR"; 606 arch = "linux-i686"; 607 + sha256 = "3306113b2e5249c9bef8cbe3ee30a76855402f39385ef730725fe19c650248fe"; 608 } 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/es-CL/firefox-82.0.2.tar.bz2"; 610 locale = "es-CL"; 611 arch = "linux-i686"; 612 + sha256 = "72fc2f9c4269255c5c9b6c65f11ce8613dd68a1b382c53cab159c56af91d4f12"; 613 } 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/es-ES/firefox-82.0.2.tar.bz2"; 615 locale = "es-ES"; 616 arch = "linux-i686"; 617 + sha256 = "720687e90a863bc08a79e7b98f52439efbf655cc170397095dcf2212839eeb77"; 618 } 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/es-MX/firefox-82.0.2.tar.bz2"; 620 locale = "es-MX"; 621 arch = "linux-i686"; 622 + sha256 = "32db50431886cf3e181a440eb40e4d9e93ebb0dd6c7e9eb3f6bb4cb203530d37"; 623 } 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/et/firefox-82.0.2.tar.bz2"; 625 locale = "et"; 626 arch = "linux-i686"; 627 + sha256 = "21c2de424dad554b4e74509df0b40a49c23b77c406d44c611ea0e08eb98d1886"; 628 } 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/eu/firefox-82.0.2.tar.bz2"; 630 locale = "eu"; 631 arch = "linux-i686"; 632 + sha256 = "96e3609f488fc8bdf899f07333121893dc5f74f520856536facb1a5b376773f0"; 633 } 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/fa/firefox-82.0.2.tar.bz2"; 635 locale = "fa"; 636 arch = "linux-i686"; 637 + sha256 = "572a6fe2bc5c0751077344e327ff11d434eeb26eade478dd79578822bc8ea167"; 638 } 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ff/firefox-82.0.2.tar.bz2"; 640 locale = "ff"; 641 arch = "linux-i686"; 642 + sha256 = "08daf54db1c3927ff10c38ae462c806b0968abe89509e2a7251b39e2f3e3e43d"; 643 } 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/fi/firefox-82.0.2.tar.bz2"; 645 locale = "fi"; 646 arch = "linux-i686"; 647 + sha256 = "c2bfa5646d0f39262c79dbae82f2a443e145b0b318d4213e42f265dd378a0a73"; 648 } 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/fr/firefox-82.0.2.tar.bz2"; 650 locale = "fr"; 651 arch = "linux-i686"; 652 + sha256 = "3e8ae367878e625b796e68fdc413ed4fa32a06260db7ecb000f3c089f7755a6d"; 653 } 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/fy-NL/firefox-82.0.2.tar.bz2"; 655 locale = "fy-NL"; 656 arch = "linux-i686"; 657 + sha256 = "29dcf0040b32d2a183cc79f220ff37c6b8059a399fd111b9c4ab8f851b638acc"; 658 } 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ga-IE/firefox-82.0.2.tar.bz2"; 660 locale = "ga-IE"; 661 arch = "linux-i686"; 662 + sha256 = "d2f0c91780ef7dd353d58e41e539b917e6c957231579517d1d75cef89769a5b8"; 663 } 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/gd/firefox-82.0.2.tar.bz2"; 665 locale = "gd"; 666 arch = "linux-i686"; 667 + sha256 = "1c305c577072a792aee284559202b4ca8108df8f96b1ef17c20d6918498b3599"; 668 } 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/gl/firefox-82.0.2.tar.bz2"; 670 locale = "gl"; 671 arch = "linux-i686"; 672 + sha256 = "86c829c97c30e5c49081283cc8ff5073d357ab09520194c56df63ab56858b083"; 673 } 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/gn/firefox-82.0.2.tar.bz2"; 675 locale = "gn"; 676 arch = "linux-i686"; 677 + sha256 = "11a41052cb779cd11fa2e9c1f2f4367a190e78e36dce900f2fd84c451a6001be"; 678 } 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/gu-IN/firefox-82.0.2.tar.bz2"; 680 locale = "gu-IN"; 681 arch = "linux-i686"; 682 + sha256 = "6dfb8e60f2225a8db6a2b1ce31b23b51803d5fe9642cb85ff9f440e53c887616"; 683 } 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/he/firefox-82.0.2.tar.bz2"; 685 locale = "he"; 686 arch = "linux-i686"; 687 + sha256 = "8d2f9ed875b38e6d19776c0bfb3a66fe030215d43ee247c9f1a5b85c7dcf0105"; 688 } 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/hi-IN/firefox-82.0.2.tar.bz2"; 690 locale = "hi-IN"; 691 arch = "linux-i686"; 692 + sha256 = "cf160dc3ff74855a206882e045395dc1ddd69d545184d7f02acb20289465842a"; 693 } 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/hr/firefox-82.0.2.tar.bz2"; 695 locale = "hr"; 696 arch = "linux-i686"; 697 + sha256 = "e62b04dba13d6d8dfada3976f23715cd221d5a9f0c9d2ea9a0b828c87222b8db"; 698 } 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/hsb/firefox-82.0.2.tar.bz2"; 700 locale = "hsb"; 701 arch = "linux-i686"; 702 + sha256 = "fbf8420109b4b7470bf8e5b889cbb51b5a9d827b9cedb2aeb5089f31e74b0211"; 703 } 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/hu/firefox-82.0.2.tar.bz2"; 705 locale = "hu"; 706 arch = "linux-i686"; 707 + sha256 = "161c7f91df6806310a10631f6d338cf86138f5056d265e4dfcc2823634a1cc79"; 708 } 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/hy-AM/firefox-82.0.2.tar.bz2"; 710 locale = "hy-AM"; 711 arch = "linux-i686"; 712 + sha256 = "a35885c431f6b160716355766c5e8f60ac94dc86675e91905c4781071de6c2a4"; 713 } 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ia/firefox-82.0.2.tar.bz2"; 715 locale = "ia"; 716 arch = "linux-i686"; 717 + sha256 = "e162f166587a94aaaf9a6419fdd9da21f949c7db0d1ad223016d470841e124cc"; 718 } 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/id/firefox-82.0.2.tar.bz2"; 720 locale = "id"; 721 arch = "linux-i686"; 722 + sha256 = "bee0a6a4a0a9fa3c13650bcb4fefaaa07cce21211d2d4fc0030f4f9133781eab"; 723 } 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/is/firefox-82.0.2.tar.bz2"; 725 locale = "is"; 726 arch = "linux-i686"; 727 + sha256 = "8994bc2da81e1b17ac112e7ca7a43be9f578c049e879651a4014730937c83283"; 728 } 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/it/firefox-82.0.2.tar.bz2"; 730 locale = "it"; 731 arch = "linux-i686"; 732 + sha256 = "7fa77ed489b07954543ba117dc3cf67fc70341a5e486d35596cc8f80f630482f"; 733 } 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ja/firefox-82.0.2.tar.bz2"; 735 locale = "ja"; 736 arch = "linux-i686"; 737 + sha256 = "76d299e4d71a82e72bc2e446bcafcc1b1d63b54c57e9aeb7ff11e7bff8611811"; 738 } 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ka/firefox-82.0.2.tar.bz2"; 740 locale = "ka"; 741 arch = "linux-i686"; 742 + sha256 = "6c027f7dbdff43c097a73ecad83aec6c7d623cfc8cdd77049d4dcab70984b403"; 743 } 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/kab/firefox-82.0.2.tar.bz2"; 745 locale = "kab"; 746 arch = "linux-i686"; 747 + sha256 = "ebd32284e83a0df7228f34263ea03b5b3f418fa5db193e01d20ef15f7ccc393d"; 748 } 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/kk/firefox-82.0.2.tar.bz2"; 750 locale = "kk"; 751 arch = "linux-i686"; 752 + sha256 = "39dcaefc6135f51157802878702debd14950a82a32b57862c9428236425de620"; 753 } 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/km/firefox-82.0.2.tar.bz2"; 755 locale = "km"; 756 arch = "linux-i686"; 757 + sha256 = "30b0fc4885498d9453dd3179a82d7fd12bcdb5a2b1f3d6227d7a7a68123544eb"; 758 } 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/kn/firefox-82.0.2.tar.bz2"; 760 locale = "kn"; 761 arch = "linux-i686"; 762 + sha256 = "ab0f33c172a47fd5fe1e3caa014938647dc870a97e9db0d1ed7e9b09a3fc920b"; 763 } 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ko/firefox-82.0.2.tar.bz2"; 765 locale = "ko"; 766 arch = "linux-i686"; 767 + sha256 = "7e20d1d2c16e6278e1e8290c18b39833e23b12cc9bbcfcf3135e52d3c155118d"; 768 } 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/lij/firefox-82.0.2.tar.bz2"; 770 locale = "lij"; 771 arch = "linux-i686"; 772 + sha256 = "5da50a6a54b1ce15af8ca26bdb2756449622f6d441593bae4f558c079ef732ce"; 773 } 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/lt/firefox-82.0.2.tar.bz2"; 775 locale = "lt"; 776 arch = "linux-i686"; 777 + sha256 = "a4bf43fd06f915720f3050750f226629a602aed690b74df728cfd616f8d1d063"; 778 } 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/lv/firefox-82.0.2.tar.bz2"; 780 locale = "lv"; 781 arch = "linux-i686"; 782 + sha256 = "8f8eaf80606a140616cfa17fb69bc611ac631a8ec1e4d204fb0de1c073b767aa"; 783 } 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/mk/firefox-82.0.2.tar.bz2"; 785 locale = "mk"; 786 arch = "linux-i686"; 787 + sha256 = "869715dd3d72c48db3007557aabc96fee78b73ecdc747ec0f361365eb1072111"; 788 } 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/mr/firefox-82.0.2.tar.bz2"; 790 locale = "mr"; 791 arch = "linux-i686"; 792 + sha256 = "ae921995425812eb2b70a479dc1d6bc319d397c7c16e020460d2d1f65cdc9305"; 793 } 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ms/firefox-82.0.2.tar.bz2"; 795 locale = "ms"; 796 arch = "linux-i686"; 797 + sha256 = "55fc6ca427864cd885fa8da786f50f4e88ef2d9adf331e55a6f8e781fe5f7838"; 798 } 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/my/firefox-82.0.2.tar.bz2"; 800 locale = "my"; 801 arch = "linux-i686"; 802 + sha256 = "26377b5108cd1208d111792dad61cf521fda0f4c4206d17e4907b06e4ab5e7d8"; 803 } 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/nb-NO/firefox-82.0.2.tar.bz2"; 805 locale = "nb-NO"; 806 arch = "linux-i686"; 807 + sha256 = "19bcb61803f6d6bbecfd94eb769b3d302a951ac5d7f337b6937f9282cbb8222a"; 808 } 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ne-NP/firefox-82.0.2.tar.bz2"; 810 locale = "ne-NP"; 811 arch = "linux-i686"; 812 + sha256 = "4575f7730e5964fa5be7ec351907d97794c06bf101bea5a98785238304d1fea9"; 813 } 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/nl/firefox-82.0.2.tar.bz2"; 815 locale = "nl"; 816 arch = "linux-i686"; 817 + sha256 = "f22f33b1a1127a4dc91781031c0112b05e8cd5fbbb8c732a6e18b5beeb5627ec"; 818 } 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/nn-NO/firefox-82.0.2.tar.bz2"; 820 locale = "nn-NO"; 821 arch = "linux-i686"; 822 + sha256 = "d59e605d47601c18d12e6a2a57cfb8c8752fea2711e8cb0d822b18a4f7a2c049"; 823 } 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/oc/firefox-82.0.2.tar.bz2"; 825 locale = "oc"; 826 arch = "linux-i686"; 827 + sha256 = "859b0b3b7317a4b94292edcb8f159d4c42404efcf67a170f435131b0b2331422"; 828 } 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/pa-IN/firefox-82.0.2.tar.bz2"; 830 locale = "pa-IN"; 831 arch = "linux-i686"; 832 + sha256 = "b8553bcc65ce5a075875849508876f34478a0d8166b048b4b8d0b37aacad359e"; 833 } 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/pl/firefox-82.0.2.tar.bz2"; 835 locale = "pl"; 836 arch = "linux-i686"; 837 + sha256 = "8428f5438edadd7f3e531aeb905bd46f52a3a624e1a36706b3e0e79d29366b94"; 838 } 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/pt-BR/firefox-82.0.2.tar.bz2"; 840 locale = "pt-BR"; 841 arch = "linux-i686"; 842 + sha256 = "021cb4431781ef19cf7be1f987b6859c2c8b7db67f1428cec475d4de82d38118"; 843 } 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/pt-PT/firefox-82.0.2.tar.bz2"; 845 locale = "pt-PT"; 846 arch = "linux-i686"; 847 + sha256 = "e55fe5ebb512e184e2c67dc6b866a0f727fa89bda6fb2ed763195761b67bc79c"; 848 } 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/rm/firefox-82.0.2.tar.bz2"; 850 locale = "rm"; 851 arch = "linux-i686"; 852 + sha256 = "30bc0d66c940ddaeaff516e900f85c652a3dee07d2ede81710efd31c5858e72e"; 853 } 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ro/firefox-82.0.2.tar.bz2"; 855 locale = "ro"; 856 arch = "linux-i686"; 857 + sha256 = "e467c27dafce634f4e507ba5520ea4dfc3d3fca2f751a8ae55fb3fb26a073b3f"; 858 } 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ru/firefox-82.0.2.tar.bz2"; 860 locale = "ru"; 861 arch = "linux-i686"; 862 + sha256 = "d0ea589f932e1dd4a1f6d12a758210e22213794f5d45ec5bb85621aa1ba206d2"; 863 } 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/si/firefox-82.0.2.tar.bz2"; 865 locale = "si"; 866 arch = "linux-i686"; 867 + sha256 = "6a22d47d1c193a2a048c7535ec49f2198bd2616e123353af0391272db9decd3b"; 868 } 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/sk/firefox-82.0.2.tar.bz2"; 870 locale = "sk"; 871 arch = "linux-i686"; 872 + sha256 = "c38f8f2f172c0de6d526be926c874a765116f14af5f50cb65cd7771a46cdcfe0"; 873 } 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/sl/firefox-82.0.2.tar.bz2"; 875 locale = "sl"; 876 arch = "linux-i686"; 877 + sha256 = "f39c27bb7d334f20e09fed97c3589db6aae988d3e538d7e2dbae690ab4b4e521"; 878 } 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/son/firefox-82.0.2.tar.bz2"; 880 locale = "son"; 881 arch = "linux-i686"; 882 + sha256 = "7edcdcb248e6cb9a78fd4061a2ab54e03692834f87c6d565ed9b777c952ba5fa"; 883 } 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/sq/firefox-82.0.2.tar.bz2"; 885 locale = "sq"; 886 arch = "linux-i686"; 887 + sha256 = "db3a6edc2a4008c09ba931e965e9853404dd272455ec8d6b20bf86e14a095bea"; 888 } 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/sr/firefox-82.0.2.tar.bz2"; 890 locale = "sr"; 891 arch = "linux-i686"; 892 + sha256 = "aa6bf3ed3402813f56b6d6c53a70da8c7decad3f9d3c3af66336aadc632e334c"; 893 } 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/sv-SE/firefox-82.0.2.tar.bz2"; 895 locale = "sv-SE"; 896 arch = "linux-i686"; 897 + sha256 = "8ffe039f7ed159150c6ad804e980c597741439dcc339841e464589ebd535eb38"; 898 } 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ta/firefox-82.0.2.tar.bz2"; 900 locale = "ta"; 901 arch = "linux-i686"; 902 + sha256 = "a46c944cc5b22fefe8503cf079be32cc5aeb2cd1b78e5642f5ec55f8baf28586"; 903 } 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/te/firefox-82.0.2.tar.bz2"; 905 locale = "te"; 906 arch = "linux-i686"; 907 + sha256 = "a7ce32a838d4add3123116628301fb6642311fd3f6fffe0ca4ed6cb314c162fe"; 908 } 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/th/firefox-82.0.2.tar.bz2"; 910 locale = "th"; 911 arch = "linux-i686"; 912 + sha256 = "3ed82ac4d015d397cb53149f30e2842614092413d84dd6add365428b80c40cdd"; 913 } 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/tl/firefox-82.0.2.tar.bz2"; 915 locale = "tl"; 916 arch = "linux-i686"; 917 + sha256 = "cdd9b16ad2fefdccbdea8bad3863e3177bd166fb595609f74b1afb7d279c4390"; 918 } 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/tr/firefox-82.0.2.tar.bz2"; 920 locale = "tr"; 921 arch = "linux-i686"; 922 + sha256 = "4b75d68d159ee4463854b53d0f68364648c2b36e6c0fc8937573cf2a1262ad0b"; 923 } 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/trs/firefox-82.0.2.tar.bz2"; 925 locale = "trs"; 926 arch = "linux-i686"; 927 + sha256 = "b0947e9e8f45d848093805ff34a59d6c74a5559df91da5bf2255e2a24d386f95"; 928 } 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/uk/firefox-82.0.2.tar.bz2"; 930 locale = "uk"; 931 arch = "linux-i686"; 932 + sha256 = "a4ff8ded991f00825e10ebe69be7183899d8bca0692eae4e2c60049e80d6710d"; 933 } 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/ur/firefox-82.0.2.tar.bz2"; 935 locale = "ur"; 936 arch = "linux-i686"; 937 + sha256 = "ee50b6ac2818824211c5fb871f19eb0582a5f50c3873139d6aed613d9a853197"; 938 } 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/uz/firefox-82.0.2.tar.bz2"; 940 locale = "uz"; 941 arch = "linux-i686"; 942 + sha256 = "6c530bd3bb2d1a3072513b203afd44affadd4cd3e8f9136f2b7e4e942d7cbd27"; 943 } 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/vi/firefox-82.0.2.tar.bz2"; 945 locale = "vi"; 946 arch = "linux-i686"; 947 + sha256 = "ebfba78fe1778b0e724822adf1f448f005f4575c4c47eaf4d7347c808d2fe5a2"; 948 } 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/xh/firefox-82.0.2.tar.bz2"; 950 locale = "xh"; 951 arch = "linux-i686"; 952 + sha256 = "e9e9b4b5cf377ab18c857242d1915ec0198393d35fd93c4ead4ac1d790db4d97"; 953 } 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/zh-CN/firefox-82.0.2.tar.bz2"; 955 locale = "zh-CN"; 956 arch = "linux-i686"; 957 + sha256 = "c7d8459ff0eaaac129f168c54454af90f9618c8515f9df2a35de578611700372"; 958 } 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/82.0.2/linux-i686/zh-TW/firefox-82.0.2.tar.bz2"; 960 locale = "zh-TW"; 961 arch = "linux-i686"; 962 + sha256 = "b9a3074700de458cd43721b683597f95f2ad81834a15d5ebde22dfc324d92fb3"; 963 } 964 ]; 965 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages.nix
··· 7 rec { 8 firefox = common rec { 9 pname = "firefox"; 10 - ffversion = "82.0"; 11 src = fetchurl { 12 url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; 13 - sha512 = "3lbvlb6yggd5v0pkr0x6j350jc5dpclqz7bv4i06r97a5ijdgfc7c6y605966hvw24v17byxr120xc7a39ikl1wnls7a9gyzyqcwyw8"; 14 }; 15 16 patches = [
··· 7 rec { 8 firefox = common rec { 9 pname = "firefox"; 10 + ffversion = "82.0.2"; 11 src = fetchurl { 12 url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; 13 + sha512 = "25wkgsqnafmq30m1kd1axkm454dhl2bmz6100i3ccqnn31vw3nyy6k3k1apsn62siqswpm55iclzcb10y4dfyyqcszvflim47c8i37k"; 14 }; 15 16 patches = [
+3 -3
pkgs/applications/networking/cluster/istioctl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "istioctl"; 5 - version = "1.7.3"; 6 7 src = fetchFromGitHub { 8 owner = "istio"; 9 repo = "istio"; 10 rev = version; 11 - sha256 = "1w0ddz2am053bpi0jrn5v3b76jf2z4nl7zv0i1z2v9xcx59bxkac"; 12 }; 13 - vendorSha256 = "02l13hzk5aikpylalsm35v27cljcl4z0qka9a4m125bc4rj2kp7k"; 14 15 doCheck = false; 16
··· 2 3 buildGoModule rec { 4 pname = "istioctl"; 5 + version = "1.7.4"; 6 7 src = fetchFromGitHub { 8 owner = "istio"; 9 repo = "istio"; 10 rev = version; 11 + sha256 = "1vy6y6gk7ljnrb7cxxaa60i4ycylsrd2yszbly1aaz5vnh1vsfz9"; 12 }; 13 + vendorSha256 = "0f2n8mwnj9i4qifs0f63jrgr61mjs3c1arxnny723i5pialj3zdl"; 14 15 doCheck = false; 16
+3 -3
pkgs/applications/networking/cluster/jx/default.nix
··· 2 3 buildGoModule rec { 4 pname = "jx"; 5 - version = "2.1.138"; 6 7 src = fetchFromGitHub { 8 owner = "jenkins-x"; 9 repo = "jx"; 10 rev = "v${version}"; 11 - sha256 = "1i45gzaql6rfplliky56lrzwjnm2qzv25kgyq7gvn9c7hjaaq65b"; 12 }; 13 14 - vendorSha256 = "1wvggarakshpw7m8h0x2zvd6bshd2kzbrjynfa113z90pgksvjng"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "jx"; 5 + version = "2.1.149"; 6 7 src = fetchFromGitHub { 8 owner = "jenkins-x"; 9 repo = "jx"; 10 rev = "v${version}"; 11 + sha256 = "0jgny09wpfab8mkxkhv9swp1baqx3lxsx75a5i78cypkj6xadc69"; 12 }; 13 14 + vendorSha256 = "1fswrf14nwjm0z8qqgdx236w7w1m451lyfinhx9pyp89fw2h5mv6"; 15 16 doCheck = false; 17
+3 -3
pkgs/applications/networking/cluster/k9s/default.nix
··· 2 3 buildGoModule rec { 4 pname = "k9s"; 5 - version = "0.22.1"; 6 7 src = fetchFromGitHub { 8 owner = "derailed"; 9 repo = "k9s"; 10 rev = "v${version}"; 11 - sha256 = "1qyibpvfbd8yahfmci431qd0zy4wwz03gwj1ak8rn3qxpv1cdbmk"; 12 }; 13 14 buildFlagsArray = '' ··· 18 -X github.com/derailed/k9s/cmd.commit=${src.rev} 19 ''; 20 21 - vendorSha256 = "1432ppgd3lc0h83i6vzklfhp95s2xwaf41mv4xfryzzszjfndmvl"; 22 23 doCheck = false; 24
··· 2 3 buildGoModule rec { 4 pname = "k9s"; 5 + version = "0.23.3"; 6 7 src = fetchFromGitHub { 8 owner = "derailed"; 9 repo = "k9s"; 10 rev = "v${version}"; 11 + sha256 = "0jdrjsv6miprw0bj964rgkbci4xdwfi536z3px93i2n9zrhhawpn"; 12 }; 13 14 buildFlagsArray = '' ··· 18 -X github.com/derailed/k9s/cmd.commit=${src.rev} 19 ''; 20 21 + vendorSha256 = "105vmy8agl3ppgi28wg7djx0jrfam7nxfvvlps9ycgyrv2qpjh2n"; 22 23 doCheck = false; 24
+3 -3
pkgs/applications/networking/cluster/kpt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kpt"; 5 - version = "0.35.0"; 6 7 src = fetchFromGitHub { 8 owner = "GoogleContainerTools"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "0pk4j809hh4hkr58wx42vyzcn2g7l2lb60f4j1837hkk3rwrxkpm"; 12 }; 13 14 - vendorSha256 = "0c5ycyjhzz18ny544ddrag39la0fl0d3zrbbv8szb5jx87jx67jj"; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "kpt"; 5 + version = "0.36.1"; 6 7 src = fetchFromGitHub { 8 owner = "GoogleContainerTools"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "0j9a7lxspgw63xzz1f8r5fb67jxm5isdvfi5450v20virxch9afi"; 12 }; 13 14 + vendorSha256 = "06kx85bf8mjmyhz5gp0la4fr8psnfz6i2rchc22sz2pgmsng1dfr"; 15 16 subPackages = [ "." ]; 17
+2 -2
pkgs/applications/networking/cluster/kubeseal/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubeseal"; 5 - version = "0.12.6"; 6 7 src = fetchFromGitHub { 8 owner = "bitnami-labs"; 9 repo = "sealed-secrets"; 10 rev = "v${version}"; 11 - sha256 = "0h8v751jf8hws8zcai6vfsk5vmq6f9kwz2dg79l6xa0dfc2rv4zf"; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "kubeseal"; 5 + version = "0.13.1"; 6 7 src = fetchFromGitHub { 8 owner = "bitnami-labs"; 9 repo = "sealed-secrets"; 10 rev = "v${version}"; 11 + sha256 = "1hlj7i7pjyvrf9cpx6s41sdn7wjwfk7c0akx45kw662vrxcqcgf2"; 12 }; 13 14 vendorSha256 = null;
+1 -1
pkgs/applications/networking/cluster/kubeval/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "instrumenta"; 9 repo = "kubeval"; 10 - rev = "${version}"; 11 sha256 = "05li0qv4q7fy2lr50r6c1r8dhx00jb1g01qmgc72a9zqp378yiq0"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "instrumenta"; 9 repo = "kubeval"; 10 + rev = version; 11 sha256 = "05li0qv4q7fy2lr50r6c1r8dhx00jb1g01qmgc72a9zqp378yiq0"; 12 }; 13
+5 -5
pkgs/applications/networking/cluster/popeye/default.nix
··· 2 3 buildGoModule rec { 4 pname = "popeye"; 5 - version = "0.8.10"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "derailed"; 10 repo = "popeye"; 11 - sha256 = "1cx39xipvvhb12nhvg7kfssnqafajni662b070ynlw8p870bj0sn"; 12 }; 13 14 buildFlagsArray = '' 15 -ldflags= 16 -s -w 17 -X github.com/derailed/popeye/cmd.version=${version} 18 - -X github.com/derailed/popeye/cmd.commit=b7a876eafd4f7ec5683808d8d6880c41c805056a 19 - -X github.com/derailed/popeye/cmd.date=2020-08-25T23:02:30Z 20 ''; 21 22 - vendorSha256 = "0b2bawc9wnqwgvrv614rq5y4ns9di65zqcbb199y2ijpsaw5d9a7"; 23 24 doCheck = false; 25
··· 2 3 buildGoModule rec { 4 pname = "popeye"; 5 + version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "derailed"; 10 repo = "popeye"; 11 + sha256 = "1rslmcdjs53zvv0xaf00vxqsfc3jh2p584j3q6nfgrghc978xmpf"; 12 }; 13 14 buildFlagsArray = '' 15 -ldflags= 16 -s -w 17 -X github.com/derailed/popeye/cmd.version=${version} 18 + -X github.com/derailed/popeye/cmd.commit=022c3104b642aab6bdb287468fb79068a33e1b0d 19 + -X github.com/derailed/popeye/cmd.date=2020-10-31T16:44:45Z 20 ''; 21 22 + vendorSha256 = "08195dnka7rs38py3kjii9zh9nifg2fnbi1wzjl0pc38i2bbrz0k"; 23 24 doCheck = false; 25
+2 -2
pkgs/applications/networking/compactor/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "compactor"; 7 - version = "0.12.2"; 8 9 src = fetchFromGitHub { 10 owner = "dns-stats"; 11 repo = pname; 12 rev = version; 13 - sha256 = "17p9wsslsh6ifnadvyygr0cgir4q4iirxfz9zpkpbhh76cx2qnay"; 14 }; 15 16 # cbor-diag, cddl and wireshark-cli are only used for tests.
··· 4 5 stdenv.mkDerivation rec { 6 pname = "compactor"; 7 + version = "1.0.0"; 8 9 src = fetchFromGitHub { 10 owner = "dns-stats"; 11 repo = pname; 12 rev = version; 13 + sha256 = "0x5rwbv0ndf9zcvnsbd78ic6shh9hd0bh3gh0lzz9wlb99lslbkk"; 14 }; 15 16 # cbor-diag, cddl and wireshark-cli are only used for tests.
+2 -2
pkgs/applications/networking/datovka/default.nix
··· 11 12 mkDerivation rec { 13 pname = "datovka"; 14 - version = "4.15.2"; 15 16 src = fetchurl { 17 url = "https://secure.nic.cz/files/datove_schranky/${version}/${pname}-${version}.tar.xz"; 18 - sha256 = "0vna3vaivi6w7nlkwpqhwmyly0s1d5y2yg51br2f918pjhp2cp7q"; 19 }; 20 21 buildInputs = [ libisds qmake qtbase qtsvg libxml2 ];
··· 11 12 mkDerivation rec { 13 pname = "datovka"; 14 + version = "4.15.5"; 15 16 src = fetchurl { 17 url = "https://secure.nic.cz/files/datove_schranky/${version}/${pname}-${version}.tar.xz"; 18 + sha256 = "1mnw1m3wjkw8rfh6fwwrhfmkna6j19pza9cs7kyp8qj1fzzqi8my"; 19 }; 20 21 buildInputs = [ libisds qmake qtbase qtsvg libxml2 ];
+2
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 8 9 useDune2 = true; 10 11 src = fetchFromGitHub { 12 owner = "astrada"; 13 repo = "google-drive-ocamlfuse";
··· 8 9 useDune2 = true; 10 11 + minimumOCamlVersion = "4.06"; 12 + 13 src = fetchFromGitHub { 14 owner = "astrada"; 15 repo = "google-drive-ocamlfuse";
+2 -2
pkgs/applications/networking/ids/zeek/default.nix
··· 21 in 22 stdenv.mkDerivation rec { 23 pname = "zeek"; 24 - version = "3.2.1"; 25 26 src = fetchurl { 27 url = "https://download.zeek.org/zeek-${version}.tar.gz"; 28 - sha256 = "0rybs79h0sq12vsayah8dixqac404z84rlvqynvzf3dh2lwcgg0y"; 29 }; 30 31 nativeBuildInputs = [ cmake flex bison file ];
··· 21 in 22 stdenv.mkDerivation rec { 23 pname = "zeek"; 24 + version = "3.2.2"; 25 26 src = fetchurl { 27 url = "https://download.zeek.org/zeek-${version}.tar.gz"; 28 + sha256 = "00cxz7ad7p62s2glcagzcvwbnsivrv4bmz6rl1vij907jb24hmvc"; 29 }; 30 31 nativeBuildInputs = [ cmake flex bison file ];
+3 -3
pkgs/applications/networking/instant-messengers/cordless/default.nix
··· 2 3 buildGoModule rec { 4 pname = "cordless"; 5 - version = "2020-08-30"; 6 7 src = fetchFromGitHub { 8 owner = "Bios-Marcel"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-CwOI7Ah4+sxD9We+Va5a6jYat5mjOeBk2EsOfwskz6k="; 12 }; 13 14 subPackages = [ "." ]; 15 16 - vendorSha256 = "sha256-01I7GrZkaskuz20kVK2YwqvP7ViPMlQ3BFaoLHwgvOE="; 17 18 meta = with stdenv.lib; { 19 homepage = "https://github.com/Bios-Marcel/cordless";
··· 2 3 buildGoModule rec { 4 pname = "cordless"; 5 + version = "2020-10-24"; 6 7 src = fetchFromGitHub { 8 owner = "Bios-Marcel"; 9 repo = pname; 10 rev = version; 11 + sha256 = "18j8yrnipiivc49jwbb0ipgqwdi249fs9zxxz8qx8jfq77imvwbq"; 12 }; 13 14 subPackages = [ "." ]; 15 16 + vendorSha256 = "1h47aqf8bmyqvaayfj16br1402qzy7kf8rk96f3vnsyvsnkg5gw5"; 17 18 meta = with stdenv.lib; { 19 homepage = "https://github.com/Bios-Marcel/cordless";
+1 -1
pkgs/applications/networking/instant-messengers/quaternion/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "QMatrixClient"; 12 repo = "Quaternion"; 13 - rev = "${version}"; 14 sha256 = "0hqhg7l6wpkdbzrdjvrbqymmahziri07ba0hvbii7dd2p0h248fv"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "QMatrixClient"; 12 repo = "Quaternion"; 13 + rev = version; 14 sha256 = "0hqhg7l6wpkdbzrdjvrbqymmahziri07ba0hvbii7dd2p0h248fv"; 15 }; 16
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 22 23 in mkDerivation rec { 24 pname = "telegram-desktop"; 25 - version = "2.4.5"; 26 27 # Telegram-Desktop with submodules 28 src = fetchurl { 29 url = "https://github.com/telegramdesktop/tdesktop/releases/download/v${version}/tdesktop-${version}-full.tar.gz"; 30 - sha256 = "0nhzypgc45f5gqy53azj7mljnj7p9p0m7bil02f9cih1dg5sdxx5"; 31 }; 32 33 postPatch = ''
··· 22 23 in mkDerivation rec { 24 pname = "telegram-desktop"; 25 + version = "2.4.6"; 26 27 # Telegram-Desktop with submodules 28 src = fetchurl { 29 url = "https://github.com/telegramdesktop/tdesktop/releases/download/v${version}/tdesktop-${version}-full.tar.gz"; 30 + sha256 = "190k9ik678br5k892gj26bx4rbj5rn5ks4qgf2nrlgww0z59fvrc"; 31 }; 32 33 postPatch = ''
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/tg_owt.nix
··· 3 }: 4 5 let 6 - rev = "1d4f7d74ff1a627db6e45682efd0e3b85738e426"; 7 - sha256 = "1w03xmjn693ff489pg368jv21478vr4ldxyya4lsrx87fn88caj3"; 8 9 in stdenv.mkDerivation { 10 pname = "tg_owt";
··· 3 }: 4 5 let 6 + rev = "e8fcae73947445db3d418fb7c20b964b59e14706"; 7 + sha256 = "0s2dd41r71aixhvympiqfks1liv7x78y60n0i87vmyxyfx449b5h"; 8 9 in stdenv.mkDerivation { 10 pname = "tg_owt";
+2 -2
pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
··· 3 with stdenv.lib; 4 5 stdenv.mkDerivation rec { 6 - version = "6.8.5"; 7 pname = "frostwire"; 8 9 src = fetchurl { 10 url = "https://dl.frostwire.com/frostwire/${version}/frostwire-${version}.amd64.tar.gz"; 11 - sha256 = "1zdas93w1yqg9yx8wlk7pxpdmwvg4ykg54ai7iyq9ir1zha8fyif"; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ];
··· 3 with stdenv.lib; 4 5 stdenv.mkDerivation rec { 6 + version = "6.8.7"; 7 pname = "frostwire"; 8 9 src = fetchurl { 10 url = "https://dl.frostwire.com/frostwire/${version}/frostwire-${version}.amd64.tar.gz"; 11 + sha256 = "1m9v4abm8jbyz46hin63vi6irs32n1xzg85bdyb48vpdxh6iwv04"; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ];
+2 -1
pkgs/applications/networking/remote/citrix-workspace/generic.nix
··· 3 , heimdal, krb5, libsoup, libvorbis, speex, openssl, zlib, xorg, pango, gtk2 4 , gnome2, nss, nspr, gtk_engines, freetype, dconf, libpng12, libxml2 5 , libjpeg, libredirect, tzdata, cacert, systemd, libcxxabi, libcxx, e2fsprogs, symlinkJoin 6 - , libpulseaudio 7 8 , homepage, version, prefix, hash 9 ··· 103 104 runtimeDependencies = [ 105 glib 106 107 xorg.libX11 108 xorg.libXScrnSaver
··· 3 , heimdal, krb5, libsoup, libvorbis, speex, openssl, zlib, xorg, pango, gtk2 4 , gnome2, nss, nspr, gtk_engines, freetype, dconf, libpng12, libxml2 5 , libjpeg, libredirect, tzdata, cacert, systemd, libcxxabi, libcxx, e2fsprogs, symlinkJoin 6 + , libpulseaudio, pcsclite 7 8 , homepage, version, prefix, hash 9 ··· 103 104 runtimeDependencies = [ 105 glib 106 + pcsclite 107 108 xorg.libX11 109 xorg.libXScrnSaver
+1 -1
pkgs/applications/networking/trebleshot/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "genonbeta"; 12 repo = "TrebleShot-Desktop"; 13 - rev = "${version}"; 14 sha256 = "1k8wagw6arsi1lqkhn1nl6j11mb122vi1qs0q2np6nznwfy7pn1k"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "genonbeta"; 12 repo = "TrebleShot-Desktop"; 13 + rev = version; 14 sha256 = "1k8wagw6arsi1lqkhn1nl6j11mb122vi1qs0q2np6nznwfy7pn1k"; 15 }; 16
+2 -2
pkgs/applications/office/calligra/default.nix
··· 15 16 mkDerivation rec { 17 pname = "calligra"; 18 - version = "3.2.0"; 19 20 src = fetchurl { 21 url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 22 - sha256 = "sha256-flViKGZdeeZ8Bi/RFz1mdvCw187v3W4bC8+aeB6nCVE="; 23 }; 24 25 nativeBuildInputs = [ extra-cmake-modules kdoctools ];
··· 15 16 mkDerivation rec { 17 pname = "calligra"; 18 + version = "3.2.1"; 19 20 src = fetchurl { 21 url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 22 + sha256 = "0iqi6z6gkck2afgy200dacgcspq7i7887alcj0pklm08hbmsdy5i"; 23 }; 24 25 nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+2 -2
pkgs/applications/office/flexibee/default.nix
··· 1 { stdenv, fetchurl, makeWrapper, jre }: 2 3 let 4 - version = "2020.2.3.1"; 5 majorVersion = builtins.substring 0 6 version; 6 in 7 ··· 11 12 src = fetchurl { 13 url = "http://download.flexibee.eu/download/${majorVersion}/${version}/${pname}-${version}.tar.gz"; 14 - sha256 = "05wzg7f6mzz7r6azzb8k2g5fakkqh6762y4q9qkmrzbixvxh4lz9"; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
··· 1 { stdenv, fetchurl, makeWrapper, jre }: 2 3 let 4 + version = "2020.2.6"; 5 majorVersion = builtins.substring 0 6 version; 6 in 7 ··· 11 12 src = fetchurl { 13 url = "http://download.flexibee.eu/download/${majorVersion}/${version}/${pname}-${version}.tar.gz"; 14 + sha256 = "0vscz24sabk9xafywnx41rqhq6300ddsw1x95ibc7ghsgbkq80ja"; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/radio/flmsg/default.nix
··· 6 }: 7 8 stdenv.mkDerivation rec { 9 - version = "4.0.14"; 10 pname = "flmsg"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/fldigi/${pname}-${version}.tar.gz"; 14 - sha256 = "0s1prawkpvr7xr7h8w7r0ly90ya3n8h6qsii0x6laqrkgjn9w9iy"; 15 }; 16 17 buildInputs = [
··· 6 }: 7 8 stdenv.mkDerivation rec { 9 + version = "4.0.17"; 10 pname = "flmsg"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/fldigi/${pname}-${version}.tar.gz"; 14 + sha256 = "09xf3f65d3qi69frznf4fdznbfbc7kmgxw716q2c7ccsmh9c5q44"; 15 }; 16 17 buildInputs = [
+2 -2
pkgs/applications/science/biology/igv/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "igv"; 5 - version = "2.8.9"; 6 src = fetchzip { 7 url = "https://data.broadinstitute.org/igv/projects/downloads/2.8/IGV_${version}.zip"; 8 - sha256 = "1874w1xprv91caz1ymfxilq6inhj36xzx8j9m0mcyp0qfvfvyjp7"; 9 }; 10 11 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "igv"; 5 + version = "2.8.11"; 6 src = fetchzip { 7 url = "https://data.broadinstitute.org/igv/projects/downloads/2.8/IGV_${version}.zip"; 8 + sha256 = "1hiwnrrh42qzc7kdc7bypgcgn488pz8g462xzchbhgx7jjdbbwhm"; 9 }; 10 11 installPhase = ''
+2 -2
pkgs/applications/science/chemistry/jmol/default.nix
··· 17 }; 18 in 19 stdenv.mkDerivation rec { 20 - version = "14.31.3"; 21 pname = "jmol"; 22 23 src = let 24 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 25 in fetchurl { 26 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 27 - sha256 = "067051wp9kgkgcy3mvqwxhim0h1qfcf4jk8vrbzd3y9pwmjismzy"; 28 }; 29 30 patchPhase = ''
··· 17 }; 18 in 19 stdenv.mkDerivation rec { 20 + version = "14.31.14"; 21 pname = "jmol"; 22 23 src = let 24 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 25 in fetchurl { 26 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 27 + sha256 = "1qmy4iqn5xgd4m9hs4w9cn9rzkwmpgdb5azd93cypp05s4nmjsnm"; 28 }; 29 30 patchPhase = ''
+1 -1
pkgs/applications/science/electronics/flatcam/default.nix
··· 10 11 src = fetchFromBitbucket { 12 owner = "jpcgt"; 13 - repo = "${pname}"; 14 rev = "533afd6a1772857cb633c011b5e0a15b60b1e92e"; # 8.5 with Red Hat packaging. 15 sha256 = "199kiiml18k34z1zhk2hbhibphmnv0kb11kxiajq52alps0mjb3m"; 16 };
··· 10 11 src = fetchFromBitbucket { 12 owner = "jpcgt"; 13 + repo = pname; 14 rev = "533afd6a1772857cb633c011b5e0a15b60b1e92e"; # 8.5 with Red Hat packaging. 15 sha256 = "199kiiml18k34z1zhk2hbhibphmnv0kb11kxiajq52alps0mjb3m"; 16 };
+2 -2
pkgs/applications/science/electronics/gtkwave/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gtkwave"; 5 - version = "3.3.106"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/gtkwave/${pname}-gtk3-${version}.tar.gz"; 9 - sha256 = "0ma53s27735x16dq5qi91kvlypkiwkxh2jhw0gziyccnk1mkdsji"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gtkwave"; 5 + version = "3.3.107"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/gtkwave/${pname}-gtk3-${version}.tar.gz"; 9 + sha256 = "0ma30jyc94iid3v3m8aw4i2lyiqfxkpsdvdmmaibynk400cbzivl"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+1 -1
pkgs/applications/science/logic/potassco/clingcon.nix
··· 11 12 src = fetchFromGitHub { 13 owner = "potassco"; 14 - repo = "${pname}"; 15 rev = "v${version}"; 16 fetchSubmodules = true; 17 sha256 = "1q7517h10jfvjdk2czq8d6y57r8kr1j1jj2k2ip2qxkpyfigk4rs";
··· 11 12 src = fetchFromGitHub { 13 owner = "potassco"; 14 + repo = pname; 15 rev = "v${version}"; 16 fetchSubmodules = true; 17 sha256 = "1q7517h10jfvjdk2czq8d6y57r8kr1j1jj2k2ip2qxkpyfigk4rs";
+2 -2
pkgs/applications/science/math/ginac/default.nix
··· 1 { stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }: 2 3 stdenv.mkDerivation rec { 4 - name = "ginac-1.7.9"; 5 6 src = fetchurl { 7 url = "${meta.homepage}/${name}.tar.bz2"; 8 - sha256 = "08cqc87qq4w6z3l053x5gfqsa4zkgkicq8skxsbsj39nli1zzkb7"; 9 }; 10 11 propagatedBuildInputs = [ cln ];
··· 1 { stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }: 2 3 stdenv.mkDerivation rec { 4 + name = "ginac-1.8.0"; 5 6 src = fetchurl { 7 url = "${meta.homepage}/${name}.tar.bz2"; 8 + sha256 = "0l9byzfxq3f9az5pcdldnl95ws8mpirkqky46f973mvxi5541d24"; 9 }; 10 11 propagatedBuildInputs = [ cln ];
+2 -2
pkgs/applications/science/misc/cytoscape/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cytoscape"; 5 - version = "3.8.1"; 6 7 src = fetchurl { 8 url = "https://github.com/cytoscape/cytoscape/releases/download/${version}/${pname}-unix-${version}.tar.gz"; 9 - sha256 = "006g0w29sccg5h0zlrxdp3lx4vx1bfdhx2cms6aah85r5b82wgkf"; 10 }; 11 12 patches = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cytoscape"; 5 + version = "3.8.2"; 6 7 src = fetchurl { 8 url = "https://github.com/cytoscape/cytoscape/releases/download/${version}/${pname}-unix-${version}.tar.gz"; 9 + sha256 = "0zgsq9qnyvmq96pgf7372r16rm034fd0r4qa72xi9zbd4f2r7z8w"; 10 }; 11 12 patches = [
+2 -2
pkgs/applications/version-management/cvs-fast-export/default.nix
··· 1 {stdenv, fetchurl, makeWrapper, flex, bison, 2 asciidoc, docbook_xml_dtd_45, docbook_xsl, 3 libxml2, libxslt, 4 - python27, rcs, cvs, git, 5 coreutils, rsync}: 6 with stdenv; with lib; 7 mkDerivation rec { ··· 22 23 buildInputs = [ 24 flex bison asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt 25 - python27 rcs cvs git makeWrapper 26 ]; 27 28 postPatch = "patchShebangs .";
··· 1 {stdenv, fetchurl, makeWrapper, flex, bison, 2 asciidoc, docbook_xml_dtd_45, docbook_xsl, 3 libxml2, libxslt, 4 + python3, rcs, cvs, git, 5 coreutils, rsync}: 6 with stdenv; with lib; 7 mkDerivation rec { ··· 22 23 buildInputs = [ 24 flex bison asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt 25 + python3 rcs cvs git makeWrapper 26 ]; 27 28 postPatch = "patchShebangs .";
+3 -3
pkgs/applications/version-management/git-and-tools/bump2version/default.nix
··· 7 8 src = fetchFromGitHub { 9 owner = "c4urself"; 10 - repo = "${pname}"; 11 rev = "refs/tags/v${version}"; 12 sha256 = "10p7rg569rk3qvzs5kjj17894bqlsg3ihhbln6ciwwfhkfq1kpja"; 13 }; ··· 16 # X's in pytest are git tests which won't run in sandbox 17 checkPhase = '' 18 pytest tests/ -k 'not usage_string_fork' 19 - ''; 20 21 meta = with stdenv.lib; { 22 description = "Version-bump your software with a single command"; 23 longDescription = '' 24 - A small command line tool to simplify releasing software by updating 25 all version strings in your source code by the correct increment. 26 ''; 27 homepage = "https://github.com/c4urself/bump2version";
··· 7 8 src = fetchFromGitHub { 9 owner = "c4urself"; 10 + repo = pname; 11 rev = "refs/tags/v${version}"; 12 sha256 = "10p7rg569rk3qvzs5kjj17894bqlsg3ihhbln6ciwwfhkfq1kpja"; 13 }; ··· 16 # X's in pytest are git tests which won't run in sandbox 17 checkPhase = '' 18 pytest tests/ -k 'not usage_string_fork' 19 + ''; 20 21 meta = with stdenv.lib; { 22 description = "Version-bump your software with a single command"; 23 longDescription = '' 24 + A small command line tool to simplify releasing software by updating 25 all version strings in your source code by the correct increment. 26 ''; 27 homepage = "https://github.com/c4urself/bump2version";
+1 -1
pkgs/applications/version-management/git-and-tools/ghorg/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "gabrie30"; 9 repo = "ghorg"; 10 - rev = "${version}"; 11 sha256 = "0diwndkckv6fga45j9zngizycn5m71r67cziv0zrx6c66ssbj49w"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "gabrie30"; 9 repo = "ghorg"; 10 + rev = version; 11 sha256 = "0diwndkckv6fga45j9zngizycn5m71r67cziv0zrx6c66ssbj49w"; 12 }; 13
+7 -3
pkgs/applications/version-management/git-and-tools/git-absorb/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "git-absorb"; 5 - version = "0.6.5"; 6 7 src = fetchFromGitHub { 8 owner = "tummychow"; 9 repo = pname; 10 rev = "refs/tags/${version}"; 11 - sha256 = "12ih0gm07ddi86jy612f029nzav345v57pjajyy9lw017g6n6mjb"; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ]; 15 16 buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]; 17 18 - cargoSha256 = "0x2zcw0bpwqimvbb5xj8xawvl4jcvk5lj0y2mm5ncbdapzyqdsb2"; 19 20 postInstall = '' 21 installManPage Documentation/git-absorb.1 22 ''; 23 24 meta = with stdenv.lib; {
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "git-absorb"; 5 + version = "0.6.6"; 6 7 src = fetchFromGitHub { 8 owner = "tummychow"; 9 repo = pname; 10 rev = "refs/tags/${version}"; 11 + sha256 = "04v10bn24acify34vh5ayymsr1flcyb05f3az9k1s2m6nlxy5gb9"; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ]; 15 16 buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]; 17 18 + cargoSha256 = "0h0vlz4qd8i9bf1mgjr618zbdwfp6bmy7ql9a1xzjmfdpkl3cgk9"; 19 20 postInstall = '' 21 installManPage Documentation/git-absorb.1 22 + for shell in bash zsh fish; do 23 + $out/bin/git-absorb --gen-completions $shell > git-absorb.$shell 24 + installShellCompletion git-absorb.$shell 25 + done 26 ''; 27 28 meta = with stdenv.lib; {
+2 -2
pkgs/applications/version-management/git-and-tools/git-extras/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "git-extras"; 5 - version = "6.0.0"; 6 7 src = fetchzip { 8 url = "https://github.com/tj/git-extras/archive/${version}.tar.gz"; 9 - sha256 = "0mxb3c5lb5n7c76bp10bw7bid564vjxi5f7cvzaj2ss93v5rr11g"; 10 }; 11 12 nativeBuildInputs = [ unixtools.column which ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "git-extras"; 5 + version = "6.1.0"; 6 7 src = fetchzip { 8 url = "https://github.com/tj/git-extras/archive/${version}.tar.gz"; 9 + sha256 = "12ff9rhgqd71xm72r385hx0h8g75hz0ag0adzqcwfa54k0lhrrrz"; 10 }; 11 12 nativeBuildInputs = [ unixtools.column which ];
+2 -2
pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "git-filter-repo"; 5 - version = "2.28.0"; 6 7 src = fetchurl { 8 url = "https://github.com/newren/git-filter-repo/releases/download/v${version}/${pname}-${version}.tar.xz"; 9 - sha256 = "0sa6h6k1mnhx8p8w5d88gx7cqbnxaazfj1dv47c107fk70hqvvpx"; 10 }; 11 12 buildInputs = [ pythonPackages.python ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "git-filter-repo"; 5 + version = "2.29.0"; 6 7 src = fetchurl { 8 url = "https://github.com/newren/git-filter-repo/releases/download/v${version}/${pname}-${version}.tar.xz"; 9 + sha256 = "00nn7k9jqrybb762486fmigsnbcn9lbvimgpfvvarz4ikdp9y9pb"; 10 }; 11 12 buildInputs = [ pythonPackages.python ];
+2 -2
pkgs/applications/video/clipgrab/default.nix
··· 5 6 mkDerivation rec { 7 pname = "clipgrab"; 8 - version = "3.8.14"; 9 10 src = fetchurl { 11 - sha256 = "19337qjxwlkpdnnh6q0y4b8askk17a8zb88gifznllrk06a6pgyf"; 12 # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz! 13 url = "https://download.clipgrab.org/${pname}-${version}.tar.gz"; 14 };
··· 5 6 mkDerivation rec { 7 pname = "clipgrab"; 8 + version = "3.8.15"; 9 10 src = fetchurl { 11 + sha256 = "1anp8hhwbkirsvc7mn11k272f0d85vzb5ppiw3gg9ss2hdai563n"; 12 # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz! 13 url = "https://download.clipgrab.org/${pname}-${version}.tar.gz"; 14 };
+3 -3
pkgs/applications/video/filebot/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "filebot"; 13 - version = "4.9.1"; 14 15 src = fetchurl { 16 url = "https://get.filebot.net/filebot/FileBot_${version}/FileBot_${version}-portable.tar.xz"; 17 - sha256 = "0l496cz703mjymjhgmyrkqbfld1bz53pdsbkx00h9a267j22fkms"; 18 }; 19 20 unpackPhase = "tar xvf $src"; ··· 30 cp -r filebot.sh lib/ jar/ $out/opt/ 31 # Filebot writes to $APP_DATA, which fails due to read-only filesystem. Using current user .local directory instead. 32 substituteInPlace $out/opt/filebot.sh \ 33 - --replace 'APP_DATA="$FILEBOT_HOME/data/$USER"' 'APP_DATA=''${XDG_DATA_HOME:-$HOME/.local/share}/filebot/data' \ 34 --replace '$FILEBOT_HOME/data/.license' '$APP_DATA/.license' 35 wrapProgram $out/opt/filebot.sh \ 36 --prefix PATH : ${stdenv.lib.makeBinPath [ openjdk11 ]}
··· 10 11 stdenv.mkDerivation rec { 12 pname = "filebot"; 13 + version = "4.9.2"; 14 15 src = fetchurl { 16 url = "https://get.filebot.net/filebot/FileBot_${version}/FileBot_${version}-portable.tar.xz"; 17 + sha256 = "0hcyam8l0fzc9fnp1dpawk0s3rwhfph78w99y7zlcv5l4l4h04lz"; 18 }; 19 20 unpackPhase = "tar xvf $src"; ··· 30 cp -r filebot.sh lib/ jar/ $out/opt/ 31 # Filebot writes to $APP_DATA, which fails due to read-only filesystem. Using current user .local directory instead. 32 substituteInPlace $out/opt/filebot.sh \ 33 + --replace 'APP_DATA="$FILEBOT_HOME/data/$(id -u)"' 'APP_DATA=''${XDG_DATA_HOME:-$HOME/.local/share}/filebot/data' \ 34 --replace '$FILEBOT_HOME/data/.license' '$APP_DATA/.license' 35 wrapProgram $out/opt/filebot.sh \ 36 --prefix PATH : ${stdenv.lib.makeBinPath [ openjdk11 ]}
+2 -2
pkgs/applications/video/plex-mpv-shim/default.nix
··· 2 3 buildPythonApplication rec { 4 pname = "plex-mpv-shim"; 5 - version = "1.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "iwalton3"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "0fi0glnl7nr6754r9jk7d7dsnjbdm7civvhcj2l009yxiv2rxzj3"; 12 }; 13 14 propagatedBuildInputs = [ mpv requests python-mpv-jsonipc ];
··· 2 3 buildPythonApplication rec { 4 pname = "plex-mpv-shim"; 5 + version = "1.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "iwalton3"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "06i6pp4jg0f9h6ash60fj1l5mbsdw3zyx7c6anbsrn86802i7paa"; 12 }; 13 14 propagatedBuildInputs = [ mpv requests python-mpv-jsonipc ];
+7 -3
pkgs/applications/video/shotcut/default.nix
··· 9 10 mkDerivation rec { 11 pname = "shotcut"; 12 - version = "20.09.13"; 13 14 src = fetchFromGitHub { 15 owner = "mltframework"; 16 repo = "shotcut"; 17 rev = "v${version}"; 18 - sha256 = "1q7ba6j3b2yzn3y5z9s5ldh15wrvhi6vymhwm910nqa5379dcc21"; 19 }; 20 21 enableParallelBuilding = true; ··· 27 ]; 28 29 NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt"; 30 - qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" "SHOTCUT_VERSION=${version}" ]; 31 32 prePatch = '' 33 sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp
··· 9 10 mkDerivation rec { 11 pname = "shotcut"; 12 + version = "20.10.31"; 13 14 src = fetchFromGitHub { 15 owner = "mltframework"; 16 repo = "shotcut"; 17 rev = "v${version}"; 18 + sha256 = "16ypq1v396pibhh33nm78p6hr5fz3h74l0ykg9f72b8whw23jyz6"; 19 }; 20 21 enableParallelBuilding = true; ··· 27 ]; 28 29 NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt"; 30 + qmakeFlags = [ 31 + "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" 32 + "SHOTCUT_VERSION=${version}" 33 + "DEFINES+=SHOTCUT_NOUPGRADE" 34 + ]; 35 36 prePatch = '' 37 sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp
+2 -2
pkgs/applications/virtualization/charliecloud/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 5 - version = "0.19"; 6 pname = "charliecloud"; 7 8 src = fetchFromGitHub { 9 owner = "hpc"; 10 repo = "charliecloud"; 11 rev = "v${version}"; 12 - sha256 = "1rmvm0s1jdpzfg32b3hwsbdkzws7gsy4xq227hmzv3n2dv64svm6"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 5 + version = "0.20"; 6 pname = "charliecloud"; 7 8 src = fetchFromGitHub { 9 owner = "hpc"; 10 repo = "charliecloud"; 11 rev = "v${version}"; 12 + sha256 = "15ihffwhpjnzgz0ir5vc9la4fwkqj91vmrcsb2r58ikq7h9sk45j"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook makeWrapper ];
+2 -2
pkgs/applications/window-managers/hikari/default.nix
··· 12 13 let 14 pname = "hikari"; 15 - version = "2.1.2"; 16 in 17 18 stdenv.mkDerivation { ··· 20 21 src = fetchzip { 22 url = "https://hikari.acmelabs.space/releases/${pname}-${version}.tar.gz"; 23 - sha256 = "1qzbwc8dgsvp5jb4faapcrg9npsl11gq8jvhbbk2h7hj52c5lgmv"; 24 }; 25 26 nativeBuildInputs = [ pkgconfig bmake ];
··· 12 13 let 14 pname = "hikari"; 15 + version = "2.2.2"; 16 in 17 18 stdenv.mkDerivation { ··· 20 21 src = fetchzip { 22 url = "https://hikari.acmelabs.space/releases/${pname}-${version}.tar.gz"; 23 + sha256 = "0sln1n5f67i3vxkybfi6xhzplb45djqyg272vqkv64m72rmm8875"; 24 }; 25 26 nativeBuildInputs = [ pkgconfig bmake ];
+2 -2
pkgs/applications/window-managers/i3/gaps.nix
··· 3 i3.overrideAttrs (oldAttrs : rec { 4 5 name = "i3-gaps-${version}"; 6 - version = "4.18.2"; 7 8 src = fetchurl { 9 url = "https://github.com/Airblader/i3/releases/download/${version}/i3-${version}.tar.bz2"; 10 - sha256 = "0lz08wf4b0yprzqsmymn94kiyg885dcwmh0p64v2rnf52s165g2g"; 11 }; 12 13 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ autoreconfHook ];
··· 3 i3.overrideAttrs (oldAttrs : rec { 4 5 name = "i3-gaps-${version}"; 6 + version = "4.18.3"; 7 8 src = fetchurl { 9 url = "https://github.com/Airblader/i3/releases/download/${version}/i3-${version}.tar.bz2"; 10 + sha256 = "1hcakwyz78lgp8mhqv7pw86jlb3m415pfql1q19rkijnhm3fn3ci"; 11 }; 12 13 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ autoreconfHook ];
+2 -2
pkgs/applications/window-managers/i3/lock.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "i3lock"; 6 - version = "2.12"; 7 8 src = fetchurl { 9 url = "https://i3wm.org/i3lock/${pname}-${version}.tar.bz2"; 10 - sha256 = "02dwaqxpclcwiwvpvq7zwz4sxcv9c15dbf17ifalj1p8djls3cnh"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "i3lock"; 6 + version = "2.13"; 7 8 src = fetchurl { 9 url = "https://i3wm.org/i3lock/${pname}-${version}.tar.bz2"; 10 + sha256 = "02szjsaz7rqrdkd0r2nwgwa85c4hwfrcskxw7ryk695kmjcfhzv3"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig ];
+2 -2
pkgs/data/fonts/agave/default.nix
··· 2 3 let 4 pname = "agave"; 5 - version = "22"; 6 in fetchurl { 7 name = "${pname}-${version}"; 8 url = "https://github.com/agarick/agave/releases/download/v${version}/Agave-Regular.ttf"; ··· 13 install -D $downloadedFile $out/share/fonts/truetype/Agave-Regular.ttf 14 ''; 15 16 - sha256 = "1jb8f0xcv5z0l5nyx733b6zclswi82vrh2nwyyhbqzgqrl4y1h6s"; 17 18 meta = with lib; { 19 description = "truetype monospaced typeface designed for X environments";
··· 2 3 let 4 pname = "agave"; 5 + version = "30"; 6 in fetchurl { 7 name = "${pname}-${version}"; 8 url = "https://github.com/agarick/agave/releases/download/v${version}/Agave-Regular.ttf"; ··· 13 install -D $downloadedFile $out/share/fonts/truetype/Agave-Regular.ttf 14 ''; 15 16 + sha256 = "1f2f1fycwi8xbf8x03yfq78nv11b2msl4ll9flw8rkg023h9vwg7"; 17 18 meta = with lib; { 19 description = "truetype monospaced typeface designed for X environments";
+2 -2
pkgs/data/fonts/sudo/default.nix
··· 1 { lib, fetchzip }: 2 3 let 4 - version = "0.51"; 5 in fetchzip { 6 name = "sudo-font-${version}"; 7 url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip"; 8 - sha256 = "19m132183w5hrc5qvlb6cj38hir2302cqiljlfc72qdlb8al6fwi"; 9 10 postFetch = '' 11 mkdir -p $out/share/fonts/
··· 1 { lib, fetchzip }: 2 3 let 4 + version = "0.52"; 5 in fetchzip { 6 name = "sudo-font-${version}"; 7 url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip"; 8 + sha256 = "1j5p7apclyy5gfj2kklmgcncdsp5iik4gd6mdl29anzijknd0kja"; 9 10 postFetch = '' 11 mkdir -p $out/share/fonts/
+1 -1
pkgs/data/icons/zafiro-icons/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "zayronxio"; 9 repo = pname; 10 - rev = "${version}"; 11 sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "zayronxio"; 9 repo = pname; 10 + rev = version; 11 sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv"; 12 }; 13
+8 -6
pkgs/data/themes/orion/default.nix
··· 1 - { stdenv, fetchgit, gtk-engine-murrine }: 2 3 - stdenv.mkDerivation { 4 - name = "orion-1.5"; 5 6 - src = fetchgit { 7 - url = "https://github.com/shimmerproject/Orion.git"; 8 - rev = "refs/tags/v1.5"; 9 sha256 = "1116yawv3fspkiq1ykk2wj0gza3l04b5nhldy0bayzjaj0y6fd89"; 10 }; 11
··· 1 + { stdenv, fetchFromGitHub, gtk-engine-murrine }: 2 3 + stdenv.mkDerivation rec { 4 + pname = "orion"; 5 + version = "1.5"; 6 7 + src = fetchFromGitHub { 8 + owner = "shimmerproject"; 9 + repo = "Orion"; 10 + rev = "refs/tags/v${version}"; 11 sha256 = "1116yawv3fspkiq1ykk2wj0gza3l04b5nhldy0bayzjaj0y6fd89"; 12 }; 13
+2 -2
pkgs/desktops/gnome-3/games/aisleriot/default.nix
··· 22 version = "3.22.11"; 23 24 src = fetchFromGitLab { 25 owner = "GNOME"; 26 repo = pname; 27 - domain = "gitlab.gnome.org"; 28 - rev = "${version}"; 29 sha256 = "1asm0y6485xqsysdg586y3hzz8bhxqwnc82k6vhfnxpxz7l62qa1"; 30 }; 31
··· 22 version = "3.22.11"; 23 24 src = fetchFromGitLab { 25 + domain = "gitlab.gnome.org"; 26 owner = "GNOME"; 27 repo = pname; 28 + rev = version; 29 sha256 = "1asm0y6485xqsysdg586y3hzz8bhxqwnc82k6vhfnxpxz7l62qa1"; 30 }; 31
+1
pkgs/desktops/mate/default.nix
··· 39 mate-system-monitor = callPackage ./mate-system-monitor { }; 40 mate-terminal = callPackage ./mate-terminal { }; 41 mate-themes = callPackage ./mate-themes { }; 42 mate-user-guide = callPackage ./mate-user-guide { }; 43 mate-user-share = callPackage ./mate-user-share { }; 44 mate-utils = callPackage ./mate-utils { };
··· 39 mate-system-monitor = callPackage ./mate-system-monitor { }; 40 mate-terminal = callPackage ./mate-terminal { }; 41 mate-themes = callPackage ./mate-themes { }; 42 + mate-tweak = callPackage ./mate-tweak { }; 43 mate-user-guide = callPackage ./mate-user-guide { }; 44 mate-user-share = callPackage ./mate-user-share { }; 45 mate-utils = callPackage ./mate-utils { };
+83
pkgs/desktops/mate/mate-tweak/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , python3Packages 4 + , intltool 5 + , mate 6 + , libnotify 7 + , gtk3 8 + , gdk-pixbuf 9 + , gobject-introspection 10 + , wrapGAppsHook 11 + , glib 12 + }: 13 + 14 + python3Packages.buildPythonApplication rec { 15 + pname = "mate-tweak"; 16 + version = "20.10.0"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "ubuntu-mate"; 20 + repo = pname; 21 + rev = version; 22 + sha256 = "08gw5i5wjxmzn92h9fv6g7q9i00n8shv1wlpy6cb31xy9wbmjph6"; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + wrapGAppsHook 27 + intltool 28 + python3Packages.distutils_extra 29 + gobject-introspection 30 + ]; 31 + 32 + buildInputs = [ 33 + gtk3 34 + gdk-pixbuf 35 + libnotify 36 + glib 37 + mate.mate-applets 38 + mate.mate-panel 39 + mate.marco 40 + mate.libmatekbd 41 + mate.mate-session-manager 42 + ]; 43 + 44 + propagatedBuildInputs = with python3Packages; [ 45 + distro 46 + pygobject3 47 + psutil 48 + setproctitle 49 + ]; 50 + 51 + strictDeps = false; 52 + 53 + dontWrapGApps = true; 54 + 55 + postPatch = '' 56 + # mate-tweak hardcodes absolute paths everywhere. Nuke from orbit. 57 + find . -type f -exec sed -i \ 58 + -e s,/usr/lib/mate-tweak,$out/lib/mate-tweak,g \ 59 + {} + 60 + 61 + sed -i 's,{prefix}/,,g' setup.py 62 + ''; 63 + 64 + # Arguments to be passed to `makeWrapper`, only used by buildPython* 65 + preFixup = '' 66 + makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 67 + ''; 68 + 69 + postFixup = '' 70 + for i in bin/.mate-tweak-wrapped lib/mate-tweak/mate-tweak-helper; do 71 + sed -i "s,usr,run/current-system/sw,g" $out/$i 72 + done 73 + ''; 74 + 75 + meta = with stdenv.lib; { 76 + description = "Tweak tool for the MATE Desktop"; 77 + homepage = "https://github.com/ubuntu-mate/mate-tweak"; 78 + changelog = "https://github.com/ubuntu-mate/mate-tweak/releases/tag/${version}"; 79 + license = [ licenses.gpl2Plus ]; 80 + platforms = platforms.linux; 81 + maintainers = with maintainers; [ luc65r ]; 82 + }; 83 + }
-4
pkgs/desktops/plasma-5/kdecoration.nix
··· 2 3 mkDerivation { 4 name = "kdecoration"; 5 - meta = { 6 - broken = builtins.compareVersions qtbase.version "5.12.0" < 0; 7 - }; 8 nativeBuildInputs = [ extra-cmake-modules ]; 9 buildInputs = [ qtbase ki18n ]; 10 outputs = [ "out" "dev" ]; 11 - broken = true; 12 }
··· 2 3 mkDerivation { 4 name = "kdecoration"; 5 nativeBuildInputs = [ extra-cmake-modules ]; 6 buildInputs = [ qtbase ki18n ]; 7 outputs = [ "out" "dev" ]; 8 }
+2 -2
pkgs/development/arduino/platformio/chrootenv.nix
··· 22 src = fetchFromGitHub { 23 owner = "platformio"; 24 repo = "platformio-core"; 25 - rev = "v5.0.1"; 26 - sha256 = "01xh61ldilg6fg95l1p870rld2xffhnl9f9ndvbi5jdn8q634pmw"; 27 }; 28 29
··· 22 src = fetchFromGitHub { 23 owner = "platformio"; 24 repo = "platformio-core"; 25 + rev = "v5.0.2"; 26 + sha256 = "1hbw8nbllyj0xyx1rz2chx9vyqf9949dcdx4v9hnfbsjwwpcfi0a"; 27 }; 28 29
+2 -2
pkgs/development/arduino/platformio/core.nix
··· 75 76 in buildPythonApplication rec { 77 pname = "platformio"; 78 - version = "5.0.1"; 79 80 # pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964 81 src = fetchFromGitHub { 82 owner = "platformio"; 83 repo = "platformio-core"; 84 rev = "v${version}"; 85 - sha256 = "01xh61ldilg6fg95l1p870rld2xffhnl9f9ndvbi5jdn8q634pmw"; 86 }; 87 88 propagatedBuildInputs = [
··· 75 76 in buildPythonApplication rec { 77 pname = "platformio"; 78 + version = "5.0.2"; 79 80 # pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964 81 src = fetchFromGitHub { 82 owner = "platformio"; 83 repo = "platformio-core"; 84 rev = "v${version}"; 85 + sha256 = "1hbw8nbllyj0xyx1rz2chx9vyqf9949dcdx4v9hnfbsjwwpcfi0a"; 86 }; 87 88 propagatedBuildInputs = [
+1 -1
pkgs/development/compilers/llvm/11/default.nix
··· 7 8 let 9 release_version = "11.0.0"; 10 - version = "${release_version}"; # differentiating these (variables) is important for RCs 11 targetConfig = stdenv.targetPlatform.config; 12 13 fetch = name: sha256: fetchurl {
··· 7 8 let 9 release_version = "11.0.0"; 10 + version = release_version; # differentiating these (variables) is important for RCs 11 targetConfig = stdenv.targetPlatform.config; 12 13 fetch = name: sha256: fetchurl {
+1 -1
pkgs/development/interpreters/acl2/default.nix
··· 21 src = fetchFromGitHub { 22 owner = "acl2-devel"; 23 repo = "acl2-devel"; 24 - rev = "${version}"; 25 sha256 = "0c0wimaf16nrr3d6cxq6p7nr7rxffvpmn66hkpwc1m6zpcipf0y5"; 26 }; 27
··· 21 src = fetchFromGitHub { 22 owner = "acl2-devel"; 23 repo = "acl2-devel"; 24 + rev = version; 25 sha256 = "0c0wimaf16nrr3d6cxq6p7nr7rxffvpmn66hkpwc1m6zpcipf0y5"; 26 }; 27
+1 -1
pkgs/development/interpreters/clojurescript/lumo/default.nix
··· 145 146 src = fetchgit { 147 url = "https://github.com/anmonteiro/lumo.git"; 148 - rev = "${version}"; 149 sha256 = "12agi6bacqic2wq6q3l28283badzamspajmajzqm7fbdl2aq1a4p"; 150 }; 151
··· 145 146 src = fetchgit { 147 url = "https://github.com/anmonteiro/lumo.git"; 148 + rev = version; 149 sha256 = "12agi6bacqic2wq6q3l28283badzamspajmajzqm7fbdl2aq1a4p"; 150 }; 151
+1 -1
pkgs/development/interpreters/wasmtime/default.nix
··· 6 7 src = fetchFromGitHub { 8 owner = "bytecodealliance"; 9 - repo = "${pname}"; 10 rev = "v${version}"; 11 sha256 = "01k1fpk2qp4kv0xr4f0xmrjkr98j5ws48r1aks8l80mffs4ynqfr"; 12 fetchSubmodules = true;
··· 6 7 src = fetchFromGitHub { 8 owner = "bytecodealliance"; 9 + repo = pname; 10 rev = "v${version}"; 11 sha256 = "01k1fpk2qp4kv0xr4f0xmrjkr98j5ws48r1aks8l80mffs4ynqfr"; 12 fetchSubmodules = true;
+2 -2
pkgs/development/libraries/amdvlk/default.nix
··· 21 22 in stdenv.mkDerivation rec { 23 pname = "amdvlk"; 24 - version = "2020.Q4.1"; 25 26 src = fetchRepoProject { 27 name = "${pname}-src"; 28 manifest = "https://github.com/GPUOpen-Drivers/AMDVLK.git"; 29 rev = "refs/tags/v-${version}"; 30 - sha256 = "UxUsXngsMbLNSmg0a7gqCqw30ckZ8IlDrSZMMnKHlh4="; 31 }; 32 33 buildInputs = [
··· 21 22 in stdenv.mkDerivation rec { 23 pname = "amdvlk"; 24 + version = "2020.Q4.2"; 25 26 src = fetchRepoProject { 27 name = "${pname}-src"; 28 manifest = "https://github.com/GPUOpen-Drivers/AMDVLK.git"; 29 rev = "refs/tags/v-${version}"; 30 + sha256 = "qqP95+K8G9Z3Da1pUT9EGAUi83IM50qI9eZxpp7Vlqg="; 31 }; 32 33 buildInputs = [
+2 -2
pkgs/development/libraries/catch2/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "catch2"; 5 - version = "2.12.3"; 6 7 src = fetchFromGitHub { 8 owner = "catchorg"; 9 repo = "Catch2"; 10 rev = "v${version}"; 11 - sha256="0rp30754frp88wbl17ksr40mmffw5xibq73blgx9jj42d7nl891x"; 12 }; 13 14 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "catch2"; 5 + version = "2.13.2"; 6 7 src = fetchFromGitHub { 8 owner = "catchorg"; 9 repo = "Catch2"; 10 rev = "v${version}"; 11 + sha256="100r0kmra8jmra2hv92lzvwcmphpaiccwvq3lpdsa5b7hailhach"; 12 }; 13 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/cutelyst/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "cutelyst"; 7 - version = "2.12.0"; 8 9 src = fetchFromGitHub { 10 owner = "cutelyst"; 11 repo = "cutelyst"; 12 rev = "v${version}"; 13 - sha256 = "1ngacc7ackp08hajby0xvzpvnqahwm2dbxmisw7j7qs1lqrx9k3n"; 14 }; 15 16 nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "cutelyst"; 7 + version = "2.13.0"; 8 9 src = fetchFromGitHub { 10 owner = "cutelyst"; 11 repo = "cutelyst"; 12 rev = "v${version}"; 13 + sha256 = "1xbw8ag3iwm69dhrsg54anrlzvvflj6pwsj42z6hrl0yckabn99z"; 14 }; 15 16 nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
+16 -8
pkgs/development/libraries/cxxtest/default.nix
··· 1 - { stdenv, fetchFromGitHub, python2Packages}: 2 3 - let 4 pname = "cxxtest"; 5 version = "4.4"; 6 - in python2Packages.buildPythonApplication { 7 - name = "${pname}-${version}"; 8 9 src = fetchFromGitHub { 10 owner = "CxxTest"; ··· 13 sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17"; 14 }; 15 16 - setSourceRoot = '' 17 - sourceRoot=$(echo */python) 18 ''; 19 20 meta = with stdenv.lib; { 21 homepage = "http://cxxtest.com"; 22 description = "Unit testing framework for C++"; 23 - platforms = platforms.unix ; 24 license = licenses.lgpl3; 25 maintainers = [ maintainers.juliendehos ]; 26 }; 27 } 28 -
··· 1 + { stdenv, buildPythonApplication, fetchFromGitHub }: 2 3 + buildPythonApplication rec { 4 pname = "cxxtest"; 5 version = "4.4"; 6 7 src = fetchFromGitHub { 8 owner = "CxxTest"; ··· 11 sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17"; 12 }; 13 14 + sourceRoot = "source/python"; 15 + 16 + postCheck = '' 17 + python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../test/GoodSuite.h 18 + $CXX -I.. -o build/GoodSuite build/GoodSuite.cpp 19 + build/GoodSuite 20 ''; 21 22 + postInstall = '' 23 + mkdir -p "$out/include" 24 + cp -r ../cxxtest "$out/include" 25 + ''; 26 + 27 + dontWrapPythonPrograms = true; 28 + 29 meta = with stdenv.lib; { 30 homepage = "http://cxxtest.com"; 31 description = "Unit testing framework for C++"; 32 + platforms = platforms.unix; 33 license = licenses.lgpl3; 34 maintainers = [ maintainers.juliendehos ]; 35 }; 36 }
+2 -2
pkgs/development/libraries/enet/default.nix
··· 1 {stdenv, fetchurl}: 2 3 stdenv.mkDerivation rec { 4 - name = "enet-1.3.15"; 5 6 src = fetchurl { 7 url = "http://enet.bespin.org/download/${name}.tar.gz"; 8 - sha256 = "1yxxf9bkx6dx3j8j70fj17c05likyfibb1419ls74hp58qrzdgas"; 9 }; 10 11 meta = {
··· 1 {stdenv, fetchurl}: 2 3 stdenv.mkDerivation rec { 4 + name = "enet-1.3.16"; 5 6 src = fetchurl { 7 url = "http://enet.bespin.org/download/${name}.tar.gz"; 8 + sha256 = "1lggc82rbzscci057dqqyhkbq4j6mr5k01hbrvn06jkzc2xpxdxv"; 9 }; 10 11 meta = {
+3 -3
pkgs/development/libraries/gensio/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gensio"; 5 - version = "2.1.4"; 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 - repo = "${pname}"; 10 rev = "v${version}"; 11 - sha256 = "0c44qhhrknjl7sp94q34z7nv7bvnlqs8wzm385661liy4mnfn4dc"; 12 }; 13 14 configureFlags = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gensio"; 5 + version = "2.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 + repo = pname; 10 rev = "v${version}"; 11 + sha256 = "07m8rbdk05biarc9xskwcx9lghj0dff1msxasfc6hi3jywc3xaih"; 12 }; 13 14 configureFlags = [
+4 -3
pkgs/development/libraries/grpc/default.nix
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 - version = "1.32.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 pname = "grpc"; 8 src = fetchFromGitHub { 9 owner = "grpc"; 10 repo = "grpc"; 11 rev = "v${version}"; 12 - sha256 = "0v48h0j0gxcp9s63z1ibwgz4416qd6iq728la80y6gl8rklrqf0c"; 13 fetchSubmodules = true; 14 }; 15 patches = [ ··· 21 ]; 22 23 nativeBuildInputs = [ cmake pkgconfig ]; 24 - buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags abseil-cpp libnsl ]; 25 26 cmakeFlags = 27 [ "-DgRPC_ZLIB_PROVIDER=package"
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 + version = "1.33.2"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 pname = "grpc"; 8 src = fetchFromGitHub { 9 owner = "grpc"; 10 repo = "grpc"; 11 rev = "v${version}"; 12 + sha256 = "0cc7yfa37ngrr0q9k3lm2yi4i57bfsyxwbblwc0f801k6wvgavcy"; 13 fetchSubmodules = true; 14 }; 15 patches = [ ··· 21 ]; 22 23 nativeBuildInputs = [ cmake pkgconfig ]; 24 + buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags abseil-cpp ] 25 + ++ stdenv.lib.optionals stdenv.isLinux [ libnsl ]; 26 27 cmakeFlags = 28 [ "-DgRPC_ZLIB_PROVIDER=package"
+2 -2
pkgs/development/libraries/gsoap/default.nix
··· 5 6 in stdenv.mkDerivation rec { 7 pname = "gsoap"; 8 - version = "${majorVersion}.53"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/project/gsoap2/gsoap-${majorVersion}/gsoap_${version}.zip"; 12 - sha256 = "0n35dh32gidi65c36cwjd91304pwiabfblvd64kg21djpjl06qcr"; 13 }; 14 15 buildInputs = [ openssl zlib ];
··· 5 6 in stdenv.mkDerivation rec { 7 pname = "gsoap"; 8 + version = "${majorVersion}.108"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/project/gsoap2/gsoap-${majorVersion}/gsoap_${version}.zip"; 12 + sha256 = "0x58bwlclk7frv03kg8bp0pm7zl784samvbzskrnr7dl5v866nvl"; 13 }; 14 15 buildInputs = [ openssl zlib ];
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "intel-gmmlib"; 7 - version = "20.2.5"; 8 9 src = fetchFromGitHub { 10 owner = "intel"; 11 repo = "gmmlib"; 12 rev = "${pname}-${version}"; 13 - sha256 = "0jg3kc74iqmbclx77a6dp4h85va8wi210x4zf5jypiq35c57r8hh"; 14 }; 15 16 nativeBuildInputs = [ cmake ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "intel-gmmlib"; 7 + version = "20.3.2"; 8 9 src = fetchFromGitHub { 10 owner = "intel"; 11 repo = "gmmlib"; 12 rev = "${pname}-${version}"; 13 + sha256 = "0727pr7sknqi859gb5z472kgbbwx40574iyls8fgirm7lcz6gbd9"; 14 }; 15 16 nativeBuildInputs = [ cmake ];
+7 -5
pkgs/development/libraries/intel-media-sdk/default.nix
··· 1 - { stdenv, fetchurl, cmake, pkgconfig, gtest, libdrm, libpciaccess, libva, libX11 2 , libXau, libXdmcp, libpthreadstubs }: 3 4 stdenv.mkDerivation rec { 5 pname = "intel-media-sdk"; 6 - version = "20.2.1"; 7 8 - src = fetchurl { 9 - url = "https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${version}.tar.gz"; 10 - sha256 = "0m3ipfdknpgrdwiywlinl4sfkfrvyv7wmq1j83pmbr54z067sgg1"; 11 }; 12 13 nativeBuildInputs = [ cmake pkgconfig ];
··· 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig, gtest, libdrm, libpciaccess, libva, libX11 2 , libXau, libXdmcp, libpthreadstubs }: 3 4 stdenv.mkDerivation rec { 5 pname = "intel-media-sdk"; 6 + version = "20.3.1"; 7 8 + src = fetchFromGitHub { 9 + owner = "Intel-Media-SDK"; 10 + repo = "MediaSDK"; 11 + rev = "intel-mediasdk-${version}"; 12 + sha256 = "13b698zp9b228x81yly0qx3zvj821niz3yad74b229i3z7rf8wzd"; 13 }; 14 15 nativeBuildInputs = [ cmake pkgconfig ];
+32
pkgs/development/libraries/keystone/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , pkg-config 4 + , cmake 5 + , python3 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "keystone"; 10 + version = "0.9.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "keystone-engine"; 14 + repo = pname; 15 + rev = version; 16 + sha256 = "020d1l1aqb82g36l8lyfn2j8c660mm6sh1nl4haiykwgdl9xnxfa"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + pkg-config 21 + cmake 22 + python3 23 + ]; 24 + 25 + meta = with stdenv.lib; { 26 + description = "Lightweight multi-platform, multi-architecture assembler framework"; 27 + homepage = "https://www.keystone-engine.org"; 28 + license = licenses.gpl2Only; 29 + maintainers = with maintainers; [ luc65r ]; 30 + platforms = platforms.unix; 31 + }; 32 + }
+1 -1
pkgs/development/libraries/kpeoplevcard/default.nix
··· 32 33 meta = with lib; { 34 description = "Pulseaudio bindings for Qt"; 35 - homepage = "KPeople VCard Support"; 36 license = with licenses; [ lgpl2 ]; 37 maintainers = with maintainers; [ doronbehar ]; 38 };
··· 32 33 meta = with lib; { 34 description = "Pulseaudio bindings for Qt"; 35 + homepage = "https://github.com/KDE/kpeoplevcard"; 36 license = with licenses; [ lgpl2 ]; 37 maintainers = with maintainers; [ doronbehar ]; 38 };
+2 -2
pkgs/development/libraries/leatherman/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "leatherman"; 5 - version = "1.12.1"; 6 7 src = fetchFromGitHub { 8 - sha256 = "1mgd7jqfg6f0y2yrh2m1njlwrpd15kas88776jdd5fsl7gvb5khn"; 9 rev = version; 10 repo = "leatherman"; 11 owner = "puppetlabs";
··· 2 3 stdenv.mkDerivation rec { 4 pname = "leatherman"; 5 + version = "1.12.2"; 6 7 src = fetchFromGitHub { 8 + sha256 = "1iz8w0q4m7dqshjqfbwxwrasabs4j8jlil4w3kxdr3v9ldkl4v3d"; 9 rev = version; 10 repo = "leatherman"; 11 owner = "puppetlabs";
+2 -2
pkgs/development/libraries/libavif/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "libavif"; 14 - version = "0.8.1"; 15 16 src = fetchFromGitHub { 17 owner = "AOMediaCodec"; 18 repo = pname; 19 rev = "v${version}"; 20 - sha256 = "1fs222cn1d60pv5fjsr92axk5dival70b6yqw0wng5ikk9zsdkhy"; 21 }; 22 23 # reco: encode libaom slowest but best, decode dav1d fastest
··· 11 12 stdenv.mkDerivation rec { 13 pname = "libavif"; 14 + version = "0.8.2"; 15 16 src = fetchFromGitHub { 17 owner = "AOMediaCodec"; 18 repo = pname; 19 rev = "v${version}"; 20 + sha256 = "0f0l8ywz2jhc9mkfrzdxdvr3q39a404yn9wcyvqshfbkbprsan4p"; 21 }; 22 23 # reco: encode libaom slowest but best, decode dav1d fastest
+2 -2
pkgs/development/libraries/libfprint/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "libfprint"; 19 - version = "1.90.2"; 20 outputs = [ "out" "devdoc" ]; 21 22 src = fetchFromGitLab { ··· 24 owner = "libfprint"; 25 repo = pname; 26 rev = "v${version}"; 27 - sha256 = "0g890y49anqd7yfz86iyvywxgbfmfmj6813fy58m5n8jain7iy1b"; 28 }; 29 30 nativeBuildInputs = [
··· 16 17 stdenv.mkDerivation rec { 18 pname = "libfprint"; 19 + version = "1.90.3"; 20 outputs = [ "out" "devdoc" ]; 21 22 src = fetchFromGitLab { ··· 24 owner = "libfprint"; 25 repo = pname; 26 rev = "v${version}"; 27 + sha256 = "1fs0qrfrqnvc6kcsg81l5p89n8jnsx9dr1pzxpb8ghwas8c9v52i"; 28 }; 29 30 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libgnurl/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "libgnurl"; 6 - version = "7.70.0"; 7 8 src = fetchurl { 9 url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz"; 10 - sha256 = "0px9la8v4bj1dzxb95fx3yxk0rcjqjrxpj733ga27cza45wwzkqa"; 11 }; 12 13 nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "libgnurl"; 6 + version = "7.72.0"; 7 8 src = fetchurl { 9 url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz"; 10 + sha256 = "1y4laraq37kw8hc8jlzgcw7y37bfd0n71q0sy3d3z6yg7zh2prxi"; 11 }; 12 13 nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
+2 -2
pkgs/development/libraries/libgpiod/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "libgpiod"; 7 - version = "1.5.2"; 8 9 src = fetchurl { 10 url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-${version}.tar.gz"; 11 - sha256 = "1bknh7kn5gxc8xwf913lsdm9zgn1bwj42nsnp6kbkyn6ip7s6c4r"; 12 }; 13 14 buildInputs = [ kmod ] ++ lib.optionals enablePython [ python3 ncurses ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "libgpiod"; 7 + version = "1.6"; 8 9 src = fetchurl { 10 url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-${version}.tar.gz"; 11 + sha256 = "0xcwrg4p4w925lijmz4ci4500z83kj5gs1n501q4vhi54bdzn2k5"; 12 }; 13 14 buildInputs = [ kmod ] ++ lib.optionals enablePython [ python3 ncurses ];
+2 -2
pkgs/development/libraries/libhdhomerun/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "libhdhomerun"; 9 - version = "20200521"; 10 11 src = fetchurl { 12 url = "https://download.silicondust.com/hdhomerun/libhdhomerun_${version}.tgz"; 13 - sha256 = "0s0683bwyd10n3r2sanlyd07ii3fmi3vl9w9a2rwlpcclzq3h456"; 14 }; 15 16 patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
··· 6 7 stdenv.mkDerivation rec { 8 pname = "libhdhomerun"; 9 + version = "20200907"; 10 11 src = fetchurl { 12 url = "https://download.silicondust.com/hdhomerun/libhdhomerun_${version}.tgz"; 13 + sha256 = "1v80jk056ii2iv2w7sq24i3prjrbhxql5vqhafs7vq54qmwvgbnb"; 14 }; 15 16 patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/development/libraries/libjcat/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "libjcat"; 22 - version = "0.1.3"; 23 24 outputs = [ "bin" "out" "dev" "devdoc" "man" "installedTests" ]; 25 ··· 27 owner = "hughsie"; 28 repo = "libjcat"; 29 rev = version; 30 - sha256 = "157bi1v9qqk45rkq7lg08l7g3bxwacl4h89vnr7msjmg0hri36kc"; 31 }; 32 33 patches = [
··· 19 20 stdenv.mkDerivation rec { 21 pname = "libjcat"; 22 + version = "0.1.4"; 23 24 outputs = [ "bin" "out" "dev" "devdoc" "man" "installedTests" ]; 25 ··· 27 owner = "hughsie"; 28 repo = "libjcat"; 29 rev = version; 30 + sha256 = "156sykcdzdfmd7va59qld4gyzhbf2yk1dfgifi494g6i99zyigfh"; 31 }; 32 33 patches = [
+4 -3
pkgs/development/libraries/libmkv/default.nix
··· 1 - { stdenv, fetchgit, libtool, autoconf, automake }: 2 3 stdenv.mkDerivation rec { 4 pname = "libmkv"; 5 version = "0.6.5.1"; 6 7 - src = fetchgit { 8 - url = "https://github.com/saintdev/libmkv.git"; 9 rev = "refs/tags/${version}"; 10 sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl"; 11 };
··· 1 + { stdenv, fetchFromGitHub, libtool, autoconf, automake }: 2 3 stdenv.mkDerivation rec { 4 pname = "libmkv"; 5 version = "0.6.5.1"; 6 7 + src = fetchFromGitHub { 8 + owner = "saintdev"; 9 + repo = pname; 10 rev = "refs/tags/${version}"; 11 sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl"; 12 };
+2 -2
pkgs/development/libraries/libp11/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "libp11"; 6 - version = "0.4.10"; 7 8 src = fetchFromGitHub { 9 owner = "OpenSC"; 10 repo = "libp11"; 11 rev = "${pname}-${version}"; 12 - sha256 = "1m4aw45bqichhx7cn78d8l1r1v0ccvwzlfj09fay2l9rfic5jgfz"; 13 }; 14 15 configureFlags = [
··· 3 4 stdenv.mkDerivation rec { 5 pname = "libp11"; 6 + version = "0.4.11"; 7 8 src = fetchFromGitHub { 9 owner = "OpenSC"; 10 repo = "libp11"; 11 rev = "${pname}-${version}"; 12 + sha256 = "0hcl706i04nw5c1sj7l6sj6m0yjq6qijz345v498jll58fp5wif8"; 13 }; 14 15 configureFlags = [
-1
pkgs/development/libraries/mlt/qt-5.nix
··· 69 license = licenses.gpl3; 70 maintainers = [ maintainers.goibhniu ]; 71 platforms = platforms.linux; 72 - broken = versionAtLeast qtbase.version "5.15"; 73 }; 74 }
··· 69 license = licenses.gpl3; 70 maintainers = [ maintainers.goibhniu ]; 71 platforms = platforms.linux; 72 }; 73 }
+25 -13
pkgs/development/libraries/ndn-cxx/default.nix
··· 1 - { stdenv, fetchFromGitHub, openssl, doxygen 2 - , boost, sqlite, pkgconfig, python, pythonPackages, wafHook }: 3 - let 4 - version = "0.6.3"; 5 - in 6 - stdenv.mkDerivation { 7 pname = "ndn-cxx"; 8 - inherit version; 9 src = fetchFromGitHub { 10 owner = "named-data"; 11 repo = "ndn-cxx"; 12 - rev = "a3bf4319ed483a4a6fe2c96b79ec4491d7217f00"; 13 - sha256 = "076jhrjigisqz5n8dgxwd5fhimg69zhm834m7w9yvf9afgzrr50h"; 14 }; 15 - nativeBuildInputs = [ pkgconfig wafHook ]; 16 - buildInputs = [ openssl doxygen boost sqlite python pythonPackages.sphinx]; 17 wafConfigureFlags = [ 18 "--with-openssl=${openssl.dev}" 19 "--boost-includes=${boost.dev}/include" 20 "--boost-libs=${boost.out}/lib" 21 ]; 22 meta = with stdenv.lib; { 23 homepage = "http://named-data.net/"; 24 description = "A Named Data Neworking (NDN) or Content Centric Networking (CCN) abstraction"; ··· 36 and consuming less resources overall. 37 ''; 38 license = licenses.lgpl3; 39 - platforms = stdenv.lib.platforms.unix; 40 - maintainers = [ maintainers.sjmackenzie ]; 41 }; 42 }
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , doxygen 4 + , pkg-config 5 + , python3 6 + , python3Packages 7 + , wafHook 8 + , boost 9 + , openssl 10 + , sqlite 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 pname = "ndn-cxx"; 15 + version = "0.7.1"; 16 + 17 src = fetchFromGitHub { 18 owner = "named-data"; 19 repo = "ndn-cxx"; 20 + rev = "${pname}-${version}"; 21 + sha256 = "1lcaqc79n3d9sip7knddblba17sz18b0w7nlxmj3fz3lb3z9qd51"; 22 }; 23 + 24 + nativeBuildInputs = [ doxygen pkg-config python3 python3Packages.sphinx wafHook ]; 25 + 26 + buildInputs = [ boost openssl sqlite ]; 27 + 28 wafConfigureFlags = [ 29 "--with-openssl=${openssl.dev}" 30 "--boost-includes=${boost.dev}/include" 31 "--boost-libs=${boost.out}/lib" 32 ]; 33 + 34 meta = with stdenv.lib; { 35 homepage = "http://named-data.net/"; 36 description = "A Named Data Neworking (NDN) or Content Centric Networking (CCN) abstraction"; ··· 48 and consuming less resources overall. 49 ''; 50 license = licenses.lgpl3; 51 + platforms = platforms.unix; 52 + maintainers = with maintainers; [ sjmackenzie ]; 53 }; 54 }
+2 -2
pkgs/development/libraries/openxr-loader/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "openxr-loader"; 5 - version = "1.0.11"; 6 7 src = fetchFromGitHub { 8 owner = "KhronosGroup"; 9 repo = "OpenXR-SDK-Source"; 10 rev = "release-${version}"; 11 - sha256 = "0f3x5h0hdjiqgjf5mzzlprbhrbyabxllrjmlzgc9fv5rgqyyphj5"; 12 }; 13 14 nativeBuildInputs = [ cmake python3 ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "openxr-loader"; 5 + version = "1.0.12"; 6 7 src = fetchFromGitHub { 8 owner = "KhronosGroup"; 9 repo = "OpenXR-SDK-Source"; 10 rev = "release-${version}"; 11 + sha256 = "0xcra2hcsm88rfd7zf52hccx3nvg9j65a595z7c0lrzv6jz04676"; 12 }; 13 14 nativeBuildInputs = [ cmake python3 ];
+1 -1
pkgs/development/libraries/pcaudiolib/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "rhdunn"; 12 repo = "pcaudiolib"; 13 - rev = "${version}"; 14 sha256 = "0c55hlqqh0m7bcb3nlgv1s4a22s5bgczr1cakjh3767rjb10khi0"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "rhdunn"; 12 repo = "pcaudiolib"; 13 + rev = version; 14 sha256 = "0c55hlqqh0m7bcb3nlgv1s4a22s5bgczr1cakjh3767rjb10khi0"; 15 }; 16
+2 -2
pkgs/development/libraries/tpm2-tss/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "tpm2-tss"; 9 - version = "2.4.1"; 10 11 src = fetchFromGitHub { 12 owner = "tpm2-software"; 13 repo = pname; 14 rev = version; 15 - sha256 = "09x5czaj4a8cyf8cxavcasx3yy1kik1s45a90c7zvxb7y1kfp9zs"; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "tpm2-tss"; 9 + version = "3.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "tpm2-software"; 13 repo = pname; 14 rev = version; 15 + sha256 = "10wayqk7h1v3hdyd09rkjjs9989r968dpgf8m0xjqgn7q3y78n61"; 16 }; 17 18 nativeBuildInputs = [
-34
pkgs/development/libraries/unicorn-emu/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, python, cmocka, hexdump, writeScriptBin, binutils-unwrapped }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "unicorn-emulator"; 5 - version = "1.0.2-rc4"; 6 - 7 - src = fetchurl { 8 - url = "https://github.com/unicorn-engine/unicorn/archive/${version}.tar.gz"; 9 - sha256 = "05w43jq3r97l3c8ggc745ai8m5l93p1b6q6cfp1zwzz6hl5kifiv"; 10 - }; 11 - 12 - PREFIX = placeholder "out"; 13 - MACOS_UNIVERSAL = stdenv.lib.optionalString stdenv.isDarwin "no"; 14 - NIX_CFLAGS_COMPILE = "-Wno-error"; 15 - 16 - doCheck = !stdenv.isDarwin; 17 - 18 - checkInputs = [ 19 - cmocka 20 - hexdump 21 - python.pkgs.setuptools 22 - ]; 23 - 24 - nativeBuildInputs = [ pkgconfig python ]; 25 - enableParallelBuilding = true; 26 - 27 - meta = { 28 - description = "Lightweight multi-platform CPU emulator library"; 29 - homepage = "http://www.unicorn-engine.org"; 30 - license = stdenv.lib.licenses.bsd3; 31 - platforms = stdenv.lib.platforms.unix; 32 - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; 33 - }; 34 - }
···
+27
pkgs/development/libraries/unicorn/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , pkgconfig 4 + , cmake 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "unicorn"; 9 + version = "1.0.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "unicorn-engine"; 13 + repo = pname; 14 + rev = version; 15 + sha256 = "0jgnyaq6ykpbg5hrwc0p3pargmr9hpzqfsj6ymp4k07pxnqal76j"; 16 + }; 17 + 18 + nativeBuildInputs = [ pkgconfig cmake ]; 19 + 20 + meta = with stdenv.lib; { 21 + description = "Lightweight multi-platform CPU emulator library"; 22 + homepage = "http://www.unicorn-engine.org"; 23 + license = licenses.gpl2Only; 24 + platforms = platforms.unix; 25 + maintainers = with maintainers; [ thoughtpolice luc65r ]; 26 + }; 27 + }
+1 -1
pkgs/development/libraries/wiiuse/default.nix
··· 13 src = fetchFromGitHub { 14 owner = "wiiuse"; 15 repo = "wiiuse"; 16 - rev = "${version}"; 17 sha256 = "05gc3s0wxx7ga4g32yyibyxdh46rm9bbslblrc72ynrjxq98sg13"; 18 }; 19
··· 13 src = fetchFromGitHub { 14 owner = "wiiuse"; 15 repo = "wiiuse"; 16 + rev = version; 17 sha256 = "05gc3s0wxx7ga4g32yyibyxdh46rm9bbslblrc72ynrjxq98sg13"; 18 }; 19
+1 -1
pkgs/development/libraries/x265/default.nix
··· 30 src = fetchFromBitbucket { 31 owner = "multicoreware"; 32 repo = "x265_git"; 33 - rev = "${version}"; 34 sha256 = "1jzgv2hxhcwmsdf6sbgyzm88a46dp09ll1fqj92g9vckvh9a7dsn"; 35 }; 36
··· 30 src = fetchFromBitbucket { 31 owner = "multicoreware"; 32 repo = "x265_git"; 33 + rev = version; 34 sha256 = "1jzgv2hxhcwmsdf6sbgyzm88a46dp09ll1fqj92g9vckvh9a7dsn"; 35 }; 36
+1 -1
pkgs/development/libraries/xmlsec/default.nix
··· 16 17 patches = [ 18 ./lt_dladdsearchdir.patch 19 - ]; 20 postPatch = '' 21 substituteAllInPlace src/dl.c 22 '';
··· 16 17 patches = [ 18 ./lt_dladdsearchdir.patch 19 + ] ++ stdenv.lib.optionals stdenv.isDarwin [ ./remove_bsd_base64_decode_flag.patch ]; 20 postPatch = '' 21 substituteAllInPlace src/dl.c 22 '';
+12
pkgs/development/libraries/xmlsec/remove_bsd_base64_decode_flag.patch
···
··· 1 + --- a/tests/testEnc.sh 2020-04-20 14:30:32.000000000 -0400 2 + +++ b/tests/testEnc.sh 2020-10-21 22:09:25.000000000 -0400 3 + @@ -405,9 +405,6 @@ 4 + else 5 + # generate binary file out of base64 6 + DECODE="-d" 7 + - if [ "`uname`" = "Darwin" ]; then 8 + - DECODE="-D" 9 + - fi 10 + cat "$topfolder/$base_test_name.data" | base64 $DECODE > $tmpfile.3 11 + execEncTest "$res_success" \ 12 + "" \
+2 -2
pkgs/development/ocaml-modules/bitstring/default.nix
··· 2 3 buildDunePackage rec { 4 pname = "bitstring"; 5 - version = "3.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "xguerin"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "0r49qax7as48jgknzaq6p9rbpmrvnmlic713wzz5bj60j5h0396f"; 12 }; 13 14 buildInputs = [ ppx_tools_versioned ounit ];
··· 2 3 buildDunePackage rec { 4 pname = "bitstring"; 5 + version = "3.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "xguerin"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "1ys8xx174jf8v5sm0lbxvzhdlcs5p0fhy1gvf58gad2g4gvgpvxc"; 12 }; 13 14 buildInputs = [ ppx_tools_versioned ounit ];
+7 -5
pkgs/development/ocaml-modules/checkseum/default.nix
··· 1 - { lib, fetchurl, buildDunePackage 2 , bigarray-compat, optint 3 - , cmdliner, fmt, rresult 4 , alcotest 5 }: 6 7 buildDunePackage rec { 8 - version = "0.1.1"; 9 pname = "checkseum"; 10 11 src = fetchurl { 12 url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz"; 13 - sha256 = "0aa2r1l65a5hcgciw6n8r5ij4gpgg0cf9k24isybxiaiz63k94d3"; 14 }; 15 16 - buildInputs = [ cmdliner fmt rresult ]; 17 propagatedBuildInputs = [ bigarray-compat optint ]; 18 checkInputs = lib.optionals doCheck [ alcotest ]; 19
··· 1 + { lib, fetchurl, buildDunePackage, dune-configurator 2 , bigarray-compat, optint 3 + , fmt, rresult 4 , alcotest 5 }: 6 7 buildDunePackage rec { 8 + version = "0.2.1"; 9 pname = "checkseum"; 10 11 + useDune2 = true; 12 + 13 src = fetchurl { 14 url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz"; 15 + sha256 = "1swb44c64pcs4dh9ka9lig6d398qwwkd3kkiajicww6qk7jbh3n5"; 16 }; 17 18 + buildInputs = [ dune-configurator fmt rresult ]; 19 propagatedBuildInputs = [ bigarray-compat optint ]; 20 checkInputs = lib.optionals doCheck [ alcotest ]; 21
+2
pkgs/development/ocaml-modules/decompress/default.nix
··· 7 version = "0.9.0"; 8 pname = "decompress"; 9 10 src = fetchurl { 11 url = "https://github.com/mirage/decompress/releases/download/v${version}/decompress-v${version}.tbz"; 12 sha256 = "0fryhcvv96vfca51c7kqdn3n3canqsbbvfbi75ya6lca4lmpipbh";
··· 7 version = "0.9.0"; 8 pname = "decompress"; 9 10 + useDune2 = true; 11 + 12 src = fetchurl { 13 url = "https://github.com/mirage/decompress/releases/download/v${version}/decompress-v${version}.tbz"; 14 sha256 = "0fryhcvv96vfca51c7kqdn3n3canqsbbvfbi75ya6lca4lmpipbh";
+1 -1
pkgs/development/ocaml-modules/dispatch/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "inhabitedtype"; 9 repo = "ocaml-dispatch"; 10 - rev = "${version}"; 11 sha256 = "05kb9zcihk50r2haqz8vrlr7kmaka6vrs4j1z500lmnl877as6qr"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "inhabitedtype"; 9 repo = "ocaml-dispatch"; 10 + rev = version; 11 sha256 = "05kb9zcihk50r2haqz8vrlr7kmaka6vrs4j1z500lmnl877as6qr"; 12 }; 13
+13 -8
pkgs/development/ocaml-modules/gapi-ocaml/default.nix
··· 1 - { stdenv, fetchFromGitHub, buildDunePackage 2 - , ocurl, cryptokit, ocaml_extlib, yojson, ocamlnet, xmlm 3 }: 4 5 buildDunePackage rec { 6 pname = "gapi-ocaml"; 7 - version = "0.3.19"; 8 9 minimumOCamlVersion = "4.02"; 10 ··· 12 owner = "astrada"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "04arif1p1vj5yr24cwicj70b7yx17hrgf4pl47vqg8ngcrdh71v9"; 16 }; 17 18 - propagatedBuildInputs = [ ocurl cryptokit ocaml_extlib ocamlnet yojson ]; 19 - buildInputs = [ xmlm ]; 20 21 meta = { 22 description = "OCaml client for google services"; 23 homepage = "http://gapi-ocaml.forge.ocamlcore.org"; 24 - license = stdenv.lib.licenses.mit; 25 - maintainers = with stdenv.lib.maintainers; [ bennofs ]; 26 }; 27 }
··· 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml 2 + , cryptokit, ocamlnet, ocurl, yojson 3 + , ounit 4 }: 5 6 buildDunePackage rec { 7 pname = "gapi-ocaml"; 8 + version = "0.4.1"; 9 + 10 + useDune2 = true; 11 12 minimumOCamlVersion = "4.02"; 13 ··· 15 owner = "astrada"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "0riax23grjnq9pczmp1yv02ji0svvs2kbiqskj6f6yjviamnpa31"; 19 }; 20 21 + propagatedBuildInputs = [ cryptokit ocamlnet ocurl yojson ]; 22 + 23 + doCheck = lib.versionAtLeast ocaml.version "4.04"; 24 + checkInputs = [ ounit ]; 25 26 meta = { 27 description = "OCaml client for google services"; 28 homepage = "http://gapi-ocaml.forge.ocamlcore.org"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ bennofs ]; 31 }; 32 }
+3
pkgs/development/ocaml-modules/imagelib/default.nix
··· 4 minimumOCamlVersion = "4.07"; 5 version = "20191011"; 6 pname = "imagelib"; 7 src = fetchFromGitHub { 8 owner = "rlepigre"; 9 repo = "ocaml-imagelib";
··· 4 minimumOCamlVersion = "4.07"; 5 version = "20191011"; 6 pname = "imagelib"; 7 + 8 + useDune2 = true; 9 + 10 src = fetchFromGitHub { 11 owner = "rlepigre"; 12 repo = "ocaml-imagelib";
+1 -1
pkgs/development/ocaml-modules/imagelib/unix.nix
··· 2 3 buildDunePackage { 4 pname = "imagelib-unix"; 5 - inherit (imagelib) version src meta; 6 7 propagatedBuildInputs = [ imagelib ]; 8 }
··· 2 3 buildDunePackage { 4 pname = "imagelib-unix"; 5 + inherit (imagelib) version src useDune2 meta; 6 7 propagatedBuildInputs = [ imagelib ]; 8 }
+16 -16
pkgs/development/ocaml-modules/lacaml/default.nix
··· 1 - { stdenv, fetchFromGitHub, darwin, ocaml, findlib, dune, base, stdio, lapack, blas }: 2 3 - assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.05.0"; 4 assert (!blas.isILP64) && (!lapack.isILP64); 5 6 - stdenv.mkDerivation rec { 7 - pname = "ocaml${ocaml.version}-lacaml"; 8 - version = "11.0.6"; 9 10 - src = fetchFromGitHub { 11 - owner = "mmottl"; 12 - repo = "lacaml"; 13 - rev = version; 14 - sha256 = "1vn5441fg45d0ni9x87dhz2x4jrmvg3w7qk3vvcrd436snvh07g0"; 15 }; 16 17 - buildInputs = [ ocaml findlib dune base stdio ]; 18 propagatedBuildInputs = [ lapack blas ] ++ 19 stdenv.lib.optionals stdenv.isDarwin 20 [ darwin.apple_sdk.frameworks.Accelerate ]; 21 22 - inherit (dune) installPhase; 23 - 24 meta = with stdenv.lib; { 25 - homepage = "http://mmottl.github.io/lacaml"; 26 description = "OCaml bindings for BLAS and LAPACK"; 27 license = licenses.lgpl21Plus; 28 - platforms = ocaml.meta.platforms or []; 29 - maintainers = [ maintainers.rixed ]; 30 }; 31 }
··· 1 + { stdenv, fetchurl, darwin, buildDunePackage, dune-configurator 2 + , lapack, blas 3 + }: 4 5 assert (!blas.isILP64) && (!lapack.isILP64); 6 7 + buildDunePackage rec { 8 + pname = "lacaml"; 9 + version = "11.0.8"; 10 11 + useDune2 = true; 12 + 13 + minimumOCamlVersion = "4.08"; 14 + 15 + src = fetchurl { 16 + url = "https://github.com/mmottl/lacaml/releases/download/${version}/lacaml-${version}.tbz"; 17 + sha256 = "1i47wqnd9iy6ndbi9zfahpb592gahp6im26rgpwch13vgzk3kifd"; 18 }; 19 20 + buildInputs = [ dune-configurator ]; 21 propagatedBuildInputs = [ lapack blas ] ++ 22 stdenv.lib.optionals stdenv.isDarwin 23 [ darwin.apple_sdk.frameworks.Accelerate ]; 24 25 meta = with stdenv.lib; { 26 + homepage = "https://mmottl.github.io/lacaml"; 27 description = "OCaml bindings for BLAS and LAPACK"; 28 license = licenses.lgpl21Plus; 29 + maintainers = [ maintainers.vbgl ]; 30 }; 31 }
+1 -1
pkgs/development/ocaml-modules/lua-ml/default.nix
··· 12 src = fetchFromGitHub { 13 owner = "lindig"; 14 repo = pname; 15 - rev = "${version}"; 16 sha256 = "04lv98nxmzanvyn4c0k6k0ax29f5xfdl8qzpf5hwadslq213a044"; 17 }; 18
··· 12 src = fetchFromGitHub { 13 owner = "lindig"; 14 repo = pname; 15 + rev = version; 16 sha256 = "04lv98nxmzanvyn4c0k6k0ax29f5xfdl8qzpf5hwadslq213a044"; 17 }; 18
+26
pkgs/development/ocaml-modules/mirage-profile/default.nix
···
··· 1 + { lib, fetchurl, buildDunePackage 2 + , ppx_cstruct 3 + , cstruct, lwt 4 + }: 5 + 6 + buildDunePackage rec { 7 + pname = "mirage-profile"; 8 + version = "0.9.1"; 9 + 10 + useDune2 = true; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/mirage/mirage-profile/releases/download/v${version}/mirage-profile-v${version}.tbz"; 14 + sha256 = "0lh3591ad4v7nxpd410b75idmgdq668mqdilvkg4avrwqw1wzdib"; 15 + }; 16 + 17 + buildInputs = [ ppx_cstruct ]; 18 + propagatedBuildInputs = [ cstruct lwt ]; 19 + 20 + meta = with lib; { 21 + description = "Collect runtime profiling information in CTF format"; 22 + homepage = "https://github.com/mirage/mirage-profile"; 23 + license = licenses.bsd2; 24 + maintainers = with maintainers; [ vbgl ]; 25 + }; 26 + }
+1 -1
pkgs/development/ocaml-modules/webmachine/default.nix
··· 13 src = fetchFromGitHub { 14 owner = "inhabitedtype"; 15 repo = "ocaml-webmachine"; 16 - rev = "${version}"; 17 sha256 = "1zi1vsm589y2njwzsqkmdbxvs9s4xlgbd62xqw2scp60mccp09nk"; 18 }; 19
··· 13 src = fetchFromGitHub { 14 owner = "inhabitedtype"; 15 repo = "ocaml-webmachine"; 16 + rev = version; 17 sha256 = "1zi1vsm589y2njwzsqkmdbxvs9s4xlgbd62xqw2scp60mccp09nk"; 18 }; 19
+2 -2
pkgs/development/python-modules/ansible-lint/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "ansible-lint"; 18 - version = "4.3.5"; 19 # pip is not able to import version info on raumel.yaml 20 disabled = isPy27; 21 22 src = fetchPypi { 23 inherit pname version; 24 - sha256 = "0mjn0drw3cx4pfl9qll5j7wib5r8msihs5yl8ri9fkfcbz7k1hmy"; 25 }; 26 27 format = "pyproject";
··· 15 16 buildPythonPackage rec { 17 pname = "ansible-lint"; 18 + version = "4.3.6"; 19 # pip is not able to import version info on raumel.yaml 20 disabled = isPy27; 21 22 src = fetchPypi { 23 inherit pname version; 24 + sha256 = "1fn7mdykm4id78k4faibi92q9yxbjbyxb90ww0by03c31m8z5348"; 25 }; 26 27 format = "pyproject";
+2 -2
pkgs/development/python-modules/css-parser/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "css-parser"; 5 - version = "1.0.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "665b7965bef0c9b86955be7a3383ca44e519b46affc7c6bca5002cbdbd0bf19f"; 10 }; 11 12 # Test suite not included in tarball yet
··· 2 3 buildPythonPackage rec { 4 pname = "css-parser"; 5 + version = "1.0.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "4ed448a8a5622edb1d30d616bbc4bd3d30f11be922343d7a92d7e418e324af2e"; 10 }; 11 12 # Test suite not included in tarball yet
+1 -1
pkgs/development/python-modules/django-postgresql-netfields/default.nix
··· 16 17 src = fetchFromGitHub { 18 owner = "jimfunk"; 19 - repo = "${pname}"; 20 rev = "v${version}"; 21 sha256 = "1rrh38f3zl3jk5ijs6g75dxxvxygf4lczbgc7ahrgzf58g4a48lm"; 22 };
··· 16 17 src = fetchFromGitHub { 18 owner = "jimfunk"; 19 + repo = pname; 20 rev = "v${version}"; 21 sha256 = "1rrh38f3zl3jk5ijs6g75dxxvxygf4lczbgc7ahrgzf58g4a48lm"; 22 };
+4
pkgs/development/python-modules/google_cloud_pubsub/default.nix
··· 20 checkInputs = [ pytest mock ]; 21 propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ]; 22 23 checkPhase = '' 24 pytest tests/unit 25 ''; 26 27 meta = with stdenv.lib; { 28 description = "Google Cloud Pub/Sub API client library";
··· 20 checkInputs = [ pytest mock ]; 21 propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ]; 22 23 + # tests don't clean up file descriptors correctly 24 + doCheck = false; 25 checkPhase = '' 26 pytest tests/unit 27 ''; 28 + 29 + pythonImportsCheck = [ "google.cloud.pubsub" ]; 30 31 meta = with stdenv.lib; { 32 description = "Google Cloud Pub/Sub API client library";
+2 -2
pkgs/development/python-modules/grpcio-tools/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "grpcio-tools"; 5 - version = "1.32.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "28547272c51e1d2d343685b9f531e85bb90ad7bd93e726ba646b5627173cbc47"; 10 }; 11 12 enableParallelBuilding = true;
··· 2 3 buildPythonPackage rec { 4 pname = "grpcio-tools"; 5 + version = "1.33.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "af40774c0275f5465f49fd92bfcd9831b19b013de4cc77b8fb38aea76fa6dce3"; 10 }; 11 12 enableParallelBuilding = true;
+4 -3
pkgs/development/python-modules/hawkauthlib/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 , requests 5 , webob 6 }: ··· 9 pname = "hawkauthlib"; 10 version = "0.1.1"; 11 12 - src = fetchgit { 13 - url = "https://github.com/mozilla-services/hawkauthlib.git"; 14 rev = "refs/tags/v${version}"; 15 sha256 = "0mr1mpx4j9q7sch9arwfvpysnpf2p7ijy7072wilxm8pnj0bwvsi"; 16 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , requests 5 , webob 6 }: ··· 9 pname = "hawkauthlib"; 10 version = "0.1.1"; 11 12 + src = fetchFromGitHub { 13 + owner = "mozilla-services"; 14 + repo = pname; 15 rev = "refs/tags/v${version}"; 16 sha256 = "0mr1mpx4j9q7sch9arwfvpysnpf2p7ijy7072wilxm8pnj0bwvsi"; 17 };
+2 -2
pkgs/development/python-modules/hg-evolve/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "hg-evolve"; 9 - version = "10.0.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "75892623258339613528df45dcd1004786bf73e8d95407886d79bc4567fbde4d"; 14 }; 15 16 doCheck = false;
··· 6 7 buildPythonPackage rec { 8 pname = "hg-evolve"; 9 + version = "10.1.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "a386e6ee2d9a0e332a49f1cb210c4c11ba9844bcd52808270f48e688314783d8"; 14 }; 15 16 doCheck = false;
+2 -2
pkgs/development/python-modules/nix-prefetch-github/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "nix-prefetch-github"; 18 - version = "3.0"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - sha256 = "sha256-EN+EbVXUaf+id5UsK4EBm/9k9FYaH79g08kblvW60XA="; 23 }; 24 25 propagatedBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "nix-prefetch-github"; 18 + version = "4.0"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + sha256 = "sha256-STUyMUCWAHfDA6dkpiOqSRBL3/tubedUbWa94Kp/764="; 23 }; 24 25 propagatedBuildInputs = [
+24 -15
pkgs/development/python-modules/ovito/default.nix
··· 1 - { stdenv, fetchgit 2 , cmake 3 - , libav, netcdf, qscintilla, zlib, boost, git, fftw, hdf5, libssh 4 - , pythonPackages 5 }: 6 7 - stdenv.mkDerivation { 8 - # compilation error in 2.9.0 https://gitlab.com/stuko/ovito/issues/40 9 - # This is not the "released" 3.0.0 just a commit 10 - version = "3.0.0"; 11 pname = "ovito"; 12 13 - src = fetchgit { 14 - url = "https://gitlab.com/stuko/ovito"; 15 - rev = "a28c28182a879d2a1b511ec56f9845306dd8a4db"; 16 - sha256 = "1vqzv3gzwf8r0g05a7fj8hdyvnzq2h3wdfck7j6n1av6rvp7hi5r"; 17 }; 18 19 - buildInputs = [ cmake libav netcdf qscintilla zlib boost zlib git fftw hdf5 libssh ]; 20 - propagatedBuildInputs = with pythonPackages; [ sphinx numpy sip pyqt5 matplotlib ase ]; 21 22 enableParallelBuilding = true; 23 ··· 25 description = "Scientific visualization and analysis software for atomistic simulation data"; 26 homepage = "https://www.ovito.org"; 27 license = licenses.gpl3; 28 - maintainers = [ maintainers.costrouc ]; 29 # ensures not built on hydra 30 # https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048 31 hydraPlatforms = [ ]; 32 - broken = true; # cmake unable to find Qt5Core and other dependencies 33 }; 34 }
··· 1 + { stdenv 2 + , fetchFromGitLab 3 , cmake 4 + , ffmpeg 5 + , netcdf 6 + , qscintilla 7 + , zlib 8 + , boost 9 + , git 10 + , fftw 11 + , hdf5 12 + , libssh 13 + , qt5 14 + , python 15 }: 16 17 + stdenv.mkDerivation rec { 18 + version = "3.3.1"; 19 pname = "ovito"; 20 21 + src = fetchFromGitLab { 22 + owner = "stuko"; 23 + repo = pname; 24 + rev = "v${version}"; 25 + sha256 = "0rm1qxa0fanaaqg0idr6rf2s2xlbyn1dzjzwh3rddy9mgl60lj2h"; 26 }; 27 28 + buildInputs = [ cmake ffmpeg netcdf qscintilla zlib boost zlib git fftw hdf5 libssh qt5.qtbase qt5.qtsvg ]; 29 + 30 + propagatedBuildInputs = with python.pkgs; [ sphinx numpy sip pyqt5 matplotlib ase ]; 31 32 enableParallelBuilding = true; 33 ··· 35 description = "Scientific visualization and analysis software for atomistic simulation data"; 36 homepage = "https://www.ovito.org"; 37 license = licenses.gpl3; 38 + maintainers = with maintainers; [ costrouc ]; 39 # ensures not built on hydra 40 # https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048 41 hydraPlatforms = [ ]; 42 }; 43 }
+1 -1
pkgs/development/python-modules/pa-ringbuffer/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "spatialaudio"; 9 repo = "python-pa-ringbuffer"; 10 - rev = "${version}"; 11 sha256 = "0afpydy1l20hd1xncjppjhqa2c8dj5h9nlv4z8m55cs9hc9h1mxv"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "spatialaudio"; 9 repo = "python-pa-ringbuffer"; 10 + rev = version; 11 sha256 = "0afpydy1l20hd1xncjppjhqa2c8dj5h9nlv4z8m55cs9hc9h1mxv"; 12 }; 13
+1 -1
pkgs/development/python-modules/pyfcm/default.nix
··· 11 src = fetchFromGitHub { 12 owner = "olucurious"; 13 repo = "pyfcm"; 14 - rev = "${version}"; 15 sha256 = "0aj10yvjsc04j15zbn403i83j7ra5yg35pi3ywkyakk8n1s0s3qg"; 16 }; 17
··· 11 src = fetchFromGitHub { 12 owner = "olucurious"; 13 repo = "pyfcm"; 14 + rev = version; 15 sha256 = "0aj10yvjsc04j15zbn403i83j7ra5yg35pi3ywkyakk8n1s0s3qg"; 16 }; 17
+4 -3
pkgs/development/python-modules/pykka/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 }: 5 6 buildPythonPackage rec { 7 pname = "pykka"; 8 version = "2.0.1"; 9 10 - src = fetchgit { 11 - url = "https://github.com/jodal/pykka.git"; 12 rev = "refs/tags/v${version}"; 13 sha256 = "011rvv3vzj9rpwaq6vfpz9hfwm6gx1jmad4iri6z12g8nnlpydhs"; 14 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 }: 5 6 buildPythonPackage rec { 7 pname = "pykka"; 8 version = "2.0.1"; 9 10 + src = fetchFromGitHub { 11 + owner = "jodal"; 12 + repo = pname; 13 rev = "refs/tags/v${version}"; 14 sha256 = "011rvv3vzj9rpwaq6vfpz9hfwm6gx1jmad4iri6z12g8nnlpydhs"; 15 };
+5 -4
pkgs/development/python-modules/pyramid_hawkauth/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 , pyramid 5 , hawkauthlib 6 , tokenlib ··· 8 }: 9 10 buildPythonPackage rec { 11 - pname = "pyramidhawkauth"; 12 version = "0.1.0"; 13 14 - src = fetchgit { 15 - url = "https://github.com/mozilla-services/pyramid_hawkauth.git"; 16 rev = "refs/tags/v${version}"; 17 sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h"; 18 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , pyramid 5 , hawkauthlib 6 , tokenlib ··· 8 }: 9 10 buildPythonPackage rec { 11 + pname = "pyramid_hawkauth"; 12 version = "0.1.0"; 13 14 + src = fetchFromGitHub { 15 + owner = "mozilla-services"; 16 + repo = pname; 17 rev = "refs/tags/v${version}"; 18 sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h"; 19 };
+2 -2
pkgs/development/python-modules/pyserial-asyncio/default.nix
··· 7 8 disabled = !isPy3k; # Doesn't support python older than 3.4 9 10 - buildInputs = [ pyserial ]; 11 - 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1vlsb0d03krxlj7vpvyhpinnyxyy8s3lk5rs8ba2932dhyl7f1n4"; 15 }; 16 17 meta = with stdenv.lib; { 18 description = "asyncio extension package for pyserial";
··· 7 8 disabled = !isPy3k; # Doesn't support python older than 3.4 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1vlsb0d03krxlj7vpvyhpinnyxyy8s3lk5rs8ba2932dhyl7f1n4"; 13 }; 14 + 15 + propagatedBuildInputs = [ pyserial ]; 16 17 meta = with stdenv.lib; { 18 description = "asyncio extension package for pyserial";
+10 -3
pkgs/development/python-modules/pyside/apiextractor.nix
··· 1 - { stdenv, fetchurl, cmake, libxml2, libxslt, python2, qt4 }: 2 3 # This derivation does not provide any Python module and should therefore be called via `all-packages.nix`. 4 let 5 - pythonEnv = python2.withPackages(ps: with ps; [ sphinx ]); 6 in stdenv.mkDerivation { 7 name = "pyside-apiextractor-0.10.10"; 8 ··· 13 14 enableParallelBuilding = true; 15 16 - buildInputs = [ cmake qt4 pythonEnv libxml2 libxslt ]; 17 18 meta = { 19 description = "Eases the development of bindings of Qt-based libraries for high level languages by automating most of the process";
··· 1 + { stdenv, fetchurl, cmake, libxml2, libxslt, python3, qt4 }: 2 3 # This derivation does not provide any Python module and should therefore be called via `all-packages.nix`. 4 let 5 + pythonEnv = python3.withPackages(ps: with ps; [ sphinx ]); 6 in stdenv.mkDerivation { 7 name = "pyside-apiextractor-0.10.10"; 8 ··· 13 14 enableParallelBuilding = true; 15 16 + outputs = [ "out" "dev" ]; 17 + 18 + preConfigure = '' 19 + cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$dev") 20 + ''; 21 + 22 + nativeBuildInputs = [ cmake pythonEnv ]; 23 + buildInputs = [ qt4 libxml2 libxslt ]; 24 25 meta = { 26 description = "Eases the development of bindings of Qt-based libraries for high level languages by automating most of the process";
+6
pkgs/development/python-modules/pyside/default.nix
··· 13 14 enableParallelBuilding = true; 15 16 nativeBuildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ]; 17 18 buildInputs = [ mesa libGL ];
··· 13 14 enableParallelBuilding = true; 15 16 + outputs = [ "out" "dev" ]; 17 + 18 + preConfigure = '' 19 + cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$dev") 20 + ''; 21 + 22 nativeBuildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ]; 23 24 buildInputs = [ mesa libGL ];
+10 -3
pkgs/development/python-modules/pyside/generatorrunner.nix
··· 1 - { stdenv, fetchurl, cmake, pysideApiextractor, python2, qt4 }: 2 3 # This derivation does not provide any Python module and should therefore be called via `all-packages.nix`. 4 let 5 - pythonEnv = python2.withPackages(ps: with ps; [ sphinx ]); 6 pname = "pyside-generatorrunner"; 7 version = "0.6.16"; 8 in stdenv.mkDerivation { ··· 15 16 enableParallelBuilding = true; 17 18 - buildInputs = [ cmake pysideApiextractor qt4 pythonEnv ]; 19 20 meta = { 21 description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
··· 1 + { stdenv, fetchurl, cmake, pysideApiextractor, python3, qt4 }: 2 3 # This derivation does not provide any Python module and should therefore be called via `all-packages.nix`. 4 let 5 + pythonEnv = python3.withPackages(ps: with ps; [ sphinx ]); 6 pname = "pyside-generatorrunner"; 7 version = "0.6.16"; 8 in stdenv.mkDerivation { ··· 15 16 enableParallelBuilding = true; 17 18 + outputs = [ "out" "dev" ]; 19 + 20 + preConfigure = '' 21 + cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$dev") 22 + ''; 23 + 24 + nativeBuildInputs = [ cmake pythonEnv ]; 25 + buildInputs = [ pysideApiextractor qt4 ]; 26 27 meta = { 28 description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
+3
pkgs/development/python-modules/pyside/shiboken.nix
··· 33 34 buildInputs = [ python libxml2 libxslt ]; 35 36 preConfigure = '' 37 echo "preConfigure: Fixing shiboken_generator install target." 38 substituteInPlace generator/CMakeLists.txt --replace \ 39 \"$\{GENERATORRUNNER_PLUGIN_DIR}\" lib/generatorrunner/
··· 33 34 buildInputs = [ python libxml2 libxslt ]; 35 36 + outputs = [ "out" "dev" ]; 37 + 38 preConfigure = '' 39 + cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$dev") 40 echo "preConfigure: Fixing shiboken_generator install target." 41 substituteInPlace generator/CMakeLists.txt --replace \ 42 \"$\{GENERATORRUNNER_PLUGIN_DIR}\" lib/generatorrunner/
+6
pkgs/development/python-modules/pyside/tools.nix
··· 12 sha256 = "017i2yxgjrisaifxqnl3ym8ijl63l2yl6a3474dsqhlyqz2nx2ll"; 13 }; 14 15 nativeBuildInputs = [ cmake ]; 16 17 buildInputs = [ qt4 ];
··· 12 sha256 = "017i2yxgjrisaifxqnl3ym8ijl63l2yl6a3474dsqhlyqz2nx2ll"; 13 }; 14 15 + outputs = [ "out" "dev" ]; 16 + 17 + preConfigure = '' 18 + cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$dev") 19 + ''; 20 + 21 nativeBuildInputs = [ cmake ]; 22 23 buildInputs = [ qt4 ];
+1 -1
pkgs/development/python-modules/rtmixer/default.nix
··· 17 src = fetchFromGitHub { 18 owner = "spatialaudio"; 19 repo = "python-rtmixer"; 20 - rev = "${version}"; 21 sha256 = "1bvgzzxiypvvb3qacbcry6761x9sk3dnx7jga7pli63f69vakg4y"; 22 fetchSubmodules = true; 23 };
··· 17 src = fetchFromGitHub { 18 owner = "spatialaudio"; 19 repo = "python-rtmixer"; 20 + rev = version; 21 sha256 = "1bvgzzxiypvvb3qacbcry6761x9sk3dnx7jga7pli63f69vakg4y"; 22 fetchSubmodules = true; 23 };
+1 -1
pkgs/development/python-modules/sacremoses/default.nix
··· 15 src = fetchFromGitHub { 16 owner = "alvations"; 17 repo = pname; 18 - rev = "${version}"; 19 sha256 = "1gzr56w8yx82mn08wax5m0xyg15ym4ri5l80gmagp8r53443j770"; 20 }; 21
··· 15 src = fetchFromGitHub { 16 owner = "alvations"; 17 repo = pname; 18 + rev = version; 19 sha256 = "1gzr56w8yx82mn08wax5m0xyg15ym4ri5l80gmagp8r53443j770"; 20 }; 21
+4 -3
pkgs/development/python-modules/signedjson/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 , canonicaljson 5 , unpaddedbase64 6 , pynacl ··· 11 pname = "signedjson"; 12 version = "1.1.0"; 13 14 - src = fetchgit { 15 - url = "https://github.com/matrix-org/python-signedjson.git"; 16 rev = "refs/tags/v${version}"; 17 sha256 = "18s388hm3babnvakbbgfqk0jzq25nnznvhygywd3azp9b4yzmd5c"; 18 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , canonicaljson 5 , unpaddedbase64 6 , pynacl ··· 11 pname = "signedjson"; 12 version = "1.1.0"; 13 14 + src = fetchFromGitHub { 15 + owner = "matrix-org"; 16 + repo = "python-${pname}"; 17 rev = "refs/tags/v${version}"; 18 sha256 = "18s388hm3babnvakbbgfqk0jzq25nnznvhygywd3azp9b4yzmd5c"; 19 };
+2 -2
pkgs/development/python-modules/srsly/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "srsly"; 16 - version = "2.3.0"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - sha256 = "f994a266f6e547c8ffe803cb90baed7ca566831f924e0491402564ba0d185e66"; 23 }; 24 25 nativeBuildInputs = [ cython ];
··· 13 14 buildPythonPackage rec { 15 pname = "srsly"; 16 + version = "2.3.1"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + sha256 = "3dcce93c69ff18e8a8d7decfdfdf8e1fd44c4446cdee8d0e5d545d6b172dc377"; 23 }; 24 25 nativeBuildInputs = [ cython ];
+2 -2
pkgs/development/python-modules/sshtunnel/default.nix
··· 5 }: 6 7 buildPythonPackage rec { 8 - version = "0.1.5"; 9 pname = "sshtunnel"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "0jcjppp6mdfsqrbfc3ddfxg1ybgvkjv7ri7azwv3j778m36zs4y8"; 14 }; 15 16 propagatedBuildInputs = [ paramiko ];
··· 5 }: 6 7 buildPythonPackage rec { 8 + version = "0.2.1"; 9 pname = "sshtunnel"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "ce28bf9abe6c6b00c5d10343a68c1325f8409ebfb9bf1c1d863a31afa3983cd7"; 14 }; 15 16 propagatedBuildInputs = [ paramiko ];
+2 -2
pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "telethon-session-sqlalchemy"; 5 - version = "0.2.15"; 6 7 disabled = !isPy3k; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "2ba603d95d5be6ddecd8ecaeaffba00b75b49dd80eb77f6228dd7b793ca67fd2"; 12 }; 13 14 propagatedBuildInputs = [
··· 2 3 buildPythonPackage rec { 4 pname = "telethon-session-sqlalchemy"; 5 + version = "0.2.16"; 6 7 disabled = !isPy3k; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "f847c57302a102eb88e29ed95b8f4efa69582db2966fd806c21376b9a66ad4a8"; 12 }; 13 14 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/tensorflow-probability/default.nix
··· 31 src = fetchFromGitHub { 32 owner = "tensorflow"; 33 repo = "probability"; 34 - rev = "${version}"; 35 sha256 = "07cm8zba8n0ihzdm3k4a4rsg5v62xxsfvcw4h0niz91c0parqjqy"; 36 }; 37
··· 31 src = fetchFromGitHub { 32 owner = "tensorflow"; 33 repo = "probability"; 34 + rev = version; 35 sha256 = "07cm8zba8n0ihzdm3k4a4rsg5v62xxsfvcw4h0niz91c0parqjqy"; 36 }; 37
+4 -3
pkgs/development/python-modules/tokenlib/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 , requests 5 , webob 6 }: ··· 9 pname = "tokenlib"; 10 version = "0.3.1"; 11 12 - src = fetchgit { 13 - url = "https://github.com/mozilla-services/tokenlib.git"; 14 rev = "refs/tags/${version}"; 15 sha256 = "0bq6dqyfwh29pg8ngmrm4mx4q27an9lsj0p9l79p9snn4g2rxzc8"; 16 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , requests 5 , webob 6 }: ··· 9 pname = "tokenlib"; 10 version = "0.3.1"; 11 12 + src = fetchFromGitHub { 13 + owner = "mozilla-services"; 14 + repo = pname; 15 rev = "refs/tags/${version}"; 16 sha256 = "0bq6dqyfwh29pg8ngmrm4mx4q27an9lsj0p9l79p9snn4g2rxzc8"; 17 };
+1 -1
pkgs/development/python-modules/unicorn/default.nix
··· 5 version = stdenv.lib.getVersion unicorn-emu; 6 7 src = unicorn-emu.src; 8 - sourceRoot = "unicorn-${version}/bindings/python"; 9 10 prePatch = '' 11 ln -s ${unicorn-emu}/lib/libunicorn${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
··· 5 version = stdenv.lib.getVersion unicorn-emu; 6 7 src = unicorn-emu.src; 8 + sourceRoot = "source/bindings/python"; 9 10 prePatch = '' 11 ln -s ${unicorn-emu}/lib/libunicorn${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
+4 -3
pkgs/development/python-modules/unpaddedbase64/default.nix
··· 1 { stdenv 2 , buildPythonPackage 3 - , fetchgit 4 }: 5 6 buildPythonPackage rec { 7 pname = "unpaddedbase64"; 8 version = "1.1.0"; 9 10 - src = fetchgit { 11 - url = "https://github.com/matrix-org/python-unpaddedbase64.git"; 12 rev = "refs/tags/v${version}"; 13 sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd"; 14 };
··· 1 { stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 }: 5 6 buildPythonPackage rec { 7 pname = "unpaddedbase64"; 8 version = "1.1.0"; 9 10 + src = fetchFromGitHub { 11 + owner = "matrix-org"; 12 + repo = "python-${pname}"; 13 rev = "refs/tags/v${version}"; 14 sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd"; 15 };
+1 -1
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "xd009642"; 9 repo = "tarpaulin"; 10 - rev = "${version}"; 11 sha256 = "0ga2zfq4365hxvr3wd3isc146ibivy3bfcy24rb6cq3av3b90a8k"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "xd009642"; 9 repo = "tarpaulin"; 10 + rev = version; 11 sha256 = "0ga2zfq4365hxvr3wd3isc146ibivy3bfcy24rb6cq3av3b90a8k"; 12 }; 13
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 { stdenv, fetchurl, makeWrapper, jre }: 2 3 stdenv.mkDerivation rec { 4 - version = "8.36.2"; 5 pname = "checkstyle"; 6 7 src = fetchurl { 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "05yb3020q0r75ggh0nm56yj45ha2ppyhbnjn34wqpadi842pzpfh"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 1 { stdenv, fetchurl, makeWrapper, jre }: 2 3 stdenv.mkDerivation rec { 4 + version = "8.37"; 5 pname = "checkstyle"; 6 7 src = fetchurl { 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 + sha256 = "1xhindlq46d5878mkbxc3f6fx6i00kqbj2aymlg0022v9h6r1p9p"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/analysis/codeql/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "codeql"; 15 - version = "2.3.1"; 16 17 dontConfigure = true; 18 dontBuild = true; ··· 20 21 src = fetchzip { 22 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 23 - sha256 = "1wbqccvj2a31b3h44rfanjrcv9gm4jl60a66mpxrbfjpmkd5hl35"; 24 }; 25 26 nativeBuildInputs = [
··· 12 13 stdenv.mkDerivation rec { 14 pname = "codeql"; 15 + version = "2.3.2"; 16 17 dontConfigure = true; 18 dontBuild = true; ··· 20 21 src = fetchzip { 22 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 23 + sha256 = "1fzybh21jw02gdmqkh54gin4chqxj5r5alkrqk1wcryhf73brsbb"; 24 }; 25 26 nativeBuildInputs = [
+1 -2
pkgs/development/tools/analysis/retdec/default.nix
··· 135 136 src = fetchFromGitHub { 137 owner = "avast-tl"; 138 - repo = "retdec"; 139 - name = "retdec-${version}"; 140 rev = "refs/tags/v${version}"; 141 sha256 = "0chky656lsddn20bnm3pmz6ix20y4a0y8swwr42hrhi01vkhmzrp"; 142 };
··· 135 136 src = fetchFromGitHub { 137 owner = "avast-tl"; 138 + repo = pname; 139 rev = "refs/tags/v${version}"; 140 sha256 = "0chky656lsddn20bnm3pmz6ix20y4a0y8swwr42hrhi01vkhmzrp"; 141 };
+2 -2
pkgs/development/tools/continuous-integration/fly/default.nix
··· 2 3 buildGoModule rec { 4 pname = "fly"; 5 - version = "6.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "concourse"; 9 repo = "concourse"; 10 rev = "v${version}"; 11 - sha256 = "09cfsq8vfjhavhqcydg0l3bi1g12y2p160yi2v0y5vk7ipiqyzrd"; 12 }; 13 14 vendorSha256 = "1fxbxkg7disndlmb065abnfn7sn79qclkcbizmrq49f064w1ijr4";
··· 2 3 buildGoModule rec { 4 pname = "fly"; 5 + version = "6.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "concourse"; 9 repo = "concourse"; 10 rev = "v${version}"; 11 + sha256 = "0jc0hr0h1xya7avzxdwmvhnsm5cr3g21pig52draz5vjaya7bg55"; 12 }; 13 14 vendorSha256 = "1fxbxkg7disndlmb065abnfn7sn79qclkcbizmrq49f064w1ijr4";
+1 -1
pkgs/development/tools/eclipse-mat/default.nix
··· 31 in 32 stdenv.mkDerivation rec { 33 pname = "eclipse-mat"; 34 - version = "${pVersion}"; 35 36 src = fetchurl { 37 url = "http://ftp.halifax.rwth-aachen.de/eclipse//mat/${baseVersion}/rcp/MemoryAnalyzer-${version}-linux.gtk.x86_64.zip";
··· 31 in 32 stdenv.mkDerivation rec { 33 pname = "eclipse-mat"; 34 + version = pVersion; 35 36 src = fetchurl { 37 url = "http://ftp.halifax.rwth-aachen.de/eclipse//mat/${baseVersion}/rcp/MemoryAnalyzer-${version}-linux.gtk.x86_64.zip";
+2 -2
pkgs/development/tools/flyway/default.nix
··· 1 { stdenv, fetchurl, jre_headless, makeWrapper }: 2 let 3 - version = "6.5.5"; 4 in 5 stdenv.mkDerivation { 6 pname = "flyway"; 7 inherit version; 8 src = fetchurl { 9 url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 10 - sha256 = "0g40lgrm9cslkdr4yn0h737djdr9fdyrc4hkq7wsrj0wx6d819dn"; 11 }; 12 nativeBuildInputs = [ makeWrapper ]; 13 dontBuild = true;
··· 1 { stdenv, fetchurl, jre_headless, makeWrapper }: 2 let 3 + version = "7.1.1"; 4 in 5 stdenv.mkDerivation { 6 pname = "flyway"; 7 inherit version; 8 src = fetchurl { 9 url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 10 + sha256 = "0ssspvgikn5avb49aldljx9avplhj33isbmwijk3548dg6dvh2da"; 11 }; 12 nativeBuildInputs = [ makeWrapper ]; 13 dontBuild = true;
+2 -2
pkgs/development/tools/gllvm/default.nix
··· 2 3 buildGoPackage rec { 4 pname = "gllvm"; 5 - version = "1.2.8"; 6 7 goPackagePath = "github.com/SRI-CSL/gllvm"; 8 ··· 10 owner = "SRI-CSL"; 11 repo = "gllvm"; 12 rev = "v${version}"; 13 - sha256 = "090ghg7ivf6snkabba00pn8a9x5wj8dgpdq7qjhmw1lpijd0mq0y"; 14 }; 15 16 meta = with stdenv.lib; {
··· 2 3 buildGoPackage rec { 4 pname = "gllvm"; 5 + version = "1.2.9"; 6 7 goPackagePath = "github.com/SRI-CSL/gllvm"; 8 ··· 10 owner = "SRI-CSL"; 11 repo = "gllvm"; 12 rev = "v${version}"; 13 + sha256 = "15cgngvd9mg057iz32fk5kcprcvvavahbvfvl5ds8x7shbm60g7s"; 14 }; 15 16 meta = with stdenv.lib; {
+9 -8
pkgs/development/tools/glslviewer/default.nix
··· 1 { stdenv, fetchFromGitHub, glfw, pkgconfig, libXrandr, libXdamage 2 , libXext, libXrender, libXinerama, libXcursor, libXxf86vm, libXi 3 - , libX11, libGLU, python2Packages, ensureNewerSourcesForZipFilesHook 4 , Cocoa 5 }: 6 7 - stdenv.mkDerivation { 8 pname = "glslviewer"; 9 - version = "2019-04-22"; 10 11 src = fetchFromGitHub { 12 owner = "patriciogonzalezvivo"; 13 repo = "glslViewer"; 14 - rev = "fa3e2ed4810927d189e480b704366cca22f281f3"; 15 - sha256 = "1888jxi84f2nnc0kpzqrn2cada1z4zqyq8ss4ppb5y3wy7d87qjn"; 16 }; 17 18 - nativeBuildInputs = [ pkgconfig ensureNewerSourcesForZipFilesHook ]; 19 buildInputs = [ 20 glfw libGLU glfw libXrandr libXdamage 21 libXext libXrender libXinerama libXcursor libXxf86vm 22 libXi libX11 23 - ] ++ (with python2Packages; [ python setuptools wrapPython ]) 24 ++ stdenv.lib.optional stdenv.isDarwin Cocoa; 25 - pythonPath = with python2Packages; [ requests ]; 26 27 # Makefile has /usr/local/bin hard-coded for 'make install' 28 preConfigure = '' ··· 31 --replace '/usr/bin/clang++' 'clang++' 32 substituteInPlace Makefile \ 33 --replace 'python setup.py install' "python setup.py install --prefix=$out" 34 ''; 35 36 preInstall = ''
··· 1 { stdenv, fetchFromGitHub, glfw, pkgconfig, libXrandr, libXdamage 2 , libXext, libXrender, libXinerama, libXcursor, libXxf86vm, libXi 3 + , libX11, libGLU, python3Packages, ensureNewerSourcesForZipFilesHook 4 , Cocoa 5 }: 6 7 + stdenv.mkDerivation rec { 8 pname = "glslviewer"; 9 + version = "1.6.8"; 10 11 src = fetchFromGitHub { 12 owner = "patriciogonzalezvivo"; 13 repo = "glslViewer"; 14 + rev = version; 15 + sha256 = "0v7x93b61ama0gmzlx1zc56jgi7bvzsfvbkfl82xzwf2h5g1zni7"; 16 }; 17 18 + nativeBuildInputs = [ pkgconfig ensureNewerSourcesForZipFilesHook python3Packages.six ]; 19 buildInputs = [ 20 glfw libGLU glfw libXrandr libXdamage 21 libXext libXrender libXinerama libXcursor libXxf86vm 22 libXi libX11 23 + ] ++ (with python3Packages; [ python setuptools wrapPython ]) 24 ++ stdenv.lib.optional stdenv.isDarwin Cocoa; 25 + pythonPath = with python3Packages; [ pyyaml requests ]; 26 27 # Makefile has /usr/local/bin hard-coded for 'make install' 28 preConfigure = '' ··· 31 --replace '/usr/bin/clang++' 'clang++' 32 substituteInPlace Makefile \ 33 --replace 'python setup.py install' "python setup.py install --prefix=$out" 34 + 2to3 -w bin/* 35 ''; 36 37 preInstall = ''
+4 -4
pkgs/development/tools/google-app-engine-go-sdk/default.nix
··· 1 - { stdenv, fetchzip, python27, python27Packages, makeWrapper }: 2 3 - with python27Packages; 4 5 stdenv.mkDerivation rec { 6 pname = "google-app-engine-go-sdk"; ··· 17 sha256 = "0s8sqyc72lnc7dxd4cl559gyfx83x71jjpsld3i3nbp3mwwamczp"; 18 }; 19 20 - buildInputs = [python27 makeWrapper]; 21 22 installPhase = '' 23 mkdir -p $out/bin $out/share/ ··· 26 # create wrappers with correct env 27 for i in goapp go-app-stager *.py; do 28 makeWrapper "$out/share/go_appengine/$i" "$out/bin/$i" \ 29 - --prefix PATH : "${python27}/bin" \ 30 --prefix PYTHONPATH : "$(toPythonPath ${cffi}):$(toPythonPath ${cryptography}):$(toPythonPath ${pyopenssl})" 31 done 32 '';
··· 1 + { stdenv, fetchzip, python3Packages, makeWrapper }: 2 3 + with python3Packages; 4 5 stdenv.mkDerivation rec { 6 pname = "google-app-engine-go-sdk"; ··· 17 sha256 = "0s8sqyc72lnc7dxd4cl559gyfx83x71jjpsld3i3nbp3mwwamczp"; 18 }; 19 20 + buildInputs = [ python makeWrapper ]; 21 22 installPhase = '' 23 mkdir -p $out/bin $out/share/ ··· 26 # create wrappers with correct env 27 for i in goapp go-app-stager *.py; do 28 makeWrapper "$out/share/go_appengine/$i" "$out/bin/$i" \ 29 + --prefix PATH : "${python}/bin" \ 30 --prefix PYTHONPATH : "$(toPythonPath ${cffi}):$(toPythonPath ${cryptography}):$(toPythonPath ${pyopenssl})" 31 done 32 '';
+2 -2
pkgs/development/tools/knightos/kpack/default.nix
··· 3 stdenv.mkDerivation rec { 4 pname = "kpack"; 5 6 - version = "1.1.0"; 7 8 src = fetchFromGitHub { 9 owner = "KnightOS"; 10 repo = "kpack"; 11 rev = version; 12 - sha256 = "0kakfbzdvq5ldv1gdzl473j73c9nfdyx4xzfkriglkrqmksqc329"; 13 }; 14 15 nativeBuildInputs = [ cmake ];
··· 3 stdenv.mkDerivation rec { 4 pname = "kpack"; 5 6 + version = "1.1.1"; 7 8 src = fetchFromGitHub { 9 owner = "KnightOS"; 10 repo = "kpack"; 11 rev = version; 12 + sha256 = "1l6bm2j45946i80qgwhrixg9sckazwb5x4051s76d3mapq9bara8"; 13 }; 14 15 nativeBuildInputs = [ cmake ];
+1 -1
pkgs/development/tools/misc/argbash/default.nix
··· 8 src = fetchFromGitHub { 9 owner = "matejak"; 10 repo = "argbash"; 11 - rev = "${version}"; 12 sha256 = "1xdhpbnc0xjv6ydcm122hhdjcl77jhiqnccjfqjp3cd1lfmzvg8v"; 13 }; 14
··· 8 src = fetchFromGitHub { 9 owner = "matejak"; 10 repo = "argbash"; 11 + rev = version; 12 sha256 = "1xdhpbnc0xjv6ydcm122hhdjcl77jhiqnccjfqjp3cd1lfmzvg8v"; 13 }; 14
+2 -2
pkgs/development/tools/misc/circleci-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "circleci-cli"; 5 - version = "0.1.10993"; 6 7 src = fetchFromGitHub { 8 owner = "CircleCI-Public"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "1pi31zcg4nvrsyb66znf7g51z51qfw56kml6l2vgg4dbpwmzg87h"; 12 }; 13 14 vendorSha256 = "0fjj8hh0s0jcgz48japbcfpl4ihba2drvvxlyg69j8hrcb9lmi4l";
··· 2 3 buildGoModule rec { 4 pname = "circleci-cli"; 5 + version = "0.1.11146"; 6 7 src = fetchFromGitHub { 8 owner = "CircleCI-Public"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "1pn421sc3ipdqvdwl6fvlvwcddck3v23j8rfk5lq5a2n4ip5r8z8"; 12 }; 13 14 vendorSha256 = "0fjj8hh0s0jcgz48japbcfpl4ihba2drvvxlyg69j8hrcb9lmi4l";
+2 -2
pkgs/development/tools/misc/cproto/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cproto"; 5 - version = "4.7p"; 6 7 src = fetchurl { 8 urls = [ ··· 10 # No version listings and apparently no versioned tarball over http(s). 11 "ftp://ftp.invisible-island.net/cproto/cproto-${version}.tgz" 12 ]; 13 - sha256 = "0vm1784yw8gax1r7bzgq0chjgfzwxvmkala2awghmd3zyi7k60nj"; 14 }; 15 16 # patch made by Joe Khoobyar copied from gentoo bugs
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cproto"; 5 + version = "4.7q"; 6 7 src = fetchurl { 8 urls = [ ··· 10 # No version listings and apparently no versioned tarball over http(s). 11 "ftp://ftp.invisible-island.net/cproto/cproto-${version}.tgz" 12 ]; 13 + sha256 = "138n5j6lkanbbdcs63irzxny4nfgp0zk66z621xjbnybf920svpk"; 14 }; 15 16 # patch made by Joe Khoobyar copied from gentoo bugs
+1 -1
pkgs/development/tools/misc/editorconfig-checker/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "editorconfig-checker"; 9 repo = "editorconfig-checker"; 10 - rev = "${version}"; 11 sha256 = "18gz94h2x1z6g6r7v9cdixkbcaigd7cl08af6smlkaa89j0aki32"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "editorconfig-checker"; 9 repo = "editorconfig-checker"; 10 + rev = version; 11 sha256 = "18gz94h2x1z6g6r7v9cdixkbcaigd7cl08af6smlkaa89j0aki32"; 12 }; 13
+1 -1
pkgs/development/tools/misc/fujprog/default.nix
··· 13 14 src = fetchFromGitHub { 15 owner = "kost"; 16 - repo = "${pname}"; 17 rev = "v${version}"; 18 sha256 = "08kzkzd5a1wfd1aycywdynxh3qy6n7z9i8lihkahmb4xac3chmz5"; 19 };
··· 13 14 src = fetchFromGitHub { 15 owner = "kost"; 16 + repo = pname; 17 rev = "v${version}"; 18 sha256 = "08kzkzd5a1wfd1aycywdynxh3qy6n7z9i8lihkahmb4xac3chmz5"; 19 };
+3 -3
pkgs/development/tools/misc/mkcert/default.nix
··· 2 3 buildGoModule rec { 4 pname = "mkcert"; 5 - version = "1.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "FiloSottile"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "0w1ji96hbd3anzsz82xjcafsqhgyz7c7n41rsq60yrllwbj5946f"; 12 }; 13 14 vendorSha256 = "0b8ggdpbyxx5n2myhchhlwmm5nndwpykp1ylnzdyw12mdskfvn9h"; ··· 16 doCheck = false; 17 18 buildFlagsArray = '' 19 - -ldflags=-X main.Version=v${version} 20 ''; 21 22 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "mkcert"; 5 + version = "1.4.2"; 6 7 src = fetchFromGitHub { 8 owner = "FiloSottile"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "0g85vpkfgkc7nzjl3asl2f4ncsh12naf2fkr0mvyihfmfy9fz0fw"; 12 }; 13 14 vendorSha256 = "0b8ggdpbyxx5n2myhchhlwmm5nndwpykp1ylnzdyw12mdskfvn9h"; ··· 16 doCheck = false; 17 18 buildFlagsArray = '' 19 + -ldflags=-s -w -X main.Version=v${version} 20 ''; 21 22 meta = with lib; {
+2 -2
pkgs/development/tools/misc/nix-build-uncached/default.nix
··· 2 3 buildGoModule rec { 4 pname = "nix-build-uncached"; 5 - version = "1.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "Mic92"; 9 repo = "nix-build-uncached"; 10 rev = "v${version}"; 11 - sha256 = "106k4234gpi8mr0n0rfsgwk4z7v0b2gim0r5bhjvg2v566j67g02"; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "nix-build-uncached"; 5 + version = "1.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "Mic92"; 9 repo = "nix-build-uncached"; 10 rev = "v${version}"; 11 + sha256 = "0hjx2gdwzg02fzxhsf7akp03vqj2s7wmcv9xfqn765zbqnljz14v"; 12 }; 13 14 vendorSha256 = null;
+2 -2
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 7 stdenv.mkDerivation rec { 8 9 pname = "omnisharp-roslyn"; 10 - version = "1.37.1"; 11 12 src = fetchurl { 13 url = "https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v${version}/omnisharp-mono.tar.gz"; 14 - sha256 = "04pyychzwhhcv0js0qyramz6nd0wz03qqqgvz1j9m9wxyiz0dv3c"; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
··· 7 stdenv.mkDerivation rec { 8 9 pname = "omnisharp-roslyn"; 10 + version = "1.37.3"; 11 12 src = fetchurl { 13 url = "https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v${version}/omnisharp-mono.tar.gz"; 14 + sha256 = "09h4yxswrpxw9w4wscarbv2gypk9bwwsmpqyjfp6b5bh1frx2i67"; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/tools/operator-sdk/default.nix
··· 2 3 buildGoModule rec { 4 pname = "operator-sdk"; 5 - version = "1.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "operator-framework"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "1p2ra7mqn7crip6sjgq2j49782ncvs4qahjwg6jk5rdvvi4hbyc7"; 12 }; 13 14 - vendorSha256 = "0zy540cbfm1kfc5sp802a9a5l2gkpgqprn8mlh9zg4d4shni61wa"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "operator-sdk"; 5 + version = "1.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "operator-framework"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "11xlay3sk5nr9pfbqifcrfi5h81qnhs3hg5b75zgqysgr4d2m987"; 12 }; 13 14 + vendorSha256 = "1bbj23rwghqfw9vsgj9i9zrxvl480adsmjg1zb06cdhh5j1hl0vy"; 15 16 doCheck = false; 17
+2 -2
pkgs/development/tools/parsing/byacc/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "byacc"; 5 - version = "20200330"; 6 7 src = fetchurl { 8 urls = [ 9 "ftp://ftp.invisible-island.net/byacc/${pname}-${version}.tgz" 10 "https://invisible-mirror.net/archives/byacc/${pname}-${version}.tgz" 11 ]; 12 - sha256 = "1c0zyn6v286i09jlc8gx6jyaa5438qyy985rqsd76kb8ibfy56g0"; 13 }; 14 15 configureFlags = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "byacc"; 5 + version = "20200910"; 6 7 src = fetchurl { 8 urls = [ 9 "ftp://ftp.invisible-island.net/byacc/${pname}-${version}.tgz" 10 "https://invisible-mirror.net/archives/byacc/${pname}-${version}.tgz" 11 ]; 12 + sha256 = "0c6gbvlgzi6yflri22w7fa2w3k5m3jk0xb5a43f3vwpa783hcn8a"; 13 }; 14 15 configureFlags = [
+1 -1
pkgs/development/tools/sourcetrail/default.nix
··· 40 src = fetchFromGitHub { 41 owner = "CoatiSoftware"; 42 repo = "Sourcetrail"; 43 - rev = "${version}"; 44 sha256 = "0jp9y86xzkcxikc1cn4f6gqgg6zdssck08677ldagw25p1zadvzw"; 45 }; 46
··· 40 src = fetchFromGitHub { 41 owner = "CoatiSoftware"; 42 repo = "Sourcetrail"; 43 + rev = version; 44 sha256 = "0jp9y86xzkcxikc1cn4f6gqgg6zdssck08677ldagw25p1zadvzw"; 45 }; 46
+1 -1
pkgs/development/tools/swiftformat/default.nix
··· 12 src = fetchFromGitHub { 13 owner = "nicklockwood"; 14 repo = "SwiftFormat"; 15 - rev = "${version}"; 16 sha256 = "0zajvbaf3r02k53lv5zdxf13apc6chnjmj69zkyac48lpnpbcxq6"; 17 }; 18
··· 12 src = fetchFromGitHub { 13 owner = "nicklockwood"; 14 repo = "SwiftFormat"; 15 + rev = version; 16 sha256 = "0zajvbaf3r02k53lv5zdxf13apc6chnjmj69zkyac48lpnpbcxq6"; 17 }; 18
+1 -1
pkgs/games/cockatrice/default.nix
··· 9 src = fetchFromGitHub { 10 owner = "Cockatrice"; 11 repo = "Cockatrice"; 12 - rev = "${version}"; 13 sha256 = "1yaxm7q0ja3rgx197hh8ynjc6ncc4hm0qdn9v7f0l4fbv0bdpv34"; 14 }; 15
··· 9 src = fetchFromGitHub { 10 owner = "Cockatrice"; 11 repo = "Cockatrice"; 12 + rev = version; 13 sha256 = "1yaxm7q0ja3rgx197hh8ynjc6ncc4hm0qdn9v7f0l4fbv0bdpv34"; 14 }; 15
+1 -1
pkgs/games/eidolon/default.nix
··· 6 7 src = fetchgit { 8 url = "https://git.sr.ht/~nicohman/eidolon"; 9 - rev = "${version}"; 10 sha256 = "1yn3k569pxzw43mmsk97088xpkdc714rks3ncchbb6ccx25kgxrr"; 11 }; 12 cargoPatches = [ ./cargo-lock.patch ];
··· 6 7 src = fetchgit { 8 url = "https://git.sr.ht/~nicohman/eidolon"; 9 + rev = version; 10 sha256 = "1yn3k569pxzw43mmsk97088xpkdc714rks3ncchbb6ccx25kgxrr"; 11 }; 12 cargoPatches = [ ./cargo-lock.patch ];
+27
pkgs/games/iortcw/default.nix
···
··· 1 + { buildEnv, callPackage, makeWrapper }: 2 + 3 + let 4 + sp = callPackage ./sp.nix {}; 5 + mp = sp.overrideAttrs (oldAttrs: rec { 6 + sourceRoot = "source/MP"; 7 + }); 8 + in buildEnv { 9 + name = "iortcw"; 10 + 11 + paths = [ sp mp ]; 12 + 13 + pathsToLink = [ "/opt" ]; 14 + 15 + buildInputs = [ makeWrapper ]; 16 + 17 + # so we can launch sp from mp game and vice versa 18 + postBuild = '' 19 + for i in `find -L $out/opt/iortcw -maxdepth 1 -type f -executable`; do 20 + makeWrapper $i $out/bin/`basename $i` --run "cd $out/opt/iortcw" 21 + done 22 + ''; 23 + 24 + meta = sp.meta // { 25 + description = "Game engine for Return to Castle Wolfenstein"; 26 + }; 27 + }
+52
pkgs/games/iortcw/sp.nix
···
··· 1 + { stdenv, fetchFromGitHub, opusfile, libogg, SDL2, openal, freetype 2 + , libjpeg, curl, makeWrapper }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "iortcw-sp"; 6 + version = "1.51c"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "iortcw"; 10 + repo = "iortcw"; 11 + rev = version; 12 + sha256 = "0g5wgqb1gm34pd05dj2i8nj3qhsz0831p3m7bsgxpjcg9c00jpyw"; 13 + }; 14 + 15 + enableParallelBuilding = true; 16 + 17 + sourceRoot = "source/SP"; 18 + 19 + makeFlags = [ 20 + "USE_INTERNAL_LIBS=0" 21 + "COPYDIR=${placeholder "out"}/opt/iortcw" 22 + "USE_OPENAL_DLOPEN=0" 23 + "USE_CURL_DLOPEN=0" 24 + ]; 25 + 26 + installTargets = [ "copyfiles" ]; 27 + 28 + buildInputs = [ 29 + opusfile libogg SDL2 freetype libjpeg openal curl 30 + ]; 31 + nativeBuildInputs = [ makeWrapper ]; 32 + 33 + NIX_CFLAGS_COMPILE = [ 34 + "-I${SDL2.dev}/include/SDL2" 35 + "-I${opusfile}/include/opus" 36 + ]; 37 + NIX_CFLAGS_LINK = [ "-lSDL2" ]; 38 + 39 + postInstall = '' 40 + for i in `find $out/opt/iortcw -maxdepth 1 -type f -executable`; do 41 + makeWrapper $i $out/bin/`basename $i` --run "cd $out/opt/iortcw" 42 + done 43 + ''; 44 + 45 + meta = with stdenv.lib; { 46 + description = "Single player version of game engine for Return to Castle Wolfenstein"; 47 + homepage = src.meta.homepage; 48 + license = licenses.gpl3; 49 + platforms = platforms.linux; 50 + maintainers = with maintainers; [ gnidorah ]; 51 + }; 52 + }
+3 -4
pkgs/games/liquidwar/5.nix
··· 1 { stdenv, fetchurl, allegro }: 2 stdenv.mkDerivation rec { 3 - version = "5.6.4"; 4 pname = "liquidwar5"; 5 src = fetchurl { 6 - url = "https://download.savannah.gnu.org/releases/liquidwar/liquidwar-${version}.tar.gz"; 7 - sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j"; 8 }; 9 10 buildInputs = [ allegro ]; ··· 20 maintainers = [ maintainers.raskin ]; 21 license = licenses.gpl2Plus; 22 platforms = platforms.linux; 23 - broken = true; 24 }; 25 }
··· 1 { stdenv, fetchurl, allegro }: 2 stdenv.mkDerivation rec { 3 + version = "5.6.5"; 4 pname = "liquidwar5"; 5 src = fetchurl { 6 + url = "http://www.ufoot.org/download/liquidwar/v5/${version}/liquidwar-${version}.tar.gz"; 7 + sha256 = "2tCqhN1BbK0FVCHtm0DfOe+ueNPfdZwFg8ZMVPfy/18="; 8 }; 9 10 buildInputs = [ allegro ]; ··· 20 maintainers = [ maintainers.raskin ]; 21 license = licenses.gpl2Plus; 22 platforms = platforms.linux; 23 }; 24 }
+1 -1
pkgs/games/mari0/default.nix
··· 21 src = fetchFromGitHub { 22 owner = "Stabyourself"; 23 repo = pname; 24 - rev = "${version}"; 25 sha256 = "1zqaq4w599scsjvy1rsb21fd2r8j3srx9vym4ir9bh666dp36gxa"; 26 }; 27
··· 21 src = fetchFromGitHub { 22 owner = "Stabyourself"; 23 repo = pname; 24 + rev = version; 25 sha256 = "1zqaq4w599scsjvy1rsb21fd2r8j3srx9vym4ir9bh666dp36gxa"; 26 }; 27
+3 -12
pkgs/games/quakespasm/vulkan.nix
··· 1 - { stdenv, fetchpatch, fetchFromGitHub, makeWrapper, SDL2, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader }: 2 3 stdenv.mkDerivation rec { 4 pname = "vkquake"; 5 - version = "1.04.1"; 6 7 src = fetchFromGitHub { 8 owner = "Novum"; 9 repo = "vkQuake"; 10 rev = version; 11 - sha256 = "1ry861pk3z02hy7i0yi3xwmd1zma802qzcnlm09w6pslayd9rwbf"; 12 }; 13 - 14 - # patches and patchFlags can be deleted with the next release 15 - patches = [ 16 - (fetchpatch { 17 - url = "https://github.com/Novum/vkQuake/commit/a869a22d9b51c68e57646fa20e4c40fc6db36760.patch"; 18 - sha256 = "sha256-ea5lcXTTlJZnuOdF1W+GCYvVgj/gW10tDNyTgfl3Kfs="; 19 - }) 20 - ]; 21 - patchFlags = "-p2"; 22 23 sourceRoot = "source/Quake"; 24
··· 1 + { stdenv, fetchFromGitHub, makeWrapper, SDL2, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader }: 2 3 stdenv.mkDerivation rec { 4 pname = "vkquake"; 5 + version = "1.05.0"; 6 7 src = fetchFromGitHub { 8 owner = "Novum"; 9 repo = "vkQuake"; 10 rev = version; 11 + sha256 = "16ryjfkmnhlxv7b6yvyk3247q7ih4g90a7c4z501xiyp7h0wlsw8"; 12 }; 13 14 sourceRoot = "source/Quake"; 15
+4 -3
pkgs/games/the-butterfly-effect/default.nix
··· 1 - { stdenv, mkDerivation, fetchgit, qt5, box2d, which, cmake, gettext }: 2 3 mkDerivation rec { 4 pname = "tbe"; 5 version = "0.9.3.1"; 6 7 - src = fetchgit { 8 - url = "https://github.com/kaa-ching/tbe"; 9 rev = "refs/tags/v${version}"; 10 sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj"; 11 };
··· 1 + { stdenv, mkDerivation, fetchFromGitHub, qt5, box2d, which, cmake, gettext }: 2 3 mkDerivation rec { 4 pname = "tbe"; 5 version = "0.9.3.1"; 6 7 + src = fetchFromGitHub { 8 + owner = "kaa-ching"; 9 + repo = pname; 10 rev = "refs/tags/v${version}"; 11 sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj"; 12 };
+1 -1
pkgs/games/wyvern/default.nix
··· 16 17 src = fetchgit { 18 url = "https://git.sr.ht/~nicohman/wyvern"; 19 - rev = "${version}"; 20 sha256 = "1sl3yhash1527amc8rs4374fd7jbgnkyy7qpw94ms2gs80sdv3s5"; 21 }; 22 cargoPatches = [ ./cargo-lock.patch ];
··· 16 17 src = fetchgit { 18 url = "https://git.sr.ht/~nicohman/wyvern"; 19 + rev = version; 20 sha256 = "1sl3yhash1527amc8rs4374fd7jbgnkyy7qpw94ms2gs80sdv3s5"; 21 }; 22 cargoPatches = [ ./cargo-lock.patch ];
+2 -2
pkgs/misc/emulators/mame/default.nix
··· 7 8 let 9 majorVersion = "0"; 10 - minorVersion = "225"; 11 12 desktopItem = makeDesktopItem { 13 name = "MAME"; ··· 26 owner = "mamedev"; 27 repo = "mame"; 28 rev = "mame${majorVersion}${minorVersion}"; 29 - sha256 = "0ln5z8xp81j2af2s94dixnk9n68qpi6b3plynp3pharg6dd55yac"; 30 }; 31 32 hardeningDisable = [ "fortify" ];
··· 7 8 let 9 majorVersion = "0"; 10 + minorVersion = "226"; 11 12 desktopItem = makeDesktopItem { 13 name = "MAME"; ··· 26 owner = "mamedev"; 27 repo = "mame"; 28 rev = "mame${majorVersion}${minorVersion}"; 29 + sha256 = "0pnsvz4vkjkqb1ac5wzwz31vx0iknyg5ffly90nhl13kcr656jrj"; 30 }; 31 32 hardeningDisable = [ "fortify" ];
+1 -1
pkgs/misc/emulators/mednaffe/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "AmatCoder"; 12 repo = "mednaffe"; 13 - rev = "${version}"; 14 sha256 = "15qk3a3l1phr8bap2ayh3c0vyvw2jwhny1iz1ajq2adyjpm9fhr7"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "AmatCoder"; 12 repo = "mednaffe"; 13 + rev = version; 14 sha256 = "15qk3a3l1phr8bap2ayh3c0vyvw2jwhny1iz1ajq2adyjpm9fhr7"; 15 }; 16
+50 -6
pkgs/misc/tmux-plugins/default.nix
··· 66 67 continuum = mkDerivation { 68 pluginName = "continuum"; 69 - version = "unstable-2018-02-23"; 70 src = fetchFromGitHub { 71 owner = "tmux-plugins"; 72 repo = "tmux-continuum"; 73 - rev = "1531b3770a7cf7373d15fedd239c5331b99342d1"; 74 - sha256 = "1w3f7gzvv1k25yfr6d1snr2z88p8f87cahrbaslmyphdxpy0fa4m"; 75 }; 76 dependencies = [ resurrect ]; 77 }; 78 79 copycat = mkDerivation { ··· 266 267 resurrect = mkDerivation { 268 pluginName = "resurrect"; 269 - version = "unstable-2020-03-21"; 270 src = fetchFromGitHub { 271 owner = "tmux-plugins"; 272 repo = "tmux-resurrect"; 273 - rev = "327c0481ad20c429b4e692e092659f8b3346b08f"; 274 - sha256 = "0nxfqazww36wwv49dzd39kq4jfls20834hf1458sf5pvmv5cmbyw"; 275 }; 276 }; 277
··· 66 67 continuum = mkDerivation { 68 pluginName = "continuum"; 69 + version = "unstable-2020-10-16"; 70 src = fetchFromGitHub { 71 owner = "tmux-plugins"; 72 repo = "tmux-continuum"; 73 + rev = "26eb5ffce0b559d682b9f98c8d4b6c370ecb639b"; 74 + sha256 = "1glwa89bv2r92qz579a49prk3jf612cpd5hw46j4wfb35xhnj3ab"; 75 }; 76 dependencies = [ resurrect ]; 77 + meta = { 78 + homepage = "https://github.com/tmux-plugins/tmux-continuum"; 79 + description = "continous saving of tmux environment"; 80 + longDescription = 81 + '' 82 + Features: 83 + * continuous saving of tmux environment 84 + * automatic tmux start when computer/server is turned on 85 + * automatic restore when tmux is started 86 + 87 + Together, these features enable uninterrupted tmux usage. No matter the 88 + computer or server restarts, if the machine is on, tmux will be there how 89 + you left it off the last time it was used. 90 + ''; 91 + license = stdenv.lib.licenses.mit; 92 + platforms = stdenv.lib.platforms.unix; 93 + maintainers = with stdenv.lib.maintainers; [ ronanmacf ]; 94 + }; 95 }; 96 97 copycat = mkDerivation { ··· 284 285 resurrect = mkDerivation { 286 pluginName = "resurrect"; 287 + version = "unstable-2020-09-18"; 288 src = fetchFromGitHub { 289 owner = "tmux-plugins"; 290 repo = "tmux-resurrect"; 291 + rev = "e4825055c92e54b0c6ec572afc9b6c4723aba6c8"; 292 + sha256 = "0a96drkx1kpadkbxabcnvb542p75xdh2dbizvlq2lac5ldpb4hmx"; 293 + }; 294 + meta = { 295 + homepage = "https://github.com/tmux-plugins/tmux-resurrect"; 296 + description = "Restore tmux environment after system restart"; 297 + longDescription = 298 + '' 299 + This plugin goes to great lengths to save and restore all the details 300 + from your tmux environment. Here's what's been taken care of: 301 + 302 + * all sessions, windows, panes and their order 303 + * current working directory for each pane 304 + * exact pane layouts within windows (even when zoomed) 305 + * active and alternative session 306 + * active and alternative window for each session 307 + * windows with focus 308 + * active pane for each window 309 + * "grouped sessions" (useful feature when using tmux with multiple monitors) 310 + * programs running within a pane! More details in the restoring programs doc. 311 + 312 + Optional: 313 + * restoring vim and neovim sessions 314 + * restoring pane contents 315 + ''; 316 + license = stdenv.lib.licenses.mit; 317 + platforms = stdenv.lib.platforms.unix; 318 + maintainers = with stdenv.lib.maintainers; [ ronanmacf ]; 319 }; 320 }; 321
+39 -27
pkgs/misc/vim-plugins/generated.nix
··· 389 390 coc-explorer = buildVimPluginFrom2Nix { 391 pname = "coc-explorer"; 392 - version = "2020-10-30"; 393 src = fetchFromGitHub { 394 owner = "weirongxu"; 395 repo = "coc-explorer"; 396 - rev = "a8a3cf41638e5b7b128086888e2dead665407beb"; 397 - sha256 = "19a3blvfzqjzd5y3l4g03h3c8yxfl9fsdvc6mir0n76krpnk647l"; 398 }; 399 meta.homepage = "https://github.com/weirongxu/coc-explorer/"; 400 }; ··· 461 462 coc-nvim = buildVimPluginFrom2Nix { 463 pname = "coc-nvim"; 464 - version = "2020-10-28"; 465 src = fetchFromGitHub { 466 owner = "neoclide"; 467 repo = "coc.nvim"; 468 - rev = "ad1793dce0a59afcf8b324b45a1168c032deb162"; 469 - sha256 = "1khmmvba6cg0pff37nkbm7zmp3mnvpc889pql6dm6xjqrhpqsda7"; 470 }; 471 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 472 }; ··· 570 571 conjure = buildVimPluginFrom2Nix { 572 pname = "conjure"; 573 - version = "2020-10-17"; 574 src = fetchFromGitHub { 575 owner = "Olical"; 576 repo = "conjure"; 577 - rev = "0e63269e176232cdd9f1c20d94dfd3b8ad5702a1"; 578 - sha256 = "0ixryjfszx09g27awdaqf5xrc7yjb5mlpc57ph3w61hdv65yps7b"; 579 }; 580 meta.homepage = "https://github.com/Olical/conjure/"; 581 }; ··· 1836 1837 lean-vim = buildVimPluginFrom2Nix { 1838 pname = "lean-vim"; 1839 - version = "2020-10-10"; 1840 src = fetchFromGitHub { 1841 owner = "leanprover"; 1842 repo = "lean.vim"; 1843 - rev = "c3a99f34a92af8a86e162134276222309e01e896"; 1844 - sha256 = "09kz4iy0flwdawhd0phy6jl6zkxp3qdyhl8snl0n12sbskzq7i1b"; 1845 }; 1846 meta.homepage = "https://github.com/leanprover/lean.vim/"; 1847 }; ··· 2580 2581 nvim-treesitter = buildVimPluginFrom2Nix { 2582 pname = "nvim-treesitter"; 2583 - version = "2020-10-30"; 2584 src = fetchFromGitHub { 2585 owner = "nvim-treesitter"; 2586 repo = "nvim-treesitter"; 2587 - rev = "dd7900fc44b9cc6773bd4f8b5c0175887991520c"; 2588 - sha256 = "0nfdvmlzqfga596n5awdhz9mc6gwnys73ixxkqi49f2g9x215ksd"; 2589 }; 2590 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 2591 }; ··· 3385 3386 telescope-nvim = buildVimPluginFrom2Nix { 3387 pname = "telescope-nvim"; 3388 - version = "2020-10-30"; 3389 src = fetchFromGitHub { 3390 owner = "nvim-lua"; 3391 repo = "telescope.nvim"; 3392 - rev = "37c4f1b355d843e95ba41f2a73d83de58fb74dae"; 3393 - sha256 = "0ly9vcnmf1b881fh1r5v4231h5n8kld2k9q1bxzvy87p2wsfb5sn"; 3394 }; 3395 meta.homepage = "https://github.com/nvim-lua/telescope.nvim/"; 3396 }; ··· 4814 4815 vim-go = buildVimPluginFrom2Nix { 4816 pname = "vim-go"; 4817 - version = "2020-10-19"; 4818 src = fetchFromGitHub { 4819 owner = "fatih"; 4820 repo = "vim-go"; 4821 - rev = "a5e2535d31aa1d7c0fa8a4e77ee96b92ad185be5"; 4822 - sha256 = "0ixpy4vvvh7kgwq4wvyiw8cm3aj89mql2phf49rmi60d9kli3kn9"; 4823 }; 4824 meta.homepage = "https://github.com/fatih/vim-go/"; 4825 }; ··· 5281 meta.homepage = "https://github.com/knubie/vim-kitty-navigator/"; 5282 }; 5283 5284 vim-lastplace = buildVimPluginFrom2Nix { 5285 pname = "vim-lastplace"; 5286 version = "2020-01-20"; ··· 6015 6016 vim-prosession = buildVimPluginFrom2Nix { 6017 pname = "vim-prosession"; 6018 - version = "2020-10-12"; 6019 src = fetchFromGitHub { 6020 owner = "dhruvasagar"; 6021 repo = "vim-prosession"; 6022 - rev = "e735468710a5cd6037b6d4c0e4c8c2bc1353cf4b"; 6023 - sha256 = "0ava297hpm1cf8j18ypfrziwavqcv982hisvh1d8yjxal521pam1"; 6024 }; 6025 meta.homepage = "https://github.com/dhruvasagar/vim-prosession/"; 6026 }; ··· 7385 7386 yats-vim = buildVimPluginFrom2Nix { 7387 pname = "yats-vim"; 7388 - version = "2020-10-30"; 7389 src = fetchFromGitHub { 7390 owner = "HerringtonDarkholme"; 7391 repo = "yats.vim"; 7392 - rev = "2c1dce274988814102aafc57c4e0675c2d130e6c"; 7393 - sha256 = "10kzqzm587nz1qgscgwrvjs77vk6grck28g5z1lhrxhpn1jng943"; 7394 fetchSubmodules = true; 7395 }; 7396 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/";
··· 389 390 coc-explorer = buildVimPluginFrom2Nix { 391 pname = "coc-explorer"; 392 + version = "2020-11-01"; 393 src = fetchFromGitHub { 394 owner = "weirongxu"; 395 repo = "coc-explorer"; 396 + rev = "eb10e21721ee527d86cbc4422d4cdc5d53ea65fd"; 397 + sha256 = "10qgca7hncxmlmbcd0d9rmkdjd22qp88llz0dlsgm6ckng46nbpn"; 398 }; 399 meta.homepage = "https://github.com/weirongxu/coc-explorer/"; 400 }; ··· 461 462 coc-nvim = buildVimPluginFrom2Nix { 463 pname = "coc-nvim"; 464 + version = "2020-11-01"; 465 src = fetchFromGitHub { 466 owner = "neoclide"; 467 repo = "coc.nvim"; 468 + rev = "2adc879786ca65c3fdc3dd94743acbbed3f54465"; 469 + sha256 = "1j4kjxflm0ldaa0pgjm081x95hqxhhanv45mwwnmcg2lkpd6lnq5"; 470 }; 471 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 472 }; ··· 570 571 conjure = buildVimPluginFrom2Nix { 572 pname = "conjure"; 573 + version = "2020-11-01"; 574 src = fetchFromGitHub { 575 owner = "Olical"; 576 repo = "conjure"; 577 + rev = "a4c31e1c0136e943fa7dd48ecc11849158d3554e"; 578 + sha256 = "0xvz1s3lx75k9fgn319b0q6d8vj7cpw6mj2xkh73qmaqvvx3bni1"; 579 }; 580 meta.homepage = "https://github.com/Olical/conjure/"; 581 }; ··· 1836 1837 lean-vim = buildVimPluginFrom2Nix { 1838 pname = "lean-vim"; 1839 + version = "2020-11-01"; 1840 src = fetchFromGitHub { 1841 owner = "leanprover"; 1842 repo = "lean.vim"; 1843 + rev = "d1b3037680be79f114a87620844117e20ca7efcf"; 1844 + sha256 = "0x3cz4is30jsrp7dym4rz4xngv9mimybl4kqnry9x0nkqzn55910"; 1845 }; 1846 meta.homepage = "https://github.com/leanprover/lean.vim/"; 1847 }; ··· 2580 2581 nvim-treesitter = buildVimPluginFrom2Nix { 2582 pname = "nvim-treesitter"; 2583 + version = "2020-10-31"; 2584 src = fetchFromGitHub { 2585 owner = "nvim-treesitter"; 2586 repo = "nvim-treesitter"; 2587 + rev = "9327b113c2360d503ab183718c57e3e1b0819887"; 2588 + sha256 = "1xgw0464563rc6wnjhf9m2f25wii80d78laa8ifjbjivrv4b0y1k"; 2589 }; 2590 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 2591 }; ··· 3385 3386 telescope-nvim = buildVimPluginFrom2Nix { 3387 pname = "telescope-nvim"; 3388 + version = "2020-11-01"; 3389 src = fetchFromGitHub { 3390 owner = "nvim-lua"; 3391 repo = "telescope.nvim"; 3392 + rev = "54ef9d90d5a032906bfb007113930dac0f665f72"; 3393 + sha256 = "0zh6dpxfibm0clafs2zsnb4ffmh3438qiccc60md2s7hwhzynvyq"; 3394 }; 3395 meta.homepage = "https://github.com/nvim-lua/telescope.nvim/"; 3396 }; ··· 4814 4815 vim-go = buildVimPluginFrom2Nix { 4816 pname = "vim-go"; 4817 + version = "2020-11-01"; 4818 src = fetchFromGitHub { 4819 owner = "fatih"; 4820 repo = "vim-go"; 4821 + rev = "35ea9acf5fc409d1eed341333789f18c2d135c66"; 4822 + sha256 = "0n6yj1ql2c2kq9y407zr9d6pkpwp7jjzssbd0fyl68cb9rxzg3j8"; 4823 }; 4824 meta.homepage = "https://github.com/fatih/vim-go/"; 4825 }; ··· 5281 meta.homepage = "https://github.com/knubie/vim-kitty-navigator/"; 5282 }; 5283 5284 + vim-LanguageTool = buildVimPluginFrom2Nix { 5285 + pname = "vim-LanguageTool"; 5286 + version = "2020-10-29"; 5287 + src = fetchFromGitHub { 5288 + owner = "dpelle"; 5289 + repo = "vim-LanguageTool"; 5290 + rev = "d1f94ef917dddfd8c82589957b7aa6a55f382964"; 5291 + sha256 = "1y2y3rkhnj6xhzkm0snfkb08h6jmyjiicmk4j8lw2vhszsfgz6ns"; 5292 + }; 5293 + meta.homepage = "https://github.com/dpelle/vim-LanguageTool/"; 5294 + }; 5295 + 5296 vim-lastplace = buildVimPluginFrom2Nix { 5297 pname = "vim-lastplace"; 5298 version = "2020-01-20"; ··· 6027 6028 vim-prosession = buildVimPluginFrom2Nix { 6029 pname = "vim-prosession"; 6030 + version = "2020-11-01"; 6031 src = fetchFromGitHub { 6032 owner = "dhruvasagar"; 6033 repo = "vim-prosession"; 6034 + rev = "1be0c069a2b362369913ffaeed5293ffe1932ef6"; 6035 + sha256 = "0hqfwlkz64kkh8w6w5k7gw2i0x7spddbgixjcrp1lr6n6bslkj2d"; 6036 }; 6037 meta.homepage = "https://github.com/dhruvasagar/vim-prosession/"; 6038 }; ··· 7397 7398 yats-vim = buildVimPluginFrom2Nix { 7399 pname = "yats-vim"; 7400 + version = "2020-11-01"; 7401 src = fetchFromGitHub { 7402 owner = "HerringtonDarkholme"; 7403 repo = "yats.vim"; 7404 + rev = "fc97ad973a2bbf932dffb74c5560e97f60d21ce7"; 7405 + sha256 = "07gx88vapcb579nvmkbmps16spvd1y8kvmi28955lw31rxi1n7b3"; 7406 fetchSubmodules = true; 7407 }; 7408 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/";
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 83 direnv/direnv.vim 84 dleonard0/pony-vim-syntax 85 dmix/elvish.vim 86 dracula/vim as dracula-vim 87 drewtempelmeyer/palenight.vim 88 drmingdrmer/xptemplate
··· 83 direnv/direnv.vim 84 dleonard0/pony-vim-syntax 85 dmix/elvish.vim 86 + dpelle/vim-LanguageTool 87 dracula/vim as dracula-vim 88 drewtempelmeyer/palenight.vim 89 drmingdrmer/xptemplate
+1
pkgs/os-specific/darwin/discrete-scroll/default.nix
··· 31 homepage = "https://github.com/emreyolcu/discrete-scroll"; 32 platforms = platforms.darwin; 33 license = licenses.mit; 34 }; 35 }
··· 31 homepage = "https://github.com/emreyolcu/discrete-scroll"; 32 platforms = platforms.darwin; 33 license = licenses.mit; 34 + maintainers = with lib.maintainers; [ bb2020 ]; 35 }; 36 }
+1 -1
pkgs/os-specific/linux/anbox/kmod.nix
··· 36 homepage = "https://github.com/anbox/anbox-modules"; 37 license = licenses.gpl2; 38 platforms = platforms.linux; 39 - broken = (versionOlder kernel.version "4.4") || (kernel.features.grsecurity); 40 maintainers = with maintainers; [ edwtjo ]; 41 }; 42
··· 36 homepage = "https://github.com/anbox/anbox-modules"; 37 license = licenses.gpl2; 38 platforms = platforms.linux; 39 + broken = (versionOlder kernel.version "4.4") || (kernel.features.grsecurity or false); 40 maintainers = with maintainers; [ edwtjo ]; 41 }; 42
+2 -2
pkgs/os-specific/linux/fnotifystat/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fnotifystat"; 5 - version = "0.02.06"; 6 src = fetchurl { 7 url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz"; 8 - sha256 = "1mr2qzh8r8qq7haz4qgci2k5lcrcy493fm0m3ri40a81vaajfniy"; 9 }; 10 installFlags = [ "DESTDIR=$(out)" ]; 11 postInstall = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fnotifystat"; 5 + version = "0.02.07"; 6 src = fetchurl { 7 url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz"; 8 + sha256 = "0ipfg2gymbgx7bqlx1sq5p2y89k5j18iqnb0wa27n5s3kh9sh8w0"; 9 }; 10 installFlags = [ "DESTDIR=$(out)" ]; 11 postInstall = ''
+2 -2
pkgs/os-specific/linux/fwts/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "fwts"; 6 - version = "20.08.00"; 7 8 src = fetchzip { 9 url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz"; 10 - sha256 = "098vxj5sd2nm88jmj6cxzcvid8w81m8fxdz881iki0pi7ysixa5q"; 11 stripRoot = false; 12 }; 13
··· 3 4 stdenv.mkDerivation rec { 5 pname = "fwts"; 6 + version = "20.09.00"; 7 8 src = fetchzip { 9 url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz"; 10 + sha256 = "1vzzlb7xdrk8rhi27jdw9baskild4dmk7g5d0hhfh6z3fx4lfhgk"; 11 stripRoot = false; 12 }; 13
+10
pkgs/os-specific/linux/kernel/manual-config.nix
··· 34 randstructSeed ? "", 35 # Use defaultMeta // extraMeta 36 extraMeta ? {}, 37 # Whether to utilize the controversial import-from-derivation feature to parse the config 38 allowImportFromDerivation ? false, 39 # ignored ··· 86 passthru = { 87 inherit version modDirVersion config kernelPatches configfile 88 moduleBuildDependencies stdenv; 89 }; 90 91 inherit src;
··· 34 randstructSeed ? "", 35 # Use defaultMeta // extraMeta 36 extraMeta ? {}, 37 + 38 + # for module compatibility 39 + isXen ? features.xen_dom0 or false, 40 + isZen ? false, 41 + isLibre ? false, 42 + isHardened ? false, 43 + 44 # Whether to utilize the controversial import-from-derivation feature to parse the config 45 allowImportFromDerivation ? false, 46 # ignored ··· 93 passthru = { 94 inherit version modDirVersion config kernelPatches configfile 95 moduleBuildDependencies stdenv; 96 + inherit isXen isZen isHardened isLibre; 97 + kernelOlder = stdenv.lib.versionOlder version; 98 + kernelAtLeast = stdenv.lib.versionAtLeast version; 99 }; 100 101 inherit src;
+2 -2
pkgs/os-specific/linux/libfabric/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libfabric"; 5 - version = "1.11.0"; 6 7 enableParallelBuilding = true; 8 ··· 10 owner = "ofiwg"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "1wgn6gsiy64rb76i46dsqlvp687lwqzxwg5lgj1y5y7lyqbq96wp"; 14 }; 15 16 nativeBuildInputs = [ pkgconfig autoreconfHook ] ;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libfabric"; 5 + version = "1.11.1"; 6 7 enableParallelBuilding = true; 8 ··· 10 owner = "ofiwg"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "17qq96mlfhbkbmsvbazhxzkjnh6x37xlh3r0ngp0rfqbl05z2pcr"; 14 }; 15 16 nativeBuildInputs = [ pkgconfig autoreconfHook ] ;
+2 -2
pkgs/os-specific/linux/libratbag/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "libratbag"; 7 - version = "0.14"; 8 9 src = fetchFromGitHub { 10 owner = "libratbag"; 11 repo = "libratbag"; 12 rev = "v${version}"; 13 - sha256 = "1fpwp2sj8mf98bqasq2h8qwgprxi7k3iw33gcfid3d1lbyiacw0x"; 14 }; 15 16 nativeBuildInputs = [
··· 4 5 stdenv.mkDerivation rec { 6 pname = "libratbag"; 7 + version = "0.15"; 8 9 src = fetchFromGitHub { 10 owner = "libratbag"; 11 repo = "libratbag"; 12 rev = "v${version}"; 13 + sha256 = "0z6ps5aqwjmbdvahs80fh9cdgcvp4q4w3kfycmzv4kzgzihjki7b"; 14 }; 15 16 nativeBuildInputs = [
+2 -2
pkgs/os-specific/linux/lxc/default.nix
··· 9 with stdenv.lib; 10 stdenv.mkDerivation rec { 11 pname = "lxc"; 12 - version = "4.0.4"; 13 14 src = fetchurl { 15 url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; 16 - sha256 = "15frszz5am9bnr8vh1zpg89x0xigcfm19jax0z16cazd42xahr9w"; 17 }; 18 19 nativeBuildInputs = [
··· 9 with stdenv.lib; 10 stdenv.mkDerivation rec { 11 pname = "lxc"; 12 + version = "4.0.5"; 13 14 src = fetchurl { 15 url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; 16 + sha256 = "1976l9308rx1ria1gazasypk5rmmf5jiqdh54dfrws5bslbdcb5g"; 17 }; 18 19 nativeBuildInputs = [
+3 -3
pkgs/servers/dgraph/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dgraph"; 5 - version = "20.07.1"; 6 7 src = fetchFromGitHub { 8 owner = "dgraph-io"; 9 repo = "dgraph"; 10 rev = "v${version}"; 11 - sha256 = "0vkkzckk6095vkyl5yqhxqbjmvw7jzars8ymgv2zi55n26qzzvf0"; 12 }; 13 14 - vendorSha256 = "17bfavirx0lpy6ca86y2gm6kf8m388xbpda65dd2w71csbzbc2mi"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "dgraph"; 5 + version = "20.07.2"; 6 7 src = fetchFromGitHub { 8 owner = "dgraph-io"; 9 repo = "dgraph"; 10 rev = "v${version}"; 11 + sha256 = "0cx2qqn8b7v0qvhrwzjqghymm8r2a0v86pyfgqxmmyfghjhykax4"; 12 }; 13 14 + vendorSha256 = "111lixpqp8p2q4kg9342220i00dcp2lwp2j3hasdvwdrrf0971by"; 15 16 doCheck = false; 17
+3 -3
pkgs/servers/dns/coredns/default.nix
··· 2 3 buildGoModule rec { 4 pname = "coredns"; 5 - version = "1.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "coredns"; 9 repo = "coredns"; 10 rev = "v${version}"; 11 - sha256 = "0ggkpdlwrmyaicn61qyx4m5svmw7px0gfwl8mhhif8dfmjznfkir"; 12 }; 13 14 - vendorSha256 = "0fzgqgfmyqfyap0j81ihag0319cq34k3y0a9rxkg9cg23hn1d5gf"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "coredns"; 5 + version = "1.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "coredns"; 9 repo = "coredns"; 10 rev = "v${version}"; 11 + sha256 = "04hkz70s5i7ndwyg39za3k83amvmi90rkjm8qp3w3a8fbmq4q4y6"; 12 }; 13 14 + vendorSha256 = "1zwrf2pshb9r3yvp7mqali47163nqhvs9ghflczfpigqswd1m0p0"; 15 16 doCheck = false; 17
+1 -1
pkgs/servers/dns/dnsdist/default.nix
··· 36 description = "DNS Loadbalancer"; 37 homepage = "https://dnsdist.org"; 38 license = licenses.gpl2; 39 - maintainers = with maintainers; [ das_j ]; 40 }; 41 }
··· 36 description = "DNS Loadbalancer"; 37 homepage = "https://dnsdist.org"; 38 license = licenses.gpl2; 39 + maintainers = with maintainers; [ SuperSandro2000 ]; 40 }; 41 }
+2 -2
pkgs/servers/hitch/default.nix
··· 1 { stdenv, fetchurl, docutils, libev, openssl, pkgconfig, nixosTests }: 2 stdenv.mkDerivation rec { 3 - version = "1.6.0"; 4 pname = "hitch"; 5 6 src = fetchurl { 7 url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz"; 8 - sha256 = "01n70yf8hx42jb801jv5q1xhrpqxyjnqhd98hjf81lvxpd5fnisf"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ];
··· 1 { stdenv, fetchurl, docutils, libev, openssl, pkgconfig, nixosTests }: 2 stdenv.mkDerivation rec { 3 + version = "1.7.0"; 4 pname = "hitch"; 5 6 src = fetchurl { 7 url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz"; 8 + sha256 = "1i75giwyr66ip8xsvk3gg5xdbxnmcabgxz8dqi06c58mw7qzhzn9"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ];
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "0.117.0"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
··· 2 # Do not edit! 3 4 { 5 + version = "0.117.2"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 67 extraBuildInputs = extraPackages py.pkgs; 68 69 # Don't forget to run parse-requirements.py after updating 70 - hassVersion = "0.117.0"; 71 72 in with py.pkgs; buildPythonApplication rec { 73 pname = "homeassistant"; ··· 83 owner = "home-assistant"; 84 repo = "core"; 85 rev = version; 86 - sha256 = "1f5axspj5hffmaqhpmrrflyd0c62lww36yvd2wr999yix7jhsfnc"; 87 }; 88 89 postPatch = ''
··· 67 extraBuildInputs = extraPackages py.pkgs; 68 69 # Don't forget to run parse-requirements.py after updating 70 + hassVersion = "0.117.2"; 71 72 in with py.pkgs; buildPythonApplication rec { 73 pname = "homeassistant"; ··· 83 owner = "home-assistant"; 84 repo = "core"; 85 rev = version; 86 + sha256 = "1mpvskr0zjvl065ldw05kc0x5yvibwfm2nmv478wznw3vwmbqrzn"; 87 }; 88 89 postPatch = ''
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 pname = "home-assistant-frontend"; 7 - version = "20201021.3"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "04z8rvmnpmy7xx90pvqcr58hsxjsc10mrrjcx7ppspglb91b9cpb"; 12 }; 13 14 # no Python tests implemented
··· 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 pname = "home-assistant-frontend"; 7 + version = "20201021.4"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "138h4cgvkn26xlr53ziz6d0zc00zw4wk40cpi4c4nia1lv6cqkxd"; 12 }; 13 14 # no Python tests implemented
+3 -3
pkgs/servers/http/gitlab-pages/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gitlab-pages"; 5 - version = "1.21.0"; 6 7 src = fetchFromGitLab { 8 owner = "gitlab-org"; 9 repo = "gitlab-pages"; 10 rev = "v${version}"; 11 - sha256 = "0f317lx4iarlsbnq2ipcm4lpx66xzl8wfilj8xajq1csz19ws24z"; 12 }; 13 14 - vendorSha256 = "186rxvl523n1d87jz4zzbj83ikzw9d0c1wrj78xs4iqzm8z3snh0"; 15 subPackages = [ "." ]; 16 doCheck = false; # Broken 17
··· 2 3 buildGoModule rec { 4 pname = "gitlab-pages"; 5 + version = "1.28.0"; 6 7 src = fetchFromGitLab { 8 owner = "gitlab-org"; 9 repo = "gitlab-pages"; 10 rev = "v${version}"; 11 + sha256 = "15q32blkhmc5w1b2xh45y7cag8f6bw9bgiwin5ykrzj5d305wd16"; 12 }; 13 14 + vendorSha256 = "1gzkb2j2hl6ln8i5wjk2n9g8agpdzy1pzghb4sy1r8pdfp0i28r3"; 15 subPackages = [ "." ]; 16 doCheck = false; # Broken 17
+2 -2
pkgs/servers/http/unit/default.nix
··· 30 php74-unit = php74.override phpConfig; 31 32 in stdenv.mkDerivation rec { 33 - version = "1.19.0"; 34 pname = "unit"; 35 36 src = fetchFromGitHub { 37 owner = "nginx"; 38 repo = "unit"; 39 rev = version; 40 - sha256 = "0k3q42q198sb0w6hyyymw92dbhz67axn6w6vnzr0d883xw3sva7k"; 41 }; 42 43 nativeBuildInputs = [ which ];
··· 30 php74-unit = php74.override phpConfig; 31 32 in stdenv.mkDerivation rec { 33 + version = "1.20.0"; 34 pname = "unit"; 35 36 src = fetchFromGitHub { 37 owner = "nginx"; 38 repo = "unit"; 39 rev = version; 40 + sha256 = "1qmcz01ifmd80qgpvf1y8nhad6yk56772xdhqvwfxn3mdjfqvcs8"; 41 }; 42 43 nativeBuildInputs = [ which ];
+2 -2
pkgs/servers/jackett/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "jackett"; 5 - version = "0.16.1883"; 6 7 src = fetchurl { 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 - sha256 = "1l16zzjyvwq6rd4q6dg4m0a81fiw50c7naksa43g3yhv7wg7wfll"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "jackett"; 5 + version = "0.16.1964"; 6 7 src = fetchurl { 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 + sha256 = "06mj9pahziwm77nqjiqcbg3zfxkjy7sp15h84iqcxp0lpz0w2z55"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+1
pkgs/servers/mail/exim/default.nix
··· 48 s:^# \(RM_COMMAND\)=.*:\1=${coreutils}/bin/rm: 49 s:^# \(TOUCH_COMMAND\)=.*:\1=${coreutils}/bin/touch: 50 s:^# \(PERL_COMMAND\)=.*:\1=${perl}/bin/perl: 51 ${stdenv.lib.optionalString enableLDAP '' 52 s:^# \(LDAP_LIB_TYPE=OPENLDAP2\)$:\1: 53 s:^# \(LOOKUP_LDAP=yes\)$:\1:
··· 48 s:^# \(RM_COMMAND\)=.*:\1=${coreutils}/bin/rm: 49 s:^# \(TOUCH_COMMAND\)=.*:\1=${coreutils}/bin/touch: 50 s:^# \(PERL_COMMAND\)=.*:\1=${perl}/bin/perl: 51 + s:^# \(LOOKUP_DSEARCH=yes\)$:\1: 52 ${stdenv.lib.optionalString enableLDAP '' 53 s:^# \(LDAP_LIB_TYPE=OPENLDAP2\)$:\1: 54 s:^# \(LOOKUP_LDAP=yes\)$:\1:
+2 -2
pkgs/servers/memcached/default.nix
··· 1 {stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.6.6"; 5 pname = "memcached"; 6 7 src = fetchurl { 8 url = "https://memcached.org/files/${pname}-${version}.tar.gz"; 9 - sha256 = "1xrj7vy05nc6bky4wnrmrbxfibvk5vq4dp2fwk4jk4amzbn0x3wh"; 10 }; 11 12 configureFlags = [
··· 1 {stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.6.8"; 5 pname = "memcached"; 6 7 src = fetchurl { 8 url = "https://memcached.org/files/${pname}-${version}.tar.gz"; 9 + sha256 = "0fbrrn7mkhv5xci4cffxxb8qzr9c0n3y58jymq2aqlpzyq8klfz2"; 10 }; 11 12 configureFlags = [
+1 -1
pkgs/servers/monitoring/do-agent/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "digitalocean"; 9 repo = "do-agent"; 10 - rev = "${version}"; 11 sha256 = "16mmh1kz6zbncfisd9qnb3ssgpkcb4hb7700jlzbdjqxyjmy0qsf"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "digitalocean"; 9 repo = "do-agent"; 10 + rev = version; 11 sha256 = "16mmh1kz6zbncfisd9qnb3ssgpkcb4hb7700jlzbdjqxyjmy0qsf"; 12 }; 13
+1 -1
pkgs/servers/monitoring/prometheus/promscale.nix
··· 10 src = fetchFromGitHub { 11 owner = "timescale"; 12 repo = pname; 13 - rev = "${version}"; 14 sha256 = "sha256:00mhkp3nf6h2zsvmmwyza1lahvmm05isfi7rqkx24c0dmkmif3x9"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "timescale"; 12 repo = pname; 13 + rev = version; 14 sha256 = "sha256:00mhkp3nf6h2zsvmmwyza1lahvmm05isfi7rqkx24c0dmkmif3x9"; 15 }; 16
+2 -2
pkgs/servers/mpd/default.nix
··· 115 116 in stdenv.mkDerivation rec { 117 pname = "mpd"; 118 - version = "0.22.1"; 119 120 src = fetchFromGitHub { 121 owner = "MusicPlayerDaemon"; 122 repo = "MPD"; 123 rev = "v${version}"; 124 - sha256 = "16cdmr5w1ikz4ih1nwxnynfdf8qiz4k8bak1sazkkhyavzl3jrl4"; 125 }; 126 127 buildInputs = [
··· 115 116 in stdenv.mkDerivation rec { 117 pname = "mpd"; 118 + version = "0.22.2"; 119 120 src = fetchFromGitHub { 121 owner = "MusicPlayerDaemon"; 122 repo = "MPD"; 123 rev = "v${version}"; 124 + sha256 = "1pg3h3bvrsp24pv53yvwl5kr4m2csaxffdbrj5rm3b7w6pbqpfix"; 125 }; 126 127 buildInputs = [
+2 -2
pkgs/servers/nextcloud/default.nix
··· 51 }; 52 53 nextcloud20 = generic { 54 - version = "20.0.0"; 55 - sha256 = "1n2cv1i56g6qpzkbl5xaf420zzr4y7isg0lskmr7ymk83way0wx2"; 56 }; 57 }
··· 51 }; 52 53 nextcloud20 = generic { 54 + version = "20.0.1"; 55 + sha256 = "1z1fzz1i41k4dhdhi005l3gzkvnmmgqqz3rdr374cvk73q7bbiln"; 56 }; 57 }
+2 -2
pkgs/servers/search/groonga/default.nix
··· 7 stdenv.mkDerivation rec { 8 9 pname = "groonga"; 10 - version = "10.0.6"; 11 12 src = fetchurl { 13 url = "https://packages.groonga.org/source/groonga/${pname}-${version}.tar.gz"; 14 - sha256 = "1q3xx6jc967nj7h8gvnrqxn8657dn3qy9j802rjzcg6iwlpjack9"; 15 }; 16 17 buildInputs = with stdenv.lib;
··· 7 stdenv.mkDerivation rec { 8 9 pname = "groonga"; 10 + version = "10.0.8"; 11 12 src = fetchurl { 13 url = "https://packages.groonga.org/source/groonga/${pname}-${version}.tar.gz"; 14 + sha256 = "0ppjxgq7bwhzzlrl2jn7ybc132c8rg95yhwshxqgccbhbs8s6c29"; 15 }; 16 17 buildInputs = with stdenv.lib;
+1 -1
pkgs/servers/ser2net/default.nix
··· 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 - repo = "${pname}"; 10 rev = "v${version}"; 11 sha256 = "01w82nrgffsfz2c80p4cyppg3bz56d90jm6i6356j0nva3784haw"; 12 };
··· 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 + repo = pname; 10 rev = "v${version}"; 11 sha256 = "01w82nrgffsfz2c80p4cyppg3bz56d90jm6i6356j0nva3784haw"; 12 };
+20 -16
pkgs/servers/sozu/default.nix
··· 1 - { stdenv, rustPlatform, fetchFromGitHub }: 2 3 rustPlatform.buildRustPackage rec { 4 - pname = "sozu"; 5 - version = "0.11.46"; 6 7 - src = fetchFromGitHub { 8 - owner = "sozu-proxy"; 9 - repo = pname; 10 - rev = version; 11 - sha256 = "0anng5qvdx9plxs9qqr5wmjjz0gx5113jq28xwbxaaklvd4ni7cm"; 12 - }; 13 14 - cargoSha256 = "19c2s9h4jk9pff72wdqw384mvrf40d8x4sx7qysnpb4hayq2ijh3"; 15 16 - meta = with stdenv.lib; { 17 - description = "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures"; 18 - homepage = "https://sozu.io"; 19 - license = licenses.agpl3; 20 - maintainers = with maintainers; [ filalex77 ]; 21 - }; 22 }
··· 1 + { stdenv, rustPlatform, fetchFromGitHub, darwin }: 2 3 rustPlatform.buildRustPackage rec { 4 + pname = "sozu"; 5 + version = "0.11.50"; 6 7 + src = fetchFromGitHub { 8 + owner = "sozu-proxy"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "1srg2b8vwc4vp07kg4fizqj1rbm9hvf6hj1mjdh6yvb9cpbw3jz7"; 12 + }; 13 14 + cargoSha256 = "5WOigCiQZQ5DaTd15vV8pUh8Xl3UIe9yLG1ptUtY+iA="; 15 16 + buildInputs = 17 + stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; 18 + 19 + meta = with stdenv.lib; { 20 + description = 21 + "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures"; 22 + homepage = "https://www.sozu.io"; 23 + license = licenses.agpl3; 24 + maintainers = with maintainers; [ filalex77 ]; 25 + }; 26 }
+2 -2
pkgs/servers/sql/cockroachdb/default.nix
··· 14 in 15 buildGoPackage rec { 16 pname = "cockroach"; 17 - version = "20.1.4"; 18 19 goPackagePath = "github.com/cockroachdb/cockroach"; 20 21 src = fetchurl { 22 url = "https://binaries.cockroachdb.com/cockroach-v${version}.src.tgz"; 23 - sha256 = "1m82m776axyf7b5f1lzlv5y7zslyhikfxjgagqy7ci5zwn8j4i0n"; 24 }; 25 26 NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.cc.isGNU [ "-Wno-error=deprecated-copy" "-Wno-error=redundant-move" "-Wno-error=pessimizing-move" ];
··· 14 in 15 buildGoPackage rec { 16 pname = "cockroach"; 17 + version = "20.1.7"; 18 19 goPackagePath = "github.com/cockroachdb/cockroach"; 20 21 src = fetchurl { 22 url = "https://binaries.cockroachdb.com/cockroach-v${version}.src.tgz"; 23 + sha256 = "1m1jziby0mzfbpwsak1marh1k9sx8vhc17ix6lgikxip4dpf52qg"; 24 }; 25 26 NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.cc.isGNU [ "-Wno-error=deprecated-copy" "-Wno-error=redundant-move" "-Wno-error=pessimizing-move" ];
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 - version = "0.21.0"; 6 7 src = fetchFromGitHub { 8 owner = "liquidata-inc"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 - sha256 = "0w9k48jxklhaql8qbbm9ay0md5nia6x3wr0zz3w44pw3gl5kvxyw"; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; 16 - vendorSha256 = "16xh4s7zmar0r3kwps5bbl168imyx252lvz9s3snvxzz5kd8wlnm"; 17 18 doCheck = false; 19
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 + version = "0.21.1"; 6 7 src = fetchFromGitHub { 8 owner = "liquidata-inc"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 + sha256 = "03fg91r6lxfq58c5843vysaw8hbagiq4r2qxc4nh9w1b3mc71h7v"; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; 16 + vendorSha256 = "19755xbjxxva574mj0sc7kqqmr4k22bbvf4aj3d0hhcfjpyhn434"; 17 18 doCheck = false; 19
+1 -1
pkgs/servers/web-apps/dokuwiki/default.nix
··· 6 7 src = fetchFromGitHub { 8 owner = "splitbrain"; 9 - repo = "${pname}"; 10 rev = "release_stable_${version}"; 11 sha256 = "09swcqyd06l3481k190gmlr3b33dlv1lw1kk9nyh5b4sa5p3k7kk"; 12 };
··· 6 7 src = fetchFromGitHub { 8 owner = "splitbrain"; 9 + repo = pname; 10 rev = "release_stable_${version}"; 11 sha256 = "09swcqyd06l3481k190gmlr3b33dlv1lw1kk9nyh5b4sa5p3k7kk"; 12 };
+1 -1
pkgs/servers/web-apps/jirafeau/default.nix
··· 14 src = fetchFromGitLab { 15 owner = "mojo42"; 16 repo = "Jirafeau"; 17 - rev = "${version}"; 18 sha256 = "09gq5zhynygpqj0skq7ifnn9yjjg7qnc6kjvaas7f53av2707z4c"; 19 }; 20
··· 14 src = fetchFromGitLab { 15 owner = "mojo42"; 16 repo = "Jirafeau"; 17 + rev = version; 18 sha256 = "09gq5zhynygpqj0skq7ifnn9yjjg7qnc6kjvaas7f53av2707z4c"; 19 }; 20
+1 -1
pkgs/servers/web-apps/rss-bridge/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "RSS-Bridge"; 9 repo = "rss-bridge"; 10 - rev = "${version}"; 11 sha256 = "075k4bylx9308d083ry5a9q4629ccnrnndqqdqp1g42rzlqrw79q"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "RSS-Bridge"; 9 repo = "rss-bridge"; 10 + rev = version; 11 sha256 = "075k4bylx9308d083ry5a9q4629ccnrnndqqdqp1g42rzlqrw79q"; 12 }; 13
+9
pkgs/servers/xmpp/prosody/default.nix
··· 59 "--with-lua=${lua5}" 60 ]; 61 62 postInstall = '' 63 ${concatMapStringsSep "\n" (module: '' 64 cp -r $communityModules/mod_${module} $out/lib/prosody/modules/ ··· 68 --prefix LUA_CPATH ';' "$LUA_CPATH" 69 wrapProgram $out/bin/prosodyctl \ 70 --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \ 71 --prefix LUA_PATH ';' "$LUA_PATH" \ 72 --prefix LUA_CPATH ';' "$LUA_CPATH" 73 '';
··· 59 "--with-lua=${lua5}" 60 ]; 61 62 + postBuild = '' 63 + make -C tools/migration 64 + ''; 65 + 66 postInstall = '' 67 ${concatMapStringsSep "\n" (module: '' 68 cp -r $communityModules/mod_${module} $out/lib/prosody/modules/ ··· 72 --prefix LUA_CPATH ';' "$LUA_CPATH" 73 wrapProgram $out/bin/prosodyctl \ 74 --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \ 75 + --prefix LUA_PATH ';' "$LUA_PATH" \ 76 + --prefix LUA_CPATH ';' "$LUA_CPATH" 77 + 78 + make -C tools/migration install 79 + wrapProgram $out/bin/prosody-migrator \ 80 --prefix LUA_PATH ';' "$LUA_PATH" \ 81 --prefix LUA_CPATH ';' "$LUA_CPATH" 82 '';
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 in 5 package.override rec { 6 - version = "1.15.0"; 7 reconstructLock = true; 8 9 postInstall = '' ··· 20 owner = "Koenkk"; 21 repo = "zigbee2mqtt"; 22 rev = version; 23 - sha256 = "1kbrkmam0x2mhqps58xwagp8y3q6zyz0qlx57ys2z2wcs12lpw4r"; 24 }; 25 26 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
··· 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 in 5 package.override rec { 6 + version = "1.16.0"; 7 reconstructLock = true; 8 9 postInstall = '' ··· 20 owner = "Koenkk"; 21 repo = "zigbee2mqtt"; 22 rev = version; 23 + sha256 = "0hahzvp3099g0i4jqbkcq6vndpjigx7b6mg1vjcs5v0wyllxdlwp"; 24 }; 25 26 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+1225 -1575
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 4 5 let 6 sources = { 7 - "@babel/cli-7.11.6" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 - version = "7.11.6"; 11 src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.11.6.tgz"; 13 - sha512 = "+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg=="; 14 }; 15 }; 16 "@babel/code-frame-7.10.4" = { ··· 22 sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="; 23 }; 24 }; 25 - "@babel/compat-data-7.11.0" = { 26 name = "_at_babel_slash_compat-data"; 27 packageName = "@babel/compat-data"; 28 - version = "7.11.0"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.11.0.tgz"; 31 - sha512 = "TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ=="; 32 }; 33 }; 34 - "@babel/core-7.11.6" = { 35 name = "_at_babel_slash_core"; 36 packageName = "@babel/core"; 37 - version = "7.11.6"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz"; 40 - sha512 = "Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg=="; 41 }; 42 }; 43 - "@babel/generator-7.11.6" = { 44 name = "_at_babel_slash_generator"; 45 packageName = "@babel/generator"; 46 - version = "7.11.6"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.11.6.tgz"; 49 - sha512 = "DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA=="; 50 }; 51 }; 52 "@babel/helper-annotate-as-pure-7.10.4" = { ··· 67 sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg=="; 68 }; 69 }; 70 - "@babel/helper-compilation-targets-7.10.4" = { 71 name = "_at_babel_slash_helper-compilation-targets"; 72 packageName = "@babel/helper-compilation-targets"; 73 - version = "7.10.4"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz"; 76 - sha512 = "a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ=="; 77 }; 78 }; 79 - "@babel/helper-create-class-features-plugin-7.10.5" = { 80 name = "_at_babel_slash_helper-create-class-features-plugin"; 81 packageName = "@babel/helper-create-class-features-plugin"; 82 - version = "7.10.5"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz"; 85 - sha512 = "0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A=="; 86 }; 87 }; 88 - "@babel/helper-create-regexp-features-plugin-7.10.4" = { 89 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 90 packageName = "@babel/helper-create-regexp-features-plugin"; 91 - version = "7.10.4"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz"; 94 - sha512 = "2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g=="; 95 }; 96 }; 97 "@babel/helper-define-map-7.10.5" = { ··· 103 sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ=="; 104 }; 105 }; 106 - "@babel/helper-explode-assignable-expression-7.11.4" = { 107 name = "_at_babel_slash_helper-explode-assignable-expression"; 108 packageName = "@babel/helper-explode-assignable-expression"; 109 - version = "7.11.4"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz"; 112 - sha512 = "ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ=="; 113 }; 114 }; 115 "@babel/helper-function-name-7.10.4" = { ··· 139 sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA=="; 140 }; 141 }; 142 - "@babel/helper-member-expression-to-functions-7.11.0" = { 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 144 packageName = "@babel/helper-member-expression-to-functions"; 145 - version = "7.11.0"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz"; 148 - sha512 = "JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q=="; 149 }; 150 }; 151 - "@babel/helper-module-imports-7.10.4" = { 152 name = "_at_babel_slash_helper-module-imports"; 153 packageName = "@babel/helper-module-imports"; 154 - version = "7.10.4"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz"; 157 - sha512 = "nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw=="; 158 }; 159 }; 160 - "@babel/helper-module-transforms-7.11.0" = { 161 name = "_at_babel_slash_helper-module-transforms"; 162 packageName = "@babel/helper-module-transforms"; 163 - version = "7.11.0"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz"; 166 - sha512 = "02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg=="; 167 }; 168 }; 169 "@babel/helper-optimise-call-expression-7.10.4" = { ··· 193 sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg=="; 194 }; 195 }; 196 - "@babel/helper-remap-async-to-generator-7.11.4" = { 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 198 packageName = "@babel/helper-remap-async-to-generator"; 199 - version = "7.11.4"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz"; 202 - sha512 = "tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA=="; 203 }; 204 }; 205 - "@babel/helper-replace-supers-7.10.4" = { 206 name = "_at_babel_slash_helper-replace-supers"; 207 packageName = "@babel/helper-replace-supers"; 208 - version = "7.10.4"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz"; 211 - sha512 = "sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A=="; 212 }; 213 }; 214 - "@babel/helper-simple-access-7.10.4" = { 215 name = "_at_babel_slash_helper-simple-access"; 216 packageName = "@babel/helper-simple-access"; 217 - version = "7.10.4"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz"; 220 - sha512 = "0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw=="; 221 }; 222 }; 223 - "@babel/helper-skip-transparent-expression-wrappers-7.11.0" = { 224 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 225 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 226 - version = "7.11.0"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz"; 229 - sha512 = "0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q=="; 230 }; 231 }; 232 "@babel/helper-split-export-declaration-7.11.0" = { ··· 247 sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="; 248 }; 249 }; 250 - "@babel/helper-wrap-function-7.10.4" = { 251 name = "_at_babel_slash_helper-wrap-function"; 252 packageName = "@babel/helper-wrap-function"; 253 - version = "7.10.4"; 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz"; 256 - sha512 = "6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug=="; 257 }; 258 }; 259 - "@babel/helpers-7.10.4" = { 260 name = "_at_babel_slash_helpers"; 261 packageName = "@babel/helpers"; 262 - version = "7.10.4"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz"; 265 - sha512 = "L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA=="; 266 }; 267 }; 268 "@babel/highlight-7.10.4" = { ··· 274 sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 275 }; 276 }; 277 - "@babel/parser-7.11.5" = { 278 name = "_at_babel_slash_parser"; 279 packageName = "@babel/parser"; 280 - version = "7.11.5"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz"; 283 - sha512 = "X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q=="; 284 }; 285 }; 286 - "@babel/plugin-proposal-async-generator-functions-7.10.5" = { 287 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 288 packageName = "@babel/plugin-proposal-async-generator-functions"; 289 - version = "7.10.5"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz"; 292 - sha512 = "cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg=="; 293 }; 294 }; 295 - "@babel/plugin-proposal-class-properties-7.10.4" = { 296 name = "_at_babel_slash_plugin-proposal-class-properties"; 297 packageName = "@babel/plugin-proposal-class-properties"; 298 - version = "7.10.4"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz"; 301 - sha512 = "vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg=="; 302 }; 303 }; 304 - "@babel/plugin-proposal-dynamic-import-7.10.4" = { 305 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 306 packageName = "@babel/plugin-proposal-dynamic-import"; 307 - version = "7.10.4"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz"; 310 - sha512 = "up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ=="; 311 }; 312 }; 313 - "@babel/plugin-proposal-export-namespace-from-7.10.4" = { 314 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 315 packageName = "@babel/plugin-proposal-export-namespace-from"; 316 - version = "7.10.4"; 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz"; 319 - sha512 = "aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg=="; 320 }; 321 }; 322 - "@babel/plugin-proposal-json-strings-7.10.4" = { 323 name = "_at_babel_slash_plugin-proposal-json-strings"; 324 packageName = "@babel/plugin-proposal-json-strings"; 325 - version = "7.10.4"; 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz"; 328 - sha512 = "fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw=="; 329 }; 330 }; 331 - "@babel/plugin-proposal-logical-assignment-operators-7.11.0" = { 332 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 333 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 334 - version = "7.11.0"; 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz"; 337 - sha512 = "/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q=="; 338 }; 339 }; 340 - "@babel/plugin-proposal-nullish-coalescing-operator-7.10.4" = { 341 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 342 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 343 - version = "7.10.4"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz"; 346 - sha512 = "wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw=="; 347 }; 348 }; 349 - "@babel/plugin-proposal-numeric-separator-7.10.4" = { 350 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 351 packageName = "@babel/plugin-proposal-numeric-separator"; 352 - version = "7.10.4"; 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz"; 355 - sha512 = "73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA=="; 356 }; 357 }; 358 - "@babel/plugin-proposal-object-rest-spread-7.11.0" = { 359 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 360 packageName = "@babel/plugin-proposal-object-rest-spread"; 361 - version = "7.11.0"; 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz"; 364 - sha512 = "wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA=="; 365 }; 366 }; 367 - "@babel/plugin-proposal-optional-catch-binding-7.10.4" = { 368 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 369 packageName = "@babel/plugin-proposal-optional-catch-binding"; 370 - version = "7.10.4"; 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz"; 373 - sha512 = "LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g=="; 374 }; 375 }; 376 - "@babel/plugin-proposal-optional-chaining-7.11.0" = { 377 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 378 packageName = "@babel/plugin-proposal-optional-chaining"; 379 - version = "7.11.0"; 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz"; 382 - sha512 = "v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA=="; 383 }; 384 }; 385 - "@babel/plugin-proposal-private-methods-7.10.4" = { 386 name = "_at_babel_slash_plugin-proposal-private-methods"; 387 packageName = "@babel/plugin-proposal-private-methods"; 388 - version = "7.10.4"; 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz"; 391 - sha512 = "wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw=="; 392 }; 393 }; 394 - "@babel/plugin-proposal-unicode-property-regex-7.10.4" = { 395 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 396 packageName = "@babel/plugin-proposal-unicode-property-regex"; 397 - version = "7.10.4"; 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz"; 400 - sha512 = "H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA=="; 401 }; 402 }; 403 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 418 sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; 419 }; 420 }; 421 - "@babel/plugin-syntax-class-properties-7.10.4" = { 422 name = "_at_babel_slash_plugin-syntax-class-properties"; 423 packageName = "@babel/plugin-syntax-class-properties"; 424 - version = "7.10.4"; 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz"; 427 - sha512 = "GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA=="; 428 }; 429 }; 430 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 517 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 518 }; 519 }; 520 - "@babel/plugin-syntax-top-level-await-7.10.4" = { 521 name = "_at_babel_slash_plugin-syntax-top-level-await"; 522 packageName = "@babel/plugin-syntax-top-level-await"; 523 - version = "7.10.4"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz"; 526 - sha512 = "ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ=="; 527 }; 528 }; 529 - "@babel/plugin-syntax-typescript-7.10.4" = { 530 name = "_at_babel_slash_plugin-syntax-typescript"; 531 packageName = "@babel/plugin-syntax-typescript"; 532 - version = "7.10.4"; 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz"; 535 - sha512 = "oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ=="; 536 }; 537 }; 538 - "@babel/plugin-transform-arrow-functions-7.10.4" = { 539 name = "_at_babel_slash_plugin-transform-arrow-functions"; 540 packageName = "@babel/plugin-transform-arrow-functions"; 541 - version = "7.10.4"; 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz"; 544 - sha512 = "9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA=="; 545 }; 546 }; 547 - "@babel/plugin-transform-async-to-generator-7.10.4" = { 548 name = "_at_babel_slash_plugin-transform-async-to-generator"; 549 packageName = "@babel/plugin-transform-async-to-generator"; 550 - version = "7.10.4"; 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz"; 553 - sha512 = "F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ=="; 554 }; 555 }; 556 - "@babel/plugin-transform-block-scoped-functions-7.10.4" = { 557 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 558 packageName = "@babel/plugin-transform-block-scoped-functions"; 559 - version = "7.10.4"; 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz"; 562 - sha512 = "WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA=="; 563 }; 564 }; 565 - "@babel/plugin-transform-block-scoping-7.11.1" = { 566 name = "_at_babel_slash_plugin-transform-block-scoping"; 567 packageName = "@babel/plugin-transform-block-scoping"; 568 - version = "7.11.1"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz"; 571 - sha512 = "00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew=="; 572 }; 573 }; 574 - "@babel/plugin-transform-classes-7.10.4" = { 575 name = "_at_babel_slash_plugin-transform-classes"; 576 packageName = "@babel/plugin-transform-classes"; 577 - version = "7.10.4"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz"; 580 - sha512 = "2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA=="; 581 }; 582 }; 583 - "@babel/plugin-transform-computed-properties-7.10.4" = { 584 name = "_at_babel_slash_plugin-transform-computed-properties"; 585 packageName = "@babel/plugin-transform-computed-properties"; 586 - version = "7.10.4"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz"; 589 - sha512 = "JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw=="; 590 }; 591 }; 592 - "@babel/plugin-transform-destructuring-7.10.4" = { 593 name = "_at_babel_slash_plugin-transform-destructuring"; 594 packageName = "@babel/plugin-transform-destructuring"; 595 - version = "7.10.4"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz"; 598 - sha512 = "+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA=="; 599 }; 600 }; 601 - "@babel/plugin-transform-dotall-regex-7.10.4" = { 602 name = "_at_babel_slash_plugin-transform-dotall-regex"; 603 packageName = "@babel/plugin-transform-dotall-regex"; 604 - version = "7.10.4"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz"; 607 - sha512 = "ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA=="; 608 }; 609 }; 610 - "@babel/plugin-transform-duplicate-keys-7.10.4" = { 611 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 612 packageName = "@babel/plugin-transform-duplicate-keys"; 613 - version = "7.10.4"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz"; 616 - sha512 = "GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA=="; 617 }; 618 }; 619 - "@babel/plugin-transform-exponentiation-operator-7.10.4" = { 620 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 621 packageName = "@babel/plugin-transform-exponentiation-operator"; 622 - version = "7.10.4"; 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz"; 625 - sha512 = "S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw=="; 626 }; 627 }; 628 - "@babel/plugin-transform-for-of-7.10.4" = { 629 name = "_at_babel_slash_plugin-transform-for-of"; 630 packageName = "@babel/plugin-transform-for-of"; 631 - version = "7.10.4"; 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz"; 634 - sha512 = "ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ=="; 635 }; 636 }; 637 - "@babel/plugin-transform-function-name-7.10.4" = { 638 name = "_at_babel_slash_plugin-transform-function-name"; 639 packageName = "@babel/plugin-transform-function-name"; 640 - version = "7.10.4"; 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz"; 643 - sha512 = "OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg=="; 644 }; 645 }; 646 - "@babel/plugin-transform-literals-7.10.4" = { 647 name = "_at_babel_slash_plugin-transform-literals"; 648 packageName = "@babel/plugin-transform-literals"; 649 - version = "7.10.4"; 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz"; 652 - sha512 = "Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ=="; 653 }; 654 }; 655 - "@babel/plugin-transform-member-expression-literals-7.10.4" = { 656 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 657 packageName = "@babel/plugin-transform-member-expression-literals"; 658 - version = "7.10.4"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz"; 661 - sha512 = "0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw=="; 662 }; 663 }; 664 - "@babel/plugin-transform-modules-amd-7.10.5" = { 665 name = "_at_babel_slash_plugin-transform-modules-amd"; 666 packageName = "@babel/plugin-transform-modules-amd"; 667 - version = "7.10.5"; 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz"; 670 - sha512 = "elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw=="; 671 }; 672 }; 673 - "@babel/plugin-transform-modules-commonjs-7.10.4" = { 674 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 675 packageName = "@babel/plugin-transform-modules-commonjs"; 676 - version = "7.10.4"; 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz"; 679 - sha512 = "Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w=="; 680 }; 681 }; 682 - "@babel/plugin-transform-modules-systemjs-7.10.5" = { 683 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 684 packageName = "@babel/plugin-transform-modules-systemjs"; 685 - version = "7.10.5"; 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz"; 688 - sha512 = "f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw=="; 689 }; 690 }; 691 - "@babel/plugin-transform-modules-umd-7.10.4" = { 692 name = "_at_babel_slash_plugin-transform-modules-umd"; 693 packageName = "@babel/plugin-transform-modules-umd"; 694 - version = "7.10.4"; 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz"; 697 - sha512 = "mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA=="; 698 }; 699 }; 700 - "@babel/plugin-transform-named-capturing-groups-regex-7.10.4" = { 701 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 702 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 703 - version = "7.10.4"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz"; 706 - sha512 = "V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA=="; 707 }; 708 }; 709 - "@babel/plugin-transform-new-target-7.10.4" = { 710 name = "_at_babel_slash_plugin-transform-new-target"; 711 packageName = "@babel/plugin-transform-new-target"; 712 - version = "7.10.4"; 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz"; 715 - sha512 = "YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw=="; 716 }; 717 }; 718 - "@babel/plugin-transform-object-super-7.10.4" = { 719 name = "_at_babel_slash_plugin-transform-object-super"; 720 packageName = "@babel/plugin-transform-object-super"; 721 - version = "7.10.4"; 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz"; 724 - sha512 = "5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ=="; 725 }; 726 }; 727 - "@babel/plugin-transform-parameters-7.10.5" = { 728 name = "_at_babel_slash_plugin-transform-parameters"; 729 packageName = "@babel/plugin-transform-parameters"; 730 - version = "7.10.5"; 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz"; 733 - sha512 = "xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw=="; 734 }; 735 }; 736 - "@babel/plugin-transform-property-literals-7.10.4" = { 737 name = "_at_babel_slash_plugin-transform-property-literals"; 738 packageName = "@babel/plugin-transform-property-literals"; 739 - version = "7.10.4"; 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz"; 742 - sha512 = "ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g=="; 743 }; 744 }; 745 - "@babel/plugin-transform-regenerator-7.10.4" = { 746 name = "_at_babel_slash_plugin-transform-regenerator"; 747 packageName = "@babel/plugin-transform-regenerator"; 748 - version = "7.10.4"; 749 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz"; 751 - sha512 = "3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw=="; 752 }; 753 }; 754 - "@babel/plugin-transform-reserved-words-7.10.4" = { 755 name = "_at_babel_slash_plugin-transform-reserved-words"; 756 packageName = "@babel/plugin-transform-reserved-words"; 757 - version = "7.10.4"; 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz"; 760 - sha512 = "hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ=="; 761 }; 762 }; 763 - "@babel/plugin-transform-shorthand-properties-7.10.4" = { 764 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 765 packageName = "@babel/plugin-transform-shorthand-properties"; 766 - version = "7.10.4"; 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz"; 769 - sha512 = "AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q=="; 770 }; 771 }; 772 - "@babel/plugin-transform-spread-7.11.0" = { 773 name = "_at_babel_slash_plugin-transform-spread"; 774 packageName = "@babel/plugin-transform-spread"; 775 - version = "7.11.0"; 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz"; 778 - sha512 = "UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw=="; 779 }; 780 }; 781 - "@babel/plugin-transform-sticky-regex-7.10.4" = { 782 name = "_at_babel_slash_plugin-transform-sticky-regex"; 783 packageName = "@babel/plugin-transform-sticky-regex"; 784 - version = "7.10.4"; 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz"; 787 - sha512 = "Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ=="; 788 }; 789 }; 790 - "@babel/plugin-transform-template-literals-7.10.5" = { 791 name = "_at_babel_slash_plugin-transform-template-literals"; 792 packageName = "@babel/plugin-transform-template-literals"; 793 - version = "7.10.5"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz"; 796 - sha512 = "V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw=="; 797 }; 798 }; 799 - "@babel/plugin-transform-typeof-symbol-7.10.4" = { 800 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 801 packageName = "@babel/plugin-transform-typeof-symbol"; 802 - version = "7.10.4"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz"; 805 - sha512 = "QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA=="; 806 }; 807 }; 808 - "@babel/plugin-transform-typescript-7.11.0" = { 809 name = "_at_babel_slash_plugin-transform-typescript"; 810 packageName = "@babel/plugin-transform-typescript"; 811 - version = "7.11.0"; 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz"; 814 - sha512 = "edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w=="; 815 }; 816 }; 817 - "@babel/plugin-transform-unicode-escapes-7.10.4" = { 818 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 819 packageName = "@babel/plugin-transform-unicode-escapes"; 820 - version = "7.10.4"; 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz"; 823 - sha512 = "y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg=="; 824 }; 825 }; 826 - "@babel/plugin-transform-unicode-regex-7.10.4" = { 827 name = "_at_babel_slash_plugin-transform-unicode-regex"; 828 packageName = "@babel/plugin-transform-unicode-regex"; 829 - version = "7.10.4"; 830 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz"; 832 - sha512 = "wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A=="; 833 }; 834 }; 835 - "@babel/preset-env-7.11.5" = { 836 name = "_at_babel_slash_preset-env"; 837 packageName = "@babel/preset-env"; 838 - version = "7.11.5"; 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.11.5.tgz"; 841 - sha512 = "kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA=="; 842 }; 843 }; 844 "@babel/preset-modules-0.1.4" = { ··· 850 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 851 }; 852 }; 853 - "@babel/preset-typescript-7.10.4" = { 854 name = "_at_babel_slash_preset-typescript"; 855 packageName = "@babel/preset-typescript"; 856 - version = "7.10.4"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz"; 859 - sha512 = "SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ=="; 860 }; 861 }; 862 - "@babel/runtime-7.11.2" = { 863 name = "_at_babel_slash_runtime"; 864 packageName = "@babel/runtime"; 865 - version = "7.11.2"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz"; 868 - sha512 = "TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw=="; 869 }; 870 }; 871 "@babel/template-7.10.4" = { ··· 877 sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA=="; 878 }; 879 }; 880 - "@babel/traverse-7.11.5" = { 881 name = "_at_babel_slash_traverse"; 882 packageName = "@babel/traverse"; 883 - version = "7.11.5"; 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.5.tgz"; 886 - sha512 = "EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ=="; 887 }; 888 }; 889 - "@babel/types-7.11.5" = { 890 name = "_at_babel_slash_types"; 891 packageName = "@babel/types"; 892 - version = "7.11.5"; 893 src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz"; 895 - sha512 = "bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q=="; 896 }; 897 }; 898 "@bcoe/v8-coverage-0.2.3" = { ··· 922 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 923 }; 924 }; 925 - "@eslint/eslintrc-0.1.3" = { 926 name = "_at_eslint_slash_eslintrc"; 927 packageName = "@eslint/eslintrc"; 928 - version = "0.1.3"; 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.1.3.tgz"; 931 - sha512 = "4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA=="; 932 }; 933 }; 934 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 949 sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="; 950 }; 951 }; 952 - "@jest/console-26.3.0" = { 953 name = "_at_jest_slash_console"; 954 packageName = "@jest/console"; 955 - version = "26.3.0"; 956 src = fetchurl { 957 - url = "https://registry.npmjs.org/@jest/console/-/console-26.3.0.tgz"; 958 - sha512 = "/5Pn6sJev0nPUcAdpJHMVIsA8sKizL2ZkcKPE5+dJrCccks7tcM7c9wbgHudBJbxXLoTbqsHkG1Dofoem4F09w=="; 959 }; 960 }; 961 - "@jest/core-26.4.2" = { 962 name = "_at_jest_slash_core"; 963 packageName = "@jest/core"; 964 - version = "26.4.2"; 965 src = fetchurl { 966 - url = "https://registry.npmjs.org/@jest/core/-/core-26.4.2.tgz"; 967 - sha512 = "sDva7YkeNprxJfepOctzS8cAk9TOekldh+5FhVuXS40+94SHbiicRO1VV2tSoRtgIo+POs/Cdyf8p76vPTd6dg=="; 968 }; 969 }; 970 - "@jest/environment-26.3.0" = { 971 name = "_at_jest_slash_environment"; 972 packageName = "@jest/environment"; 973 - version = "26.3.0"; 974 src = fetchurl { 975 - url = "https://registry.npmjs.org/@jest/environment/-/environment-26.3.0.tgz"; 976 - sha512 = "EW+MFEo0DGHahf83RAaiqQx688qpXgl99wdb8Fy67ybyzHwR1a58LHcO376xQJHfmoXTu89M09dH3J509cx2AA=="; 977 }; 978 }; 979 - "@jest/fake-timers-26.3.0" = { 980 name = "_at_jest_slash_fake-timers"; 981 packageName = "@jest/fake-timers"; 982 - version = "26.3.0"; 983 src = fetchurl { 984 - url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.3.0.tgz"; 985 - sha512 = "ZL9ytUiRwVP8ujfRepffokBvD2KbxbqMhrXSBhSdAhISCw3gOkuntisiSFv+A6HN0n0fF4cxzICEKZENLmW+1A=="; 986 }; 987 }; 988 - "@jest/globals-26.4.2" = { 989 name = "_at_jest_slash_globals"; 990 packageName = "@jest/globals"; 991 - version = "26.4.2"; 992 src = fetchurl { 993 - url = "https://registry.npmjs.org/@jest/globals/-/globals-26.4.2.tgz"; 994 - sha512 = "Ot5ouAlehhHLRhc+sDz2/9bmNv9p5ZWZ9LE1pXGGTCXBasmi5jnYjlgYcYt03FBwLmZXCZ7GrL29c33/XRQiow=="; 995 }; 996 }; 997 - "@jest/reporters-26.4.1" = { 998 name = "_at_jest_slash_reporters"; 999 packageName = "@jest/reporters"; 1000 - version = "26.4.1"; 1001 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@jest/reporters/-/reporters-26.4.1.tgz"; 1003 - sha512 = "aROTkCLU8++yiRGVxLsuDmZsQEKO6LprlrxtAuzvtpbIFl3eIjgIf3EUxDKgomkS25R9ZzwGEdB5weCcBZlrpQ=="; 1004 }; 1005 }; 1006 - "@jest/source-map-26.3.0" = { 1007 name = "_at_jest_slash_source-map"; 1008 packageName = "@jest/source-map"; 1009 - version = "26.3.0"; 1010 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@jest/source-map/-/source-map-26.3.0.tgz"; 1012 - sha512 = "hWX5IHmMDWe1kyrKl7IhFwqOuAreIwHhbe44+XH2ZRHjrKIh0LO5eLQ/vxHFeAfRwJapmxuqlGAEYLadDq6ZGQ=="; 1013 }; 1014 }; 1015 - "@jest/test-result-26.3.0" = { 1016 name = "_at_jest_slash_test-result"; 1017 packageName = "@jest/test-result"; 1018 - version = "26.3.0"; 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-26.3.0.tgz"; 1021 - sha512 = "a8rbLqzW/q7HWheFVMtghXV79Xk+GWwOK1FrtimpI5n1la2SY0qHri3/b0/1F0Ve0/yJmV8pEhxDfVwiUBGtgg=="; 1022 }; 1023 }; 1024 - "@jest/test-sequencer-26.4.2" = { 1025 name = "_at_jest_slash_test-sequencer"; 1026 packageName = "@jest/test-sequencer"; 1027 - version = "26.4.2"; 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz"; 1030 - sha512 = "83DRD8N3M0tOhz9h0bn6Kl6dSp+US6DazuVF8J9m21WAp5x7CqSMaNycMP0aemC/SH/pDQQddbsfHRTBXVUgog=="; 1031 }; 1032 }; 1033 - "@jest/transform-26.3.0" = { 1034 name = "_at_jest_slash_transform"; 1035 packageName = "@jest/transform"; 1036 - version = "26.3.0"; 1037 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@jest/transform/-/transform-26.3.0.tgz"; 1039 - sha512 = "Isj6NB68QorGoFWvcOjlUhpkT56PqNIsXKR7XfvoDlCANn/IANlh8DrKAA2l2JKC3yWSMH5wS0GwuQM20w3b2A=="; 1040 }; 1041 }; 1042 - "@jest/types-25.5.0" = { 1043 name = "_at_jest_slash_types"; 1044 packageName = "@jest/types"; 1045 - version = "25.5.0"; 1046 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz"; 1048 - sha512 = "OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw=="; 1049 }; 1050 }; 1051 - "@jest/types-26.3.0" = { 1052 - name = "_at_jest_slash_types"; 1053 - packageName = "@jest/types"; 1054 - version = "26.3.0"; 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@jest/types/-/types-26.3.0.tgz"; 1057 - sha512 = "BDPG23U0qDeAvU4f99haztXwdAg3hz4El95LkAM+tHAqqhiVzRpEGHHU8EDxT/AnxOrA65YjLBwDahdJ9pTLJQ=="; 1058 }; 1059 }; 1060 "@nodelib/fs.scandir-2.1.3" = { ··· 1084 sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="; 1085 }; 1086 }; 1087 - "@serialport/binding-abstract-9.0.1" = { 1088 name = "_at_serialport_slash_binding-abstract"; 1089 packageName = "@serialport/binding-abstract"; 1090 - version = "9.0.1"; 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.1.tgz"; 1093 - sha512 = "ncUFSRyVdpyCRuah2dzrs99UfEWWMAhV31ae2FT6j4f8TypQ8OgAF8KkcHiD4M3wORDh3UKCCTS7n8aJWge1RA=="; 1094 }; 1095 }; 1096 - "@serialport/binding-mock-9.0.1" = { 1097 name = "_at_serialport_slash_binding-mock"; 1098 packageName = "@serialport/binding-mock"; 1099 - version = "9.0.1"; 1100 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.1.tgz"; 1102 - sha512 = "C01T6iX+nNKB7S6BhQEy5nfk4lUk/CkdFEfen9DDPYhtFtIsm5GCGvRB3Fjnp+8oDrGWJOrZfxFf3kWOOx665A=="; 1103 }; 1104 }; 1105 - "@serialport/bindings-9.0.1" = { 1106 name = "_at_serialport_slash_bindings"; 1107 packageName = "@serialport/bindings"; 1108 - version = "9.0.1"; 1109 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.1.tgz"; 1111 - sha512 = "O5QuwCdnHuZygBKw7tVq2wHysfOnCbOyKtR/k9T9zHqptd89Tzy6xJQNtnrcbV/2D22noKX6yWj+1wqvNe6NRA=="; 1112 }; 1113 }; 1114 "@serialport/parser-byte-length-9.0.1" = { ··· 1165 sha512 = "BHTV+Lkl+J8hSecFtDRENaR4fgA6tw44J+dmA1vEKEyum0iDN4bihbu8yvztYyo4PhBGUKDfm/PnD5EkJm0dPA=="; 1166 }; 1167 }; 1168 - "@serialport/stream-9.0.1" = { 1169 name = "_at_serialport_slash_stream"; 1170 packageName = "@serialport/stream"; 1171 - version = "9.0.1"; 1172 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.1.tgz"; 1174 - sha512 = "S1xaf99vygbrMDNS/9GHYZYskWJHXJy6dCksW+ME2dzNXEXpz64vF0iug1tC1EIAhME9oD/s3ky2C9CUAd/GUg=="; 1175 }; 1176 }; 1177 "@sinonjs/commons-1.8.1" = { ··· 1192 sha512 = "MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="; 1193 }; 1194 }; 1195 - "@types/babel__core-7.1.10" = { 1196 name = "_at_types_slash_babel__core"; 1197 packageName = "@types/babel__core"; 1198 - version = "7.1.10"; 1199 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.10.tgz"; 1201 - sha512 = "x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw=="; 1202 }; 1203 }; 1204 "@types/babel__generator-7.6.2" = { ··· 1228 sha512 = "Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A=="; 1229 }; 1230 }; 1231 - "@types/color-name-1.1.1" = { 1232 - name = "_at_types_slash_color-name"; 1233 - packageName = "@types/color-name"; 1234 - version = "1.1.1"; 1235 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz"; 1237 - sha512 = "rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="; 1238 }; 1239 }; 1240 "@types/debug-4.1.5" = { ··· 1246 sha512 = "Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="; 1247 }; 1248 }; 1249 - "@types/graceful-fs-4.1.3" = { 1250 name = "_at_types_slash_graceful-fs"; 1251 packageName = "@types/graceful-fs"; 1252 - version = "4.1.3"; 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.3.tgz"; 1255 - sha512 = "AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ=="; 1256 }; 1257 }; 1258 "@types/istanbul-lib-coverage-2.0.3" = { ··· 1273 sha512 = "plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="; 1274 }; 1275 }; 1276 - "@types/istanbul-reports-1.1.2" = { 1277 - name = "_at_types_slash_istanbul-reports"; 1278 - packageName = "@types/istanbul-reports"; 1279 - version = "1.1.2"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz"; 1282 - sha512 = "P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw=="; 1283 - }; 1284 - }; 1285 "@types/istanbul-reports-3.0.0" = { 1286 name = "_at_types_slash_istanbul-reports"; 1287 packageName = "@types/istanbul-reports"; ··· 1291 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1292 }; 1293 }; 1294 - "@types/jest-26.0.14" = { 1295 name = "_at_types_slash_jest"; 1296 packageName = "@types/jest"; 1297 - version = "26.0.14"; 1298 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.14.tgz"; 1300 - sha512 = "Hz5q8Vu0D288x3iWXePSn53W7hAjP0H7EQ6QvDO9c7t46mR0lNOLlfuwQ+JkVxuhygHzlzPX+0jKdA3ZgSh+Vg=="; 1301 }; 1302 }; 1303 "@types/json-schema-7.0.6" = { ··· 1318 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1319 }; 1320 }; 1321 - "@types/node-14.11.2" = { 1322 name = "_at_types_slash_node"; 1323 packageName = "@types/node"; 1324 - version = "14.11.2"; 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/node/-/node-14.11.2.tgz"; 1327 - sha512 = "jiE3QIxJ8JLNcb1Ps6rDbysDhN4xa8DJJvuC9prr6w+1tIh+QAbYyNF3tyiZNLDBIuBCf4KEcV2UvQm/V60xfA=="; 1328 }; 1329 }; 1330 "@types/normalize-package-data-2.4.0" = { ··· 1336 sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1337 }; 1338 }; 1339 - "@types/prettier-2.1.1" = { 1340 name = "_at_types_slash_prettier"; 1341 packageName = "@types/prettier"; 1342 - version = "2.1.1"; 1343 src = fetchurl { 1344 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.1.tgz"; 1345 - sha512 = "2zs+O+UkDsJ1Vcp667pd3f8xearMdopz/z54i99wtRDI5KLmngk7vlrYZD0ZjKHaROR03EznlBbVY9PfAEyJIQ=="; 1346 }; 1347 }; 1348 "@types/serialport-8.0.1" = { ··· 1354 sha512 = "IcKHq6b/ynKSF/x4al/Ce8+a0hpbYIEaIcK9Z3l4koLvQqAPSODZ37/hgemQx8dTu7fPZDMHN4bKmu89B3UaGA=="; 1355 }; 1356 }; 1357 - "@types/stack-utils-1.0.1" = { 1358 name = "_at_types_slash_stack-utils"; 1359 packageName = "@types/stack-utils"; 1360 - version = "1.0.1"; 1361 src = fetchurl { 1362 - url = "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz"; 1363 - sha512 = "l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw=="; 1364 }; 1365 }; 1366 - "@types/yargs-15.0.7" = { 1367 name = "_at_types_slash_yargs"; 1368 packageName = "@types/yargs"; 1369 - version = "15.0.7"; 1370 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.7.tgz"; 1372 - sha512 = "Gf4u3EjaPNcC9cTu4/j2oN14nSVhr8PQ+BvBcBQHAhDZfl0bVIiLgvnRXv/dn58XhTm9UXvBpvJpDlwV65QxOA=="; 1373 }; 1374 }; 1375 "@types/yargs-parser-15.0.0" = { ··· 1381 sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 1382 }; 1383 }; 1384 - "@typescript-eslint/eslint-plugin-4.2.0" = { 1385 name = "_at_typescript-eslint_slash_eslint-plugin"; 1386 packageName = "@typescript-eslint/eslint-plugin"; 1387 - version = "4.2.0"; 1388 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.2.0.tgz"; 1390 - sha512 = "zBNRkzvLSwo6y5TG0DVcmshZIYBHKtmzD4N+LYnfTFpzc4bc79o8jNRSb728WV7A4Cegbs+MV5IRAj8BKBgOVQ=="; 1391 }; 1392 }; 1393 - "@typescript-eslint/experimental-utils-4.2.0" = { 1394 name = "_at_typescript-eslint_slash_experimental-utils"; 1395 packageName = "@typescript-eslint/experimental-utils"; 1396 - version = "4.2.0"; 1397 src = fetchurl { 1398 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.2.0.tgz"; 1399 - sha512 = "5BBj6BjgHEndBaQQpUVzRIPERz03LBc0MCQkHwUaH044FJFL08SwWv/sQftk7gf0ShZ2xZysz0LTwCwNt4Xu3w=="; 1400 }; 1401 }; 1402 - "@typescript-eslint/parser-4.2.0" = { 1403 name = "_at_typescript-eslint_slash_parser"; 1404 packageName = "@typescript-eslint/parser"; 1405 - version = "4.2.0"; 1406 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.2.0.tgz"; 1408 - sha512 = "54jJ6MwkOtowpE48C0QJF9iTz2/NZxfKVJzv1ha5imigzHbNSLN9yvbxFFH1KdlRPQrlR8qxqyOvLHHxd397VA=="; 1409 }; 1410 }; 1411 - "@typescript-eslint/scope-manager-4.2.0" = { 1412 name = "_at_typescript-eslint_slash_scope-manager"; 1413 packageName = "@typescript-eslint/scope-manager"; 1414 - version = "4.2.0"; 1415 src = fetchurl { 1416 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.2.0.tgz"; 1417 - sha512 = "Tb402cxxObSxWIVT+PnBp5ruT2V/36yj6gG4C9AjkgRlZpxrLAzWDk3neen6ToMBGeGdxtnfFLoJRUecGz9mYQ=="; 1418 }; 1419 }; 1420 - "@typescript-eslint/types-4.2.0" = { 1421 name = "_at_typescript-eslint_slash_types"; 1422 packageName = "@typescript-eslint/types"; 1423 - version = "4.2.0"; 1424 src = fetchurl { 1425 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.2.0.tgz"; 1426 - sha512 = "xkv5nIsxfI/Di9eVwN+G9reWl7Me9R5jpzmZUch58uQ7g0/hHVuGUbbn4NcxcM5y/R4wuJIIEPKPDb5l4Fdmwg=="; 1427 }; 1428 }; 1429 - "@typescript-eslint/typescript-estree-4.2.0" = { 1430 name = "_at_typescript-eslint_slash_typescript-estree"; 1431 packageName = "@typescript-eslint/typescript-estree"; 1432 - version = "4.2.0"; 1433 src = fetchurl { 1434 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.2.0.tgz"; 1435 - sha512 = "iWDLCB7z4MGkLipduF6EOotdHNtgxuNKnYD54nMS/oitFnsk4S3S/TE/UYXQTra550lHtlv9eGmp+dvN9pUDtA=="; 1436 }; 1437 }; 1438 - "@typescript-eslint/visitor-keys-4.2.0" = { 1439 name = "_at_typescript-eslint_slash_visitor-keys"; 1440 packageName = "@typescript-eslint/visitor-keys"; 1441 - version = "4.2.0"; 1442 src = fetchurl { 1443 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.2.0.tgz"; 1444 - sha512 = "WIf4BNOlFOH2W+YqGWa6YKLcK/EB3gEj2apCrqLw6mme1RzBy0jtJ9ewJgnrZDB640zfnv8L+/gwGH5sYp/rGw=="; 1445 }; 1446 }; 1447 "abab-2.0.5" = { ··· 1453 sha512 = "9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="; 1454 }; 1455 }; 1456 - "acorn-7.4.0" = { 1457 name = "acorn"; 1458 packageName = "acorn"; 1459 - version = "7.4.0"; 1460 src = fetchurl { 1461 - url = "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz"; 1462 - sha512 = "+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w=="; 1463 }; 1464 }; 1465 "acorn-globals-6.0.0" = { ··· 1489 sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; 1490 }; 1491 }; 1492 - "agent-base-6.0.1" = { 1493 name = "agent-base"; 1494 packageName = "agent-base"; 1495 - version = "6.0.1"; 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/agent-base/-/agent-base-6.0.1.tgz"; 1498 - sha512 = "01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg=="; 1499 }; 1500 }; 1501 - "ajv-6.12.5" = { 1502 name = "ajv"; 1503 packageName = "ajv"; 1504 - version = "6.12.5"; 1505 src = fetchurl { 1506 - url = "https://registry.npmjs.org/ajv/-/ajv-6.12.5.tgz"; 1507 - sha512 = "lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag=="; 1508 }; 1509 }; 1510 "ansi-colors-4.1.1" = { ··· 1561 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 1562 }; 1563 }; 1564 - "ansi-styles-4.2.1" = { 1565 name = "ansi-styles"; 1566 packageName = "ansi-styles"; 1567 - version = "4.2.1"; 1568 src = fetchurl { 1569 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz"; 1570 - sha512 = "9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA=="; 1571 }; 1572 }; 1573 "anymatch-2.0.0" = { ··· 1750 sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 1751 }; 1752 }; 1753 - "aws4-1.10.1" = { 1754 name = "aws4"; 1755 packageName = "aws4"; 1756 - version = "1.10.1"; 1757 src = fetchurl { 1758 - url = "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz"; 1759 - sha512 = "zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA=="; 1760 }; 1761 }; 1762 - "axios-0.20.0" = { 1763 name = "axios"; 1764 packageName = "axios"; 1765 - version = "0.20.0"; 1766 src = fetchurl { 1767 - url = "https://registry.npmjs.org/axios/-/axios-0.20.0.tgz"; 1768 - sha512 = "ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA=="; 1769 }; 1770 }; 1771 - "babel-jest-26.3.0" = { 1772 name = "babel-jest"; 1773 packageName = "babel-jest"; 1774 - version = "26.3.0"; 1775 src = fetchurl { 1776 - url = "https://registry.npmjs.org/babel-jest/-/babel-jest-26.3.0.tgz"; 1777 - sha512 = "sxPnQGEyHAOPF8NcUsD0g7hDCnvLL2XyblRBcgrzTWBB/mAIpWow3n1bEL+VghnnZfreLhFSBsFluRoK2tRK4g=="; 1778 }; 1779 }; 1780 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 1795 sha512 = "AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ=="; 1796 }; 1797 }; 1798 - "babel-plugin-jest-hoist-26.2.0" = { 1799 name = "babel-plugin-jest-hoist"; 1800 packageName = "babel-plugin-jest-hoist"; 1801 - version = "26.2.0"; 1802 src = fetchurl { 1803 - url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz"; 1804 - sha512 = "B/hVMRv8Nh1sQ1a3EY8I0n4Y1Wty3NrR5ebOyVT302op+DOAau+xNEImGMsUWOC3++ZlMooCytKz+NgN8aKGbA=="; 1805 }; 1806 }; 1807 - "babel-preset-current-node-syntax-0.1.3" = { 1808 name = "babel-preset-current-node-syntax"; 1809 packageName = "babel-preset-current-node-syntax"; 1810 - version = "0.1.3"; 1811 src = fetchurl { 1812 - url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz"; 1813 - sha512 = "uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ=="; 1814 }; 1815 }; 1816 - "babel-preset-jest-26.3.0" = { 1817 name = "babel-preset-jest"; 1818 packageName = "babel-preset-jest"; 1819 - version = "26.3.0"; 1820 src = fetchurl { 1821 - url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz"; 1822 - sha512 = "5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw=="; 1823 }; 1824 }; 1825 "balanced-match-1.0.0" = { ··· 1867 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 1868 }; 1869 }; 1870 "bindings-1.5.0" = { 1871 name = "bindings"; 1872 packageName = "bindings"; ··· 1939 sha512 = "gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="; 1940 }; 1941 }; 1942 - "buffer-5.6.0" = { 1943 name = "buffer"; 1944 packageName = "buffer"; 1945 - version = "5.6.0"; 1946 src = fetchurl { 1947 - url = "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz"; 1948 - sha512 = "/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw=="; 1949 }; 1950 }; 1951 "buffer-from-1.1.1" = { ··· 1964 src = fetchurl { 1965 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; 1966 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 1967 }; 1968 }; 1969 "callback-stream-1.1.0" = { ··· 1993 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 1994 }; 1995 }; 1996 - "camelcase-6.0.0" = { 1997 name = "camelcase"; 1998 packageName = "camelcase"; 1999 - version = "6.0.0"; 2000 src = fetchurl { 2001 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz"; 2002 - sha512 = "8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w=="; 2003 }; 2004 }; 2005 - "caniuse-lite-1.0.30001137" = { 2006 name = "caniuse-lite"; 2007 packageName = "caniuse-lite"; 2008 - version = "1.0.30001137"; 2009 src = fetchurl { 2010 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001137.tgz"; 2011 - sha512 = "54xKQZTqZrKVHmVz0+UvdZR6kQc7pJDgfhsMYDG19ID1BWoNnDMFm5Q3uSBSU401pBvKYMsHAt9qhEDcxmk8aw=="; 2012 }; 2013 }; 2014 "capture-exit-2.0.0" = { ··· 2038 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2039 }; 2040 }; 2041 - "chalk-3.0.0" = { 2042 - name = "chalk"; 2043 - packageName = "chalk"; 2044 - version = "3.0.0"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"; 2047 - sha512 = "4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="; 2048 - }; 2049 - }; 2050 "chalk-4.1.0" = { 2051 name = "chalk"; 2052 packageName = "chalk"; ··· 2072 src = fetchurl { 2073 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 2074 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2075 }; 2076 }; 2077 "chownr-1.1.4" = { ··· 2092 sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 2093 }; 2094 }; 2095 "class-utils-0.3.6" = { 2096 name = "class-utils"; 2097 packageName = "class-utils"; ··· 2191 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2192 }; 2193 }; 2194 - "color-string-1.5.3" = { 2195 name = "color-string"; 2196 packageName = "color-string"; 2197 - version = "1.5.3"; 2198 src = fetchurl { 2199 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz"; 2200 - sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw=="; 2201 }; 2202 }; 2203 "colors-1.4.0" = { ··· 2263 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 2264 }; 2265 }; 2266 - "concat-stream-1.6.2" = { 2267 name = "concat-stream"; 2268 packageName = "concat-stream"; 2269 - version = "1.6.2"; 2270 src = fetchurl { 2271 - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; 2272 - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 2273 }; 2274 }; 2275 "console-control-strings-1.1.0" = { ··· 2362 sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="; 2363 }; 2364 }; 2365 - "d-1.0.1" = { 2366 - name = "d"; 2367 - packageName = "d"; 2368 - version = "1.0.1"; 2369 - src = fetchurl { 2370 - url = "https://registry.npmjs.org/d/-/d-1.0.1.tgz"; 2371 - sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; 2372 - }; 2373 - }; 2374 "dashdash-1.14.1" = { 2375 name = "dashdash"; 2376 packageName = "dashdash"; ··· 2425 sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 2426 }; 2427 }; 2428 - "decimal.js-10.2.0" = { 2429 name = "decimal.js"; 2430 packageName = "decimal.js"; 2431 - version = "10.2.0"; 2432 src = fetchurl { 2433 - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.0.tgz"; 2434 - sha512 = "vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw=="; 2435 }; 2436 }; 2437 "decode-uri-component-0.2.0" = { ··· 2569 sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="; 2570 }; 2571 }; 2572 - "diff-sequences-25.2.6" = { 2573 - name = "diff-sequences"; 2574 - packageName = "diff-sequences"; 2575 - version = "25.2.6"; 2576 - src = fetchurl { 2577 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz"; 2578 - sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="; 2579 - }; 2580 - }; 2581 - "diff-sequences-26.3.0" = { 2582 name = "diff-sequences"; 2583 packageName = "diff-sequences"; 2584 - version = "26.3.0"; 2585 src = fetchurl { 2586 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.3.0.tgz"; 2587 - sha512 = "5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig=="; 2588 }; 2589 }; 2590 "dir-glob-3.0.1" = { ··· 2641 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2642 }; 2643 }; 2644 - "electron-to-chromium-1.3.573" = { 2645 name = "electron-to-chromium"; 2646 packageName = "electron-to-chromium"; 2647 - version = "1.3.573"; 2648 src = fetchurl { 2649 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.573.tgz"; 2650 - sha512 = "oypaNmexr8w0m2GX67fGLQ0Xgsd7uXz7GcwaHZ9eW3ZdQ8uA2+V/wXmLdMTk3gcacbqQGAN7CXWG3fOkfKYftw=="; 2651 }; 2652 }; 2653 - "emittery-0.7.1" = { 2654 name = "emittery"; 2655 packageName = "emittery"; 2656 - version = "0.7.1"; 2657 src = fetchurl { 2658 - url = "https://registry.npmjs.org/emittery/-/emittery-0.7.1.tgz"; 2659 - sha512 = "d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ=="; 2660 }; 2661 }; 2662 "emoji-regex-7.0.3" = { ··· 2722 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 2723 }; 2724 }; 2725 - "es-abstract-1.17.6" = { 2726 - name = "es-abstract"; 2727 - packageName = "es-abstract"; 2728 - version = "1.17.6"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz"; 2731 - sha512 = "Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw=="; 2732 - }; 2733 - }; 2734 - "es-abstract-1.18.0-next.0" = { 2735 - name = "es-abstract"; 2736 - packageName = "es-abstract"; 2737 - version = "1.18.0-next.0"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.0.tgz"; 2740 - sha512 = "elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ=="; 2741 - }; 2742 - }; 2743 - "es-to-primitive-1.2.1" = { 2744 - name = "es-to-primitive"; 2745 - packageName = "es-to-primitive"; 2746 - version = "1.2.1"; 2747 - src = fetchurl { 2748 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 2749 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 2750 - }; 2751 - }; 2752 - "es5-ext-0.10.53" = { 2753 - name = "es5-ext"; 2754 - packageName = "es5-ext"; 2755 - version = "0.10.53"; 2756 - src = fetchurl { 2757 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz"; 2758 - sha512 = "Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q=="; 2759 - }; 2760 - }; 2761 - "es6-iterator-2.0.3" = { 2762 - name = "es6-iterator"; 2763 - packageName = "es6-iterator"; 2764 - version = "2.0.3"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz"; 2767 - sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7"; 2768 - }; 2769 - }; 2770 - "es6-map-0.1.5" = { 2771 - name = "es6-map"; 2772 - packageName = "es6-map"; 2773 - version = "0.1.5"; 2774 - src = fetchurl { 2775 - url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz"; 2776 - sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0"; 2777 - }; 2778 - }; 2779 - "es6-set-0.1.5" = { 2780 - name = "es6-set"; 2781 - packageName = "es6-set"; 2782 - version = "0.1.5"; 2783 - src = fetchurl { 2784 - url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz"; 2785 - sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1"; 2786 - }; 2787 - }; 2788 - "es6-symbol-3.1.1" = { 2789 - name = "es6-symbol"; 2790 - packageName = "es6-symbol"; 2791 - version = "3.1.1"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz"; 2794 - sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"; 2795 - }; 2796 - }; 2797 - "es6-symbol-3.1.3" = { 2798 - name = "es6-symbol"; 2799 - packageName = "es6-symbol"; 2800 - version = "3.1.3"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; 2803 - sha512 = "NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA=="; 2804 - }; 2805 - }; 2806 - "escalade-3.1.0" = { 2807 name = "escalade"; 2808 packageName = "escalade"; 2809 - version = "3.1.0"; 2810 src = fetchurl { 2811 - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.0.tgz"; 2812 - sha512 = "mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig=="; 2813 }; 2814 }; 2815 "escape-html-1.0.3" = { ··· 2848 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 2849 }; 2850 }; 2851 - "eslint-7.10.0" = { 2852 name = "eslint"; 2853 packageName = "eslint"; 2854 - version = "7.10.0"; 2855 src = fetchurl { 2856 - url = "https://registry.npmjs.org/eslint/-/eslint-7.10.0.tgz"; 2857 - sha512 = "BDVffmqWl7JJXqCjAK6lWtcQThZB/aP1HXSH1JKwGwv0LQEdvpR7qzNrUT487RM39B5goWuboFad5ovMBmD8yA=="; 2858 }; 2859 }; 2860 "eslint-config-google-0.14.0" = { ··· 2866 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 2867 }; 2868 }; 2869 - "eslint-plugin-jest-24.0.2" = { 2870 name = "eslint-plugin-jest"; 2871 packageName = "eslint-plugin-jest"; 2872 - version = "24.0.2"; 2873 src = fetchurl { 2874 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.0.2.tgz"; 2875 - sha512 = "DSBLNpkKDOpUJQkTGSs5sVJWsu0nDyQ2rYxkr0Eh7nrkc5bMUr/dlDbtTj3l8y6UaCVsem6rryF1OZrKnz1S5g=="; 2876 }; 2877 }; 2878 "eslint-scope-5.1.1" = { ··· 2983 sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 2984 }; 2985 }; 2986 - "event-emitter-0.3.5" = { 2987 - name = "event-emitter"; 2988 - packageName = "event-emitter"; 2989 - version = "0.3.5"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz"; 2992 - sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; 2993 - }; 2994 - }; 2995 "eventemitter3-4.0.7" = { 2996 name = "eventemitter3"; 2997 packageName = "eventemitter3"; ··· 3019 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 3020 }; 3021 }; 3022 - "execa-4.0.3" = { 3023 name = "execa"; 3024 packageName = "execa"; 3025 - version = "4.0.3"; 3026 src = fetchurl { 3027 - url = "https://registry.npmjs.org/execa/-/execa-4.0.3.tgz"; 3028 - sha512 = "WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A=="; 3029 }; 3030 }; 3031 "exit-0.1.2" = { ··· 3055 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 3056 }; 3057 }; 3058 - "expect-26.4.2" = { 3059 name = "expect"; 3060 packageName = "expect"; 3061 - version = "26.4.2"; 3062 src = fetchurl { 3063 - url = "https://registry.npmjs.org/expect/-/expect-26.4.2.tgz"; 3064 - sha512 = "IlJ3X52Z0lDHm7gjEp+m76uX46ldH5VpqmU0006vqDju/285twh7zaWMRhs67VpQhBwjjMchk+p5aA0VkERCAA=="; 3065 - }; 3066 - }; 3067 - "ext-1.4.0" = { 3068 - name = "ext"; 3069 - packageName = "ext"; 3070 - version = "1.4.0"; 3071 - src = fetchurl { 3072 - url = "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz"; 3073 - sha512 = "Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A=="; 3074 }; 3075 }; 3076 "extend-3.0.2" = { ··· 3163 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3164 }; 3165 }; 3166 - "fastq-1.8.0" = { 3167 name = "fastq"; 3168 packageName = "fastq"; 3169 - version = "1.8.0"; 3170 src = fetchurl { 3171 - url = "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz"; 3172 - sha512 = "SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q=="; 3173 }; 3174 }; 3175 "fb-watchman-2.0.1" = { ··· 3406 sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 3407 }; 3408 }; 3409 - "gensync-1.0.0-beta.1" = { 3410 name = "gensync"; 3411 packageName = "gensync"; 3412 - version = "1.0.0-beta.1"; 3413 src = fetchurl { 3414 - url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz"; 3415 - sha512 = "r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg=="; 3416 }; 3417 }; 3418 "get-caller-file-2.0.5" = { ··· 3422 src = fetchurl { 3423 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 3424 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3425 }; 3426 }; 3427 "get-package-type-0.1.0" = { ··· 3694 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 3695 }; 3696 }; 3697 - "highlight.js-10.2.0" = { 3698 name = "highlight.js"; 3699 packageName = "highlight.js"; 3700 - version = "10.2.0"; 3701 src = fetchurl { 3702 - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.2.0.tgz"; 3703 - sha512 = "OryzPiqqNCfO/wtFo619W+nPYALM6u7iCQkum4bqRmmlcTikOkmlL06i009QelynBPAlNByTQU6cBB2cOBQtCw=="; 3704 }; 3705 }; 3706 "hosted-git-info-2.8.8" = { ··· 3775 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 3776 }; 3777 }; 3778 - "humanize-duration-3.23.1" = { 3779 name = "humanize-duration"; 3780 packageName = "humanize-duration"; 3781 - version = "3.23.1"; 3782 src = fetchurl { 3783 - url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.23.1.tgz"; 3784 - sha512 = "aoOEkomAETmVuQyBx4E7/LfPlC9s8pAA/USl7vFRQpDjepo3aiyvFfOhtXSDqPowdBVPFUZ7onG/KyuolX0qPg=="; 3785 }; 3786 }; 3787 "iconv-lite-0.4.24" = { ··· 3793 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3794 }; 3795 }; 3796 - "ieee754-1.1.13" = { 3797 name = "ieee754"; 3798 packageName = "ieee754"; 3799 - version = "1.1.13"; 3800 src = fetchurl { 3801 - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz"; 3802 - sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="; 3803 }; 3804 }; 3805 "ignore-4.0.6" = { ··· 3883 sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 3884 }; 3885 }; 3886 - "invariant-2.2.4" = { 3887 - name = "invariant"; 3888 - packageName = "invariant"; 3889 - version = "2.2.4"; 3890 - src = fetchurl { 3891 - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; 3892 - sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; 3893 - }; 3894 - }; 3895 "ip-regex-2.1.0" = { 3896 name = "ip-regex"; 3897 packageName = "ip-regex"; ··· 3955 sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; 3956 }; 3957 }; 3958 "is-buffer-1.1.6" = { 3959 name = "is-buffer"; 3960 packageName = "is-buffer"; ··· 3964 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 3965 }; 3966 }; 3967 - "is-callable-1.2.2" = { 3968 - name = "is-callable"; 3969 - packageName = "is-callable"; 3970 - version = "1.2.2"; 3971 - src = fetchurl { 3972 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz"; 3973 - sha512 = "dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA=="; 3974 - }; 3975 - }; 3976 "is-ci-2.0.0" = { 3977 name = "is-ci"; 3978 packageName = "is-ci"; ··· 3980 src = fetchurl { 3981 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 3982 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 3983 }; 3984 }; 3985 "is-data-descriptor-0.1.4" = { ··· 4000 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 4001 }; 4002 }; 4003 - "is-date-object-1.0.2" = { 4004 - name = "is-date-object"; 4005 - packageName = "is-date-object"; 4006 - version = "1.0.2"; 4007 - src = fetchurl { 4008 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"; 4009 - sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 4010 - }; 4011 - }; 4012 "is-descriptor-0.1.6" = { 4013 name = "is-descriptor"; 4014 packageName = "is-descriptor"; ··· 4126 sha1 = "6910bca5da8c95e784b5751b976cf5a10fee36d2"; 4127 }; 4128 }; 4129 - "is-negative-zero-2.0.0" = { 4130 - name = "is-negative-zero"; 4131 - packageName = "is-negative-zero"; 4132 - version = "2.0.0"; 4133 - src = fetchurl { 4134 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz"; 4135 - sha1 = "9553b121b0fac28869da9ed459e20c7543788461"; 4136 - }; 4137 - }; 4138 "is-number-3.0.0" = { 4139 name = "is-number"; 4140 packageName = "is-number"; ··· 4171 sha1 = "0c52e54bcca391bb2c494b21e8626d7336c6e397"; 4172 }; 4173 }; 4174 - "is-regex-1.1.1" = { 4175 - name = "is-regex"; 4176 - packageName = "is-regex"; 4177 - version = "1.1.1"; 4178 - src = fetchurl { 4179 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz"; 4180 - sha512 = "1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg=="; 4181 - }; 4182 - }; 4183 "is-relative-1.0.0" = { 4184 name = "is-relative"; 4185 packageName = "is-relative"; ··· 4207 sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 4208 }; 4209 }; 4210 - "is-symbol-1.0.3" = { 4211 - name = "is-symbol"; 4212 - packageName = "is-symbol"; 4213 - version = "1.0.3"; 4214 - src = fetchurl { 4215 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"; 4216 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 4217 - }; 4218 - }; 4219 "is-typedarray-1.0.0" = { 4220 name = "is-typedarray"; 4221 packageName = "is-typedarray"; ··· 4342 sha512 = "9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="; 4343 }; 4344 }; 4345 - "jest-26.4.2" = { 4346 name = "jest"; 4347 packageName = "jest"; 4348 - version = "26.4.2"; 4349 src = fetchurl { 4350 - url = "https://registry.npmjs.org/jest/-/jest-26.4.2.tgz"; 4351 - sha512 = "LLCjPrUh98Ik8CzW8LLVnSCfLaiY+wbK53U7VxnFSX7Q+kWC4noVeDvGWIFw0Amfq1lq2VfGm7YHWSLBV62MJw=="; 4352 }; 4353 }; 4354 - "jest-changed-files-26.3.0" = { 4355 name = "jest-changed-files"; 4356 packageName = "jest-changed-files"; 4357 - version = "26.3.0"; 4358 src = fetchurl { 4359 - url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.3.0.tgz"; 4360 - sha512 = "1C4R4nijgPltX6fugKxM4oQ18zimS7LqQ+zTTY8lMCMFPrxqBFb7KJH0Z2fRQJvw2Slbaipsqq7s1mgX5Iot+g=="; 4361 }; 4362 }; 4363 - "jest-cli-26.4.2" = { 4364 name = "jest-cli"; 4365 packageName = "jest-cli"; 4366 - version = "26.4.2"; 4367 src = fetchurl { 4368 - url = "https://registry.npmjs.org/jest-cli/-/jest-cli-26.4.2.tgz"; 4369 - sha512 = "zb+lGd/SfrPvoRSC/0LWdaWCnscXc1mGYW//NP4/tmBvRPT3VntZ2jtKUONsRi59zc5JqmsSajA9ewJKFYp8Cw=="; 4370 }; 4371 }; 4372 - "jest-config-26.4.2" = { 4373 name = "jest-config"; 4374 packageName = "jest-config"; 4375 - version = "26.4.2"; 4376 src = fetchurl { 4377 - url = "https://registry.npmjs.org/jest-config/-/jest-config-26.4.2.tgz"; 4378 - sha512 = "QBf7YGLuToiM8PmTnJEdRxyYy3mHWLh24LJZKVdXZ2PNdizSe1B/E8bVm+HYcjbEzGuVXDv/di+EzdO/6Gq80A=="; 4379 }; 4380 }; 4381 - "jest-diff-25.5.0" = { 4382 name = "jest-diff"; 4383 packageName = "jest-diff"; 4384 - version = "25.5.0"; 4385 src = fetchurl { 4386 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz"; 4387 - sha512 = "z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A=="; 4388 - }; 4389 - }; 4390 - "jest-diff-26.4.2" = { 4391 - name = "jest-diff"; 4392 - packageName = "jest-diff"; 4393 - version = "26.4.2"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-26.4.2.tgz"; 4396 - sha512 = "6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ=="; 4397 }; 4398 }; 4399 "jest-docblock-26.0.0" = { ··· 4405 sha512 = "RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w=="; 4406 }; 4407 }; 4408 - "jest-each-26.4.2" = { 4409 name = "jest-each"; 4410 packageName = "jest-each"; 4411 - version = "26.4.2"; 4412 src = fetchurl { 4413 - url = "https://registry.npmjs.org/jest-each/-/jest-each-26.4.2.tgz"; 4414 - sha512 = "p15rt8r8cUcRY0Mvo1fpkOGYm7iI8S6ySxgIdfh3oOIv+gHwrHTy5VWCGOecWUhDsit4Nz8avJWdT07WLpbwDA=="; 4415 }; 4416 }; 4417 - "jest-environment-jsdom-26.3.0" = { 4418 name = "jest-environment-jsdom"; 4419 packageName = "jest-environment-jsdom"; 4420 - version = "26.3.0"; 4421 src = fetchurl { 4422 - url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz"; 4423 - sha512 = "zra8He2btIMJkAzvLaiZ9QwEPGEetbxqmjEBQwhH3CA+Hhhu0jSiEJxnJMbX28TGUvPLxBt/zyaTLrOPF4yMJA=="; 4424 }; 4425 }; 4426 - "jest-environment-node-26.3.0" = { 4427 name = "jest-environment-node"; 4428 packageName = "jest-environment-node"; 4429 - version = "26.3.0"; 4430 - src = fetchurl { 4431 - url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.3.0.tgz"; 4432 - sha512 = "c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw=="; 4433 - }; 4434 - }; 4435 - "jest-get-type-25.2.6" = { 4436 - name = "jest-get-type"; 4437 - packageName = "jest-get-type"; 4438 - version = "25.2.6"; 4439 src = fetchurl { 4440 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz"; 4441 - sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig=="; 4442 }; 4443 }; 4444 "jest-get-type-26.3.0" = { ··· 4450 sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="; 4451 }; 4452 }; 4453 - "jest-haste-map-26.3.0" = { 4454 name = "jest-haste-map"; 4455 packageName = "jest-haste-map"; 4456 - version = "26.3.0"; 4457 src = fetchurl { 4458 - url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.3.0.tgz"; 4459 - sha512 = "DHWBpTJgJhLLGwE5Z1ZaqLTYqeODQIZpby0zMBsCU9iRFHYyhklYqP4EiG73j5dkbaAdSZhgB938mL51Q5LeZA=="; 4460 }; 4461 }; 4462 - "jest-jasmine2-26.4.2" = { 4463 name = "jest-jasmine2"; 4464 packageName = "jest-jasmine2"; 4465 - version = "26.4.2"; 4466 src = fetchurl { 4467 - url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz"; 4468 - sha512 = "z7H4EpCldHN1J8fNgsja58QftxBSL+JcwZmaXIvV9WKIM+x49F4GLHu/+BQh2kzRKHAgaN/E82od+8rTOBPyPA=="; 4469 }; 4470 }; 4471 - "jest-leak-detector-26.4.2" = { 4472 name = "jest-leak-detector"; 4473 packageName = "jest-leak-detector"; 4474 - version = "26.4.2"; 4475 src = fetchurl { 4476 - url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz"; 4477 - sha512 = "akzGcxwxtE+9ZJZRW+M2o+nTNnmQZxrHJxX/HjgDaU5+PLmY1qnQPnMjgADPGCRPhB+Yawe1iij0REe+k/aHoA=="; 4478 }; 4479 }; 4480 - "jest-matcher-utils-26.4.2" = { 4481 name = "jest-matcher-utils"; 4482 packageName = "jest-matcher-utils"; 4483 - version = "26.4.2"; 4484 src = fetchurl { 4485 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz"; 4486 - sha512 = "KcbNqWfWUG24R7tu9WcAOKKdiXiXCbMvQYT6iodZ9k1f7065k0keUOW6XpJMMvah+hTfqkhJhRXmA3r3zMAg0Q=="; 4487 }; 4488 }; 4489 - "jest-message-util-26.3.0" = { 4490 name = "jest-message-util"; 4491 packageName = "jest-message-util"; 4492 - version = "26.3.0"; 4493 src = fetchurl { 4494 - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.3.0.tgz"; 4495 - sha512 = "xIavRYqr4/otGOiLxLZGj3ieMmjcNE73Ui+LdSW/Y790j5acqCsAdDiLIbzHCZMpN07JOENRWX5DcU+OQ+TjTA=="; 4496 }; 4497 }; 4498 - "jest-mock-26.3.0" = { 4499 name = "jest-mock"; 4500 packageName = "jest-mock"; 4501 - version = "26.3.0"; 4502 src = fetchurl { 4503 - url = "https://registry.npmjs.org/jest-mock/-/jest-mock-26.3.0.tgz"; 4504 - sha512 = "PeaRrg8Dc6mnS35gOo/CbZovoDPKAeB1FICZiuagAgGvbWdNNyjQjkOaGUa/3N3JtpQ/Mh9P4A2D4Fv51NnP8Q=="; 4505 }; 4506 }; 4507 "jest-pnp-resolver-1.2.2" = { ··· 4522 sha512 = "Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A=="; 4523 }; 4524 }; 4525 - "jest-resolve-26.4.0" = { 4526 name = "jest-resolve"; 4527 packageName = "jest-resolve"; 4528 - version = "26.4.0"; 4529 src = fetchurl { 4530 - url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.4.0.tgz"; 4531 - sha512 = "bn/JoZTEXRSlEx3+SfgZcJAVuTMOksYq9xe9O6s4Ekg84aKBObEaVXKOEilULRqviSLAYJldnoWV9c07kwtiCg=="; 4532 }; 4533 }; 4534 - "jest-resolve-dependencies-26.4.2" = { 4535 name = "jest-resolve-dependencies"; 4536 packageName = "jest-resolve-dependencies"; 4537 - version = "26.4.2"; 4538 src = fetchurl { 4539 - url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz"; 4540 - sha512 = "ADHaOwqEcVc71uTfySzSowA/RdxUpCxhxa2FNLiin9vWLB1uLPad3we+JSSROq5+SrL9iYPdZZF8bdKM7XABTQ=="; 4541 }; 4542 }; 4543 - "jest-runner-26.4.2" = { 4544 name = "jest-runner"; 4545 packageName = "jest-runner"; 4546 - version = "26.4.2"; 4547 src = fetchurl { 4548 - url = "https://registry.npmjs.org/jest-runner/-/jest-runner-26.4.2.tgz"; 4549 - sha512 = "FgjDHeVknDjw1gRAYaoUoShe1K3XUuFMkIaXbdhEys+1O4bEJS8Avmn4lBwoMfL8O5oFTdWYKcf3tEJyyYyk8g=="; 4550 }; 4551 }; 4552 - "jest-runtime-26.4.2" = { 4553 name = "jest-runtime"; 4554 packageName = "jest-runtime"; 4555 - version = "26.4.2"; 4556 src = fetchurl { 4557 - url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.4.2.tgz"; 4558 - sha512 = "4Pe7Uk5a80FnbHwSOk7ojNCJvz3Ks2CNQWT5Z7MJo4tX0jb3V/LThKvD9tKPNVNyeMH98J/nzGlcwc00R2dSHQ=="; 4559 }; 4560 }; 4561 - "jest-serializer-26.3.0" = { 4562 name = "jest-serializer"; 4563 packageName = "jest-serializer"; 4564 - version = "26.3.0"; 4565 src = fetchurl { 4566 - url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.3.0.tgz"; 4567 - sha512 = "IDRBQBLPlKa4flg77fqg0n/pH87tcRKwe8zxOVTWISxGpPHYkRZ1dXKyh04JOja7gppc60+soKVZ791mruVdow=="; 4568 }; 4569 }; 4570 - "jest-snapshot-26.4.2" = { 4571 name = "jest-snapshot"; 4572 packageName = "jest-snapshot"; 4573 - version = "26.4.2"; 4574 src = fetchurl { 4575 - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.4.2.tgz"; 4576 - sha512 = "N6Uub8FccKlf5SBFnL2Ri/xofbaA68Cc3MGjP/NuwgnsvWh+9hLIR/DhrxbSiKXMY9vUW5dI6EW1eHaDHqe9sg=="; 4577 }; 4578 }; 4579 - "jest-util-26.3.0" = { 4580 name = "jest-util"; 4581 packageName = "jest-util"; 4582 - version = "26.3.0"; 4583 src = fetchurl { 4584 - url = "https://registry.npmjs.org/jest-util/-/jest-util-26.3.0.tgz"; 4585 - sha512 = "4zpn6bwV0+AMFN0IYhH/wnzIQzRaYVrz1A8sYnRnj4UXDXbOVtWmlaZkO9mipFqZ13okIfN87aDoJWB7VH6hcw=="; 4586 }; 4587 }; 4588 - "jest-validate-26.4.2" = { 4589 name = "jest-validate"; 4590 packageName = "jest-validate"; 4591 - version = "26.4.2"; 4592 src = fetchurl { 4593 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-26.4.2.tgz"; 4594 - sha512 = "blft+xDX7XXghfhY0mrsBCYhX365n8K5wNDC4XAcNKqqjEzsRUSXP44m6PL0QJEW2crxQFLLztVnJ4j7oPlQrQ=="; 4595 }; 4596 }; 4597 - "jest-watcher-26.3.0" = { 4598 name = "jest-watcher"; 4599 packageName = "jest-watcher"; 4600 - version = "26.3.0"; 4601 src = fetchurl { 4602 - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.3.0.tgz"; 4603 - sha512 = "XnLdKmyCGJ3VoF6G/p5ohbJ04q/vv5aH9ENI+i6BL0uu9WWB6Z7Z2lhQQk0d2AVZcRGp1yW+/TsoToMhBFPRdQ=="; 4604 }; 4605 }; 4606 - "jest-worker-26.3.0" = { 4607 name = "jest-worker"; 4608 packageName = "jest-worker"; 4609 - version = "26.3.0"; 4610 src = fetchurl { 4611 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.3.0.tgz"; 4612 - sha512 = "Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw=="; 4613 }; 4614 }; 4615 "js-tokens-4.0.0" = { ··· 4720 sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA=="; 4721 }; 4722 }; 4723 - "jsonfile-6.0.1" = { 4724 name = "jsonfile"; 4725 packageName = "jsonfile"; 4726 - version = "6.0.1"; 4727 src = fetchurl { 4728 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-6.0.1.tgz"; 4729 - sha512 = "jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg=="; 4730 }; 4731 }; 4732 "jsprim-1.4.1" = { ··· 4810 sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; 4811 }; 4812 }; 4813 - "levenary-1.1.1" = { 4814 - name = "levenary"; 4815 - packageName = "levenary"; 4816 - version = "1.1.1"; 4817 - src = fetchurl { 4818 - url = "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz"; 4819 - sha512 = "mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ=="; 4820 - }; 4821 - }; 4822 "levn-0.3.0" = { 4823 name = "levn"; 4824 packageName = "levn"; ··· 4882 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 4883 }; 4884 }; 4885 - "loose-envify-1.4.0" = { 4886 - name = "loose-envify"; 4887 - packageName = "loose-envify"; 4888 - version = "1.4.0"; 4889 - src = fetchurl { 4890 - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; 4891 - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 4892 - }; 4893 - }; 4894 "lunr-2.3.9" = { 4895 name = "lunr"; 4896 packageName = "lunr"; ··· 4945 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 4946 }; 4947 }; 4948 - "marked-1.1.1" = { 4949 name = "marked"; 4950 packageName = "marked"; 4951 - version = "1.1.1"; 4952 src = fetchurl { 4953 - url = "https://registry.npmjs.org/marked/-/marked-1.1.1.tgz"; 4954 - sha512 = "mJzT8D2yPxoPh7h0UXkB+dBj4FykPJ2OIfxAWeIHrvoHDkFxukV/29QxoFQoPM6RLEwhIFdJpmKBlqVM3s2ZIw=="; 4955 }; 4956 }; 4957 "merge-stream-2.0.0" = { ··· 5098 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 5099 }; 5100 }; 5101 - "moment-2.29.0" = { 5102 name = "moment"; 5103 packageName = "moment"; 5104 - version = "2.29.0"; 5105 src = fetchurl { 5106 - url = "https://registry.npmjs.org/moment/-/moment-2.29.0.tgz"; 5107 - sha512 = "z6IJ5HXYiuxvFTI6eiQ9dm77uE0gyy1yXNApVHqTcnIKfY9tIwEjlzsZ6u1LQXvVgKeTnv9Xm7NDvJ7lso3MtA=="; 5108 }; 5109 }; 5110 - "mqtt-4.2.1" = { 5111 name = "mqtt"; 5112 packageName = "mqtt"; 5113 - version = "4.2.1"; 5114 src = fetchurl { 5115 - url = "https://registry.npmjs.org/mqtt/-/mqtt-4.2.1.tgz"; 5116 - sha512 = "Iv893r+jWlo5GkNcPOfCGwW8M49IixwHiKLFFYTociEymSibUVCORVEjPXWPGzSxhn7BdlUeHicbRmWiv0Crkg=="; 5117 }; 5118 }; 5119 "mqtt-packet-6.6.0" = { ··· 5152 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5153 }; 5154 }; 5155 - "nan-2.14.1" = { 5156 name = "nan"; 5157 packageName = "nan"; 5158 - version = "2.14.1"; 5159 src = fetchurl { 5160 - url = "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz"; 5161 - sha512 = "isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw=="; 5162 }; 5163 }; 5164 "nanomatch-1.2.13" = { ··· 5195 src = fetchurl { 5196 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 5197 sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 5198 - }; 5199 - }; 5200 - "next-tick-1.0.0" = { 5201 - name = "next-tick"; 5202 - packageName = "next-tick"; 5203 - version = "1.0.0"; 5204 - src = fetchurl { 5205 - url = "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz"; 5206 - sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c"; 5207 }; 5208 }; 5209 "nice-try-1.0.5" = { ··· 5251 sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; 5252 }; 5253 }; 5254 - "node-releases-1.1.61" = { 5255 name = "node-releases"; 5256 packageName = "node-releases"; 5257 - version = "1.1.61"; 5258 src = fetchurl { 5259 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.61.tgz"; 5260 - sha512 = "DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g=="; 5261 }; 5262 }; 5263 "noop-logger-0.1.1" = { ··· 5377 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 5378 }; 5379 }; 5380 - "object-inspect-1.8.0" = { 5381 - name = "object-inspect"; 5382 - packageName = "object-inspect"; 5383 - version = "1.8.0"; 5384 - src = fetchurl { 5385 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz"; 5386 - sha512 = "jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA=="; 5387 - }; 5388 - }; 5389 "object-keys-1.1.1" = { 5390 name = "object-keys"; 5391 packageName = "object-keys"; ··· 5404 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 5405 }; 5406 }; 5407 - "object.assign-4.1.1" = { 5408 name = "object.assign"; 5409 packageName = "object.assign"; 5410 - version = "4.1.1"; 5411 src = fetchurl { 5412 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz"; 5413 - sha512 = "VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA=="; 5414 }; 5415 }; 5416 "object.pick-1.3.0" = { ··· 5692 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5693 }; 5694 }; 5695 - "prebuild-install-5.3.5" = { 5696 name = "prebuild-install"; 5697 packageName = "prebuild-install"; 5698 - version = "5.3.5"; 5699 src = fetchurl { 5700 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.5.tgz"; 5701 - sha512 = "YmMO7dph9CYKi5IR/BzjOJlRzpxGGVo1EsLSUZ0mt/Mq0HWZIHOKHHcHdT69yG54C9m6i45GpItwRHpk0Py7Uw=="; 5702 }; 5703 }; 5704 "prelude-ls-1.1.2" = { ··· 5719 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 5720 }; 5721 }; 5722 - "pretty-format-25.5.0" = { 5723 name = "pretty-format"; 5724 packageName = "pretty-format"; 5725 - version = "25.5.0"; 5726 src = fetchurl { 5727 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz"; 5728 - sha512 = "kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ=="; 5729 - }; 5730 - }; 5731 - "pretty-format-26.4.2" = { 5732 - name = "pretty-format"; 5733 - packageName = "pretty-format"; 5734 - version = "26.4.2"; 5735 - src = fetchurl { 5736 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-26.4.2.tgz"; 5737 - sha512 = "zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA=="; 5738 }; 5739 }; 5740 "process-nextick-args-2.0.1" = { ··· 5755 sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 5756 }; 5757 }; 5758 - "prompts-2.3.2" = { 5759 name = "prompts"; 5760 packageName = "prompts"; 5761 - version = "2.3.2"; 5762 src = fetchurl { 5763 - url = "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz"; 5764 - sha512 = "Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA=="; 5765 }; 5766 }; 5767 "psl-1.8.0" = { ··· 5836 sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 5837 }; 5838 }; 5839 - "react-is-16.13.1" = { 5840 name = "react-is"; 5841 packageName = "react-is"; 5842 - version = "16.13.1"; 5843 src = fetchurl { 5844 - url = "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"; 5845 - sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 5846 }; 5847 }; 5848 "read-pkg-5.2.0" = { ··· 5890 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 5891 }; 5892 }; 5893 "rechoir-0.6.2" = { 5894 name = "rechoir"; 5895 packageName = "rechoir"; ··· 6070 sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; 6071 }; 6072 }; 6073 - "resolve-1.17.0" = { 6074 name = "resolve"; 6075 packageName = "resolve"; 6076 - version = "1.17.0"; 6077 src = fetchurl { 6078 - url = "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz"; 6079 - sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w=="; 6080 }; 6081 }; 6082 "resolve-cwd-3.0.0" = { ··· 6160 sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="; 6161 }; 6162 }; 6163 - "run-parallel-1.1.9" = { 6164 name = "run-parallel"; 6165 packageName = "run-parallel"; 6166 - version = "1.1.9"; 6167 src = fetchurl { 6168 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz"; 6169 - sha512 = "DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q=="; 6170 }; 6171 }; 6172 "safe-buffer-5.1.2" = { ··· 6268 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6269 }; 6270 }; 6271 - "serialport-9.0.1" = { 6272 name = "serialport"; 6273 packageName = "serialport"; 6274 - version = "9.0.1"; 6275 src = fetchurl { 6276 - url = "https://registry.npmjs.org/serialport/-/serialport-9.0.1.tgz"; 6277 - sha512 = "35Ms8dqjtAb73lptfEZG2l/nFZOxHt3hUjCHvl+g3Mu737gzFLDpSBrRywBJw4G4eS5ozZ3YcthwYnop1WO+ng=="; 6278 }; 6279 }; 6280 "serve-static-1.14.1" = { ··· 6691 sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 6692 }; 6693 }; 6694 - "string.prototype.trimend-1.0.1" = { 6695 - name = "string.prototype.trimend"; 6696 - packageName = "string.prototype.trimend"; 6697 - version = "1.0.1"; 6698 - src = fetchurl { 6699 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 6700 - sha512 = "LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g=="; 6701 - }; 6702 - }; 6703 - "string.prototype.trimstart-1.0.1" = { 6704 - name = "string.prototype.trimstart"; 6705 - packageName = "string.prototype.trimstart"; 6706 - version = "1.0.1"; 6707 - src = fetchurl { 6708 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 6709 - sha512 = "XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw=="; 6710 - }; 6711 - }; 6712 "string_decoder-1.1.1" = { 6713 name = "string_decoder"; 6714 packageName = "string_decoder"; ··· 7033 sha512 = "XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="; 7034 }; 7035 }; 7036 - "tslib-1.13.0" = { 7037 name = "tslib"; 7038 packageName = "tslib"; 7039 - version = "1.13.0"; 7040 src = fetchurl { 7041 - url = "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz"; 7042 - sha512 = "i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="; 7043 }; 7044 }; 7045 "tsutils-3.17.1" = { ··· 7069 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 7070 }; 7071 }; 7072 - "type-1.2.0" = { 7073 - name = "type"; 7074 - packageName = "type"; 7075 - version = "1.2.0"; 7076 - src = fetchurl { 7077 - url = "https://registry.npmjs.org/type/-/type-1.2.0.tgz"; 7078 - sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; 7079 - }; 7080 - }; 7081 - "type-2.1.0" = { 7082 - name = "type"; 7083 - packageName = "type"; 7084 - version = "2.1.0"; 7085 - src = fetchurl { 7086 - url = "https://registry.npmjs.org/type/-/type-2.1.0.tgz"; 7087 - sha512 = "G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="; 7088 - }; 7089 - }; 7090 "type-check-0.3.2" = { 7091 name = "type-check"; 7092 packageName = "type-check"; ··· 7177 sha512 = "Y4Lf+qIb9NTydrexlazAM46SSLrmrQRqWiD52593g53SsmUFioAsMWt8m834J6qsp+7wHRjxCXSZeiiW5cMUdw=="; 7178 }; 7179 }; 7180 - "typedoc-plugin-markdown-3.0.3" = { 7181 name = "typedoc-plugin-markdown"; 7182 packageName = "typedoc-plugin-markdown"; 7183 - version = "3.0.3"; 7184 src = fetchurl { 7185 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.0.3.tgz"; 7186 - sha512 = "cVa9BUkJw5IeadihNDlTy4e5yq1T0ZpNXzc+/vkgxdVJwgt1BQVQHSZYUNDa2R8nrlYmP9yt3ZQDxG9nIg4++A=="; 7187 }; 7188 }; 7189 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7204 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7205 }; 7206 }; 7207 - "typescript-4.0.3" = { 7208 name = "typescript"; 7209 packageName = "typescript"; 7210 - version = "4.0.3"; 7211 src = fetchurl { 7212 - url = "https://registry.npmjs.org/typescript/-/typescript-4.0.3.tgz"; 7213 - sha512 = "tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg=="; 7214 }; 7215 }; 7216 - "uglify-js-3.10.4" = { 7217 name = "uglify-js"; 7218 packageName = "uglify-js"; 7219 - version = "3.10.4"; 7220 src = fetchurl { 7221 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.4.tgz"; 7222 - sha512 = "kBFT3U4Dcj4/pJ52vfjCSfyLyvG9VYYuGYPmrPvAxRw/i7xHiT4VvCev+uiEMcEEiu6UNB6KgWmGtSUYIWScbw=="; 7223 }; 7224 }; 7225 "unc-path-regex-0.1.2" = { ··· 7294 sha512 = "rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug=="; 7295 }; 7296 }; 7297 "unix-dgram-2.0.3" = { 7298 name = "unix-dgram"; 7299 packageName = "unix-dgram"; ··· 7375 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7376 }; 7377 }; 7378 - "uuid-8.3.0" = { 7379 name = "uuid"; 7380 packageName = "uuid"; 7381 - version = "8.3.0"; 7382 src = fetchurl { 7383 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz"; 7384 - sha512 = "fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ=="; 7385 }; 7386 }; 7387 - "v8-compile-cache-2.1.1" = { 7388 name = "v8-compile-cache"; 7389 packageName = "v8-compile-cache"; 7390 - version = "2.1.1"; 7391 src = fetchurl { 7392 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz"; 7393 - sha512 = "8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ=="; 7394 }; 7395 }; 7396 - "v8-to-istanbul-5.0.1" = { 7397 name = "v8-to-istanbul"; 7398 packageName = "v8-to-istanbul"; 7399 - version = "5.0.1"; 7400 src = fetchurl { 7401 - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz"; 7402 - sha512 = "mbDNjuDajqYe3TXFk5qxcQy8L1msXNE37WTlLoqqpBfRsimbNcrlhQlDPntmECEcUvdC+AQ8CyMMf6EUx1r74Q=="; 7403 }; 7404 }; 7405 "validate-npm-package-license-3.0.4" = { ··· 7483 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 7484 }; 7485 }; 7486 - "whatwg-url-8.2.2" = { 7487 name = "whatwg-url"; 7488 packageName = "whatwg-url"; 7489 - version = "8.2.2"; 7490 src = fetchurl { 7491 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.2.2.tgz"; 7492 - sha512 = "PcVnO6NiewhkmzV0qn7A+UZ9Xx4maNTI+O+TShmfE4pqjoCMwUMjkvoNhNHPTvgR7QH9Xt3R13iHuWy2sToFxQ=="; 7493 }; 7494 }; 7495 "which-1.3.1" = { ··· 7681 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 7682 }; 7683 }; 7684 - "zigbee-herdsman-0.13.11" = { 7685 name = "zigbee-herdsman"; 7686 packageName = "zigbee-herdsman"; 7687 - version = "0.13.11"; 7688 src = fetchurl { 7689 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.11.tgz"; 7690 - sha512 = "VgsTcYE9lHyXCaHYgzo0Jbtx69YV34YshfqRrcmst59pMmcGN3Vco3TG9FW7SVIJrsZKtVNKTLaUsxzM/9VcIg=="; 7691 }; 7692 }; 7693 - "zigbee-herdsman-converters-12.0.194" = { 7694 name = "zigbee-herdsman-converters"; 7695 packageName = "zigbee-herdsman-converters"; 7696 - version = "12.0.194"; 7697 src = fetchurl { 7698 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-12.0.194.tgz"; 7699 - sha512 = "0g4hZHKGKIgVNxYZ967tbmijMX/GAKt67dUXizFuMlt3bLTJbzDSfSG4b3XMRfvnDVbFU8gyEs841l7UbO1NzA=="; 7700 }; 7701 }; 7702 - "zigbee2mqtt-frontend-0.2.17" = { 7703 name = "zigbee2mqtt-frontend"; 7704 packageName = "zigbee2mqtt-frontend"; 7705 - version = "0.2.17"; 7706 src = fetchurl { 7707 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.17.tgz"; 7708 - sha512 = "t5Alx8m2aLq5lVWKzY3qc7+YwSE1noRyVTjVBTKL/DgbdwCsKZ/D1J1ZdKyAMAPM2GUsqgBGQU+XmDXZ5TDf8A=="; 7709 }; 7710 }; 7711 }; 7712 args = { 7713 name = "zigbee2mqtt"; 7714 packageName = "zigbee2mqtt"; 7715 - version = "1.15.0"; 7716 src = ./.; 7717 dependencies = [ 7718 sources."@dabh/diagnostics-2.0.2" 7719 - sources."ajv-6.12.5" 7720 sources."argparse-1.0.10" 7721 sources."async-3.2.0" 7722 sources."balanced-match-1.0.0" 7723 sources."base64-js-1.3.1" 7724 sources."bindings-1.5.0" 7725 - (sources."bl-4.0.3" // { 7726 dependencies = [ 7727 - sources."readable-stream-3.6.0" 7728 ]; 7729 }) 7730 - sources."brace-expansion-1.1.11" 7731 - sources."buffer-5.6.0" 7732 - sources."buffer-from-1.1.1" 7733 - sources."callback-stream-1.1.0" 7734 sources."color-3.0.0" 7735 sources."color-convert-1.9.3" 7736 sources."color-name-1.1.3" 7737 - sources."color-string-1.5.3" 7738 sources."colors-1.4.0" 7739 sources."colorspace-1.1.2" 7740 sources."commist-1.1.0" 7741 sources."concat-map-0.0.1" 7742 - sources."concat-stream-1.6.2" 7743 sources."core-util-is-1.0.2" 7744 - sources."d-1.0.1" 7745 sources."debounce-1.2.0" 7746 sources."debug-2.6.9" 7747 sources."depd-1.1.2" 7748 sources."destroy-1.0.4" 7749 - sources."duplexify-3.7.1" 7750 sources."ee-first-1.1.1" 7751 sources."enabled-2.0.0" 7752 sources."encodeurl-1.0.2" 7753 sources."end-of-stream-1.4.4" 7754 - sources."es5-ext-0.10.53" 7755 - sources."es6-iterator-2.0.3" 7756 - sources."es6-map-0.1.5" 7757 - (sources."es6-set-0.1.5" // { 7758 - dependencies = [ 7759 - sources."es6-symbol-3.1.1" 7760 - ]; 7761 - }) 7762 - sources."es6-symbol-3.1.3" 7763 sources."escape-html-1.0.3" 7764 sources."esprima-4.0.1" 7765 sources."etag-1.8.1" 7766 - sources."event-emitter-0.3.5" 7767 sources."eventemitter3-4.0.7" 7768 - (sources."ext-1.4.0" // { 7769 - dependencies = [ 7770 - sources."type-2.1.0" 7771 - ]; 7772 - }) 7773 sources."extend-3.0.2" 7774 sources."fast-deep-equal-3.1.3" 7775 sources."fast-json-stable-stringify-2.1.0" ··· 7784 sources."git-last-commit-1.0.0" 7785 sources."glob-7.1.6" 7786 sources."glob-parent-3.1.0" 7787 - sources."glob-stream-6.1.0" 7788 sources."glossy-0.1.7" 7789 sources."help-me-1.1.0" 7790 sources."http-errors-1.7.3" 7791 sources."http-proxy-1.18.1" 7792 - sources."humanize-duration-3.23.1" 7793 - sources."ieee754-1.1.13" 7794 sources."inflight-1.0.6" 7795 sources."inherits-2.0.4" 7796 sources."is-absolute-1.0.0" ··· 7817 sources."minimatch-3.0.4" 7818 sources."minimist-1.2.5" 7819 sources."mkdir-recursive-0.4.0" 7820 - sources."moment-2.29.0" 7821 - (sources."mqtt-4.2.1" // { 7822 dependencies = [ 7823 sources."debug-4.2.0" 7824 sources."ms-2.1.2" ··· 7831 ]; 7832 }) 7833 sources."ms-2.0.0" 7834 - sources."nan-2.14.1" 7835 - sources."next-tick-1.0.0" 7836 sources."object-assign-deep-0.4.0" 7837 sources."on-finished-2.3.0" 7838 sources."once-1.4.0" 7839 sources."one-time-1.0.0" 7840 - sources."ordered-read-streams-1.0.1" 7841 sources."parseurl-1.3.3" 7842 sources."path-dirname-1.0.2" 7843 sources."path-is-absolute-1.0.1" ··· 7850 }) 7851 sources."punycode-2.1.1" 7852 sources."range-parser-1.2.1" 7853 - sources."readable-stream-2.3.7" 7854 sources."reinterval-1.1.0" 7855 sources."remove-trailing-separator-1.1.0" 7856 sources."requires-port-1.0.0" 7857 sources."rimraf-3.0.2" 7858 - sources."safe-buffer-5.1.2" 7859 sources."semver-7.3.2" 7860 (sources."send-0.17.1" // { 7861 dependencies = [ ··· 7865 sources."serve-static-1.14.1" 7866 sources."setprototypeof-1.1.1" 7867 sources."simple-swizzle-0.2.2" 7868 - (sources."split2-3.2.2" // { 7869 - dependencies = [ 7870 - sources."readable-stream-3.6.0" 7871 - ]; 7872 - }) 7873 sources."sprintf-js-1.0.3" 7874 sources."stack-trace-0.0.10" 7875 sources."statuses-1.5.0" 7876 sources."stream-shift-1.0.1" 7877 - sources."string_decoder-1.1.1" 7878 sources."text-hex-1.0.0" 7879 - sources."through2-2.0.5" 7880 sources."through2-filter-3.0.0" 7881 sources."to-absolute-glob-2.0.2" 7882 sources."toidentifier-1.0.0" 7883 sources."triple-beam-1.3.0" 7884 - sources."type-1.2.0" 7885 sources."typedarray-0.0.6" 7886 sources."unc-path-regex-0.1.2" 7887 sources."unique-stream-2.3.1" ··· 7889 sources."unpipe-1.0.0" 7890 sources."uri-js-4.4.0" 7891 sources."util-deprecate-1.0.2" 7892 - (sources."winston-3.3.3" // { 7893 dependencies = [ 7894 - sources."readable-stream-3.6.0" 7895 ]; 7896 }) 7897 - sources."winston-syslog-2.4.4" 7898 - sources."winston-transport-4.4.0" 7899 sources."wrappy-1.0.2" 7900 sources."ws-7.3.1" 7901 sources."xtend-4.0.2" 7902 - (sources."zigbee-herdsman-0.13.11" // { 7903 dependencies = [ 7904 - sources."@babel/cli-7.11.6" 7905 sources."@babel/code-frame-7.10.4" 7906 - sources."@babel/compat-data-7.11.0" 7907 - sources."@babel/core-7.11.6" 7908 - sources."@babel/generator-7.11.6" 7909 sources."@babel/helper-annotate-as-pure-7.10.4" 7910 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 7911 - sources."@babel/helper-compilation-targets-7.10.4" 7912 - sources."@babel/helper-create-class-features-plugin-7.10.5" 7913 - sources."@babel/helper-create-regexp-features-plugin-7.10.4" 7914 sources."@babel/helper-define-map-7.10.5" 7915 - sources."@babel/helper-explode-assignable-expression-7.11.4" 7916 sources."@babel/helper-function-name-7.10.4" 7917 sources."@babel/helper-get-function-arity-7.10.4" 7918 sources."@babel/helper-hoist-variables-7.10.4" 7919 - sources."@babel/helper-member-expression-to-functions-7.11.0" 7920 - sources."@babel/helper-module-imports-7.10.4" 7921 - sources."@babel/helper-module-transforms-7.11.0" 7922 sources."@babel/helper-optimise-call-expression-7.10.4" 7923 sources."@babel/helper-plugin-utils-7.10.4" 7924 sources."@babel/helper-regex-7.10.5" 7925 - sources."@babel/helper-remap-async-to-generator-7.11.4" 7926 - sources."@babel/helper-replace-supers-7.10.4" 7927 - sources."@babel/helper-simple-access-7.10.4" 7928 - sources."@babel/helper-skip-transparent-expression-wrappers-7.11.0" 7929 sources."@babel/helper-split-export-declaration-7.11.0" 7930 sources."@babel/helper-validator-identifier-7.10.4" 7931 - sources."@babel/helper-wrap-function-7.10.4" 7932 - sources."@babel/helpers-7.10.4" 7933 sources."@babel/highlight-7.10.4" 7934 - sources."@babel/parser-7.11.5" 7935 - sources."@babel/plugin-proposal-async-generator-functions-7.10.5" 7936 - sources."@babel/plugin-proposal-class-properties-7.10.4" 7937 - sources."@babel/plugin-proposal-dynamic-import-7.10.4" 7938 - sources."@babel/plugin-proposal-export-namespace-from-7.10.4" 7939 - sources."@babel/plugin-proposal-json-strings-7.10.4" 7940 - sources."@babel/plugin-proposal-logical-assignment-operators-7.11.0" 7941 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.10.4" 7942 - sources."@babel/plugin-proposal-numeric-separator-7.10.4" 7943 - sources."@babel/plugin-proposal-object-rest-spread-7.11.0" 7944 - sources."@babel/plugin-proposal-optional-catch-binding-7.10.4" 7945 - sources."@babel/plugin-proposal-optional-chaining-7.11.0" 7946 - sources."@babel/plugin-proposal-private-methods-7.10.4" 7947 - sources."@babel/plugin-proposal-unicode-property-regex-7.10.4" 7948 sources."@babel/plugin-syntax-async-generators-7.8.4" 7949 sources."@babel/plugin-syntax-bigint-7.8.3" 7950 - sources."@babel/plugin-syntax-class-properties-7.10.4" 7951 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 7952 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 7953 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 7958 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 7959 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 7960 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 7961 - sources."@babel/plugin-syntax-top-level-await-7.10.4" 7962 - sources."@babel/plugin-syntax-typescript-7.10.4" 7963 - sources."@babel/plugin-transform-arrow-functions-7.10.4" 7964 - sources."@babel/plugin-transform-async-to-generator-7.10.4" 7965 - sources."@babel/plugin-transform-block-scoped-functions-7.10.4" 7966 - sources."@babel/plugin-transform-block-scoping-7.11.1" 7967 - sources."@babel/plugin-transform-classes-7.10.4" 7968 - sources."@babel/plugin-transform-computed-properties-7.10.4" 7969 - sources."@babel/plugin-transform-destructuring-7.10.4" 7970 - sources."@babel/plugin-transform-dotall-regex-7.10.4" 7971 - sources."@babel/plugin-transform-duplicate-keys-7.10.4" 7972 - sources."@babel/plugin-transform-exponentiation-operator-7.10.4" 7973 - sources."@babel/plugin-transform-for-of-7.10.4" 7974 - sources."@babel/plugin-transform-function-name-7.10.4" 7975 - sources."@babel/plugin-transform-literals-7.10.4" 7976 - sources."@babel/plugin-transform-member-expression-literals-7.10.4" 7977 - sources."@babel/plugin-transform-modules-amd-7.10.5" 7978 - sources."@babel/plugin-transform-modules-commonjs-7.10.4" 7979 - sources."@babel/plugin-transform-modules-systemjs-7.10.5" 7980 - sources."@babel/plugin-transform-modules-umd-7.10.4" 7981 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.10.4" 7982 - sources."@babel/plugin-transform-new-target-7.10.4" 7983 - sources."@babel/plugin-transform-object-super-7.10.4" 7984 - sources."@babel/plugin-transform-parameters-7.10.5" 7985 - sources."@babel/plugin-transform-property-literals-7.10.4" 7986 - sources."@babel/plugin-transform-regenerator-7.10.4" 7987 - sources."@babel/plugin-transform-reserved-words-7.10.4" 7988 - sources."@babel/plugin-transform-shorthand-properties-7.10.4" 7989 - sources."@babel/plugin-transform-spread-7.11.0" 7990 - sources."@babel/plugin-transform-sticky-regex-7.10.4" 7991 - sources."@babel/plugin-transform-template-literals-7.10.5" 7992 - sources."@babel/plugin-transform-typeof-symbol-7.10.4" 7993 - sources."@babel/plugin-transform-typescript-7.11.0" 7994 - sources."@babel/plugin-transform-unicode-escapes-7.10.4" 7995 - sources."@babel/plugin-transform-unicode-regex-7.10.4" 7996 - sources."@babel/preset-env-7.11.5" 7997 sources."@babel/preset-modules-0.1.4" 7998 - sources."@babel/preset-typescript-7.10.4" 7999 - sources."@babel/runtime-7.11.2" 8000 sources."@babel/template-7.10.4" 8001 - sources."@babel/traverse-7.11.5" 8002 - sources."@babel/types-7.11.5" 8003 sources."@bcoe/v8-coverage-0.2.3" 8004 sources."@cnakazawa/watch-1.0.4" 8005 - (sources."@eslint/eslintrc-0.1.3" // { 8006 dependencies = [ 8007 sources."globals-12.4.0" 8008 sources."ignore-4.0.6" ··· 8011 }) 8012 sources."@istanbuljs/load-nyc-config-1.1.0" 8013 sources."@istanbuljs/schema-0.1.2" 8014 - (sources."@jest/console-26.3.0" // { 8015 dependencies = [ 8016 - sources."@jest/types-26.3.0" 8017 - sources."@types/istanbul-reports-3.0.0" 8018 - sources."ansi-styles-4.2.1" 8019 sources."chalk-4.1.0" 8020 sources."color-convert-2.0.1" 8021 sources."color-name-1.1.4" ··· 8024 sources."supports-color-7.2.0" 8025 ]; 8026 }) 8027 - (sources."@jest/core-26.4.2" // { 8028 dependencies = [ 8029 - sources."@jest/types-26.3.0" 8030 - sources."@types/istanbul-reports-3.0.0" 8031 sources."ansi-regex-5.0.0" 8032 - sources."ansi-styles-4.2.1" 8033 sources."braces-3.0.2" 8034 sources."chalk-4.1.0" 8035 sources."color-convert-2.0.1" ··· 8045 sources."to-regex-range-5.0.1" 8046 ]; 8047 }) 8048 - (sources."@jest/environment-26.3.0" // { 8049 - dependencies = [ 8050 - sources."@jest/types-26.3.0" 8051 - sources."@types/istanbul-reports-3.0.0" 8052 - sources."ansi-styles-4.2.1" 8053 - sources."chalk-4.1.0" 8054 - sources."color-convert-2.0.1" 8055 - sources."color-name-1.1.4" 8056 - sources."has-flag-4.0.0" 8057 - sources."supports-color-7.2.0" 8058 - ]; 8059 - }) 8060 - (sources."@jest/fake-timers-26.3.0" // { 8061 - dependencies = [ 8062 - sources."@jest/types-26.3.0" 8063 - sources."@types/istanbul-reports-3.0.0" 8064 - sources."ansi-styles-4.2.1" 8065 - sources."chalk-4.1.0" 8066 - sources."color-convert-2.0.1" 8067 - sources."color-name-1.1.4" 8068 - sources."has-flag-4.0.0" 8069 - sources."supports-color-7.2.0" 8070 - ]; 8071 - }) 8072 - (sources."@jest/globals-26.4.2" // { 8073 - dependencies = [ 8074 - sources."@jest/types-26.3.0" 8075 - sources."@types/istanbul-reports-3.0.0" 8076 - sources."ansi-styles-4.2.1" 8077 - sources."chalk-4.1.0" 8078 - sources."color-convert-2.0.1" 8079 - sources."color-name-1.1.4" 8080 - sources."has-flag-4.0.0" 8081 - sources."supports-color-7.2.0" 8082 - ]; 8083 - }) 8084 - (sources."@jest/reporters-26.4.1" // { 8085 dependencies = [ 8086 - sources."@jest/types-26.3.0" 8087 - sources."@types/istanbul-reports-3.0.0" 8088 - sources."ansi-styles-4.2.1" 8089 sources."chalk-4.1.0" 8090 sources."color-convert-2.0.1" 8091 sources."color-name-1.1.4" ··· 8095 sources."supports-color-7.2.0" 8096 ]; 8097 }) 8098 - (sources."@jest/source-map-26.3.0" // { 8099 dependencies = [ 8100 sources."source-map-0.6.1" 8101 ]; 8102 }) 8103 - (sources."@jest/test-result-26.3.0" // { 8104 - dependencies = [ 8105 - sources."@jest/types-26.3.0" 8106 - sources."@types/istanbul-reports-3.0.0" 8107 - sources."ansi-styles-4.2.1" 8108 - sources."chalk-4.1.0" 8109 - sources."color-convert-2.0.1" 8110 - sources."color-name-1.1.4" 8111 - sources."has-flag-4.0.0" 8112 - sources."supports-color-7.2.0" 8113 - ]; 8114 - }) 8115 - sources."@jest/test-sequencer-26.4.2" 8116 - (sources."@jest/transform-26.3.0" // { 8117 dependencies = [ 8118 - sources."@jest/types-26.3.0" 8119 - sources."@types/istanbul-reports-3.0.0" 8120 - sources."ansi-styles-4.2.1" 8121 sources."braces-3.0.2" 8122 sources."chalk-4.1.0" 8123 sources."color-convert-2.0.1" ··· 8132 sources."to-regex-range-5.0.1" 8133 ]; 8134 }) 8135 - (sources."@jest/types-25.5.0" // { 8136 dependencies = [ 8137 - sources."ansi-styles-4.2.1" 8138 - sources."chalk-3.0.0" 8139 sources."color-convert-2.0.1" 8140 sources."color-name-1.1.4" 8141 sources."has-flag-4.0.0" 8142 sources."supports-color-7.2.0" 8143 ]; 8144 }) 8145 sources."@nodelib/fs.scandir-2.1.3" 8146 sources."@nodelib/fs.stat-2.0.3" 8147 sources."@nodelib/fs.walk-1.2.4" 8148 - sources."@serialport/binding-abstract-9.0.1" 8149 - sources."@serialport/binding-mock-9.0.1" 8150 - sources."@serialport/bindings-9.0.1" 8151 sources."@serialport/parser-byte-length-9.0.1" 8152 sources."@serialport/parser-cctalk-9.0.1" 8153 sources."@serialport/parser-delimiter-9.0.1" 8154 sources."@serialport/parser-readline-9.0.1" 8155 sources."@serialport/parser-ready-9.0.1" 8156 sources."@serialport/parser-regex-9.0.1" 8157 - sources."@serialport/stream-9.0.1" 8158 sources."@sinonjs/commons-1.8.1" 8159 sources."@sinonjs/fake-timers-6.0.1" 8160 - sources."@types/babel__core-7.1.10" 8161 sources."@types/babel__generator-7.6.2" 8162 sources."@types/babel__template-7.0.3" 8163 sources."@types/babel__traverse-7.0.15" 8164 - sources."@types/color-name-1.1.1" 8165 sources."@types/debug-4.1.5" 8166 - sources."@types/graceful-fs-4.1.3" 8167 sources."@types/istanbul-lib-coverage-2.0.3" 8168 sources."@types/istanbul-lib-report-3.0.0" 8169 - sources."@types/istanbul-reports-1.1.2" 8170 - sources."@types/jest-26.0.14" 8171 sources."@types/json-schema-7.0.6" 8172 sources."@types/nedb-1.8.11" 8173 - sources."@types/node-14.11.2" 8174 sources."@types/normalize-package-data-2.4.0" 8175 - sources."@types/prettier-2.1.1" 8176 sources."@types/serialport-8.0.1" 8177 - sources."@types/stack-utils-1.0.1" 8178 - sources."@types/yargs-15.0.7" 8179 sources."@types/yargs-parser-15.0.0" 8180 - (sources."@typescript-eslint/eslint-plugin-4.2.0" // { 8181 dependencies = [ 8182 sources."semver-7.3.2" 8183 ]; 8184 }) 8185 - sources."@typescript-eslint/experimental-utils-4.2.0" 8186 - sources."@typescript-eslint/parser-4.2.0" 8187 - sources."@typescript-eslint/scope-manager-4.2.0" 8188 - sources."@typescript-eslint/types-4.2.0" 8189 - (sources."@typescript-eslint/typescript-estree-4.2.0" // { 8190 dependencies = [ 8191 sources."semver-7.3.2" 8192 ]; 8193 }) 8194 - sources."@typescript-eslint/visitor-keys-4.2.0" 8195 sources."abab-2.0.5" 8196 - sources."acorn-7.4.0" 8197 sources."acorn-globals-6.0.0" 8198 sources."acorn-jsx-5.3.1" 8199 sources."acorn-walk-7.2.0" 8200 - sources."ajv-6.12.5" 8201 sources."ansi-colors-4.1.1" 8202 (sources."ansi-escapes-4.3.1" // { 8203 dependencies = [ ··· 8228 sources."at-least-node-1.0.0" 8229 sources."atob-2.1.2" 8230 sources."aws-sign2-0.7.0" 8231 - sources."aws4-1.10.1" 8232 - (sources."babel-jest-26.3.0" // { 8233 dependencies = [ 8234 - sources."@jest/types-26.3.0" 8235 - sources."@types/istanbul-reports-3.0.0" 8236 - sources."ansi-styles-4.2.1" 8237 sources."chalk-4.1.0" 8238 sources."color-convert-2.0.1" 8239 sources."color-name-1.1.4" ··· 8244 }) 8245 sources."babel-plugin-dynamic-import-node-2.3.3" 8246 sources."babel-plugin-istanbul-6.0.0" 8247 - sources."babel-plugin-jest-hoist-26.2.0" 8248 - sources."babel-preset-current-node-syntax-0.1.3" 8249 - sources."babel-preset-jest-26.3.0" 8250 sources."balanced-match-1.0.0" 8251 (sources."base-0.11.2" // { 8252 dependencies = [ ··· 8276 sources."browser-process-hrtime-1.0.0" 8277 sources."browserslist-4.14.5" 8278 sources."bser-2.1.1" 8279 - sources."buffer-5.6.0" 8280 sources."buffer-from-1.1.1" 8281 sources."cache-base-1.0.1" 8282 sources."callsites-3.1.0" 8283 sources."camelcase-5.3.1" 8284 - sources."caniuse-lite-1.0.30001137" 8285 sources."capture-exit-2.0.0" 8286 sources."caseless-0.12.0" 8287 sources."chalk-2.4.2" 8288 sources."char-regex-1.0.2" 8289 - sources."chokidar-2.1.8" 8290 sources."chownr-1.1.4" 8291 sources."ci-info-2.0.0" 8292 (sources."class-utils-0.3.6" // { 8293 dependencies = [ 8294 sources."define-property-0.2.5" ··· 8331 }) 8332 sources."dashdash-1.14.1" 8333 sources."data-urls-2.0.0" 8334 sources."debug-4.2.0" 8335 sources."decamelize-1.2.0" 8336 - sources."decimal.js-10.2.0" 8337 sources."decode-uri-component-0.2.0" 8338 sources."decompress-response-4.2.1" 8339 sources."deep-extend-0.6.0" ··· 8351 sources."delegates-1.0.0" 8352 sources."detect-libc-1.0.3" 8353 sources."detect-newline-3.1.0" 8354 - sources."diff-sequences-25.2.6" 8355 sources."dir-glob-3.0.1" 8356 sources."doctrine-3.0.0" 8357 (sources."domexception-2.0.1" // { ··· 8360 ]; 8361 }) 8362 sources."ecc-jsbn-0.1.2" 8363 - sources."electron-to-chromium-1.3.573" 8364 - sources."emittery-0.7.1" 8365 sources."emoji-regex-7.0.3" 8366 sources."end-of-stream-1.4.4" 8367 sources."enquirer-2.3.6" 8368 sources."error-ex-1.3.2" 8369 - sources."es-abstract-1.18.0-next.0" 8370 - sources."es-to-primitive-1.2.1" 8371 - sources."escalade-3.1.0" 8372 sources."escape-string-regexp-1.0.5" 8373 (sources."escodegen-1.14.3" // { 8374 dependencies = [ ··· 8379 sources."type-check-0.3.2" 8380 ]; 8381 }) 8382 - (sources."eslint-7.10.0" // { 8383 dependencies = [ 8384 sources."ansi-regex-5.0.0" 8385 - sources."ansi-styles-4.2.1" 8386 sources."chalk-4.1.0" 8387 sources."color-convert-2.0.1" 8388 sources."color-name-1.1.4" 8389 sources."cross-spawn-7.0.3" 8390 - sources."eslint-visitor-keys-1.3.0" 8391 sources."glob-parent-5.1.1" 8392 sources."globals-12.4.0" 8393 sources."has-flag-4.0.0" ··· 8439 ]; 8440 }) 8441 sources."expand-template-2.0.3" 8442 - (sources."expect-26.4.2" // { 8443 dependencies = [ 8444 - sources."@jest/types-26.3.0" 8445 - sources."@types/istanbul-reports-3.0.0" 8446 - sources."ansi-styles-4.2.1" 8447 - sources."chalk-4.1.0" 8448 sources."color-convert-2.0.1" 8449 sources."color-name-1.1.4" 8450 - sources."has-flag-4.0.0" 8451 - sources."jest-get-type-26.3.0" 8452 - sources."supports-color-7.2.0" 8453 ]; 8454 }) 8455 sources."extend-3.0.2" ··· 8481 }) 8482 sources."fast-json-stable-stringify-2.1.0" 8483 sources."fast-levenshtein-2.0.6" 8484 - sources."fastq-1.8.0" 8485 sources."fb-watchman-2.0.1" 8486 sources."file-entry-cache-5.0.1" 8487 sources."file-uri-to-path-1.0.0" ··· 8505 sources."function-bind-1.1.1" 8506 sources."functional-red-black-tree-1.0.1" 8507 sources."gauge-2.7.4" 8508 - sources."gensync-1.0.0-beta.1" 8509 sources."get-caller-file-2.0.5" 8510 sources."get-package-type-0.1.0" 8511 sources."get-stream-4.1.0" 8512 sources."get-value-2.0.6" ··· 8543 sources."kind-of-4.0.0" 8544 ]; 8545 }) 8546 - sources."highlight.js-10.2.0" 8547 sources."hosted-git-info-2.8.8" 8548 sources."html-encoding-sniffer-2.0.1" 8549 sources."html-escaper-2.0.2" 8550 sources."http-signature-1.2.0" 8551 sources."human-signals-1.1.1" 8552 sources."iconv-lite-0.4.24" 8553 - sources."ieee754-1.1.13" 8554 sources."ignore-5.1.8" 8555 (sources."import-fresh-3.2.1" // { 8556 dependencies = [ ··· 8563 sources."inherits-2.0.4" 8564 sources."ini-1.3.5" 8565 sources."interpret-1.4.0" 8566 - sources."invariant-2.2.4" 8567 sources."ip-regex-2.1.0" 8568 (sources."is-accessor-descriptor-0.1.6" // { 8569 dependencies = [ ··· 8573 sources."is-arrayish-0.2.1" 8574 sources."is-binary-path-1.0.1" 8575 sources."is-buffer-1.1.6" 8576 - sources."is-callable-1.2.2" 8577 sources."is-ci-2.0.0" 8578 (sources."is-data-descriptor-0.1.4" // { 8579 dependencies = [ 8580 sources."kind-of-3.2.2" 8581 ]; 8582 }) 8583 - sources."is-date-object-1.0.2" 8584 (sources."is-descriptor-0.1.6" // { 8585 dependencies = [ 8586 sources."kind-of-5.1.0" ··· 8592 sources."is-fullwidth-code-point-1.0.0" 8593 sources."is-generator-fn-2.1.0" 8594 sources."is-glob-4.0.1" 8595 - sources."is-negative-zero-2.0.0" 8596 (sources."is-number-3.0.0" // { 8597 dependencies = [ 8598 sources."kind-of-3.2.2" ··· 8600 }) 8601 sources."is-plain-object-2.0.4" 8602 sources."is-potential-custom-element-name-1.0.0" 8603 - sources."is-regex-1.1.1" 8604 sources."is-stream-1.1.0" 8605 - sources."is-symbol-1.0.3" 8606 sources."is-typedarray-1.0.0" 8607 sources."is-windows-1.0.2" 8608 sources."is-wsl-2.2.0" ··· 8630 ]; 8631 }) 8632 sources."istanbul-reports-3.0.2" 8633 - (sources."jest-26.4.2" // { 8634 dependencies = [ 8635 - sources."@jest/types-26.3.0" 8636 - sources."@types/istanbul-reports-3.0.0" 8637 - sources."ansi-styles-4.2.1" 8638 sources."chalk-4.1.0" 8639 sources."color-convert-2.0.1" 8640 sources."color-name-1.1.4" 8641 sources."has-flag-4.0.0" 8642 - sources."jest-cli-26.4.2" 8643 sources."supports-color-7.2.0" 8644 ]; 8645 }) 8646 - (sources."jest-changed-files-26.3.0" // { 8647 dependencies = [ 8648 - sources."@jest/types-26.3.0" 8649 - sources."@types/istanbul-reports-3.0.0" 8650 - sources."ansi-styles-4.2.1" 8651 - sources."chalk-4.1.0" 8652 - sources."color-convert-2.0.1" 8653 - sources."color-name-1.1.4" 8654 sources."cross-spawn-7.0.3" 8655 - sources."execa-4.0.3" 8656 sources."get-stream-5.2.0" 8657 - sources."has-flag-4.0.0" 8658 sources."is-stream-2.0.0" 8659 sources."npm-run-path-4.0.1" 8660 sources."path-key-3.1.1" 8661 sources."shebang-command-2.0.0" 8662 sources."shebang-regex-3.0.0" 8663 - sources."supports-color-7.2.0" 8664 sources."which-2.0.2" 8665 ]; 8666 }) 8667 - (sources."jest-config-26.4.2" // { 8668 dependencies = [ 8669 - sources."@jest/types-26.3.0" 8670 - sources."@types/istanbul-reports-3.0.0" 8671 - sources."ansi-regex-5.0.0" 8672 - sources."ansi-styles-4.2.1" 8673 sources."braces-3.0.2" 8674 sources."chalk-4.1.0" 8675 sources."color-convert-2.0.1" ··· 8677 sources."fill-range-7.0.1" 8678 sources."has-flag-4.0.0" 8679 sources."is-number-7.0.0" 8680 - sources."jest-get-type-26.3.0" 8681 sources."micromatch-4.0.2" 8682 - sources."pretty-format-26.4.2" 8683 sources."supports-color-7.2.0" 8684 sources."to-regex-range-5.0.1" 8685 ]; 8686 }) 8687 - (sources."jest-diff-25.5.0" // { 8688 dependencies = [ 8689 - sources."ansi-styles-4.2.1" 8690 - sources."chalk-3.0.0" 8691 sources."color-convert-2.0.1" 8692 sources."color-name-1.1.4" 8693 sources."has-flag-4.0.0" ··· 8695 ]; 8696 }) 8697 sources."jest-docblock-26.0.0" 8698 - (sources."jest-each-26.4.2" // { 8699 dependencies = [ 8700 - sources."@jest/types-26.3.0" 8701 - sources."@types/istanbul-reports-3.0.0" 8702 - sources."ansi-regex-5.0.0" 8703 - sources."ansi-styles-4.2.1" 8704 sources."chalk-4.1.0" 8705 sources."color-convert-2.0.1" 8706 sources."color-name-1.1.4" 8707 sources."has-flag-4.0.0" 8708 - sources."jest-get-type-26.3.0" 8709 - sources."pretty-format-26.4.2" 8710 sources."supports-color-7.2.0" 8711 ]; 8712 }) 8713 - (sources."jest-environment-jsdom-26.3.0" // { 8714 - dependencies = [ 8715 - sources."@jest/types-26.3.0" 8716 - sources."@types/istanbul-reports-3.0.0" 8717 - sources."ansi-styles-4.2.1" 8718 - sources."chalk-4.1.0" 8719 - sources."color-convert-2.0.1" 8720 - sources."color-name-1.1.4" 8721 - sources."has-flag-4.0.0" 8722 - sources."supports-color-7.2.0" 8723 - ]; 8724 - }) 8725 - (sources."jest-environment-node-26.3.0" // { 8726 - dependencies = [ 8727 - sources."@jest/types-26.3.0" 8728 - sources."@types/istanbul-reports-3.0.0" 8729 - sources."ansi-styles-4.2.1" 8730 - sources."chalk-4.1.0" 8731 - sources."color-convert-2.0.1" 8732 - sources."color-name-1.1.4" 8733 - sources."has-flag-4.0.0" 8734 - sources."supports-color-7.2.0" 8735 - ]; 8736 - }) 8737 - sources."jest-get-type-25.2.6" 8738 - (sources."jest-haste-map-26.3.0" // { 8739 dependencies = [ 8740 - sources."@jest/types-26.3.0" 8741 - sources."@types/istanbul-reports-3.0.0" 8742 - sources."ansi-styles-4.2.1" 8743 sources."anymatch-3.1.1" 8744 sources."braces-3.0.2" 8745 - sources."chalk-4.1.0" 8746 - sources."color-convert-2.0.1" 8747 - sources."color-name-1.1.4" 8748 sources."fill-range-7.0.1" 8749 sources."fsevents-2.1.3" 8750 - sources."has-flag-4.0.0" 8751 sources."is-number-7.0.0" 8752 sources."micromatch-4.0.2" 8753 - sources."supports-color-7.2.0" 8754 sources."to-regex-range-5.0.1" 8755 ]; 8756 }) 8757 - (sources."jest-jasmine2-26.4.2" // { 8758 dependencies = [ 8759 - sources."@jest/types-26.3.0" 8760 - sources."@types/istanbul-reports-3.0.0" 8761 - sources."ansi-regex-5.0.0" 8762 - sources."ansi-styles-4.2.1" 8763 sources."chalk-4.1.0" 8764 sources."color-convert-2.0.1" 8765 sources."color-name-1.1.4" 8766 sources."has-flag-4.0.0" 8767 - sources."pretty-format-26.4.2" 8768 sources."supports-color-7.2.0" 8769 ]; 8770 }) 8771 - (sources."jest-leak-detector-26.4.2" // { 8772 dependencies = [ 8773 - sources."@jest/types-26.3.0" 8774 - sources."@types/istanbul-reports-3.0.0" 8775 - sources."ansi-regex-5.0.0" 8776 - sources."ansi-styles-4.2.1" 8777 sources."chalk-4.1.0" 8778 sources."color-convert-2.0.1" 8779 sources."color-name-1.1.4" 8780 sources."has-flag-4.0.0" 8781 - sources."jest-get-type-26.3.0" 8782 - sources."pretty-format-26.4.2" 8783 sources."supports-color-7.2.0" 8784 ]; 8785 }) 8786 - (sources."jest-matcher-utils-26.4.2" // { 8787 dependencies = [ 8788 - sources."@jest/types-26.3.0" 8789 - sources."@types/istanbul-reports-3.0.0" 8790 - sources."ansi-regex-5.0.0" 8791 - sources."ansi-styles-4.2.1" 8792 - sources."chalk-4.1.0" 8793 - sources."color-convert-2.0.1" 8794 - sources."color-name-1.1.4" 8795 - sources."diff-sequences-26.3.0" 8796 - sources."has-flag-4.0.0" 8797 - sources."jest-diff-26.4.2" 8798 - sources."jest-get-type-26.3.0" 8799 - sources."pretty-format-26.4.2" 8800 - sources."supports-color-7.2.0" 8801 - ]; 8802 - }) 8803 - (sources."jest-message-util-26.3.0" // { 8804 - dependencies = [ 8805 - sources."@jest/types-26.3.0" 8806 - sources."@types/istanbul-reports-3.0.0" 8807 - sources."ansi-styles-4.2.1" 8808 sources."braces-3.0.2" 8809 sources."chalk-4.1.0" 8810 sources."color-convert-2.0.1" ··· 8818 sources."to-regex-range-5.0.1" 8819 ]; 8820 }) 8821 - (sources."jest-mock-26.3.0" // { 8822 - dependencies = [ 8823 - sources."@jest/types-26.3.0" 8824 - sources."@types/istanbul-reports-3.0.0" 8825 - sources."ansi-styles-4.2.1" 8826 - sources."chalk-4.1.0" 8827 - sources."color-convert-2.0.1" 8828 - sources."color-name-1.1.4" 8829 - sources."has-flag-4.0.0" 8830 - sources."supports-color-7.2.0" 8831 - ]; 8832 - }) 8833 sources."jest-pnp-resolver-1.2.2" 8834 sources."jest-regex-util-26.0.0" 8835 - (sources."jest-resolve-26.4.0" // { 8836 dependencies = [ 8837 - sources."@jest/types-26.3.0" 8838 - sources."@types/istanbul-reports-3.0.0" 8839 - sources."ansi-styles-4.2.1" 8840 sources."chalk-4.1.0" 8841 sources."color-convert-2.0.1" 8842 sources."color-name-1.1.4" ··· 8845 sources."supports-color-7.2.0" 8846 ]; 8847 }) 8848 - (sources."jest-resolve-dependencies-26.4.2" // { 8849 - dependencies = [ 8850 - sources."@jest/types-26.3.0" 8851 - sources."@types/istanbul-reports-3.0.0" 8852 - sources."ansi-styles-4.2.1" 8853 - sources."chalk-4.1.0" 8854 - sources."color-convert-2.0.1" 8855 - sources."color-name-1.1.4" 8856 - sources."has-flag-4.0.0" 8857 - sources."supports-color-7.2.0" 8858 - ]; 8859 - }) 8860 - (sources."jest-runner-26.4.2" // { 8861 dependencies = [ 8862 - sources."@jest/types-26.3.0" 8863 - sources."@types/istanbul-reports-3.0.0" 8864 - sources."ansi-styles-4.2.1" 8865 sources."chalk-4.1.0" 8866 sources."color-convert-2.0.1" 8867 sources."color-name-1.1.4" ··· 8869 sources."supports-color-7.2.0" 8870 ]; 8871 }) 8872 - (sources."jest-runtime-26.4.2" // { 8873 dependencies = [ 8874 - sources."@jest/types-26.3.0" 8875 - sources."@types/istanbul-reports-3.0.0" 8876 - sources."ansi-styles-4.2.1" 8877 sources."chalk-4.1.0" 8878 sources."color-convert-2.0.1" 8879 sources."color-name-1.1.4" ··· 8882 sources."supports-color-7.2.0" 8883 ]; 8884 }) 8885 - sources."jest-serializer-26.3.0" 8886 - (sources."jest-snapshot-26.4.2" // { 8887 dependencies = [ 8888 - sources."@jest/types-26.3.0" 8889 - sources."@types/istanbul-reports-3.0.0" 8890 - sources."ansi-regex-5.0.0" 8891 - sources."ansi-styles-4.2.1" 8892 sources."chalk-4.1.0" 8893 sources."color-convert-2.0.1" 8894 sources."color-name-1.1.4" 8895 - sources."diff-sequences-26.3.0" 8896 sources."has-flag-4.0.0" 8897 - sources."jest-diff-26.4.2" 8898 - sources."jest-get-type-26.3.0" 8899 - sources."pretty-format-26.4.2" 8900 sources."semver-7.3.2" 8901 sources."supports-color-7.2.0" 8902 ]; 8903 }) 8904 - (sources."jest-util-26.3.0" // { 8905 dependencies = [ 8906 - sources."@jest/types-26.3.0" 8907 - sources."@types/istanbul-reports-3.0.0" 8908 - sources."ansi-styles-4.2.1" 8909 sources."braces-3.0.2" 8910 sources."chalk-4.1.0" 8911 sources."color-convert-2.0.1" ··· 8918 sources."to-regex-range-5.0.1" 8919 ]; 8920 }) 8921 - (sources."jest-validate-26.4.2" // { 8922 dependencies = [ 8923 - sources."@jest/types-26.3.0" 8924 - sources."@types/istanbul-reports-3.0.0" 8925 - sources."ansi-regex-5.0.0" 8926 - sources."ansi-styles-4.2.1" 8927 - sources."camelcase-6.0.0" 8928 sources."chalk-4.1.0" 8929 sources."color-convert-2.0.1" 8930 sources."color-name-1.1.4" 8931 sources."has-flag-4.0.0" 8932 - sources."jest-get-type-26.3.0" 8933 - sources."pretty-format-26.4.2" 8934 sources."supports-color-7.2.0" 8935 ]; 8936 }) 8937 - (sources."jest-watcher-26.3.0" // { 8938 dependencies = [ 8939 - sources."@jest/types-26.3.0" 8940 - sources."@types/istanbul-reports-3.0.0" 8941 - sources."ansi-styles-4.2.1" 8942 sources."chalk-4.1.0" 8943 sources."color-convert-2.0.1" 8944 sources."color-name-1.1.4" ··· 8946 sources."supports-color-7.2.0" 8947 ]; 8948 }) 8949 - (sources."jest-worker-26.3.0" // { 8950 dependencies = [ 8951 sources."has-flag-4.0.0" 8952 sources."supports-color-7.2.0" ··· 8963 sources."json-stable-stringify-without-jsonify-1.0.1" 8964 sources."json-stringify-safe-5.0.1" 8965 sources."json5-2.1.3" 8966 - sources."jsonfile-6.0.1" 8967 sources."jsprim-1.4.1" 8968 sources."kind-of-6.0.3" 8969 sources."kleur-3.0.3" 8970 sources."leven-3.1.0" 8971 - sources."levenary-1.1.1" 8972 sources."levn-0.4.1" 8973 sources."lines-and-columns-1.1.6" 8974 sources."locate-path-5.0.0" 8975 sources."lodash-4.17.20" 8976 sources."lodash.sortby-4.7.0" 8977 - sources."loose-envify-1.4.0" 8978 sources."lunr-2.3.9" 8979 sources."make-dir-2.1.0" 8980 sources."makeerror-1.0.11" 8981 sources."map-cache-0.2.2" 8982 sources."map-visit-1.0.0" 8983 - sources."marked-1.1.1" 8984 sources."merge-stream-2.0.0" 8985 sources."merge2-1.4.1" 8986 sources."micromatch-3.1.10" ··· 8994 sources."mkdirp-0.5.5" 8995 sources."mkdirp-classic-0.5.3" 8996 sources."ms-2.1.2" 8997 - sources."nan-2.14.1" 8998 sources."nanomatch-1.2.13" 8999 sources."napi-build-utils-1.0.2" 9000 sources."natural-compare-1.4.0" ··· 9009 sources."which-2.0.2" 9010 ]; 9011 }) 9012 - sources."node-releases-1.1.61" 9013 sources."noop-logger-0.1.1" 9014 sources."normalize-package-data-2.5.0" 9015 sources."normalize-path-3.0.0" ··· 9025 sources."kind-of-3.2.2" 9026 ]; 9027 }) 9028 - sources."object-inspect-1.8.0" 9029 sources."object-keys-1.1.1" 9030 sources."object-visit-1.0.1" 9031 - sources."object.assign-4.1.1" 9032 sources."object.pick-1.3.0" 9033 sources."once-1.4.0" 9034 sources."onetime-5.1.2" ··· 9054 sources."pirates-4.0.1" 9055 sources."pkg-dir-4.2.0" 9056 sources."posix-character-classes-0.1.1" 9057 - sources."prebuild-install-5.3.5" 9058 sources."prelude-ls-1.2.1" 9059 - (sources."pretty-format-25.5.0" // { 9060 dependencies = [ 9061 sources."ansi-regex-5.0.0" 9062 - sources."ansi-styles-4.2.1" 9063 sources."color-convert-2.0.1" 9064 sources."color-name-1.1.4" 9065 ]; 9066 }) 9067 sources."process-nextick-args-2.0.1" 9068 sources."progress-2.0.3" 9069 - sources."prompts-2.3.2" 9070 sources."psl-1.8.0" 9071 sources."pump-3.0.0" 9072 sources."punycode-2.1.1" 9073 sources."qs-6.5.2" 9074 sources."rc-1.2.8" 9075 - sources."react-is-16.13.1" 9076 (sources."read-pkg-5.2.0" // { 9077 dependencies = [ 9078 sources."type-fest-0.6.0" ··· 9112 }) 9113 sources."require-directory-2.1.1" 9114 sources."require-main-filename-2.0.0" 9115 - sources."resolve-1.17.0" 9116 sources."resolve-cwd-3.0.0" 9117 sources."resolve-from-5.0.0" 9118 sources."resolve-url-0.2.1" ··· 9120 sources."reusify-1.0.4" 9121 sources."rimraf-2.6.3" 9122 sources."rsvp-4.8.5" 9123 - sources."run-parallel-1.1.9" 9124 sources."safe-buffer-5.1.2" 9125 sources."safe-regex-1.1.0" 9126 sources."safer-buffer-2.1.2" 9127 sources."sane-4.1.0" 9128 sources."saxes-5.0.1" 9129 sources."semver-5.7.1" 9130 - sources."serialport-9.0.1" 9131 sources."set-blocking-2.0.0" 9132 (sources."set-value-2.0.1" // { 9133 dependencies = [ ··· 9203 ]; 9204 }) 9205 sources."string-width-1.0.2" 9206 - (sources."string.prototype.trimend-1.0.1" // { 9207 - dependencies = [ 9208 - sources."es-abstract-1.17.6" 9209 - ]; 9210 - }) 9211 - (sources."string.prototype.trimstart-1.0.1" // { 9212 - dependencies = [ 9213 - sources."es-abstract-1.17.6" 9214 - ]; 9215 - }) 9216 sources."string_decoder-1.1.1" 9217 sources."strip-ansi-3.0.1" 9218 sources."strip-bom-4.0.0" ··· 9256 sources."to-regex-range-2.1.1" 9257 sources."tough-cookie-3.0.1" 9258 sources."tr46-2.0.2" 9259 - sources."tslib-1.13.0" 9260 sources."tsutils-3.17.1" 9261 sources."tunnel-agent-0.6.0" 9262 sources."tweetnacl-0.14.5" ··· 9270 ]; 9271 }) 9272 sources."typedoc-default-themes-0.11.4" 9273 - sources."typedoc-plugin-markdown-3.0.3" 9274 sources."typedoc-plugin-no-inherit-1.2.0" 9275 sources."typedoc-plugin-sourcefile-url-1.0.6" 9276 - sources."typescript-4.0.3" 9277 - sources."uglify-js-3.10.4" 9278 sources."unicode-canonical-property-names-ecmascript-1.0.4" 9279 sources."unicode-match-property-ecmascript-1.0.4" 9280 sources."unicode-match-property-value-ecmascript-1.2.0" ··· 9296 sources."urix-0.1.0" 9297 sources."use-3.1.1" 9298 sources."util-deprecate-1.0.2" 9299 - sources."uuid-8.3.0" 9300 - sources."v8-compile-cache-2.1.1" 9301 - (sources."v8-to-istanbul-5.0.1" // { 9302 dependencies = [ 9303 sources."source-map-0.7.3" 9304 ]; ··· 9311 sources."webidl-conversions-6.1.0" 9312 sources."whatwg-encoding-1.0.5" 9313 sources."whatwg-mimetype-2.3.0" 9314 - sources."whatwg-url-8.2.2" 9315 sources."which-1.3.1" 9316 sources."which-module-2.0.0" 9317 sources."which-pm-runs-1.0.0" ··· 9321 (sources."wrap-ansi-6.2.0" // { 9322 dependencies = [ 9323 sources."ansi-regex-5.0.0" 9324 - sources."ansi-styles-4.2.1" 9325 sources."color-convert-2.0.1" 9326 sources."color-name-1.1.4" 9327 sources."emoji-regex-8.0.0" ··· 9349 sources."yargs-parser-18.1.3" 9350 ]; 9351 }) 9352 - (sources."zigbee-herdsman-converters-12.0.194" // { 9353 dependencies = [ 9354 sources."@babel/code-frame-7.10.4" 9355 - (sources."@babel/core-7.11.6" // { 9356 dependencies = [ 9357 sources."semver-5.7.1" 9358 sources."source-map-0.5.7" 9359 ]; 9360 }) 9361 - (sources."@babel/generator-7.11.6" // { 9362 dependencies = [ 9363 sources."source-map-0.5.7" 9364 ]; 9365 }) 9366 sources."@babel/helper-function-name-7.10.4" 9367 sources."@babel/helper-get-function-arity-7.10.4" 9368 - sources."@babel/helper-member-expression-to-functions-7.11.0" 9369 - sources."@babel/helper-module-imports-7.10.4" 9370 - sources."@babel/helper-module-transforms-7.11.0" 9371 sources."@babel/helper-optimise-call-expression-7.10.4" 9372 sources."@babel/helper-plugin-utils-7.10.4" 9373 - sources."@babel/helper-replace-supers-7.10.4" 9374 - sources."@babel/helper-simple-access-7.10.4" 9375 sources."@babel/helper-split-export-declaration-7.11.0" 9376 sources."@babel/helper-validator-identifier-7.10.4" 9377 - sources."@babel/helpers-7.10.4" 9378 (sources."@babel/highlight-7.10.4" // { 9379 dependencies = [ 9380 sources."chalk-2.4.2" 9381 ]; 9382 }) 9383 - sources."@babel/parser-7.11.5" 9384 sources."@babel/plugin-syntax-async-generators-7.8.4" 9385 sources."@babel/plugin-syntax-bigint-7.8.3" 9386 - sources."@babel/plugin-syntax-class-properties-7.10.4" 9387 sources."@babel/plugin-syntax-import-meta-7.10.4" 9388 sources."@babel/plugin-syntax-json-strings-7.8.3" 9389 sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" ··· 9393 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9394 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9395 sources."@babel/template-7.10.4" 9396 - (sources."@babel/traverse-7.11.5" // { 9397 dependencies = [ 9398 sources."globals-11.12.0" 9399 ]; 9400 }) 9401 - sources."@babel/types-7.11.5" 9402 sources."@bcoe/v8-coverage-0.2.3" 9403 sources."@cnakazawa/watch-1.0.4" 9404 - sources."@eslint/eslintrc-0.1.3" 9405 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9406 dependencies = [ 9407 sources."resolve-from-5.0.0" 9408 ]; 9409 }) 9410 sources."@istanbuljs/schema-0.1.2" 9411 - sources."@jest/console-26.3.0" 9412 - (sources."@jest/core-26.4.2" // { 9413 dependencies = [ 9414 sources."rimraf-3.0.2" 9415 ]; 9416 }) 9417 - sources."@jest/environment-26.3.0" 9418 - sources."@jest/fake-timers-26.3.0" 9419 - sources."@jest/globals-26.4.2" 9420 - sources."@jest/reporters-26.4.1" 9421 - sources."@jest/source-map-26.3.0" 9422 - sources."@jest/test-result-26.3.0" 9423 - sources."@jest/test-sequencer-26.4.2" 9424 - sources."@jest/transform-26.3.0" 9425 - sources."@jest/types-26.3.0" 9426 sources."@nodelib/fs.scandir-2.1.3" 9427 sources."@nodelib/fs.stat-2.0.3" 9428 sources."@nodelib/fs.walk-1.2.4" 9429 sources."@sinonjs/commons-1.8.1" 9430 sources."@sinonjs/fake-timers-6.0.1" 9431 - sources."@types/babel__core-7.1.10" 9432 sources."@types/babel__generator-7.6.2" 9433 sources."@types/babel__template-7.0.3" 9434 sources."@types/babel__traverse-7.0.15" 9435 - sources."@types/color-name-1.1.1" 9436 - sources."@types/graceful-fs-4.1.3" 9437 sources."@types/istanbul-lib-coverage-2.0.3" 9438 sources."@types/istanbul-lib-report-3.0.0" 9439 sources."@types/istanbul-reports-3.0.0" 9440 sources."@types/json-schema-7.0.6" 9441 - sources."@types/node-14.11.2" 9442 sources."@types/normalize-package-data-2.4.0" 9443 - sources."@types/prettier-2.1.1" 9444 - sources."@types/stack-utils-1.0.1" 9445 - sources."@types/yargs-15.0.7" 9446 sources."@types/yargs-parser-15.0.0" 9447 - sources."@typescript-eslint/experimental-utils-4.2.0" 9448 - sources."@typescript-eslint/scope-manager-4.2.0" 9449 - sources."@typescript-eslint/types-4.2.0" 9450 - sources."@typescript-eslint/typescript-estree-4.2.0" 9451 - (sources."@typescript-eslint/visitor-keys-4.2.0" // { 9452 - dependencies = [ 9453 - sources."eslint-visitor-keys-2.0.0" 9454 - ]; 9455 - }) 9456 sources."abab-2.0.5" 9457 - sources."acorn-7.4.0" 9458 sources."acorn-globals-6.0.0" 9459 sources."acorn-jsx-5.3.1" 9460 sources."acorn-walk-7.2.0" 9461 - sources."agent-base-6.0.1" 9462 - sources."ajv-6.12.5" 9463 sources."ansi-colors-4.1.1" 9464 (sources."ansi-escapes-4.3.1" // { 9465 dependencies = [ ··· 9482 sources."asynckit-0.4.0" 9483 sources."atob-2.1.2" 9484 sources."aws-sign2-0.7.0" 9485 - sources."aws4-1.10.1" 9486 - sources."axios-0.20.0" 9487 - sources."babel-jest-26.3.0" 9488 sources."babel-plugin-istanbul-6.0.0" 9489 - sources."babel-plugin-jest-hoist-26.2.0" 9490 - sources."babel-preset-current-node-syntax-0.1.3" 9491 - sources."babel-preset-jest-26.3.0" 9492 sources."balanced-match-1.0.0" 9493 (sources."base-0.11.2" // { 9494 dependencies = [ ··· 9505 sources."braces-3.0.2" 9506 sources."browser-process-hrtime-1.0.0" 9507 sources."bser-2.1.1" 9508 - sources."buffer-5.6.0" 9509 sources."buffer-from-1.1.1" 9510 sources."cache-base-1.0.1" 9511 sources."callsites-3.1.0" ··· 9514 sources."caseless-0.12.0" 9515 (sources."chalk-4.1.0" // { 9516 dependencies = [ 9517 - sources."ansi-styles-4.2.1" 9518 sources."color-convert-2.0.1" 9519 sources."color-name-1.1.4" 9520 sources."has-flag-4.0.0" ··· 9523 }) 9524 sources."char-regex-1.0.2" 9525 sources."ci-info-2.0.0" 9526 (sources."class-utils-0.3.6" // { 9527 dependencies = [ 9528 sources."define-property-0.2.5" ··· 9561 sources."data-urls-2.0.0" 9562 sources."debug-4.2.0" 9563 sources."decamelize-1.2.0" 9564 - sources."decimal.js-10.2.0" 9565 sources."decode-uri-component-0.2.0" 9566 sources."deep-is-0.1.3" 9567 sources."deepmerge-4.2.2" ··· 9574 }) 9575 sources."delayed-stream-1.0.0" 9576 sources."detect-newline-3.1.0" 9577 - sources."diff-sequences-26.3.0" 9578 sources."dir-glob-3.0.1" 9579 sources."doctrine-3.0.0" 9580 (sources."domexception-2.0.1" // { ··· 9583 ]; 9584 }) 9585 sources."ecc-jsbn-0.1.2" 9586 - sources."emittery-0.7.1" 9587 sources."emoji-regex-7.0.3" 9588 sources."end-of-stream-1.4.4" 9589 sources."enquirer-2.3.6" ··· 9597 sources."type-check-0.3.2" 9598 ]; 9599 }) 9600 - sources."eslint-7.10.0" 9601 sources."eslint-config-google-0.14.0" 9602 - sources."eslint-plugin-jest-24.0.2" 9603 sources."eslint-scope-5.1.1" 9604 - sources."eslint-utils-2.1.0" 9605 - sources."eslint-visitor-keys-1.3.0" 9606 - sources."espree-7.3.0" 9607 sources."esprima-4.0.1" 9608 (sources."esquery-1.3.1" // { 9609 dependencies = [ ··· 9637 sources."ms-2.0.0" 9638 ]; 9639 }) 9640 - (sources."expect-26.4.2" // { 9641 dependencies = [ 9642 - sources."ansi-styles-4.2.1" 9643 sources."color-convert-2.0.1" 9644 sources."color-name-1.1.4" 9645 ]; ··· 9664 sources."fast-glob-3.2.4" 9665 sources."fast-json-stable-stringify-2.1.0" 9666 sources."fast-levenshtein-2.0.6" 9667 - sources."fastq-1.8.0" 9668 sources."fb-watchman-2.0.1" 9669 sources."file-entry-cache-5.0.1" 9670 sources."fill-range-7.0.1" ··· 9679 sources."fs-constants-1.0.0" 9680 sources."fs.realpath-1.0.0" 9681 sources."fsevents-2.1.3" 9682 sources."functional-red-black-tree-1.0.1" 9683 - sources."gensync-1.0.0-beta.1" 9684 sources."get-caller-file-2.0.5" 9685 sources."get-package-type-0.1.0" 9686 sources."get-stream-4.1.0" ··· 9698 sources."growly-1.3.0" 9699 sources."har-schema-2.0.0" 9700 sources."har-validator-5.1.5" 9701 sources."has-flag-3.0.0" 9702 sources."has-value-1.0.0" 9703 (sources."has-values-1.0.0" // { ··· 9717 sources."https-proxy-agent-5.0.0" 9718 sources."human-signals-1.1.1" 9719 sources."iconv-lite-0.4.24" 9720 - sources."ieee754-1.1.13" 9721 sources."ignore-4.0.6" 9722 sources."import-fresh-3.2.1" 9723 sources."import-local-3.0.2" ··· 9733 sources."is-arrayish-0.2.1" 9734 sources."is-buffer-1.1.6" 9735 sources."is-ci-2.0.0" 9736 (sources."is-data-descriptor-0.1.4" // { 9737 dependencies = [ 9738 sources."kind-of-3.2.2" ··· 9774 }) 9775 sources."istanbul-lib-source-maps-4.0.0" 9776 sources."istanbul-reports-3.0.2" 9777 - (sources."jest-26.4.2" // { 9778 dependencies = [ 9779 - sources."jest-cli-26.4.2" 9780 ]; 9781 }) 9782 - (sources."jest-changed-files-26.3.0" // { 9783 dependencies = [ 9784 - sources."execa-4.0.3" 9785 sources."get-stream-5.2.0" 9786 sources."is-stream-2.0.0" 9787 sources."npm-run-path-4.0.1" 9788 ]; 9789 }) 9790 - sources."jest-config-26.4.2" 9791 - sources."jest-diff-26.4.2" 9792 sources."jest-docblock-26.0.0" 9793 - sources."jest-each-26.4.2" 9794 - sources."jest-environment-jsdom-26.3.0" 9795 - sources."jest-environment-node-26.3.0" 9796 sources."jest-get-type-26.3.0" 9797 - sources."jest-haste-map-26.3.0" 9798 - sources."jest-jasmine2-26.4.2" 9799 - sources."jest-leak-detector-26.4.2" 9800 - sources."jest-matcher-utils-26.4.2" 9801 - sources."jest-message-util-26.3.0" 9802 - sources."jest-mock-26.3.0" 9803 sources."jest-pnp-resolver-1.2.2" 9804 sources."jest-regex-util-26.0.0" 9805 - sources."jest-resolve-26.4.0" 9806 - sources."jest-resolve-dependencies-26.4.2" 9807 - sources."jest-runner-26.4.2" 9808 - sources."jest-runtime-26.4.2" 9809 - sources."jest-serializer-26.3.0" 9810 - sources."jest-snapshot-26.4.2" 9811 - sources."jest-util-26.3.0" 9812 - (sources."jest-validate-26.4.2" // { 9813 dependencies = [ 9814 - sources."camelcase-6.0.0" 9815 ]; 9816 }) 9817 - sources."jest-watcher-26.3.0" 9818 - (sources."jest-worker-26.3.0" // { 9819 dependencies = [ 9820 sources."has-flag-4.0.0" 9821 sources."supports-color-7.2.0" ··· 9914 sources."pkg-dir-4.2.0" 9915 sources."posix-character-classes-0.1.1" 9916 sources."prelude-ls-1.2.1" 9917 - (sources."pretty-format-26.4.2" // { 9918 dependencies = [ 9919 - sources."ansi-styles-4.2.1" 9920 sources."color-convert-2.0.1" 9921 sources."color-name-1.1.4" 9922 ]; 9923 }) 9924 sources."progress-2.0.3" 9925 - sources."prompts-2.3.2" 9926 sources."psl-1.8.0" 9927 sources."pump-3.0.0" 9928 sources."punycode-2.1.1" 9929 sources."qs-6.5.2" 9930 - sources."react-is-16.13.1" 9931 (sources."read-pkg-5.2.0" // { 9932 dependencies = [ 9933 sources."type-fest-0.6.0" ··· 9954 }) 9955 sources."require-directory-2.1.1" 9956 sources."require-main-filename-2.0.0" 9957 - sources."resolve-1.17.0" 9958 (sources."resolve-cwd-3.0.0" // { 9959 dependencies = [ 9960 sources."resolve-from-5.0.0" ··· 9966 sources."reusify-1.0.4" 9967 sources."rimraf-2.6.3" 9968 sources."rsvp-4.8.5" 9969 - sources."run-parallel-1.1.9" 9970 sources."safe-buffer-5.2.1" 9971 sources."safe-regex-1.1.0" 9972 sources."safer-buffer-2.1.2" ··· 10090 sources."to-regex-range-5.0.1" 10091 sources."tough-cookie-3.0.1" 10092 sources."tr46-2.0.2" 10093 - sources."tslib-1.13.0" 10094 sources."tsutils-3.17.1" 10095 sources."tunnel-agent-0.6.0" 10096 sources."tweetnacl-0.14.5" ··· 10113 sources."urix-0.1.0" 10114 sources."use-3.1.1" 10115 sources."util-deprecate-1.0.2" 10116 - sources."uuid-8.3.0" 10117 - sources."v8-compile-cache-2.1.1" 10118 - (sources."v8-to-istanbul-5.0.1" // { 10119 dependencies = [ 10120 sources."source-map-0.7.3" 10121 ]; ··· 10128 sources."webidl-conversions-6.1.0" 10129 sources."whatwg-encoding-1.0.5" 10130 sources."whatwg-mimetype-2.3.0" 10131 - sources."whatwg-url-8.2.2" 10132 sources."which-2.0.2" 10133 sources."which-module-2.0.0" 10134 sources."word-wrap-1.2.3" 10135 (sources."wrap-ansi-6.2.0" // { 10136 dependencies = [ 10137 - sources."ansi-styles-4.2.1" 10138 sources."color-convert-2.0.1" 10139 sources."color-name-1.1.4" 10140 sources."emoji-regex-8.0.0" ··· 10159 sources."yargs-parser-18.1.3" 10160 ]; 10161 }) 10162 - sources."zigbee2mqtt-frontend-0.2.17" 10163 ]; 10164 buildInputs = globalBuildInputs; 10165 meta = {
··· 4 5 let 6 sources = { 7 + "@babel/cli-7.12.1" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 + version = "7.12.1"; 11 src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.1.tgz"; 13 + sha512 = "eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g=="; 14 }; 15 }; 16 "@babel/code-frame-7.10.4" = { ··· 22 sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="; 23 }; 24 }; 25 + "@babel/compat-data-7.12.1" = { 26 name = "_at_babel_slash_compat-data"; 27 packageName = "@babel/compat-data"; 28 + version = "7.12.1"; 29 src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz"; 31 + sha512 = "725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="; 32 }; 33 }; 34 + "@babel/core-7.12.3" = { 35 name = "_at_babel_slash_core"; 36 packageName = "@babel/core"; 37 + version = "7.12.3"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz"; 40 + sha512 = "0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g=="; 41 }; 42 }; 43 + "@babel/generator-7.12.1" = { 44 name = "_at_babel_slash_generator"; 45 packageName = "@babel/generator"; 46 + version = "7.12.1"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz"; 49 + sha512 = "DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg=="; 50 }; 51 }; 52 "@babel/helper-annotate-as-pure-7.10.4" = { ··· 67 sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg=="; 68 }; 69 }; 70 + "@babel/helper-compilation-targets-7.12.1" = { 71 name = "_at_babel_slash_helper-compilation-targets"; 72 packageName = "@babel/helper-compilation-targets"; 73 + version = "7.12.1"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz"; 76 + sha512 = "jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g=="; 77 }; 78 }; 79 + "@babel/helper-create-class-features-plugin-7.12.1" = { 80 name = "_at_babel_slash_helper-create-class-features-plugin"; 81 packageName = "@babel/helper-create-class-features-plugin"; 82 + version = "7.12.1"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz"; 85 + sha512 = "hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w=="; 86 }; 87 }; 88 + "@babel/helper-create-regexp-features-plugin-7.12.1" = { 89 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 90 packageName = "@babel/helper-create-regexp-features-plugin"; 91 + version = "7.12.1"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz"; 94 + sha512 = "rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA=="; 95 }; 96 }; 97 "@babel/helper-define-map-7.10.5" = { ··· 103 sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ=="; 104 }; 105 }; 106 + "@babel/helper-explode-assignable-expression-7.12.1" = { 107 name = "_at_babel_slash_helper-explode-assignable-expression"; 108 packageName = "@babel/helper-explode-assignable-expression"; 109 + version = "7.12.1"; 110 src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz"; 112 + sha512 = "dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA=="; 113 }; 114 }; 115 "@babel/helper-function-name-7.10.4" = { ··· 139 sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA=="; 140 }; 141 }; 142 + "@babel/helper-member-expression-to-functions-7.12.1" = { 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 144 packageName = "@babel/helper-member-expression-to-functions"; 145 + version = "7.12.1"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"; 148 + sha512 = "k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ=="; 149 }; 150 }; 151 + "@babel/helper-module-imports-7.12.1" = { 152 name = "_at_babel_slash_helper-module-imports"; 153 packageName = "@babel/helper-module-imports"; 154 + version = "7.12.1"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz"; 157 + sha512 = "ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA=="; 158 }; 159 }; 160 + "@babel/helper-module-transforms-7.12.1" = { 161 name = "_at_babel_slash_helper-module-transforms"; 162 packageName = "@babel/helper-module-transforms"; 163 + version = "7.12.1"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"; 166 + sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w=="; 167 }; 168 }; 169 "@babel/helper-optimise-call-expression-7.10.4" = { ··· 193 sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg=="; 194 }; 195 }; 196 + "@babel/helper-remap-async-to-generator-7.12.1" = { 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 198 packageName = "@babel/helper-remap-async-to-generator"; 199 + version = "7.12.1"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz"; 202 + sha512 = "9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A=="; 203 }; 204 }; 205 + "@babel/helper-replace-supers-7.12.1" = { 206 name = "_at_babel_slash_helper-replace-supers"; 207 packageName = "@babel/helper-replace-supers"; 208 + version = "7.12.1"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz"; 211 + sha512 = "zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw=="; 212 }; 213 }; 214 + "@babel/helper-simple-access-7.12.1" = { 215 name = "_at_babel_slash_helper-simple-access"; 216 packageName = "@babel/helper-simple-access"; 217 + version = "7.12.1"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"; 220 + sha512 = "OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA=="; 221 }; 222 }; 223 + "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { 224 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 225 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 226 + version = "7.12.1"; 227 src = fetchurl { 228 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"; 229 + sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 230 }; 231 }; 232 "@babel/helper-split-export-declaration-7.11.0" = { ··· 247 sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="; 248 }; 249 }; 250 + "@babel/helper-validator-option-7.12.1" = { 251 + name = "_at_babel_slash_helper-validator-option"; 252 + packageName = "@babel/helper-validator-option"; 253 + version = "7.12.1"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz"; 256 + sha512 = "YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A=="; 257 + }; 258 + }; 259 + "@babel/helper-wrap-function-7.12.3" = { 260 name = "_at_babel_slash_helper-wrap-function"; 261 packageName = "@babel/helper-wrap-function"; 262 + version = "7.12.3"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz"; 265 + sha512 = "Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow=="; 266 }; 267 }; 268 + "@babel/helpers-7.12.1" = { 269 name = "_at_babel_slash_helpers"; 270 packageName = "@babel/helpers"; 271 + version = "7.12.1"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz"; 274 + sha512 = "9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g=="; 275 }; 276 }; 277 "@babel/highlight-7.10.4" = { ··· 283 sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 284 }; 285 }; 286 + "@babel/parser-7.12.3" = { 287 name = "_at_babel_slash_parser"; 288 packageName = "@babel/parser"; 289 + version = "7.12.3"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz"; 292 + sha512 = "kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="; 293 }; 294 }; 295 + "@babel/plugin-proposal-async-generator-functions-7.12.1" = { 296 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 297 packageName = "@babel/plugin-proposal-async-generator-functions"; 298 + version = "7.12.1"; 299 src = fetchurl { 300 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz"; 301 + sha512 = "d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A=="; 302 }; 303 }; 304 + "@babel/plugin-proposal-class-properties-7.12.1" = { 305 name = "_at_babel_slash_plugin-proposal-class-properties"; 306 packageName = "@babel/plugin-proposal-class-properties"; 307 + version = "7.12.1"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz"; 310 + sha512 = "cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w=="; 311 }; 312 }; 313 + "@babel/plugin-proposal-dynamic-import-7.12.1" = { 314 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 315 packageName = "@babel/plugin-proposal-dynamic-import"; 316 + version = "7.12.1"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz"; 319 + sha512 = "a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ=="; 320 }; 321 }; 322 + "@babel/plugin-proposal-export-namespace-from-7.12.1" = { 323 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 324 packageName = "@babel/plugin-proposal-export-namespace-from"; 325 + version = "7.12.1"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz"; 328 + sha512 = "6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw=="; 329 }; 330 }; 331 + "@babel/plugin-proposal-json-strings-7.12.1" = { 332 name = "_at_babel_slash_plugin-proposal-json-strings"; 333 packageName = "@babel/plugin-proposal-json-strings"; 334 + version = "7.12.1"; 335 src = fetchurl { 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz"; 337 + sha512 = "GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw=="; 338 }; 339 }; 340 + "@babel/plugin-proposal-logical-assignment-operators-7.12.1" = { 341 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 342 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 343 + version = "7.12.1"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz"; 346 + sha512 = "k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA=="; 347 }; 348 }; 349 + "@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" = { 350 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 351 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 352 + version = "7.12.1"; 353 src = fetchurl { 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz"; 355 + sha512 = "nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg=="; 356 }; 357 }; 358 + "@babel/plugin-proposal-numeric-separator-7.12.1" = { 359 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 360 packageName = "@babel/plugin-proposal-numeric-separator"; 361 + version = "7.12.1"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz"; 364 + sha512 = "MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA=="; 365 }; 366 }; 367 + "@babel/plugin-proposal-object-rest-spread-7.12.1" = { 368 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 369 packageName = "@babel/plugin-proposal-object-rest-spread"; 370 + version = "7.12.1"; 371 src = fetchurl { 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz"; 373 + sha512 = "s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA=="; 374 }; 375 }; 376 + "@babel/plugin-proposal-optional-catch-binding-7.12.1" = { 377 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 378 packageName = "@babel/plugin-proposal-optional-catch-binding"; 379 + version = "7.12.1"; 380 src = fetchurl { 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz"; 382 + sha512 = "hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g=="; 383 }; 384 }; 385 + "@babel/plugin-proposal-optional-chaining-7.12.1" = { 386 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 387 packageName = "@babel/plugin-proposal-optional-chaining"; 388 + version = "7.12.1"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz"; 391 + sha512 = "c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw=="; 392 }; 393 }; 394 + "@babel/plugin-proposal-private-methods-7.12.1" = { 395 name = "_at_babel_slash_plugin-proposal-private-methods"; 396 packageName = "@babel/plugin-proposal-private-methods"; 397 + version = "7.12.1"; 398 src = fetchurl { 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz"; 400 + sha512 = "mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w=="; 401 }; 402 }; 403 + "@babel/plugin-proposal-unicode-property-regex-7.12.1" = { 404 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 405 packageName = "@babel/plugin-proposal-unicode-property-regex"; 406 + version = "7.12.1"; 407 src = fetchurl { 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz"; 409 + sha512 = "MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w=="; 410 }; 411 }; 412 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 427 sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; 428 }; 429 }; 430 + "@babel/plugin-syntax-class-properties-7.12.1" = { 431 name = "_at_babel_slash_plugin-syntax-class-properties"; 432 packageName = "@babel/plugin-syntax-class-properties"; 433 + version = "7.12.1"; 434 src = fetchurl { 435 + url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz"; 436 + sha512 = "U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA=="; 437 }; 438 }; 439 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 526 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 527 }; 528 }; 529 + "@babel/plugin-syntax-top-level-await-7.12.1" = { 530 name = "_at_babel_slash_plugin-syntax-top-level-await"; 531 packageName = "@babel/plugin-syntax-top-level-await"; 532 + version = "7.12.1"; 533 src = fetchurl { 534 + url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz"; 535 + sha512 = "i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A=="; 536 }; 537 }; 538 + "@babel/plugin-syntax-typescript-7.12.1" = { 539 name = "_at_babel_slash_plugin-syntax-typescript"; 540 packageName = "@babel/plugin-syntax-typescript"; 541 + version = "7.12.1"; 542 src = fetchurl { 543 + url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz"; 544 + sha512 = "UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA=="; 545 }; 546 }; 547 + "@babel/plugin-transform-arrow-functions-7.12.1" = { 548 name = "_at_babel_slash_plugin-transform-arrow-functions"; 549 packageName = "@babel/plugin-transform-arrow-functions"; 550 + version = "7.12.1"; 551 src = fetchurl { 552 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz"; 553 + sha512 = "5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A=="; 554 }; 555 }; 556 + "@babel/plugin-transform-async-to-generator-7.12.1" = { 557 name = "_at_babel_slash_plugin-transform-async-to-generator"; 558 packageName = "@babel/plugin-transform-async-to-generator"; 559 + version = "7.12.1"; 560 src = fetchurl { 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz"; 562 + sha512 = "SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A=="; 563 }; 564 }; 565 + "@babel/plugin-transform-block-scoped-functions-7.12.1" = { 566 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 567 packageName = "@babel/plugin-transform-block-scoped-functions"; 568 + version = "7.12.1"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz"; 571 + sha512 = "5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA=="; 572 }; 573 }; 574 + "@babel/plugin-transform-block-scoping-7.12.1" = { 575 name = "_at_babel_slash_plugin-transform-block-scoping"; 576 packageName = "@babel/plugin-transform-block-scoping"; 577 + version = "7.12.1"; 578 src = fetchurl { 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz"; 580 + sha512 = "zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w=="; 581 }; 582 }; 583 + "@babel/plugin-transform-classes-7.12.1" = { 584 name = "_at_babel_slash_plugin-transform-classes"; 585 packageName = "@babel/plugin-transform-classes"; 586 + version = "7.12.1"; 587 src = fetchurl { 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz"; 589 + sha512 = "/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog=="; 590 }; 591 }; 592 + "@babel/plugin-transform-computed-properties-7.12.1" = { 593 name = "_at_babel_slash_plugin-transform-computed-properties"; 594 packageName = "@babel/plugin-transform-computed-properties"; 595 + version = "7.12.1"; 596 src = fetchurl { 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz"; 598 + sha512 = "vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg=="; 599 }; 600 }; 601 + "@babel/plugin-transform-destructuring-7.12.1" = { 602 name = "_at_babel_slash_plugin-transform-destructuring"; 603 packageName = "@babel/plugin-transform-destructuring"; 604 + version = "7.12.1"; 605 src = fetchurl { 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz"; 607 + sha512 = "fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw=="; 608 }; 609 }; 610 + "@babel/plugin-transform-dotall-regex-7.12.1" = { 611 name = "_at_babel_slash_plugin-transform-dotall-regex"; 612 packageName = "@babel/plugin-transform-dotall-regex"; 613 + version = "7.12.1"; 614 src = fetchurl { 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz"; 616 + sha512 = "B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA=="; 617 }; 618 }; 619 + "@babel/plugin-transform-duplicate-keys-7.12.1" = { 620 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 621 packageName = "@babel/plugin-transform-duplicate-keys"; 622 + version = "7.12.1"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz"; 625 + sha512 = "iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw=="; 626 }; 627 }; 628 + "@babel/plugin-transform-exponentiation-operator-7.12.1" = { 629 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 630 packageName = "@babel/plugin-transform-exponentiation-operator"; 631 + version = "7.12.1"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz"; 634 + sha512 = "7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug=="; 635 }; 636 }; 637 + "@babel/plugin-transform-for-of-7.12.1" = { 638 name = "_at_babel_slash_plugin-transform-for-of"; 639 packageName = "@babel/plugin-transform-for-of"; 640 + version = "7.12.1"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz"; 643 + sha512 = "Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg=="; 644 }; 645 }; 646 + "@babel/plugin-transform-function-name-7.12.1" = { 647 name = "_at_babel_slash_plugin-transform-function-name"; 648 packageName = "@babel/plugin-transform-function-name"; 649 + version = "7.12.1"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz"; 652 + sha512 = "JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw=="; 653 }; 654 }; 655 + "@babel/plugin-transform-literals-7.12.1" = { 656 name = "_at_babel_slash_plugin-transform-literals"; 657 packageName = "@babel/plugin-transform-literals"; 658 + version = "7.12.1"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz"; 661 + sha512 = "+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ=="; 662 }; 663 }; 664 + "@babel/plugin-transform-member-expression-literals-7.12.1" = { 665 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 666 packageName = "@babel/plugin-transform-member-expression-literals"; 667 + version = "7.12.1"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz"; 670 + sha512 = "1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg=="; 671 }; 672 }; 673 + "@babel/plugin-transform-modules-amd-7.12.1" = { 674 name = "_at_babel_slash_plugin-transform-modules-amd"; 675 packageName = "@babel/plugin-transform-modules-amd"; 676 + version = "7.12.1"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz"; 679 + sha512 = "tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ=="; 680 }; 681 }; 682 + "@babel/plugin-transform-modules-commonjs-7.12.1" = { 683 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 684 packageName = "@babel/plugin-transform-modules-commonjs"; 685 + version = "7.12.1"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz"; 688 + sha512 = "dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag=="; 689 }; 690 }; 691 + "@babel/plugin-transform-modules-systemjs-7.12.1" = { 692 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 693 packageName = "@babel/plugin-transform-modules-systemjs"; 694 + version = "7.12.1"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz"; 697 + sha512 = "Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q=="; 698 }; 699 }; 700 + "@babel/plugin-transform-modules-umd-7.12.1" = { 701 name = "_at_babel_slash_plugin-transform-modules-umd"; 702 packageName = "@babel/plugin-transform-modules-umd"; 703 + version = "7.12.1"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz"; 706 + sha512 = "aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q=="; 707 }; 708 }; 709 + "@babel/plugin-transform-named-capturing-groups-regex-7.12.1" = { 710 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 711 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 712 + version = "7.12.1"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz"; 715 + sha512 = "tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q=="; 716 }; 717 }; 718 + "@babel/plugin-transform-new-target-7.12.1" = { 719 name = "_at_babel_slash_plugin-transform-new-target"; 720 packageName = "@babel/plugin-transform-new-target"; 721 + version = "7.12.1"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz"; 724 + sha512 = "+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw=="; 725 }; 726 }; 727 + "@babel/plugin-transform-object-super-7.12.1" = { 728 name = "_at_babel_slash_plugin-transform-object-super"; 729 packageName = "@babel/plugin-transform-object-super"; 730 + version = "7.12.1"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz"; 733 + sha512 = "AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw=="; 734 }; 735 }; 736 + "@babel/plugin-transform-parameters-7.12.1" = { 737 name = "_at_babel_slash_plugin-transform-parameters"; 738 packageName = "@babel/plugin-transform-parameters"; 739 + version = "7.12.1"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz"; 742 + sha512 = "xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg=="; 743 }; 744 }; 745 + "@babel/plugin-transform-property-literals-7.12.1" = { 746 name = "_at_babel_slash_plugin-transform-property-literals"; 747 packageName = "@babel/plugin-transform-property-literals"; 748 + version = "7.12.1"; 749 src = fetchurl { 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz"; 751 + sha512 = "6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ=="; 752 }; 753 }; 754 + "@babel/plugin-transform-regenerator-7.12.1" = { 755 name = "_at_babel_slash_plugin-transform-regenerator"; 756 packageName = "@babel/plugin-transform-regenerator"; 757 + version = "7.12.1"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz"; 760 + sha512 = "gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng=="; 761 }; 762 }; 763 + "@babel/plugin-transform-reserved-words-7.12.1" = { 764 name = "_at_babel_slash_plugin-transform-reserved-words"; 765 packageName = "@babel/plugin-transform-reserved-words"; 766 + version = "7.12.1"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz"; 769 + sha512 = "pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A=="; 770 }; 771 }; 772 + "@babel/plugin-transform-shorthand-properties-7.12.1" = { 773 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 774 packageName = "@babel/plugin-transform-shorthand-properties"; 775 + version = "7.12.1"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz"; 778 + sha512 = "GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw=="; 779 }; 780 }; 781 + "@babel/plugin-transform-spread-7.12.1" = { 782 name = "_at_babel_slash_plugin-transform-spread"; 783 packageName = "@babel/plugin-transform-spread"; 784 + version = "7.12.1"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz"; 787 + sha512 = "vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng=="; 788 }; 789 }; 790 + "@babel/plugin-transform-sticky-regex-7.12.1" = { 791 name = "_at_babel_slash_plugin-transform-sticky-regex"; 792 packageName = "@babel/plugin-transform-sticky-regex"; 793 + version = "7.12.1"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz"; 796 + sha512 = "CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ=="; 797 }; 798 }; 799 + "@babel/plugin-transform-template-literals-7.12.1" = { 800 name = "_at_babel_slash_plugin-transform-template-literals"; 801 packageName = "@babel/plugin-transform-template-literals"; 802 + version = "7.12.1"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz"; 805 + sha512 = "b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw=="; 806 }; 807 }; 808 + "@babel/plugin-transform-typeof-symbol-7.12.1" = { 809 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 810 packageName = "@babel/plugin-transform-typeof-symbol"; 811 + version = "7.12.1"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz"; 814 + sha512 = "EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q=="; 815 }; 816 }; 817 + "@babel/plugin-transform-typescript-7.12.1" = { 818 name = "_at_babel_slash_plugin-transform-typescript"; 819 packageName = "@babel/plugin-transform-typescript"; 820 + version = "7.12.1"; 821 src = fetchurl { 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz"; 823 + sha512 = "VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw=="; 824 }; 825 }; 826 + "@babel/plugin-transform-unicode-escapes-7.12.1" = { 827 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 828 packageName = "@babel/plugin-transform-unicode-escapes"; 829 + version = "7.12.1"; 830 src = fetchurl { 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz"; 832 + sha512 = "I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q=="; 833 }; 834 }; 835 + "@babel/plugin-transform-unicode-regex-7.12.1" = { 836 name = "_at_babel_slash_plugin-transform-unicode-regex"; 837 packageName = "@babel/plugin-transform-unicode-regex"; 838 + version = "7.12.1"; 839 src = fetchurl { 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz"; 841 + sha512 = "SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg=="; 842 }; 843 }; 844 + "@babel/preset-env-7.12.1" = { 845 name = "_at_babel_slash_preset-env"; 846 packageName = "@babel/preset-env"; 847 + version = "7.12.1"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz"; 850 + sha512 = "H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg=="; 851 }; 852 }; 853 "@babel/preset-modules-0.1.4" = { ··· 859 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 860 }; 861 }; 862 + "@babel/preset-typescript-7.12.1" = { 863 name = "_at_babel_slash_preset-typescript"; 864 packageName = "@babel/preset-typescript"; 865 + version = "7.12.1"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz"; 868 + sha512 = "hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw=="; 869 }; 870 }; 871 + "@babel/runtime-7.12.1" = { 872 name = "_at_babel_slash_runtime"; 873 packageName = "@babel/runtime"; 874 + version = "7.12.1"; 875 src = fetchurl { 876 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz"; 877 + sha512 = "J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA=="; 878 }; 879 }; 880 "@babel/template-7.10.4" = { ··· 886 sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA=="; 887 }; 888 }; 889 + "@babel/traverse-7.12.1" = { 890 name = "_at_babel_slash_traverse"; 891 packageName = "@babel/traverse"; 892 + version = "7.12.1"; 893 src = fetchurl { 894 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz"; 895 + sha512 = "MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw=="; 896 }; 897 }; 898 + "@babel/types-7.12.1" = { 899 name = "_at_babel_slash_types"; 900 packageName = "@babel/types"; 901 + version = "7.12.1"; 902 src = fetchurl { 903 + url = "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz"; 904 + sha512 = "BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA=="; 905 }; 906 }; 907 "@bcoe/v8-coverage-0.2.3" = { ··· 931 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 932 }; 933 }; 934 + "@eslint/eslintrc-0.2.1" = { 935 name = "_at_eslint_slash_eslintrc"; 936 packageName = "@eslint/eslintrc"; 937 + version = "0.2.1"; 938 src = fetchurl { 939 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"; 940 + sha512 = "XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA=="; 941 }; 942 }; 943 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 958 sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="; 959 }; 960 }; 961 + "@jest/console-26.6.1" = { 962 name = "_at_jest_slash_console"; 963 packageName = "@jest/console"; 964 + version = "26.6.1"; 965 src = fetchurl { 966 + url = "https://registry.npmjs.org/@jest/console/-/console-26.6.1.tgz"; 967 + sha512 = "cjqcXepwC5M+VeIhwT6Xpi/tT4AiNzlIx8SMJ9IihduHnsSrnWNvTBfKIpmqOOCNOPqtbBx6w2JqfoLOJguo8g=="; 968 }; 969 }; 970 + "@jest/core-26.6.1" = { 971 name = "_at_jest_slash_core"; 972 packageName = "@jest/core"; 973 + version = "26.6.1"; 974 src = fetchurl { 975 + url = "https://registry.npmjs.org/@jest/core/-/core-26.6.1.tgz"; 976 + sha512 = "p4F0pgK3rKnoS9olXXXOkbus1Bsu6fd8pcvLMPsUy4CVXZ8WSeiwQ1lK5hwkCIqJ+amZOYPd778sbPha/S8Srw=="; 977 }; 978 }; 979 + "@jest/environment-26.6.1" = { 980 name = "_at_jest_slash_environment"; 981 packageName = "@jest/environment"; 982 + version = "26.6.1"; 983 src = fetchurl { 984 + url = "https://registry.npmjs.org/@jest/environment/-/environment-26.6.1.tgz"; 985 + sha512 = "GNvHwkOFJtNgSwdzH9flUPzF9AYAZhUg124CBoQcwcZCM9s5TLz8Y3fMtiaWt4ffbigoetjGk5PU2Dd8nLrSEw=="; 986 }; 987 }; 988 + "@jest/fake-timers-26.6.1" = { 989 name = "_at_jest_slash_fake-timers"; 990 packageName = "@jest/fake-timers"; 991 + version = "26.6.1"; 992 src = fetchurl { 993 + url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.1.tgz"; 994 + sha512 = "T/SkMLgOquenw/nIisBRD6XAYpFir0kNuclYLkse5BpzeDUukyBr+K31xgAo9M0hgjU9ORlekAYPSzc0DKfmKg=="; 995 }; 996 }; 997 + "@jest/globals-26.6.1" = { 998 name = "_at_jest_slash_globals"; 999 packageName = "@jest/globals"; 1000 + version = "26.6.1"; 1001 src = fetchurl { 1002 + url = "https://registry.npmjs.org/@jest/globals/-/globals-26.6.1.tgz"; 1003 + sha512 = "acxXsSguuLV/CeMYmBseefw6apO7NuXqpE+v5r3yD9ye2PY7h1nS20vY7Obk2w6S7eJO4OIAJeDnoGcLC/McEQ=="; 1004 }; 1005 }; 1006 + "@jest/reporters-26.6.1" = { 1007 name = "_at_jest_slash_reporters"; 1008 packageName = "@jest/reporters"; 1009 + version = "26.6.1"; 1010 src = fetchurl { 1011 + url = "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.1.tgz"; 1012 + sha512 = "J6OlXVFY3q1SXWJhjme5i7qT/BAZSikdOK2t8Ht5OS32BDo6KfG5CzIzzIFnAVd82/WWbc9Hb7SJ/jwSvVH9YA=="; 1013 }; 1014 }; 1015 + "@jest/source-map-26.5.0" = { 1016 name = "_at_jest_slash_source-map"; 1017 packageName = "@jest/source-map"; 1018 + version = "26.5.0"; 1019 src = fetchurl { 1020 + url = "https://registry.npmjs.org/@jest/source-map/-/source-map-26.5.0.tgz"; 1021 + sha512 = "jWAw9ZwYHJMe9eZq/WrsHlwF8E3hM9gynlcDpOyCb9bR8wEd9ZNBZCi7/jZyzHxC7t3thZ10gO2IDhu0bPKS5g=="; 1022 }; 1023 }; 1024 + "@jest/test-result-26.6.1" = { 1025 name = "_at_jest_slash_test-result"; 1026 packageName = "@jest/test-result"; 1027 + version = "26.6.1"; 1028 src = fetchurl { 1029 + url = "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.1.tgz"; 1030 + sha512 = "wqAgIerIN2gSdT2A8WeA5+AFh9XQBqYGf8etK143yng3qYd0mF0ie2W5PVmgnjw4VDU6ammI9NdXrKgNhreawg=="; 1031 }; 1032 }; 1033 + "@jest/test-sequencer-26.6.1" = { 1034 name = "_at_jest_slash_test-sequencer"; 1035 packageName = "@jest/test-sequencer"; 1036 + version = "26.6.1"; 1037 src = fetchurl { 1038 + url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.1.tgz"; 1039 + sha512 = "0csqA/XApZiNeTIPYh6koIDCACSoR6hi29T61tKJMtCZdEC+tF3PoNt7MS0oK/zKC6daBgCbqXxia5ztr/NyCQ=="; 1040 }; 1041 }; 1042 + "@jest/transform-26.6.1" = { 1043 name = "_at_jest_slash_transform"; 1044 packageName = "@jest/transform"; 1045 + version = "26.6.1"; 1046 src = fetchurl { 1047 + url = "https://registry.npmjs.org/@jest/transform/-/transform-26.6.1.tgz"; 1048 + sha512 = "oNFAqVtqRxZRx6vXL3I4bPKUK0BIlEeaalkwxyQGGI8oXDQBtYQBpiMe5F7qPs4QdvvFYB42gPGIMMcxXaBBxQ=="; 1049 }; 1050 }; 1051 + "@jest/types-26.6.1" = { 1052 name = "_at_jest_slash_types"; 1053 packageName = "@jest/types"; 1054 + version = "26.6.1"; 1055 src = fetchurl { 1056 + url = "https://registry.npmjs.org/@jest/types/-/types-26.6.1.tgz"; 1057 + sha512 = "ywHavIKNpAVrStiRY5wiyehvcktpijpItvGiK72RAn5ctqmzvPk8OvKnvHeBqa1XdQr959CTWAJMqxI8BTibyg=="; 1058 }; 1059 }; 1060 + "@nicolo-ribaudo/chokidar-2-2.1.8" = { 1061 + name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1062 + packageName = "@nicolo-ribaudo/chokidar-2"; 1063 + version = "2.1.8"; 1064 src = fetchurl { 1065 + url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8.tgz"; 1066 + sha512 = "FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA=="; 1067 }; 1068 }; 1069 "@nodelib/fs.scandir-2.1.3" = { ··· 1093 sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="; 1094 }; 1095 }; 1096 + "@serialport/binding-abstract-9.0.2" = { 1097 name = "_at_serialport_slash_binding-abstract"; 1098 packageName = "@serialport/binding-abstract"; 1099 + version = "9.0.2"; 1100 src = fetchurl { 1101 + url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.2.tgz"; 1102 + sha512 = "kyMX6usn+VLpidt0YsDq5JwztIan9TPCX6skr0XcalOxI8I7w+/2qVZJzjgo2fSqDnPRcU2jMWTytwzEXFODvQ=="; 1103 }; 1104 }; 1105 + "@serialport/binding-mock-9.0.2" = { 1106 name = "_at_serialport_slash_binding-mock"; 1107 packageName = "@serialport/binding-mock"; 1108 + version = "9.0.2"; 1109 src = fetchurl { 1110 + url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.2.tgz"; 1111 + sha512 = "HfrvJ/LXULHk8w63CGxwDNiDidFgDX8BnadY+cgVS6yHMHikbhLCLjCmUKsKBWaGKRqOznl0w+iUl7TMi1lkXQ=="; 1112 }; 1113 }; 1114 + "@serialport/bindings-9.0.2" = { 1115 name = "_at_serialport_slash_bindings"; 1116 packageName = "@serialport/bindings"; 1117 + version = "9.0.2"; 1118 src = fetchurl { 1119 + url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.2.tgz"; 1120 + sha512 = "kQ3co4aGwwbUqkRdJ7UfdlbLB5dUQwNfSglexC8iv65D5HXfjSBR1bE0XUH8PH/v/6Dh6CSnwf6OP0I3H5vMWQ=="; 1121 }; 1122 }; 1123 "@serialport/parser-byte-length-9.0.1" = { ··· 1174 sha512 = "BHTV+Lkl+J8hSecFtDRENaR4fgA6tw44J+dmA1vEKEyum0iDN4bihbu8yvztYyo4PhBGUKDfm/PnD5EkJm0dPA=="; 1175 }; 1176 }; 1177 + "@serialport/stream-9.0.2" = { 1178 name = "_at_serialport_slash_stream"; 1179 packageName = "@serialport/stream"; 1180 + version = "9.0.2"; 1181 src = fetchurl { 1182 + url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.2.tgz"; 1183 + sha512 = "0RkVe+gvwZu/PPfbb7ExQ+euGoCTGKD/B8TQ5fuhe+eKk1sh73RwjKmu9gp6veSNqx9Zljnh1dF6mhdEKWZpSA=="; 1184 }; 1185 }; 1186 "@sinonjs/commons-1.8.1" = { ··· 1201 sha512 = "MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="; 1202 }; 1203 }; 1204 + "@types/babel__core-7.1.11" = { 1205 name = "_at_types_slash_babel__core"; 1206 packageName = "@types/babel__core"; 1207 + version = "7.1.11"; 1208 src = fetchurl { 1209 + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.11.tgz"; 1210 + sha512 = "E5nSOzrjnvhURYnbOR2dClTqcyhPbPvtEwLHf7JJADKedPbcZsoJVfP+I2vBNfBjz4bnZIuhL/tNmRi5nJ7Jlw=="; 1211 }; 1212 }; 1213 "@types/babel__generator-7.6.2" = { ··· 1237 sha512 = "Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A=="; 1238 }; 1239 }; 1240 + "@types/debounce-1.2.0" = { 1241 + name = "_at_types_slash_debounce"; 1242 + packageName = "@types/debounce"; 1243 + version = "1.2.0"; 1244 src = fetchurl { 1245 + url = "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.0.tgz"; 1246 + sha512 = "bWG5wapaWgbss9E238T0R6bfo5Fh3OkeoSt245CM7JJwVwpw6MEBCbIxLq5z8KzsE3uJhzcIuQkyiZmzV3M/Dw=="; 1247 }; 1248 }; 1249 "@types/debug-4.1.5" = { ··· 1255 sha512 = "Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="; 1256 }; 1257 }; 1258 + "@types/graceful-fs-4.1.4" = { 1259 name = "_at_types_slash_graceful-fs"; 1260 packageName = "@types/graceful-fs"; 1261 + version = "4.1.4"; 1262 src = fetchurl { 1263 + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz"; 1264 + sha512 = "mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg=="; 1265 }; 1266 }; 1267 "@types/istanbul-lib-coverage-2.0.3" = { ··· 1282 sha512 = "plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="; 1283 }; 1284 }; 1285 "@types/istanbul-reports-3.0.0" = { 1286 name = "_at_types_slash_istanbul-reports"; 1287 packageName = "@types/istanbul-reports"; ··· 1291 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1292 }; 1293 }; 1294 + "@types/jest-26.0.15" = { 1295 name = "_at_types_slash_jest"; 1296 packageName = "@types/jest"; 1297 + version = "26.0.15"; 1298 src = fetchurl { 1299 + url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.15.tgz"; 1300 + sha512 = "s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog=="; 1301 }; 1302 }; 1303 "@types/json-schema-7.0.6" = { ··· 1318 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1319 }; 1320 }; 1321 + "@types/node-14.14.6" = { 1322 name = "_at_types_slash_node"; 1323 packageName = "@types/node"; 1324 + version = "14.14.6"; 1325 src = fetchurl { 1326 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.6.tgz"; 1327 + sha512 = "6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw=="; 1328 }; 1329 }; 1330 "@types/normalize-package-data-2.4.0" = { ··· 1336 sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1337 }; 1338 }; 1339 + "@types/prettier-2.1.5" = { 1340 name = "_at_types_slash_prettier"; 1341 packageName = "@types/prettier"; 1342 + version = "2.1.5"; 1343 src = fetchurl { 1344 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz"; 1345 + sha512 = "UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ=="; 1346 }; 1347 }; 1348 "@types/serialport-8.0.1" = { ··· 1354 sha512 = "IcKHq6b/ynKSF/x4al/Ce8+a0hpbYIEaIcK9Z3l4koLvQqAPSODZ37/hgemQx8dTu7fPZDMHN4bKmu89B3UaGA=="; 1355 }; 1356 }; 1357 + "@types/stack-utils-2.0.0" = { 1358 name = "_at_types_slash_stack-utils"; 1359 packageName = "@types/stack-utils"; 1360 + version = "2.0.0"; 1361 src = fetchurl { 1362 + url = "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz"; 1363 + sha512 = "RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw=="; 1364 }; 1365 }; 1366 + "@types/yargs-15.0.9" = { 1367 name = "_at_types_slash_yargs"; 1368 packageName = "@types/yargs"; 1369 + version = "15.0.9"; 1370 src = fetchurl { 1371 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz"; 1372 + sha512 = "HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g=="; 1373 }; 1374 }; 1375 "@types/yargs-parser-15.0.0" = { ··· 1381 sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 1382 }; 1383 }; 1384 + "@typescript-eslint/eslint-plugin-4.6.0" = { 1385 name = "_at_typescript-eslint_slash_eslint-plugin"; 1386 packageName = "@typescript-eslint/eslint-plugin"; 1387 + version = "4.6.0"; 1388 src = fetchurl { 1389 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.6.0.tgz"; 1390 + sha512 = "1+419X+Ynijytr1iWI+/IcX/kJryc78YNpdaXR1aRO1sU3bC0vZrIAF1tIX7rudVI84W7o7M4zo5p1aVt70fAg=="; 1391 }; 1392 }; 1393 + "@typescript-eslint/experimental-utils-4.6.0" = { 1394 name = "_at_typescript-eslint_slash_experimental-utils"; 1395 packageName = "@typescript-eslint/experimental-utils"; 1396 + version = "4.6.0"; 1397 src = fetchurl { 1398 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.6.0.tgz"; 1399 + sha512 = "pnh6Beh2/4xjJVNL+keP49DFHk3orDHHFylSp3WEjtgW3y1U+6l+jNnJrGlbs6qhAz5z96aFmmbUyKhunXKvKw=="; 1400 }; 1401 }; 1402 + "@typescript-eslint/parser-4.6.0" = { 1403 name = "_at_typescript-eslint_slash_parser"; 1404 packageName = "@typescript-eslint/parser"; 1405 + version = "4.6.0"; 1406 src = fetchurl { 1407 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.6.0.tgz"; 1408 + sha512 = "Dj6NJxBhbdbPSZ5DYsQqpR32MwujF772F2H3VojWU6iT4AqL4BKuoNWOPFCoSZvCcADDvQjDpa6OLDAaiZPz2Q=="; 1409 }; 1410 }; 1411 + "@typescript-eslint/scope-manager-4.6.0" = { 1412 name = "_at_typescript-eslint_slash_scope-manager"; 1413 packageName = "@typescript-eslint/scope-manager"; 1414 + version = "4.6.0"; 1415 src = fetchurl { 1416 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.6.0.tgz"; 1417 + sha512 = "uZx5KvStXP/lwrMrfQQwDNvh2ppiXzz5TmyTVHb+5TfZ3sUP7U1onlz3pjoWrK9konRyFe1czyxObWTly27Ang=="; 1418 }; 1419 }; 1420 + "@typescript-eslint/types-4.6.0" = { 1421 name = "_at_typescript-eslint_slash_types"; 1422 packageName = "@typescript-eslint/types"; 1423 + version = "4.6.0"; 1424 src = fetchurl { 1425 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.6.0.tgz"; 1426 + sha512 = "5FAgjqH68SfFG4UTtIFv+rqYJg0nLjfkjD0iv+5O27a0xEeNZ5rZNDvFGZDizlCD1Ifj7MAbSW2DPMrf0E9zjA=="; 1427 }; 1428 }; 1429 + "@typescript-eslint/typescript-estree-4.6.0" = { 1430 name = "_at_typescript-eslint_slash_typescript-estree"; 1431 packageName = "@typescript-eslint/typescript-estree"; 1432 + version = "4.6.0"; 1433 src = fetchurl { 1434 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.6.0.tgz"; 1435 + sha512 = "s4Z9qubMrAo/tw0CbN0IN4AtfwuehGXVZM0CHNMdfYMGBDhPdwTEpBrecwhP7dRJu6d9tT9ECYNaWDHvlFSngA=="; 1436 }; 1437 }; 1438 + "@typescript-eslint/visitor-keys-4.6.0" = { 1439 name = "_at_typescript-eslint_slash_visitor-keys"; 1440 packageName = "@typescript-eslint/visitor-keys"; 1441 + version = "4.6.0"; 1442 src = fetchurl { 1443 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.6.0.tgz"; 1444 + sha512 = "38Aa9Ztl0XyFPVzmutHXqDMCu15Xx8yKvUo38Gu3GhsuckCh3StPI5t2WIO9LHEsOH7MLmlGfKUisU8eW1Sjhg=="; 1445 }; 1446 }; 1447 "abab-2.0.5" = { ··· 1453 sha512 = "9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="; 1454 }; 1455 }; 1456 + "acorn-7.4.1" = { 1457 name = "acorn"; 1458 packageName = "acorn"; 1459 + version = "7.4.1"; 1460 src = fetchurl { 1461 + url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 1462 + sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1463 }; 1464 }; 1465 "acorn-globals-6.0.0" = { ··· 1489 sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; 1490 }; 1491 }; 1492 + "agent-base-6.0.2" = { 1493 name = "agent-base"; 1494 packageName = "agent-base"; 1495 + version = "6.0.2"; 1496 src = fetchurl { 1497 + url = "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"; 1498 + sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; 1499 }; 1500 }; 1501 + "ajv-6.12.6" = { 1502 name = "ajv"; 1503 packageName = "ajv"; 1504 + version = "6.12.6"; 1505 src = fetchurl { 1506 + url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 1507 + sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1508 }; 1509 }; 1510 "ansi-colors-4.1.1" = { ··· 1561 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 1562 }; 1563 }; 1564 + "ansi-styles-4.3.0" = { 1565 name = "ansi-styles"; 1566 packageName = "ansi-styles"; 1567 + version = "4.3.0"; 1568 src = fetchurl { 1569 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 1570 + sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 1571 }; 1572 }; 1573 "anymatch-2.0.0" = { ··· 1750 sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 1751 }; 1752 }; 1753 + "aws4-1.11.0" = { 1754 name = "aws4"; 1755 packageName = "aws4"; 1756 + version = "1.11.0"; 1757 src = fetchurl { 1758 + url = "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"; 1759 + sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 1760 }; 1761 }; 1762 + "axios-0.21.0" = { 1763 name = "axios"; 1764 packageName = "axios"; 1765 + version = "0.21.0"; 1766 src = fetchurl { 1767 + url = "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz"; 1768 + sha512 = "fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw=="; 1769 }; 1770 }; 1771 + "babel-jest-26.6.1" = { 1772 name = "babel-jest"; 1773 packageName = "babel-jest"; 1774 + version = "26.6.1"; 1775 src = fetchurl { 1776 + url = "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.1.tgz"; 1777 + sha512 = "duMWEOKrSBYRVTTNpL2SipNIWnZOjP77auOBMPQ3zXAdnDbyZQWU8r/RxNWpUf9N6cgPFecQYelYLytTVXVDtA=="; 1778 }; 1779 }; 1780 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 1795 sha512 = "AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ=="; 1796 }; 1797 }; 1798 + "babel-plugin-jest-hoist-26.5.0" = { 1799 name = "babel-plugin-jest-hoist"; 1800 packageName = "babel-plugin-jest-hoist"; 1801 + version = "26.5.0"; 1802 src = fetchurl { 1803 + url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.5.0.tgz"; 1804 + sha512 = "ck17uZFD3CDfuwCLATWZxkkuGGFhMij8quP8CNhwj8ek1mqFgbFzRJ30xwC04LLscj/aKsVFfRST+b5PT7rSuw=="; 1805 }; 1806 }; 1807 + "babel-preset-current-node-syntax-0.1.4" = { 1808 name = "babel-preset-current-node-syntax"; 1809 packageName = "babel-preset-current-node-syntax"; 1810 + version = "0.1.4"; 1811 src = fetchurl { 1812 + url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz"; 1813 + sha512 = "5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w=="; 1814 }; 1815 }; 1816 + "babel-preset-jest-26.5.0" = { 1817 name = "babel-preset-jest"; 1818 packageName = "babel-preset-jest"; 1819 + version = "26.5.0"; 1820 src = fetchurl { 1821 + url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.5.0.tgz"; 1822 + sha512 = "F2vTluljhqkiGSJGBg/jOruA8vIIIL11YrxRcO7nviNTMbbofPSHwnm8mgP7d/wS7wRSexRoI6X1A6T74d4LQA=="; 1823 }; 1824 }; 1825 "balanced-match-1.0.0" = { ··· 1867 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 1868 }; 1869 }; 1870 + "binary-extensions-2.1.0" = { 1871 + name = "binary-extensions"; 1872 + packageName = "binary-extensions"; 1873 + version = "2.1.0"; 1874 + src = fetchurl { 1875 + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; 1876 + sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; 1877 + }; 1878 + }; 1879 "bindings-1.5.0" = { 1880 name = "bindings"; 1881 packageName = "bindings"; ··· 1948 sha512 = "gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="; 1949 }; 1950 }; 1951 + "buffer-5.7.0" = { 1952 name = "buffer"; 1953 packageName = "buffer"; 1954 + version = "5.7.0"; 1955 src = fetchurl { 1956 + url = "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz"; 1957 + sha512 = "cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg=="; 1958 + }; 1959 + }; 1960 + "buffer-crc32-0.2.13" = { 1961 + name = "buffer-crc32"; 1962 + packageName = "buffer-crc32"; 1963 + version = "0.2.13"; 1964 + src = fetchurl { 1965 + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; 1966 + sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"; 1967 }; 1968 }; 1969 "buffer-from-1.1.1" = { ··· 1982 src = fetchurl { 1983 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; 1984 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 1985 + }; 1986 + }; 1987 + "call-bind-1.0.0" = { 1988 + name = "call-bind"; 1989 + packageName = "call-bind"; 1990 + version = "1.0.0"; 1991 + src = fetchurl { 1992 + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz"; 1993 + sha512 = "AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w=="; 1994 }; 1995 }; 1996 "callback-stream-1.1.0" = { ··· 2020 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2021 }; 2022 }; 2023 + "camelcase-6.2.0" = { 2024 name = "camelcase"; 2025 packageName = "camelcase"; 2026 + version = "6.2.0"; 2027 src = fetchurl { 2028 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 2029 + sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2030 }; 2031 }; 2032 + "caniuse-lite-1.0.30001154" = { 2033 name = "caniuse-lite"; 2034 packageName = "caniuse-lite"; 2035 + version = "1.0.30001154"; 2036 src = fetchurl { 2037 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001154.tgz"; 2038 + sha512 = "y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org=="; 2039 }; 2040 }; 2041 "capture-exit-2.0.0" = { ··· 2065 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2066 }; 2067 }; 2068 "chalk-4.1.0" = { 2069 name = "chalk"; 2070 packageName = "chalk"; ··· 2090 src = fetchurl { 2091 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 2092 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2093 + }; 2094 + }; 2095 + "chokidar-3.4.3" = { 2096 + name = "chokidar"; 2097 + packageName = "chokidar"; 2098 + version = "3.4.3"; 2099 + src = fetchurl { 2100 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 2101 + sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 2102 }; 2103 }; 2104 "chownr-1.1.4" = { ··· 2119 sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 2120 }; 2121 }; 2122 + "cjs-module-lexer-0.4.3" = { 2123 + name = "cjs-module-lexer"; 2124 + packageName = "cjs-module-lexer"; 2125 + version = "0.4.3"; 2126 + src = fetchurl { 2127 + url = "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.4.3.tgz"; 2128 + sha512 = "5RLK0Qfs0PNDpEyBXIr3bIT1Muw3ojSlvpw6dAmkUcO0+uTrsBn7GuEIgx40u+OzbCBLDta7nvmud85P4EmTsQ=="; 2129 + }; 2130 + }; 2131 "class-utils-0.3.6" = { 2132 name = "class-utils"; 2133 packageName = "class-utils"; ··· 2227 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2228 }; 2229 }; 2230 + "color-string-1.5.4" = { 2231 name = "color-string"; 2232 packageName = "color-string"; 2233 + version = "1.5.4"; 2234 src = fetchurl { 2235 + url = "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz"; 2236 + sha512 = "57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw=="; 2237 }; 2238 }; 2239 "colors-1.4.0" = { ··· 2299 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 2300 }; 2301 }; 2302 + "concat-stream-2.0.0" = { 2303 name = "concat-stream"; 2304 packageName = "concat-stream"; 2305 + version = "2.0.0"; 2306 src = fetchurl { 2307 + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"; 2308 + sha512 = "MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="; 2309 }; 2310 }; 2311 "console-control-strings-1.1.0" = { ··· 2398 sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="; 2399 }; 2400 }; 2401 "dashdash-1.14.1" = { 2402 name = "dashdash"; 2403 packageName = "dashdash"; ··· 2452 sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 2453 }; 2454 }; 2455 + "decimal.js-10.2.1" = { 2456 name = "decimal.js"; 2457 packageName = "decimal.js"; 2458 + version = "10.2.1"; 2459 src = fetchurl { 2460 + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz"; 2461 + sha512 = "KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw=="; 2462 }; 2463 }; 2464 "decode-uri-component-0.2.0" = { ··· 2596 sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="; 2597 }; 2598 }; 2599 + "diff-sequences-26.5.0" = { 2600 name = "diff-sequences"; 2601 packageName = "diff-sequences"; 2602 + version = "26.5.0"; 2603 src = fetchurl { 2604 + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.5.0.tgz"; 2605 + sha512 = "ZXx86srb/iYy6jG71k++wBN9P9J05UNQ5hQHQd9MtMPvcqXPx/vKU69jfHV637D00Q2gSgPk2D+jSx3l1lDW/Q=="; 2606 }; 2607 }; 2608 "dir-glob-3.0.1" = { ··· 2659 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2660 }; 2661 }; 2662 + "electron-to-chromium-1.3.585" = { 2663 name = "electron-to-chromium"; 2664 packageName = "electron-to-chromium"; 2665 + version = "1.3.585"; 2666 src = fetchurl { 2667 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.585.tgz"; 2668 + sha512 = "xoeqjMQhgHDZM7FiglJAb2aeOxHZWFruUc3MbAGTgE7GB8rr5fTn1Sdh5THGuQtndU3GuXlu91ZKqRivxoCZ/A=="; 2669 }; 2670 }; 2671 + "emittery-0.7.2" = { 2672 name = "emittery"; 2673 packageName = "emittery"; 2674 + version = "0.7.2"; 2675 src = fetchurl { 2676 + url = "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"; 2677 + sha512 = "A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ=="; 2678 }; 2679 }; 2680 "emoji-regex-7.0.3" = { ··· 2740 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 2741 }; 2742 }; 2743 + "escalade-3.1.1" = { 2744 name = "escalade"; 2745 packageName = "escalade"; 2746 + version = "3.1.1"; 2747 src = fetchurl { 2748 + url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 2749 + sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 2750 }; 2751 }; 2752 "escape-html-1.0.3" = { ··· 2785 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 2786 }; 2787 }; 2788 + "eslint-7.12.1" = { 2789 name = "eslint"; 2790 packageName = "eslint"; 2791 + version = "7.12.1"; 2792 src = fetchurl { 2793 + url = "https://registry.npmjs.org/eslint/-/eslint-7.12.1.tgz"; 2794 + sha512 = "HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg=="; 2795 }; 2796 }; 2797 "eslint-config-google-0.14.0" = { ··· 2803 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 2804 }; 2805 }; 2806 + "eslint-plugin-jest-24.1.0" = { 2807 name = "eslint-plugin-jest"; 2808 packageName = "eslint-plugin-jest"; 2809 + version = "24.1.0"; 2810 src = fetchurl { 2811 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.0.tgz"; 2812 + sha512 = "827YJ+E8B9PvXu/0eiVSNFfxxndbKv+qE/3GSMhdorCaeaOehtqHGX2YDW9B85TEOre9n/zscledkFW/KbnyGg=="; 2813 }; 2814 }; 2815 "eslint-scope-5.1.1" = { ··· 2920 sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 2921 }; 2922 }; 2923 "eventemitter3-4.0.7" = { 2924 name = "eventemitter3"; 2925 packageName = "eventemitter3"; ··· 2947 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 2948 }; 2949 }; 2950 + "execa-4.1.0" = { 2951 name = "execa"; 2952 packageName = "execa"; 2953 + version = "4.1.0"; 2954 src = fetchurl { 2955 + url = "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz"; 2956 + sha512 = "j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA=="; 2957 }; 2958 }; 2959 "exit-0.1.2" = { ··· 2983 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 2984 }; 2985 }; 2986 + "expect-26.6.1" = { 2987 name = "expect"; 2988 packageName = "expect"; 2989 + version = "26.6.1"; 2990 src = fetchurl { 2991 + url = "https://registry.npmjs.org/expect/-/expect-26.6.1.tgz"; 2992 + sha512 = "BRfxIBHagghMmr1D2MRY0Qv5d3Nc8HCqgbDwNXw/9izmM5eBb42a2YjLKSbsqle76ozGkAEPELQX4IdNHAKRNA=="; 2993 }; 2994 }; 2995 "extend-3.0.2" = { ··· 3082 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3083 }; 3084 }; 3085 + "fastq-1.9.0" = { 3086 name = "fastq"; 3087 packageName = "fastq"; 3088 + version = "1.9.0"; 3089 src = fetchurl { 3090 + url = "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz"; 3091 + sha512 = "i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w=="; 3092 }; 3093 }; 3094 "fb-watchman-2.0.1" = { ··· 3325 sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 3326 }; 3327 }; 3328 + "gensync-1.0.0-beta.2" = { 3329 name = "gensync"; 3330 packageName = "gensync"; 3331 + version = "1.0.0-beta.2"; 3332 src = fetchurl { 3333 + url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"; 3334 + sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; 3335 }; 3336 }; 3337 "get-caller-file-2.0.5" = { ··· 3341 src = fetchurl { 3342 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 3343 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3344 + }; 3345 + }; 3346 + "get-intrinsic-1.0.1" = { 3347 + name = "get-intrinsic"; 3348 + packageName = "get-intrinsic"; 3349 + version = "1.0.1"; 3350 + src = fetchurl { 3351 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz"; 3352 + sha512 = "ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg=="; 3353 }; 3354 }; 3355 "get-package-type-0.1.0" = { ··· 3622 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 3623 }; 3624 }; 3625 + "highlight.js-10.3.2" = { 3626 name = "highlight.js"; 3627 packageName = "highlight.js"; 3628 + version = "10.3.2"; 3629 src = fetchurl { 3630 + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.3.2.tgz"; 3631 + sha512 = "3jRT7OUYsVsKvukNKZCtnvRcFyCJqSEIuIMsEybAXRiFSwpt65qjPd/Pr+UOdYt7WJlt+lj3+ypUsHiySBp/Jw=="; 3632 }; 3633 }; 3634 "hosted-git-info-2.8.8" = { ··· 3703 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 3704 }; 3705 }; 3706 + "humanize-duration-3.24.0" = { 3707 name = "humanize-duration"; 3708 packageName = "humanize-duration"; 3709 + version = "3.24.0"; 3710 src = fetchurl { 3711 + url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.24.0.tgz"; 3712 + sha512 = "B3udnqisaDeRsvUSb+5n2hjxhABI9jotB+i1IEhgHhguTeM5LxIUKoVIu7UpeyaPOygr/Fnv7UhOi45kYYG+tg=="; 3713 }; 3714 }; 3715 "iconv-lite-0.4.24" = { ··· 3721 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3722 }; 3723 }; 3724 + "ieee754-1.2.1" = { 3725 name = "ieee754"; 3726 packageName = "ieee754"; 3727 + version = "1.2.1"; 3728 src = fetchurl { 3729 + url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; 3730 + sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 3731 }; 3732 }; 3733 "ignore-4.0.6" = { ··· 3811 sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 3812 }; 3813 }; 3814 "ip-regex-2.1.0" = { 3815 name = "ip-regex"; 3816 packageName = "ip-regex"; ··· 3874 sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; 3875 }; 3876 }; 3877 + "is-binary-path-2.1.0" = { 3878 + name = "is-binary-path"; 3879 + packageName = "is-binary-path"; 3880 + version = "2.1.0"; 3881 + src = fetchurl { 3882 + url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 3883 + sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 3884 + }; 3885 + }; 3886 "is-buffer-1.1.6" = { 3887 name = "is-buffer"; 3888 packageName = "is-buffer"; ··· 3892 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 3893 }; 3894 }; 3895 "is-ci-2.0.0" = { 3896 name = "is-ci"; 3897 packageName = "is-ci"; ··· 3899 src = fetchurl { 3900 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 3901 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 3902 + }; 3903 + }; 3904 + "is-core-module-2.0.0" = { 3905 + name = "is-core-module"; 3906 + packageName = "is-core-module"; 3907 + version = "2.0.0"; 3908 + src = fetchurl { 3909 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz"; 3910 + sha512 = "jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw=="; 3911 }; 3912 }; 3913 "is-data-descriptor-0.1.4" = { ··· 3928 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 3929 }; 3930 }; 3931 "is-descriptor-0.1.6" = { 3932 name = "is-descriptor"; 3933 packageName = "is-descriptor"; ··· 4045 sha1 = "6910bca5da8c95e784b5751b976cf5a10fee36d2"; 4046 }; 4047 }; 4048 "is-number-3.0.0" = { 4049 name = "is-number"; 4050 packageName = "is-number"; ··· 4081 sha1 = "0c52e54bcca391bb2c494b21e8626d7336c6e397"; 4082 }; 4083 }; 4084 "is-relative-1.0.0" = { 4085 name = "is-relative"; 4086 packageName = "is-relative"; ··· 4108 sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 4109 }; 4110 }; 4111 "is-typedarray-1.0.0" = { 4112 name = "is-typedarray"; 4113 packageName = "is-typedarray"; ··· 4234 sha512 = "9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="; 4235 }; 4236 }; 4237 + "jest-26.6.1" = { 4238 name = "jest"; 4239 packageName = "jest"; 4240 + version = "26.6.1"; 4241 src = fetchurl { 4242 + url = "https://registry.npmjs.org/jest/-/jest-26.6.1.tgz"; 4243 + sha512 = "f+ahfqw3Ffy+9vA7sWFGpTmhtKEMsNAZiWBVXDkrpIO73zIz22iimjirnV78kh/eWlylmvLh/0WxHN6fZraZdA=="; 4244 }; 4245 }; 4246 + "jest-changed-files-26.6.1" = { 4247 name = "jest-changed-files"; 4248 packageName = "jest-changed-files"; 4249 + version = "26.6.1"; 4250 src = fetchurl { 4251 + url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.1.tgz"; 4252 + sha512 = "NhSdZ5F6b/rIN5V46x1l31vrmukD/bJUXgYAY8VtP1SknYdJwjYDRxuLt7Z8QryIdqCjMIn2C0Cd98EZ4umo8Q=="; 4253 }; 4254 }; 4255 + "jest-cli-26.6.1" = { 4256 name = "jest-cli"; 4257 packageName = "jest-cli"; 4258 + version = "26.6.1"; 4259 src = fetchurl { 4260 + url = "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.1.tgz"; 4261 + sha512 = "aPLoEjlwFrCWhiPpW5NUxQA1X1kWsAnQcQ0SO/fHsCvczL3W75iVAcH9kP6NN+BNqZcHNEvkhxT5cDmBfEAh+w=="; 4262 }; 4263 }; 4264 + "jest-config-26.6.1" = { 4265 name = "jest-config"; 4266 packageName = "jest-config"; 4267 + version = "26.6.1"; 4268 src = fetchurl { 4269 + url = "https://registry.npmjs.org/jest-config/-/jest-config-26.6.1.tgz"; 4270 + sha512 = "mtJzIynIwW1d1nMlKCNCQiSgWaqFn8cH/fOSNY97xG7Y9tBCZbCSuW2GTX0RPmceSJGO7l27JgwC18LEg0Vg+g=="; 4271 }; 4272 }; 4273 + "jest-diff-26.6.1" = { 4274 name = "jest-diff"; 4275 packageName = "jest-diff"; 4276 + version = "26.6.1"; 4277 src = fetchurl { 4278 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.1.tgz"; 4279 + sha512 = "BBNy/zin2m4kG5In126O8chOBxLLS/XMTuuM2+YhgyHk87ewPzKTuTJcqj3lOWOi03NNgrl+DkMeV/exdvG9gg=="; 4280 }; 4281 }; 4282 "jest-docblock-26.0.0" = { ··· 4288 sha512 = "RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w=="; 4289 }; 4290 }; 4291 + "jest-each-26.6.1" = { 4292 name = "jest-each"; 4293 packageName = "jest-each"; 4294 + version = "26.6.1"; 4295 src = fetchurl { 4296 + url = "https://registry.npmjs.org/jest-each/-/jest-each-26.6.1.tgz"; 4297 + sha512 = "gSn8eB3buchuq45SU7pLB7qmCGax1ZSxfaWuEFblCyNMtyokYaKFh9dRhYPujK6xYL57dLIPhLKatjmB5XWzGA=="; 4298 }; 4299 }; 4300 + "jest-environment-jsdom-26.6.1" = { 4301 name = "jest-environment-jsdom"; 4302 packageName = "jest-environment-jsdom"; 4303 + version = "26.6.1"; 4304 src = fetchurl { 4305 + url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.1.tgz"; 4306 + sha512 = "A17RiXuHYNVlkM+3QNcQ6n5EZyAc6eld8ra9TW26luounGWpku4tj03uqRgHJCI1d4uHr5rJiuCH5JFRtdmrcA=="; 4307 }; 4308 }; 4309 + "jest-environment-node-26.6.1" = { 4310 name = "jest-environment-node"; 4311 packageName = "jest-environment-node"; 4312 + version = "26.6.1"; 4313 src = fetchurl { 4314 + url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.1.tgz"; 4315 + sha512 = "YffaCp6h0j1kbcf1NVZ7umC6CPgD67YS+G1BeornfuSkx5s3xdhuwG0DCxSiHPXyT81FfJzA1L7nXvhq50OWIg=="; 4316 }; 4317 }; 4318 "jest-get-type-26.3.0" = { ··· 4324 sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="; 4325 }; 4326 }; 4327 + "jest-haste-map-26.6.1" = { 4328 name = "jest-haste-map"; 4329 packageName = "jest-haste-map"; 4330 + version = "26.6.1"; 4331 src = fetchurl { 4332 + url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.1.tgz"; 4333 + sha512 = "9kPafkv0nX6ta1PrshnkiyhhoQoFWncrU/uUBt3/AP1r78WSCU5iLceYRTwDvJl67H3RrXqSlSVDDa/AsUB7OQ=="; 4334 }; 4335 }; 4336 + "jest-jasmine2-26.6.1" = { 4337 name = "jest-jasmine2"; 4338 packageName = "jest-jasmine2"; 4339 + version = "26.6.1"; 4340 src = fetchurl { 4341 + url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.1.tgz"; 4342 + sha512 = "2uYdT32o/ZzSxYAPduAgokO8OlAL1YdG/9oxcEY138EDNpIK5XRRJDaGzTZdIBWSxk0aR8XxN44FvfXtHB+Fiw=="; 4343 }; 4344 }; 4345 + "jest-leak-detector-26.6.1" = { 4346 name = "jest-leak-detector"; 4347 packageName = "jest-leak-detector"; 4348 + version = "26.6.1"; 4349 src = fetchurl { 4350 + url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.1.tgz"; 4351 + sha512 = "j9ZOtJSJKlHjrs4aIxWjiQUjyrffPdiAQn2Iw0916w7qZE5Lk0T2KhIH6E9vfhzP6sw0Q0jtnLLb4vQ71o1HlA=="; 4352 }; 4353 }; 4354 + "jest-matcher-utils-26.6.1" = { 4355 name = "jest-matcher-utils"; 4356 packageName = "jest-matcher-utils"; 4357 + version = "26.6.1"; 4358 src = fetchurl { 4359 + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.1.tgz"; 4360 + sha512 = "9iu3zrsYlUnl8pByhREF9rr5eYoiEb1F7ymNKg6lJr/0qD37LWS5FSW/JcoDl8UdMX2+zAzabDs7sTO+QFKjCg=="; 4361 }; 4362 }; 4363 + "jest-message-util-26.6.1" = { 4364 name = "jest-message-util"; 4365 packageName = "jest-message-util"; 4366 + version = "26.6.1"; 4367 src = fetchurl { 4368 + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.1.tgz"; 4369 + sha512 = "cqM4HnqncIebBNdTKrBoWR/4ufHTll0pK/FWwX0YasK+TlBQEMqw3IEdynuuOTjDPFO3ONlFn37280X48beByw=="; 4370 }; 4371 }; 4372 + "jest-mock-26.6.1" = { 4373 name = "jest-mock"; 4374 packageName = "jest-mock"; 4375 + version = "26.6.1"; 4376 src = fetchurl { 4377 + url = "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.1.tgz"; 4378 + sha512 = "my0lPTBu1awY8iVG62sB2sx9qf8zxNDVX+5aFgoB8Vbqjb6LqIOsfyFA8P1z6H2IsqMbvOX9oCJnK67Y3yUIMA=="; 4379 }; 4380 }; 4381 "jest-pnp-resolver-1.2.2" = { ··· 4396 sha512 = "Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A=="; 4397 }; 4398 }; 4399 + "jest-resolve-26.6.1" = { 4400 name = "jest-resolve"; 4401 packageName = "jest-resolve"; 4402 + version = "26.6.1"; 4403 src = fetchurl { 4404 + url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.1.tgz"; 4405 + sha512 = "hiHfQH6rrcpAmw9xCQ0vD66SDuU+7ZulOuKwc4jpbmFFsz0bQG/Ib92K+9/489u5rVw0btr/ZhiHqBpmkbCvuQ=="; 4406 }; 4407 }; 4408 + "jest-resolve-dependencies-26.6.1" = { 4409 name = "jest-resolve-dependencies"; 4410 packageName = "jest-resolve-dependencies"; 4411 + version = "26.6.1"; 4412 src = fetchurl { 4413 + url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.1.tgz"; 4414 + sha512 = "MN6lufbZJ3RBfTnJesZtHu3hUCBqPdHRe2+FhIt0yiqJ3fMgzWRqMRQyN/d/QwOE7KXwAG2ekZutbPhuD7s51A=="; 4415 }; 4416 }; 4417 + "jest-runner-26.6.1" = { 4418 name = "jest-runner"; 4419 packageName = "jest-runner"; 4420 + version = "26.6.1"; 4421 src = fetchurl { 4422 + url = "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.1.tgz"; 4423 + sha512 = "DmpNGdgsbl5s0FGkmsInmqnmqCtliCSnjWA2TFAJS1m1mL5atwfPsf+uoZ8uYQ2X0uDj4NM+nPcDnUpbNTRMBA=="; 4424 }; 4425 }; 4426 + "jest-runtime-26.6.1" = { 4427 name = "jest-runtime"; 4428 packageName = "jest-runtime"; 4429 + version = "26.6.1"; 4430 src = fetchurl { 4431 + url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.1.tgz"; 4432 + sha512 = "7uOCNeezXDWgjEyzYbRN2ViY7xNZzusNVGAMmU0UHRUNXuY4j4GBHKGMqPo/cBPZA9bSYp+lwK2DRRBU5Dv6YQ=="; 4433 }; 4434 }; 4435 + "jest-serializer-26.5.0" = { 4436 name = "jest-serializer"; 4437 packageName = "jest-serializer"; 4438 + version = "26.5.0"; 4439 src = fetchurl { 4440 + url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.5.0.tgz"; 4441 + sha512 = "+h3Gf5CDRlSLdgTv7y0vPIAoLgX/SI7T4v6hy+TEXMgYbv+ztzbg5PSN6mUXAT/hXYHvZRWm+MaObVfqkhCGxA=="; 4442 }; 4443 }; 4444 + "jest-snapshot-26.6.1" = { 4445 name = "jest-snapshot"; 4446 packageName = "jest-snapshot"; 4447 + version = "26.6.1"; 4448 src = fetchurl { 4449 + url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.1.tgz"; 4450 + sha512 = "JA7bZp7HRTIJYAi85pJ/OZ2eur2dqmwIToA5/6d7Mn90isGEfeF9FvuhDLLEczgKP1ihreBzrJ6Vr7zteP5JNA=="; 4451 }; 4452 }; 4453 + "jest-util-26.6.1" = { 4454 name = "jest-util"; 4455 packageName = "jest-util"; 4456 + version = "26.6.1"; 4457 src = fetchurl { 4458 + url = "https://registry.npmjs.org/jest-util/-/jest-util-26.6.1.tgz"; 4459 + sha512 = "xCLZUqVoqhquyPLuDXmH7ogceGctbW8SMyQVjD9o+1+NPWI7t0vO08udcFLVPLgKWcvc+zotaUv/RuaR6l8HIA=="; 4460 }; 4461 }; 4462 + "jest-validate-26.6.1" = { 4463 name = "jest-validate"; 4464 packageName = "jest-validate"; 4465 + version = "26.6.1"; 4466 src = fetchurl { 4467 + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.1.tgz"; 4468 + sha512 = "BEFpGbylKocnNPZULcnk+TGaz1oFZQH/wcaXlaXABbu0zBwkOGczuWgdLucUouuQqn7VadHZZeTvo8VSFDLMOA=="; 4469 }; 4470 }; 4471 + "jest-watcher-26.6.1" = { 4472 name = "jest-watcher"; 4473 packageName = "jest-watcher"; 4474 + version = "26.6.1"; 4475 src = fetchurl { 4476 + url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.1.tgz"; 4477 + sha512 = "0LBIPPncNi9CaLKK15bnxyd2E8OMl4kJg0PTiNOI+MXztXw1zVdtX/x9Pr6pXaQYps+eS/ts43O4+HByZ7yJSw=="; 4478 }; 4479 }; 4480 + "jest-worker-26.6.1" = { 4481 name = "jest-worker"; 4482 packageName = "jest-worker"; 4483 + version = "26.6.1"; 4484 src = fetchurl { 4485 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.1.tgz"; 4486 + sha512 = "R5IE3qSGz+QynJx8y+ICEkdI2OJ3RJjRQVEyCcFAd3yVhQSEtquziPO29Mlzgn07LOVE8u8jhJ1FqcwegiXWOw=="; 4487 }; 4488 }; 4489 "js-tokens-4.0.0" = { ··· 4594 sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA=="; 4595 }; 4596 }; 4597 + "jsonfile-6.1.0" = { 4598 name = "jsonfile"; 4599 packageName = "jsonfile"; 4600 + version = "6.1.0"; 4601 src = fetchurl { 4602 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"; 4603 + sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; 4604 }; 4605 }; 4606 "jsprim-1.4.1" = { ··· 4684 sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; 4685 }; 4686 }; 4687 "levn-0.3.0" = { 4688 name = "levn"; 4689 packageName = "levn"; ··· 4747 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 4748 }; 4749 }; 4750 "lunr-2.3.9" = { 4751 name = "lunr"; 4752 packageName = "lunr"; ··· 4801 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 4802 }; 4803 }; 4804 + "marked-1.2.2" = { 4805 name = "marked"; 4806 packageName = "marked"; 4807 + version = "1.2.2"; 4808 src = fetchurl { 4809 + url = "https://registry.npmjs.org/marked/-/marked-1.2.2.tgz"; 4810 + sha512 = "5jjKHVl/FPo0Z6ocP3zYhKiJLzkwJAw4CZoLjv57FkvbUuwOX4LIBBGGcXjAY6ATcd1q9B8UTj5T9Umauj0QYQ=="; 4811 }; 4812 }; 4813 "merge-stream-2.0.0" = { ··· 4954 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 4955 }; 4956 }; 4957 + "moment-2.29.1" = { 4958 name = "moment"; 4959 packageName = "moment"; 4960 + version = "2.29.1"; 4961 src = fetchurl { 4962 + url = "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"; 4963 + sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 4964 }; 4965 }; 4966 + "mqtt-4.2.4" = { 4967 name = "mqtt"; 4968 packageName = "mqtt"; 4969 + version = "4.2.4"; 4970 src = fetchurl { 4971 + url = "https://registry.npmjs.org/mqtt/-/mqtt-4.2.4.tgz"; 4972 + sha512 = "g3tJt5UOS1Wqn/xntl4JhlJW51OM8CvgEmY8cwZ1zecE5G7uuwjSUUvgGeVDiEMWJ5vXCfZz2VMCQGNvKhzfEQ=="; 4973 }; 4974 }; 4975 "mqtt-packet-6.6.0" = { ··· 5008 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5009 }; 5010 }; 5011 + "nan-2.14.2" = { 5012 name = "nan"; 5013 packageName = "nan"; 5014 + version = "2.14.2"; 5015 src = fetchurl { 5016 + url = "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz"; 5017 + sha512 = "M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ=="; 5018 }; 5019 }; 5020 "nanomatch-1.2.13" = { ··· 5051 src = fetchurl { 5052 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 5053 sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 5054 }; 5055 }; 5056 "nice-try-1.0.5" = { ··· 5098 sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; 5099 }; 5100 }; 5101 + "node-releases-1.1.65" = { 5102 name = "node-releases"; 5103 packageName = "node-releases"; 5104 + version = "1.1.65"; 5105 src = fetchurl { 5106 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz"; 5107 + sha512 = "YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA=="; 5108 }; 5109 }; 5110 "noop-logger-0.1.1" = { ··· 5224 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 5225 }; 5226 }; 5227 "object-keys-1.1.1" = { 5228 name = "object-keys"; 5229 packageName = "object-keys"; ··· 5242 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 5243 }; 5244 }; 5245 + "object.assign-4.1.2" = { 5246 name = "object.assign"; 5247 packageName = "object.assign"; 5248 + version = "4.1.2"; 5249 src = fetchurl { 5250 + url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"; 5251 + sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; 5252 }; 5253 }; 5254 "object.pick-1.3.0" = { ··· 5530 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5531 }; 5532 }; 5533 + "prebuild-install-5.3.6" = { 5534 name = "prebuild-install"; 5535 packageName = "prebuild-install"; 5536 + version = "5.3.6"; 5537 src = fetchurl { 5538 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz"; 5539 + sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg=="; 5540 }; 5541 }; 5542 "prelude-ls-1.1.2" = { ··· 5557 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 5558 }; 5559 }; 5560 + "pretty-format-26.6.1" = { 5561 name = "pretty-format"; 5562 packageName = "pretty-format"; 5563 + version = "26.6.1"; 5564 src = fetchurl { 5565 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.1.tgz"; 5566 + sha512 = "MeqqsP5PYcRBbGMvwzsyBdmAJ4EFX7pWFyl7x4+dMVg5pE0ZDdBIvEH2ergvIO+Gvwv1wh64YuOY9y5LuyY/GA=="; 5567 }; 5568 }; 5569 "process-nextick-args-2.0.1" = { ··· 5584 sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 5585 }; 5586 }; 5587 + "prompts-2.4.0" = { 5588 name = "prompts"; 5589 packageName = "prompts"; 5590 + version = "2.4.0"; 5591 src = fetchurl { 5592 + url = "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz"; 5593 + sha512 = "awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ=="; 5594 }; 5595 }; 5596 "psl-1.8.0" = { ··· 5665 sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 5666 }; 5667 }; 5668 + "react-is-17.0.1" = { 5669 name = "react-is"; 5670 packageName = "react-is"; 5671 + version = "17.0.1"; 5672 src = fetchurl { 5673 + url = "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"; 5674 + sha512 = "NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA=="; 5675 }; 5676 }; 5677 "read-pkg-5.2.0" = { ··· 5719 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 5720 }; 5721 }; 5722 + "readdirp-3.5.0" = { 5723 + name = "readdirp"; 5724 + packageName = "readdirp"; 5725 + version = "3.5.0"; 5726 + src = fetchurl { 5727 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 5728 + sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 5729 + }; 5730 + }; 5731 "rechoir-0.6.2" = { 5732 name = "rechoir"; 5733 packageName = "rechoir"; ··· 5908 sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; 5909 }; 5910 }; 5911 + "resolve-1.18.1" = { 5912 name = "resolve"; 5913 packageName = "resolve"; 5914 + version = "1.18.1"; 5915 src = fetchurl { 5916 + url = "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz"; 5917 + sha512 = "lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA=="; 5918 }; 5919 }; 5920 "resolve-cwd-3.0.0" = { ··· 5998 sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="; 5999 }; 6000 }; 6001 + "run-parallel-1.1.10" = { 6002 name = "run-parallel"; 6003 packageName = "run-parallel"; 6004 + version = "1.1.10"; 6005 src = fetchurl { 6006 + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz"; 6007 + sha512 = "zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw=="; 6008 }; 6009 }; 6010 "safe-buffer-5.1.2" = { ··· 6106 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6107 }; 6108 }; 6109 + "serialport-9.0.2" = { 6110 name = "serialport"; 6111 packageName = "serialport"; 6112 + version = "9.0.2"; 6113 src = fetchurl { 6114 + url = "https://registry.npmjs.org/serialport/-/serialport-9.0.2.tgz"; 6115 + sha512 = "N++EVrc2F3kUJ6aCE6BLxHwTrelFAZM3LFw4lo8TV0fDtfrwTc3+aoDpSsvfQg3DxrRf3shCtA6WYEH4g8kapw=="; 6116 }; 6117 }; 6118 "serve-static-1.14.1" = { ··· 6529 sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 6530 }; 6531 }; 6532 "string_decoder-1.1.1" = { 6533 name = "string_decoder"; 6534 packageName = "string_decoder"; ··· 6853 sha512 = "XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="; 6854 }; 6855 }; 6856 + "tslib-1.14.1" = { 6857 name = "tslib"; 6858 packageName = "tslib"; 6859 + version = "1.14.1"; 6860 src = fetchurl { 6861 + url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"; 6862 + sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 6863 }; 6864 }; 6865 "tsutils-3.17.1" = { ··· 6889 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 6890 }; 6891 }; 6892 "type-check-0.3.2" = { 6893 name = "type-check"; 6894 packageName = "type-check"; ··· 6979 sha512 = "Y4Lf+qIb9NTydrexlazAM46SSLrmrQRqWiD52593g53SsmUFioAsMWt8m834J6qsp+7wHRjxCXSZeiiW5cMUdw=="; 6980 }; 6981 }; 6982 + "typedoc-plugin-markdown-3.0.11" = { 6983 name = "typedoc-plugin-markdown"; 6984 packageName = "typedoc-plugin-markdown"; 6985 + version = "3.0.11"; 6986 src = fetchurl { 6987 + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.0.11.tgz"; 6988 + sha512 = "/BE/PqnIVbQJ525czM+T3CVaA1gVN9X1Le100z8TV/Lze8LZVkuAUiHRIgw9BKYFm9IQaB88W55k4EV6uUVwYQ=="; 6989 }; 6990 }; 6991 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7006 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7007 }; 7008 }; 7009 + "typescript-4.0.5" = { 7010 name = "typescript"; 7011 packageName = "typescript"; 7012 + version = "4.0.5"; 7013 src = fetchurl { 7014 + url = "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz"; 7015 + sha512 = "ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ=="; 7016 }; 7017 }; 7018 + "uglify-js-3.11.4" = { 7019 name = "uglify-js"; 7020 packageName = "uglify-js"; 7021 + version = "3.11.4"; 7022 src = fetchurl { 7023 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.4.tgz"; 7024 + sha512 = "FyYnoxVL1D6+jDGQpbK5jW6y/2JlVfRfEeQ67BPCUg5wfCjaKOpr2XeceE4QL+MkhxliLtf5EbrMDZgzpt2CNw=="; 7025 }; 7026 }; 7027 "unc-path-regex-0.1.2" = { ··· 7096 sha512 = "rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug=="; 7097 }; 7098 }; 7099 + "universalify-2.0.0" = { 7100 + name = "universalify"; 7101 + packageName = "universalify"; 7102 + version = "2.0.0"; 7103 + src = fetchurl { 7104 + url = "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"; 7105 + sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 7106 + }; 7107 + }; 7108 "unix-dgram-2.0.3" = { 7109 name = "unix-dgram"; 7110 packageName = "unix-dgram"; ··· 7186 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7187 }; 7188 }; 7189 + "uuid-8.3.1" = { 7190 name = "uuid"; 7191 packageName = "uuid"; 7192 + version = "8.3.1"; 7193 src = fetchurl { 7194 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"; 7195 + sha512 = "FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="; 7196 }; 7197 }; 7198 + "v8-compile-cache-2.2.0" = { 7199 name = "v8-compile-cache"; 7200 packageName = "v8-compile-cache"; 7201 + version = "2.2.0"; 7202 src = fetchurl { 7203 + url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 7204 + sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 7205 }; 7206 }; 7207 + "v8-to-istanbul-6.0.1" = { 7208 name = "v8-to-istanbul"; 7209 packageName = "v8-to-istanbul"; 7210 + version = "6.0.1"; 7211 src = fetchurl { 7212 + url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-6.0.1.tgz"; 7213 + sha512 = "PzM1WlqquhBvsV+Gco6WSFeg1AGdD53ccMRkFeyHRE/KRZaVacPOmQYP3EeVgDBtKD2BJ8kgynBQ5OtKiHCH+w=="; 7214 }; 7215 }; 7216 "validate-npm-package-license-3.0.4" = { ··· 7294 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 7295 }; 7296 }; 7297 + "whatwg-url-8.4.0" = { 7298 name = "whatwg-url"; 7299 packageName = "whatwg-url"; 7300 + version = "8.4.0"; 7301 src = fetchurl { 7302 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz"; 7303 + sha512 = "vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="; 7304 }; 7305 }; 7306 "which-1.3.1" = { ··· 7492 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 7493 }; 7494 }; 7495 + "zigbee-herdsman-0.13.26" = { 7496 name = "zigbee-herdsman"; 7497 packageName = "zigbee-herdsman"; 7498 + version = "0.13.26"; 7499 src = fetchurl { 7500 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.26.tgz"; 7501 + sha512 = "NNPNmcqP7SaSdwzPGF4IjXczBnwX6rHXwB89t9faLDOLxAJgNU4EtFnLQXVrKi1t6ItMMfWzE9YtNdopSWicig=="; 7502 }; 7503 }; 7504 + "zigbee-herdsman-converters-12.0.224" = { 7505 name = "zigbee-herdsman-converters"; 7506 packageName = "zigbee-herdsman-converters"; 7507 + version = "12.0.224"; 7508 src = fetchurl { 7509 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-12.0.224.tgz"; 7510 + sha512 = "Iej1T5biRrXuKOdC6bsT8HDpayZSao/I4DWNstYlSyJhpa3QM0vZLbS4QexVmkG35gebrs1MSC7RVT4kUqizrw=="; 7511 }; 7512 }; 7513 + "zigbee2mqtt-frontend-0.2.68" = { 7514 name = "zigbee2mqtt-frontend"; 7515 packageName = "zigbee2mqtt-frontend"; 7516 + version = "0.2.68"; 7517 src = fetchurl { 7518 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.68.tgz"; 7519 + sha512 = "i89/EG+wQZ4m+O8I9VPuIgsAOxtft/e1pH5qqZeFcDvQg2iRuvRWR7CuEFJ4FnbakjOXU62eGldfzqsoq/m9Tw=="; 7520 }; 7521 }; 7522 }; 7523 args = { 7524 name = "zigbee2mqtt"; 7525 packageName = "zigbee2mqtt"; 7526 + version = "1.16.0"; 7527 src = ./.; 7528 dependencies = [ 7529 sources."@dabh/diagnostics-2.0.2" 7530 + sources."ajv-6.12.6" 7531 sources."argparse-1.0.10" 7532 sources."async-3.2.0" 7533 sources."balanced-match-1.0.0" 7534 sources."base64-js-1.3.1" 7535 sources."bindings-1.5.0" 7536 + sources."bl-4.0.3" 7537 + sources."brace-expansion-1.1.11" 7538 + sources."buffer-5.7.0" 7539 + sources."buffer-from-1.1.1" 7540 + (sources."callback-stream-1.1.0" // { 7541 dependencies = [ 7542 + sources."readable-stream-2.3.7" 7543 + sources."safe-buffer-5.1.2" 7544 + sources."string_decoder-1.1.1" 7545 ]; 7546 }) 7547 sources."color-3.0.0" 7548 sources."color-convert-1.9.3" 7549 sources."color-name-1.1.3" 7550 + sources."color-string-1.5.4" 7551 sources."colors-1.4.0" 7552 sources."colorspace-1.1.2" 7553 sources."commist-1.1.0" 7554 sources."concat-map-0.0.1" 7555 + sources."concat-stream-2.0.0" 7556 sources."core-util-is-1.0.2" 7557 sources."debounce-1.2.0" 7558 sources."debug-2.6.9" 7559 sources."depd-1.1.2" 7560 sources."destroy-1.0.4" 7561 + (sources."duplexify-3.7.1" // { 7562 + dependencies = [ 7563 + sources."readable-stream-2.3.7" 7564 + sources."safe-buffer-5.1.2" 7565 + sources."string_decoder-1.1.1" 7566 + ]; 7567 + }) 7568 sources."ee-first-1.1.1" 7569 sources."enabled-2.0.0" 7570 sources."encodeurl-1.0.2" 7571 sources."end-of-stream-1.4.4" 7572 sources."escape-html-1.0.3" 7573 sources."esprima-4.0.1" 7574 sources."etag-1.8.1" 7575 sources."eventemitter3-4.0.7" 7576 sources."extend-3.0.2" 7577 sources."fast-deep-equal-3.1.3" 7578 sources."fast-json-stable-stringify-2.1.0" ··· 7587 sources."git-last-commit-1.0.0" 7588 sources."glob-7.1.6" 7589 sources."glob-parent-3.1.0" 7590 + (sources."glob-stream-6.1.0" // { 7591 + dependencies = [ 7592 + sources."readable-stream-2.3.7" 7593 + sources."safe-buffer-5.1.2" 7594 + sources."string_decoder-1.1.1" 7595 + ]; 7596 + }) 7597 sources."glossy-0.1.7" 7598 sources."help-me-1.1.0" 7599 sources."http-errors-1.7.3" 7600 sources."http-proxy-1.18.1" 7601 + sources."humanize-duration-3.24.0" 7602 + sources."ieee754-1.2.1" 7603 sources."inflight-1.0.6" 7604 sources."inherits-2.0.4" 7605 sources."is-absolute-1.0.0" ··· 7626 sources."minimatch-3.0.4" 7627 sources."minimist-1.2.5" 7628 sources."mkdir-recursive-0.4.0" 7629 + sources."moment-2.29.1" 7630 + (sources."mqtt-4.2.4" // { 7631 dependencies = [ 7632 sources."debug-4.2.0" 7633 sources."ms-2.1.2" ··· 7640 ]; 7641 }) 7642 sources."ms-2.0.0" 7643 + sources."nan-2.14.2" 7644 sources."object-assign-deep-0.4.0" 7645 sources."on-finished-2.3.0" 7646 sources."once-1.4.0" 7647 sources."one-time-1.0.0" 7648 + (sources."ordered-read-streams-1.0.1" // { 7649 + dependencies = [ 7650 + sources."readable-stream-2.3.7" 7651 + sources."safe-buffer-5.1.2" 7652 + sources."string_decoder-1.1.1" 7653 + ]; 7654 + }) 7655 sources."parseurl-1.3.3" 7656 sources."path-dirname-1.0.2" 7657 sources."path-is-absolute-1.0.1" ··· 7664 }) 7665 sources."punycode-2.1.1" 7666 sources."range-parser-1.2.1" 7667 + sources."readable-stream-3.6.0" 7668 sources."reinterval-1.1.0" 7669 sources."remove-trailing-separator-1.1.0" 7670 sources."requires-port-1.0.0" 7671 sources."rimraf-3.0.2" 7672 + sources."safe-buffer-5.2.1" 7673 sources."semver-7.3.2" 7674 (sources."send-0.17.1" // { 7675 dependencies = [ ··· 7679 sources."serve-static-1.14.1" 7680 sources."setprototypeof-1.1.1" 7681 sources."simple-swizzle-0.2.2" 7682 + sources."split2-3.2.2" 7683 sources."sprintf-js-1.0.3" 7684 sources."stack-trace-0.0.10" 7685 sources."statuses-1.5.0" 7686 sources."stream-shift-1.0.1" 7687 + sources."string_decoder-1.3.0" 7688 sources."text-hex-1.0.0" 7689 + (sources."through2-2.0.5" // { 7690 + dependencies = [ 7691 + sources."readable-stream-2.3.7" 7692 + sources."safe-buffer-5.1.2" 7693 + sources."string_decoder-1.1.1" 7694 + ]; 7695 + }) 7696 sources."through2-filter-3.0.0" 7697 sources."to-absolute-glob-2.0.2" 7698 sources."toidentifier-1.0.0" 7699 sources."triple-beam-1.3.0" 7700 sources."typedarray-0.0.6" 7701 sources."unc-path-regex-0.1.2" 7702 sources."unique-stream-2.3.1" ··· 7704 sources."unpipe-1.0.0" 7705 sources."uri-js-4.4.0" 7706 sources."util-deprecate-1.0.2" 7707 + sources."winston-3.3.3" 7708 + sources."winston-syslog-2.4.4" 7709 + (sources."winston-transport-4.4.0" // { 7710 dependencies = [ 7711 + sources."readable-stream-2.3.7" 7712 + sources."safe-buffer-5.1.2" 7713 + sources."string_decoder-1.1.1" 7714 ]; 7715 }) 7716 sources."wrappy-1.0.2" 7717 sources."ws-7.3.1" 7718 sources."xtend-4.0.2" 7719 + (sources."zigbee-herdsman-0.13.26" // { 7720 dependencies = [ 7721 + sources."@babel/cli-7.12.1" 7722 sources."@babel/code-frame-7.10.4" 7723 + sources."@babel/compat-data-7.12.1" 7724 + sources."@babel/core-7.12.3" 7725 + sources."@babel/generator-7.12.1" 7726 sources."@babel/helper-annotate-as-pure-7.10.4" 7727 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 7728 + sources."@babel/helper-compilation-targets-7.12.1" 7729 + sources."@babel/helper-create-class-features-plugin-7.12.1" 7730 + sources."@babel/helper-create-regexp-features-plugin-7.12.1" 7731 sources."@babel/helper-define-map-7.10.5" 7732 + sources."@babel/helper-explode-assignable-expression-7.12.1" 7733 sources."@babel/helper-function-name-7.10.4" 7734 sources."@babel/helper-get-function-arity-7.10.4" 7735 sources."@babel/helper-hoist-variables-7.10.4" 7736 + sources."@babel/helper-member-expression-to-functions-7.12.1" 7737 + sources."@babel/helper-module-imports-7.12.1" 7738 + sources."@babel/helper-module-transforms-7.12.1" 7739 sources."@babel/helper-optimise-call-expression-7.10.4" 7740 sources."@babel/helper-plugin-utils-7.10.4" 7741 sources."@babel/helper-regex-7.10.5" 7742 + sources."@babel/helper-remap-async-to-generator-7.12.1" 7743 + sources."@babel/helper-replace-supers-7.12.1" 7744 + sources."@babel/helper-simple-access-7.12.1" 7745 + sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 7746 sources."@babel/helper-split-export-declaration-7.11.0" 7747 sources."@babel/helper-validator-identifier-7.10.4" 7748 + sources."@babel/helper-validator-option-7.12.1" 7749 + sources."@babel/helper-wrap-function-7.12.3" 7750 + sources."@babel/helpers-7.12.1" 7751 sources."@babel/highlight-7.10.4" 7752 + sources."@babel/parser-7.12.3" 7753 + sources."@babel/plugin-proposal-async-generator-functions-7.12.1" 7754 + sources."@babel/plugin-proposal-class-properties-7.12.1" 7755 + sources."@babel/plugin-proposal-dynamic-import-7.12.1" 7756 + sources."@babel/plugin-proposal-export-namespace-from-7.12.1" 7757 + sources."@babel/plugin-proposal-json-strings-7.12.1" 7758 + sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1" 7759 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" 7760 + sources."@babel/plugin-proposal-numeric-separator-7.12.1" 7761 + sources."@babel/plugin-proposal-object-rest-spread-7.12.1" 7762 + sources."@babel/plugin-proposal-optional-catch-binding-7.12.1" 7763 + sources."@babel/plugin-proposal-optional-chaining-7.12.1" 7764 + sources."@babel/plugin-proposal-private-methods-7.12.1" 7765 + sources."@babel/plugin-proposal-unicode-property-regex-7.12.1" 7766 sources."@babel/plugin-syntax-async-generators-7.8.4" 7767 sources."@babel/plugin-syntax-bigint-7.8.3" 7768 + sources."@babel/plugin-syntax-class-properties-7.12.1" 7769 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 7770 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 7771 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 7776 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 7777 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 7778 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 7779 + sources."@babel/plugin-syntax-top-level-await-7.12.1" 7780 + sources."@babel/plugin-syntax-typescript-7.12.1" 7781 + sources."@babel/plugin-transform-arrow-functions-7.12.1" 7782 + sources."@babel/plugin-transform-async-to-generator-7.12.1" 7783 + sources."@babel/plugin-transform-block-scoped-functions-7.12.1" 7784 + sources."@babel/plugin-transform-block-scoping-7.12.1" 7785 + sources."@babel/plugin-transform-classes-7.12.1" 7786 + sources."@babel/plugin-transform-computed-properties-7.12.1" 7787 + sources."@babel/plugin-transform-destructuring-7.12.1" 7788 + sources."@babel/plugin-transform-dotall-regex-7.12.1" 7789 + sources."@babel/plugin-transform-duplicate-keys-7.12.1" 7790 + sources."@babel/plugin-transform-exponentiation-operator-7.12.1" 7791 + sources."@babel/plugin-transform-for-of-7.12.1" 7792 + sources."@babel/plugin-transform-function-name-7.12.1" 7793 + sources."@babel/plugin-transform-literals-7.12.1" 7794 + sources."@babel/plugin-transform-member-expression-literals-7.12.1" 7795 + sources."@babel/plugin-transform-modules-amd-7.12.1" 7796 + sources."@babel/plugin-transform-modules-commonjs-7.12.1" 7797 + sources."@babel/plugin-transform-modules-systemjs-7.12.1" 7798 + sources."@babel/plugin-transform-modules-umd-7.12.1" 7799 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.1" 7800 + sources."@babel/plugin-transform-new-target-7.12.1" 7801 + sources."@babel/plugin-transform-object-super-7.12.1" 7802 + sources."@babel/plugin-transform-parameters-7.12.1" 7803 + sources."@babel/plugin-transform-property-literals-7.12.1" 7804 + sources."@babel/plugin-transform-regenerator-7.12.1" 7805 + sources."@babel/plugin-transform-reserved-words-7.12.1" 7806 + sources."@babel/plugin-transform-shorthand-properties-7.12.1" 7807 + sources."@babel/plugin-transform-spread-7.12.1" 7808 + sources."@babel/plugin-transform-sticky-regex-7.12.1" 7809 + sources."@babel/plugin-transform-template-literals-7.12.1" 7810 + sources."@babel/plugin-transform-typeof-symbol-7.12.1" 7811 + sources."@babel/plugin-transform-typescript-7.12.1" 7812 + sources."@babel/plugin-transform-unicode-escapes-7.12.1" 7813 + sources."@babel/plugin-transform-unicode-regex-7.12.1" 7814 + sources."@babel/preset-env-7.12.1" 7815 sources."@babel/preset-modules-0.1.4" 7816 + sources."@babel/preset-typescript-7.12.1" 7817 + sources."@babel/runtime-7.12.1" 7818 sources."@babel/template-7.10.4" 7819 + sources."@babel/traverse-7.12.1" 7820 + sources."@babel/types-7.12.1" 7821 sources."@bcoe/v8-coverage-0.2.3" 7822 sources."@cnakazawa/watch-1.0.4" 7823 + (sources."@eslint/eslintrc-0.2.1" // { 7824 dependencies = [ 7825 sources."globals-12.4.0" 7826 sources."ignore-4.0.6" ··· 7829 }) 7830 sources."@istanbuljs/load-nyc-config-1.1.0" 7831 sources."@istanbuljs/schema-0.1.2" 7832 + (sources."@jest/console-26.6.1" // { 7833 dependencies = [ 7834 + sources."ansi-styles-4.3.0" 7835 sources."chalk-4.1.0" 7836 sources."color-convert-2.0.1" 7837 sources."color-name-1.1.4" ··· 7840 sources."supports-color-7.2.0" 7841 ]; 7842 }) 7843 + (sources."@jest/core-26.6.1" // { 7844 dependencies = [ 7845 sources."ansi-regex-5.0.0" 7846 + sources."ansi-styles-4.3.0" 7847 sources."braces-3.0.2" 7848 sources."chalk-4.1.0" 7849 sources."color-convert-2.0.1" ··· 7859 sources."to-regex-range-5.0.1" 7860 ]; 7861 }) 7862 + sources."@jest/environment-26.6.1" 7863 + sources."@jest/fake-timers-26.6.1" 7864 + sources."@jest/globals-26.6.1" 7865 + (sources."@jest/reporters-26.6.1" // { 7866 dependencies = [ 7867 + sources."ansi-styles-4.3.0" 7868 sources."chalk-4.1.0" 7869 sources."color-convert-2.0.1" 7870 sources."color-name-1.1.4" ··· 7874 sources."supports-color-7.2.0" 7875 ]; 7876 }) 7877 + (sources."@jest/source-map-26.5.0" // { 7878 dependencies = [ 7879 sources."source-map-0.6.1" 7880 ]; 7881 }) 7882 + sources."@jest/test-result-26.6.1" 7883 + sources."@jest/test-sequencer-26.6.1" 7884 + (sources."@jest/transform-26.6.1" // { 7885 dependencies = [ 7886 + sources."ansi-styles-4.3.0" 7887 sources."braces-3.0.2" 7888 sources."chalk-4.1.0" 7889 sources."color-convert-2.0.1" ··· 7898 sources."to-regex-range-5.0.1" 7899 ]; 7900 }) 7901 + (sources."@jest/types-26.6.1" // { 7902 dependencies = [ 7903 + sources."ansi-styles-4.3.0" 7904 + sources."chalk-4.1.0" 7905 sources."color-convert-2.0.1" 7906 sources."color-name-1.1.4" 7907 sources."has-flag-4.0.0" 7908 sources."supports-color-7.2.0" 7909 ]; 7910 }) 7911 + (sources."@nicolo-ribaudo/chokidar-2-2.1.8" // { 7912 + dependencies = [ 7913 + sources."chokidar-2.1.8" 7914 + ]; 7915 + }) 7916 sources."@nodelib/fs.scandir-2.1.3" 7917 sources."@nodelib/fs.stat-2.0.3" 7918 sources."@nodelib/fs.walk-1.2.4" 7919 + sources."@serialport/binding-abstract-9.0.2" 7920 + sources."@serialport/binding-mock-9.0.2" 7921 + sources."@serialport/bindings-9.0.2" 7922 sources."@serialport/parser-byte-length-9.0.1" 7923 sources."@serialport/parser-cctalk-9.0.1" 7924 sources."@serialport/parser-delimiter-9.0.1" 7925 sources."@serialport/parser-readline-9.0.1" 7926 sources."@serialport/parser-ready-9.0.1" 7927 sources."@serialport/parser-regex-9.0.1" 7928 + sources."@serialport/stream-9.0.2" 7929 sources."@sinonjs/commons-1.8.1" 7930 sources."@sinonjs/fake-timers-6.0.1" 7931 + sources."@types/babel__core-7.1.11" 7932 sources."@types/babel__generator-7.6.2" 7933 sources."@types/babel__template-7.0.3" 7934 sources."@types/babel__traverse-7.0.15" 7935 + sources."@types/debounce-1.2.0" 7936 sources."@types/debug-4.1.5" 7937 + sources."@types/graceful-fs-4.1.4" 7938 sources."@types/istanbul-lib-coverage-2.0.3" 7939 sources."@types/istanbul-lib-report-3.0.0" 7940 + sources."@types/istanbul-reports-3.0.0" 7941 + sources."@types/jest-26.0.15" 7942 sources."@types/json-schema-7.0.6" 7943 sources."@types/nedb-1.8.11" 7944 + sources."@types/node-14.14.6" 7945 sources."@types/normalize-package-data-2.4.0" 7946 + sources."@types/prettier-2.1.5" 7947 sources."@types/serialport-8.0.1" 7948 + sources."@types/stack-utils-2.0.0" 7949 + sources."@types/yargs-15.0.9" 7950 sources."@types/yargs-parser-15.0.0" 7951 + (sources."@typescript-eslint/eslint-plugin-4.6.0" // { 7952 dependencies = [ 7953 sources."semver-7.3.2" 7954 ]; 7955 }) 7956 + sources."@typescript-eslint/experimental-utils-4.6.0" 7957 + sources."@typescript-eslint/parser-4.6.0" 7958 + sources."@typescript-eslint/scope-manager-4.6.0" 7959 + sources."@typescript-eslint/types-4.6.0" 7960 + (sources."@typescript-eslint/typescript-estree-4.6.0" // { 7961 dependencies = [ 7962 sources."semver-7.3.2" 7963 ]; 7964 }) 7965 + sources."@typescript-eslint/visitor-keys-4.6.0" 7966 sources."abab-2.0.5" 7967 + sources."acorn-7.4.1" 7968 sources."acorn-globals-6.0.0" 7969 sources."acorn-jsx-5.3.1" 7970 sources."acorn-walk-7.2.0" 7971 + sources."ajv-6.12.6" 7972 sources."ansi-colors-4.1.1" 7973 (sources."ansi-escapes-4.3.1" // { 7974 dependencies = [ ··· 7999 sources."at-least-node-1.0.0" 8000 sources."atob-2.1.2" 8001 sources."aws-sign2-0.7.0" 8002 + sources."aws4-1.11.0" 8003 + (sources."babel-jest-26.6.1" // { 8004 dependencies = [ 8005 + sources."ansi-styles-4.3.0" 8006 sources."chalk-4.1.0" 8007 sources."color-convert-2.0.1" 8008 sources."color-name-1.1.4" ··· 8013 }) 8014 sources."babel-plugin-dynamic-import-node-2.3.3" 8015 sources."babel-plugin-istanbul-6.0.0" 8016 + sources."babel-plugin-jest-hoist-26.5.0" 8017 + sources."babel-preset-current-node-syntax-0.1.4" 8018 + sources."babel-preset-jest-26.5.0" 8019 sources."balanced-match-1.0.0" 8020 (sources."base-0.11.2" // { 8021 dependencies = [ ··· 8045 sources."browser-process-hrtime-1.0.0" 8046 sources."browserslist-4.14.5" 8047 sources."bser-2.1.1" 8048 + sources."buffer-5.7.0" 8049 sources."buffer-from-1.1.1" 8050 sources."cache-base-1.0.1" 8051 + sources."call-bind-1.0.0" 8052 sources."callsites-3.1.0" 8053 sources."camelcase-5.3.1" 8054 + sources."caniuse-lite-1.0.30001154" 8055 sources."capture-exit-2.0.0" 8056 sources."caseless-0.12.0" 8057 sources."chalk-2.4.2" 8058 sources."char-regex-1.0.2" 8059 + (sources."chokidar-3.4.3" // { 8060 + dependencies = [ 8061 + sources."anymatch-3.1.1" 8062 + sources."binary-extensions-2.1.0" 8063 + sources."braces-3.0.2" 8064 + sources."fill-range-7.0.1" 8065 + sources."fsevents-2.1.3" 8066 + sources."glob-parent-5.1.1" 8067 + sources."is-binary-path-2.1.0" 8068 + sources."is-number-7.0.0" 8069 + sources."readdirp-3.5.0" 8070 + sources."to-regex-range-5.0.1" 8071 + ]; 8072 + }) 8073 sources."chownr-1.1.4" 8074 sources."ci-info-2.0.0" 8075 + sources."cjs-module-lexer-0.4.3" 8076 (sources."class-utils-0.3.6" // { 8077 dependencies = [ 8078 sources."define-property-0.2.5" ··· 8115 }) 8116 sources."dashdash-1.14.1" 8117 sources."data-urls-2.0.0" 8118 + sources."debounce-1.2.0" 8119 sources."debug-4.2.0" 8120 sources."decamelize-1.2.0" 8121 + sources."decimal.js-10.2.1" 8122 sources."decode-uri-component-0.2.0" 8123 sources."decompress-response-4.2.1" 8124 sources."deep-extend-0.6.0" ··· 8136 sources."delegates-1.0.0" 8137 sources."detect-libc-1.0.3" 8138 sources."detect-newline-3.1.0" 8139 + sources."diff-sequences-26.5.0" 8140 sources."dir-glob-3.0.1" 8141 sources."doctrine-3.0.0" 8142 (sources."domexception-2.0.1" // { ··· 8145 ]; 8146 }) 8147 sources."ecc-jsbn-0.1.2" 8148 + sources."electron-to-chromium-1.3.585" 8149 + sources."emittery-0.7.2" 8150 sources."emoji-regex-7.0.3" 8151 sources."end-of-stream-1.4.4" 8152 sources."enquirer-2.3.6" 8153 sources."error-ex-1.3.2" 8154 + sources."escalade-3.1.1" 8155 sources."escape-string-regexp-1.0.5" 8156 (sources."escodegen-1.14.3" // { 8157 dependencies = [ ··· 8162 sources."type-check-0.3.2" 8163 ]; 8164 }) 8165 + (sources."eslint-7.12.1" // { 8166 dependencies = [ 8167 sources."ansi-regex-5.0.0" 8168 + sources."ansi-styles-4.3.0" 8169 sources."chalk-4.1.0" 8170 sources."color-convert-2.0.1" 8171 sources."color-name-1.1.4" 8172 sources."cross-spawn-7.0.3" 8173 sources."glob-parent-5.1.1" 8174 sources."globals-12.4.0" 8175 sources."has-flag-4.0.0" ··· 8221 ]; 8222 }) 8223 sources."expand-template-2.0.3" 8224 + (sources."expect-26.6.1" // { 8225 dependencies = [ 8226 + sources."ansi-styles-4.3.0" 8227 sources."color-convert-2.0.1" 8228 sources."color-name-1.1.4" 8229 ]; 8230 }) 8231 sources."extend-3.0.2" ··· 8257 }) 8258 sources."fast-json-stable-stringify-2.1.0" 8259 sources."fast-levenshtein-2.0.6" 8260 + sources."fastq-1.9.0" 8261 sources."fb-watchman-2.0.1" 8262 sources."file-entry-cache-5.0.1" 8263 sources."file-uri-to-path-1.0.0" ··· 8281 sources."function-bind-1.1.1" 8282 sources."functional-red-black-tree-1.0.1" 8283 sources."gauge-2.7.4" 8284 + sources."gensync-1.0.0-beta.2" 8285 sources."get-caller-file-2.0.5" 8286 + sources."get-intrinsic-1.0.1" 8287 sources."get-package-type-0.1.0" 8288 sources."get-stream-4.1.0" 8289 sources."get-value-2.0.6" ··· 8320 sources."kind-of-4.0.0" 8321 ]; 8322 }) 8323 + sources."highlight.js-10.3.2" 8324 sources."hosted-git-info-2.8.8" 8325 sources."html-encoding-sniffer-2.0.1" 8326 sources."html-escaper-2.0.2" 8327 sources."http-signature-1.2.0" 8328 sources."human-signals-1.1.1" 8329 sources."iconv-lite-0.4.24" 8330 + sources."ieee754-1.2.1" 8331 sources."ignore-5.1.8" 8332 (sources."import-fresh-3.2.1" // { 8333 dependencies = [ ··· 8340 sources."inherits-2.0.4" 8341 sources."ini-1.3.5" 8342 sources."interpret-1.4.0" 8343 sources."ip-regex-2.1.0" 8344 (sources."is-accessor-descriptor-0.1.6" // { 8345 dependencies = [ ··· 8349 sources."is-arrayish-0.2.1" 8350 sources."is-binary-path-1.0.1" 8351 sources."is-buffer-1.1.6" 8352 sources."is-ci-2.0.0" 8353 + sources."is-core-module-2.0.0" 8354 (sources."is-data-descriptor-0.1.4" // { 8355 dependencies = [ 8356 sources."kind-of-3.2.2" 8357 ]; 8358 }) 8359 (sources."is-descriptor-0.1.6" // { 8360 dependencies = [ 8361 sources."kind-of-5.1.0" ··· 8367 sources."is-fullwidth-code-point-1.0.0" 8368 sources."is-generator-fn-2.1.0" 8369 sources."is-glob-4.0.1" 8370 (sources."is-number-3.0.0" // { 8371 dependencies = [ 8372 sources."kind-of-3.2.2" ··· 8374 }) 8375 sources."is-plain-object-2.0.4" 8376 sources."is-potential-custom-element-name-1.0.0" 8377 sources."is-stream-1.1.0" 8378 sources."is-typedarray-1.0.0" 8379 sources."is-windows-1.0.2" 8380 sources."is-wsl-2.2.0" ··· 8402 ]; 8403 }) 8404 sources."istanbul-reports-3.0.2" 8405 + (sources."jest-26.6.1" // { 8406 dependencies = [ 8407 + sources."ansi-styles-4.3.0" 8408 sources."chalk-4.1.0" 8409 sources."color-convert-2.0.1" 8410 sources."color-name-1.1.4" 8411 sources."has-flag-4.0.0" 8412 + sources."jest-cli-26.6.1" 8413 sources."supports-color-7.2.0" 8414 ]; 8415 }) 8416 + (sources."jest-changed-files-26.6.1" // { 8417 dependencies = [ 8418 sources."cross-spawn-7.0.3" 8419 + sources."execa-4.1.0" 8420 sources."get-stream-5.2.0" 8421 sources."is-stream-2.0.0" 8422 sources."npm-run-path-4.0.1" 8423 sources."path-key-3.1.1" 8424 sources."shebang-command-2.0.0" 8425 sources."shebang-regex-3.0.0" 8426 sources."which-2.0.2" 8427 ]; 8428 }) 8429 + (sources."jest-config-26.6.1" // { 8430 dependencies = [ 8431 + sources."ansi-styles-4.3.0" 8432 sources."braces-3.0.2" 8433 sources."chalk-4.1.0" 8434 sources."color-convert-2.0.1" ··· 8436 sources."fill-range-7.0.1" 8437 sources."has-flag-4.0.0" 8438 sources."is-number-7.0.0" 8439 sources."micromatch-4.0.2" 8440 sources."supports-color-7.2.0" 8441 sources."to-regex-range-5.0.1" 8442 ]; 8443 }) 8444 + (sources."jest-diff-26.6.1" // { 8445 dependencies = [ 8446 + sources."ansi-styles-4.3.0" 8447 + sources."chalk-4.1.0" 8448 sources."color-convert-2.0.1" 8449 sources."color-name-1.1.4" 8450 sources."has-flag-4.0.0" ··· 8452 ]; 8453 }) 8454 sources."jest-docblock-26.0.0" 8455 + (sources."jest-each-26.6.1" // { 8456 dependencies = [ 8457 + sources."ansi-styles-4.3.0" 8458 sources."chalk-4.1.0" 8459 sources."color-convert-2.0.1" 8460 sources."color-name-1.1.4" 8461 sources."has-flag-4.0.0" 8462 sources."supports-color-7.2.0" 8463 ]; 8464 }) 8465 + sources."jest-environment-jsdom-26.6.1" 8466 + sources."jest-environment-node-26.6.1" 8467 + sources."jest-get-type-26.3.0" 8468 + (sources."jest-haste-map-26.6.1" // { 8469 dependencies = [ 8470 sources."anymatch-3.1.1" 8471 sources."braces-3.0.2" 8472 sources."fill-range-7.0.1" 8473 sources."fsevents-2.1.3" 8474 sources."is-number-7.0.0" 8475 sources."micromatch-4.0.2" 8476 sources."to-regex-range-5.0.1" 8477 ]; 8478 }) 8479 + (sources."jest-jasmine2-26.6.1" // { 8480 dependencies = [ 8481 + sources."ansi-styles-4.3.0" 8482 sources."chalk-4.1.0" 8483 sources."color-convert-2.0.1" 8484 sources."color-name-1.1.4" 8485 sources."has-flag-4.0.0" 8486 sources."supports-color-7.2.0" 8487 ]; 8488 }) 8489 + sources."jest-leak-detector-26.6.1" 8490 + (sources."jest-matcher-utils-26.6.1" // { 8491 dependencies = [ 8492 + sources."ansi-styles-4.3.0" 8493 sources."chalk-4.1.0" 8494 sources."color-convert-2.0.1" 8495 sources."color-name-1.1.4" 8496 sources."has-flag-4.0.0" 8497 sources."supports-color-7.2.0" 8498 ]; 8499 }) 8500 + (sources."jest-message-util-26.6.1" // { 8501 dependencies = [ 8502 + sources."ansi-styles-4.3.0" 8503 sources."braces-3.0.2" 8504 sources."chalk-4.1.0" 8505 sources."color-convert-2.0.1" ··· 8513 sources."to-regex-range-5.0.1" 8514 ]; 8515 }) 8516 + sources."jest-mock-26.6.1" 8517 sources."jest-pnp-resolver-1.2.2" 8518 sources."jest-regex-util-26.0.0" 8519 + (sources."jest-resolve-26.6.1" // { 8520 dependencies = [ 8521 + sources."ansi-styles-4.3.0" 8522 sources."chalk-4.1.0" 8523 sources."color-convert-2.0.1" 8524 sources."color-name-1.1.4" ··· 8527 sources."supports-color-7.2.0" 8528 ]; 8529 }) 8530 + sources."jest-resolve-dependencies-26.6.1" 8531 + (sources."jest-runner-26.6.1" // { 8532 dependencies = [ 8533 + sources."ansi-styles-4.3.0" 8534 sources."chalk-4.1.0" 8535 sources."color-convert-2.0.1" 8536 sources."color-name-1.1.4" ··· 8538 sources."supports-color-7.2.0" 8539 ]; 8540 }) 8541 + (sources."jest-runtime-26.6.1" // { 8542 dependencies = [ 8543 + sources."ansi-styles-4.3.0" 8544 sources."chalk-4.1.0" 8545 sources."color-convert-2.0.1" 8546 sources."color-name-1.1.4" ··· 8549 sources."supports-color-7.2.0" 8550 ]; 8551 }) 8552 + sources."jest-serializer-26.5.0" 8553 + (sources."jest-snapshot-26.6.1" // { 8554 dependencies = [ 8555 + sources."ansi-styles-4.3.0" 8556 sources."chalk-4.1.0" 8557 sources."color-convert-2.0.1" 8558 sources."color-name-1.1.4" 8559 sources."has-flag-4.0.0" 8560 sources."semver-7.3.2" 8561 sources."supports-color-7.2.0" 8562 ]; 8563 }) 8564 + (sources."jest-util-26.6.1" // { 8565 dependencies = [ 8566 + sources."ansi-styles-4.3.0" 8567 sources."braces-3.0.2" 8568 sources."chalk-4.1.0" 8569 sources."color-convert-2.0.1" ··· 8576 sources."to-regex-range-5.0.1" 8577 ]; 8578 }) 8579 + (sources."jest-validate-26.6.1" // { 8580 dependencies = [ 8581 + sources."ansi-styles-4.3.0" 8582 + sources."camelcase-6.2.0" 8583 sources."chalk-4.1.0" 8584 sources."color-convert-2.0.1" 8585 sources."color-name-1.1.4" 8586 sources."has-flag-4.0.0" 8587 sources."supports-color-7.2.0" 8588 ]; 8589 }) 8590 + (sources."jest-watcher-26.6.1" // { 8591 dependencies = [ 8592 + sources."ansi-styles-4.3.0" 8593 sources."chalk-4.1.0" 8594 sources."color-convert-2.0.1" 8595 sources."color-name-1.1.4" ··· 8597 sources."supports-color-7.2.0" 8598 ]; 8599 }) 8600 + (sources."jest-worker-26.6.1" // { 8601 dependencies = [ 8602 sources."has-flag-4.0.0" 8603 sources."supports-color-7.2.0" ··· 8614 sources."json-stable-stringify-without-jsonify-1.0.1" 8615 sources."json-stringify-safe-5.0.1" 8616 sources."json5-2.1.3" 8617 + (sources."jsonfile-6.1.0" // { 8618 + dependencies = [ 8619 + sources."universalify-2.0.0" 8620 + ]; 8621 + }) 8622 sources."jsprim-1.4.1" 8623 sources."kind-of-6.0.3" 8624 sources."kleur-3.0.3" 8625 sources."leven-3.1.0" 8626 sources."levn-0.4.1" 8627 sources."lines-and-columns-1.1.6" 8628 sources."locate-path-5.0.0" 8629 sources."lodash-4.17.20" 8630 sources."lodash.sortby-4.7.0" 8631 sources."lunr-2.3.9" 8632 sources."make-dir-2.1.0" 8633 sources."makeerror-1.0.11" 8634 sources."map-cache-0.2.2" 8635 sources."map-visit-1.0.0" 8636 + sources."marked-1.2.2" 8637 sources."merge-stream-2.0.0" 8638 sources."merge2-1.4.1" 8639 sources."micromatch-3.1.10" ··· 8647 sources."mkdirp-0.5.5" 8648 sources."mkdirp-classic-0.5.3" 8649 sources."ms-2.1.2" 8650 + sources."nan-2.14.2" 8651 sources."nanomatch-1.2.13" 8652 sources."napi-build-utils-1.0.2" 8653 sources."natural-compare-1.4.0" ··· 8662 sources."which-2.0.2" 8663 ]; 8664 }) 8665 + sources."node-releases-1.1.65" 8666 sources."noop-logger-0.1.1" 8667 sources."normalize-package-data-2.5.0" 8668 sources."normalize-path-3.0.0" ··· 8678 sources."kind-of-3.2.2" 8679 ]; 8680 }) 8681 sources."object-keys-1.1.1" 8682 sources."object-visit-1.0.1" 8683 + sources."object.assign-4.1.2" 8684 sources."object.pick-1.3.0" 8685 sources."once-1.4.0" 8686 sources."onetime-5.1.2" ··· 8706 sources."pirates-4.0.1" 8707 sources."pkg-dir-4.2.0" 8708 sources."posix-character-classes-0.1.1" 8709 + sources."prebuild-install-5.3.6" 8710 sources."prelude-ls-1.2.1" 8711 + (sources."pretty-format-26.6.1" // { 8712 dependencies = [ 8713 sources."ansi-regex-5.0.0" 8714 + sources."ansi-styles-4.3.0" 8715 sources."color-convert-2.0.1" 8716 sources."color-name-1.1.4" 8717 ]; 8718 }) 8719 sources."process-nextick-args-2.0.1" 8720 sources."progress-2.0.3" 8721 + sources."prompts-2.4.0" 8722 sources."psl-1.8.0" 8723 sources."pump-3.0.0" 8724 sources."punycode-2.1.1" 8725 sources."qs-6.5.2" 8726 sources."rc-1.2.8" 8727 + sources."react-is-17.0.1" 8728 (sources."read-pkg-5.2.0" // { 8729 dependencies = [ 8730 sources."type-fest-0.6.0" ··· 8764 }) 8765 sources."require-directory-2.1.1" 8766 sources."require-main-filename-2.0.0" 8767 + sources."resolve-1.18.1" 8768 sources."resolve-cwd-3.0.0" 8769 sources."resolve-from-5.0.0" 8770 sources."resolve-url-0.2.1" ··· 8772 sources."reusify-1.0.4" 8773 sources."rimraf-2.6.3" 8774 sources."rsvp-4.8.5" 8775 + sources."run-parallel-1.1.10" 8776 sources."safe-buffer-5.1.2" 8777 sources."safe-regex-1.1.0" 8778 sources."safer-buffer-2.1.2" 8779 sources."sane-4.1.0" 8780 sources."saxes-5.0.1" 8781 sources."semver-5.7.1" 8782 + sources."serialport-9.0.2" 8783 sources."set-blocking-2.0.0" 8784 (sources."set-value-2.0.1" // { 8785 dependencies = [ ··· 8855 ]; 8856 }) 8857 sources."string-width-1.0.2" 8858 sources."string_decoder-1.1.1" 8859 sources."strip-ansi-3.0.1" 8860 sources."strip-bom-4.0.0" ··· 8898 sources."to-regex-range-2.1.1" 8899 sources."tough-cookie-3.0.1" 8900 sources."tr46-2.0.2" 8901 + sources."tslib-1.14.1" 8902 sources."tsutils-3.17.1" 8903 sources."tunnel-agent-0.6.0" 8904 sources."tweetnacl-0.14.5" ··· 8912 ]; 8913 }) 8914 sources."typedoc-default-themes-0.11.4" 8915 + sources."typedoc-plugin-markdown-3.0.11" 8916 sources."typedoc-plugin-no-inherit-1.2.0" 8917 sources."typedoc-plugin-sourcefile-url-1.0.6" 8918 + sources."typescript-4.0.5" 8919 + sources."uglify-js-3.11.4" 8920 sources."unicode-canonical-property-names-ecmascript-1.0.4" 8921 sources."unicode-match-property-ecmascript-1.0.4" 8922 sources."unicode-match-property-value-ecmascript-1.2.0" ··· 8938 sources."urix-0.1.0" 8939 sources."use-3.1.1" 8940 sources."util-deprecate-1.0.2" 8941 + sources."uuid-8.3.1" 8942 + sources."v8-compile-cache-2.2.0" 8943 + (sources."v8-to-istanbul-6.0.1" // { 8944 dependencies = [ 8945 sources."source-map-0.7.3" 8946 ]; ··· 8953 sources."webidl-conversions-6.1.0" 8954 sources."whatwg-encoding-1.0.5" 8955 sources."whatwg-mimetype-2.3.0" 8956 + sources."whatwg-url-8.4.0" 8957 sources."which-1.3.1" 8958 sources."which-module-2.0.0" 8959 sources."which-pm-runs-1.0.0" ··· 8963 (sources."wrap-ansi-6.2.0" // { 8964 dependencies = [ 8965 sources."ansi-regex-5.0.0" 8966 + sources."ansi-styles-4.3.0" 8967 sources."color-convert-2.0.1" 8968 sources."color-name-1.1.4" 8969 sources."emoji-regex-8.0.0" ··· 8991 sources."yargs-parser-18.1.3" 8992 ]; 8993 }) 8994 + (sources."zigbee-herdsman-converters-12.0.224" // { 8995 dependencies = [ 8996 sources."@babel/code-frame-7.10.4" 8997 + (sources."@babel/core-7.12.3" // { 8998 dependencies = [ 8999 sources."semver-5.7.1" 9000 sources."source-map-0.5.7" 9001 ]; 9002 }) 9003 + (sources."@babel/generator-7.12.1" // { 9004 dependencies = [ 9005 sources."source-map-0.5.7" 9006 ]; 9007 }) 9008 sources."@babel/helper-function-name-7.10.4" 9009 sources."@babel/helper-get-function-arity-7.10.4" 9010 + sources."@babel/helper-member-expression-to-functions-7.12.1" 9011 + sources."@babel/helper-module-imports-7.12.1" 9012 + sources."@babel/helper-module-transforms-7.12.1" 9013 sources."@babel/helper-optimise-call-expression-7.10.4" 9014 sources."@babel/helper-plugin-utils-7.10.4" 9015 + sources."@babel/helper-replace-supers-7.12.1" 9016 + sources."@babel/helper-simple-access-7.12.1" 9017 sources."@babel/helper-split-export-declaration-7.11.0" 9018 sources."@babel/helper-validator-identifier-7.10.4" 9019 + sources."@babel/helpers-7.12.1" 9020 (sources."@babel/highlight-7.10.4" // { 9021 dependencies = [ 9022 sources."chalk-2.4.2" 9023 ]; 9024 }) 9025 + sources."@babel/parser-7.12.3" 9026 sources."@babel/plugin-syntax-async-generators-7.8.4" 9027 sources."@babel/plugin-syntax-bigint-7.8.3" 9028 + sources."@babel/plugin-syntax-class-properties-7.12.1" 9029 sources."@babel/plugin-syntax-import-meta-7.10.4" 9030 sources."@babel/plugin-syntax-json-strings-7.8.3" 9031 sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" ··· 9035 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9036 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9037 sources."@babel/template-7.10.4" 9038 + (sources."@babel/traverse-7.12.1" // { 9039 dependencies = [ 9040 sources."globals-11.12.0" 9041 ]; 9042 }) 9043 + sources."@babel/types-7.12.1" 9044 sources."@bcoe/v8-coverage-0.2.3" 9045 sources."@cnakazawa/watch-1.0.4" 9046 + sources."@eslint/eslintrc-0.2.1" 9047 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9048 dependencies = [ 9049 sources."resolve-from-5.0.0" 9050 ]; 9051 }) 9052 sources."@istanbuljs/schema-0.1.2" 9053 + sources."@jest/console-26.6.1" 9054 + (sources."@jest/core-26.6.1" // { 9055 dependencies = [ 9056 sources."rimraf-3.0.2" 9057 ]; 9058 }) 9059 + sources."@jest/environment-26.6.1" 9060 + sources."@jest/fake-timers-26.6.1" 9061 + sources."@jest/globals-26.6.1" 9062 + sources."@jest/reporters-26.6.1" 9063 + sources."@jest/source-map-26.5.0" 9064 + sources."@jest/test-result-26.6.1" 9065 + sources."@jest/test-sequencer-26.6.1" 9066 + sources."@jest/transform-26.6.1" 9067 + sources."@jest/types-26.6.1" 9068 sources."@nodelib/fs.scandir-2.1.3" 9069 sources."@nodelib/fs.stat-2.0.3" 9070 sources."@nodelib/fs.walk-1.2.4" 9071 sources."@sinonjs/commons-1.8.1" 9072 sources."@sinonjs/fake-timers-6.0.1" 9073 + sources."@types/babel__core-7.1.11" 9074 sources."@types/babel__generator-7.6.2" 9075 sources."@types/babel__template-7.0.3" 9076 sources."@types/babel__traverse-7.0.15" 9077 + sources."@types/graceful-fs-4.1.4" 9078 sources."@types/istanbul-lib-coverage-2.0.3" 9079 sources."@types/istanbul-lib-report-3.0.0" 9080 sources."@types/istanbul-reports-3.0.0" 9081 sources."@types/json-schema-7.0.6" 9082 + sources."@types/node-14.14.6" 9083 sources."@types/normalize-package-data-2.4.0" 9084 + sources."@types/prettier-2.1.5" 9085 + sources."@types/stack-utils-2.0.0" 9086 + sources."@types/yargs-15.0.9" 9087 sources."@types/yargs-parser-15.0.0" 9088 + sources."@typescript-eslint/experimental-utils-4.6.0" 9089 + sources."@typescript-eslint/scope-manager-4.6.0" 9090 + sources."@typescript-eslint/types-4.6.0" 9091 + sources."@typescript-eslint/typescript-estree-4.6.0" 9092 + sources."@typescript-eslint/visitor-keys-4.6.0" 9093 sources."abab-2.0.5" 9094 + sources."acorn-7.4.1" 9095 sources."acorn-globals-6.0.0" 9096 sources."acorn-jsx-5.3.1" 9097 sources."acorn-walk-7.2.0" 9098 + sources."agent-base-6.0.2" 9099 + sources."ajv-6.12.6" 9100 sources."ansi-colors-4.1.1" 9101 (sources."ansi-escapes-4.3.1" // { 9102 dependencies = [ ··· 9119 sources."asynckit-0.4.0" 9120 sources."atob-2.1.2" 9121 sources."aws-sign2-0.7.0" 9122 + sources."aws4-1.11.0" 9123 + sources."axios-0.21.0" 9124 + sources."babel-jest-26.6.1" 9125 sources."babel-plugin-istanbul-6.0.0" 9126 + sources."babel-plugin-jest-hoist-26.5.0" 9127 + sources."babel-preset-current-node-syntax-0.1.4" 9128 + sources."babel-preset-jest-26.5.0" 9129 sources."balanced-match-1.0.0" 9130 (sources."base-0.11.2" // { 9131 dependencies = [ ··· 9142 sources."braces-3.0.2" 9143 sources."browser-process-hrtime-1.0.0" 9144 sources."bser-2.1.1" 9145 + sources."buffer-5.7.0" 9146 + sources."buffer-crc32-0.2.13" 9147 sources."buffer-from-1.1.1" 9148 sources."cache-base-1.0.1" 9149 sources."callsites-3.1.0" ··· 9152 sources."caseless-0.12.0" 9153 (sources."chalk-4.1.0" // { 9154 dependencies = [ 9155 + sources."ansi-styles-4.3.0" 9156 sources."color-convert-2.0.1" 9157 sources."color-name-1.1.4" 9158 sources."has-flag-4.0.0" ··· 9161 }) 9162 sources."char-regex-1.0.2" 9163 sources."ci-info-2.0.0" 9164 + sources."cjs-module-lexer-0.4.3" 9165 (sources."class-utils-0.3.6" // { 9166 dependencies = [ 9167 sources."define-property-0.2.5" ··· 9200 sources."data-urls-2.0.0" 9201 sources."debug-4.2.0" 9202 sources."decamelize-1.2.0" 9203 + sources."decimal.js-10.2.1" 9204 sources."decode-uri-component-0.2.0" 9205 sources."deep-is-0.1.3" 9206 sources."deepmerge-4.2.2" ··· 9213 }) 9214 sources."delayed-stream-1.0.0" 9215 sources."detect-newline-3.1.0" 9216 + sources."diff-sequences-26.5.0" 9217 sources."dir-glob-3.0.1" 9218 sources."doctrine-3.0.0" 9219 (sources."domexception-2.0.1" // { ··· 9222 ]; 9223 }) 9224 sources."ecc-jsbn-0.1.2" 9225 + sources."emittery-0.7.2" 9226 sources."emoji-regex-7.0.3" 9227 sources."end-of-stream-1.4.4" 9228 sources."enquirer-2.3.6" ··· 9236 sources."type-check-0.3.2" 9237 ]; 9238 }) 9239 + sources."eslint-7.12.1" 9240 sources."eslint-config-google-0.14.0" 9241 + sources."eslint-plugin-jest-24.1.0" 9242 sources."eslint-scope-5.1.1" 9243 + (sources."eslint-utils-2.1.0" // { 9244 + dependencies = [ 9245 + sources."eslint-visitor-keys-1.3.0" 9246 + ]; 9247 + }) 9248 + sources."eslint-visitor-keys-2.0.0" 9249 + (sources."espree-7.3.0" // { 9250 + dependencies = [ 9251 + sources."eslint-visitor-keys-1.3.0" 9252 + ]; 9253 + }) 9254 sources."esprima-4.0.1" 9255 (sources."esquery-1.3.1" // { 9256 dependencies = [ ··· 9284 sources."ms-2.0.0" 9285 ]; 9286 }) 9287 + (sources."expect-26.6.1" // { 9288 dependencies = [ 9289 + sources."ansi-styles-4.3.0" 9290 sources."color-convert-2.0.1" 9291 sources."color-name-1.1.4" 9292 ]; ··· 9311 sources."fast-glob-3.2.4" 9312 sources."fast-json-stable-stringify-2.1.0" 9313 sources."fast-levenshtein-2.0.6" 9314 + sources."fastq-1.9.0" 9315 sources."fb-watchman-2.0.1" 9316 sources."file-entry-cache-5.0.1" 9317 sources."fill-range-7.0.1" ··· 9326 sources."fs-constants-1.0.0" 9327 sources."fs.realpath-1.0.0" 9328 sources."fsevents-2.1.3" 9329 + sources."function-bind-1.1.1" 9330 sources."functional-red-black-tree-1.0.1" 9331 + sources."gensync-1.0.0-beta.2" 9332 sources."get-caller-file-2.0.5" 9333 sources."get-package-type-0.1.0" 9334 sources."get-stream-4.1.0" ··· 9346 sources."growly-1.3.0" 9347 sources."har-schema-2.0.0" 9348 sources."har-validator-5.1.5" 9349 + sources."has-1.0.3" 9350 sources."has-flag-3.0.0" 9351 sources."has-value-1.0.0" 9352 (sources."has-values-1.0.0" // { ··· 9366 sources."https-proxy-agent-5.0.0" 9367 sources."human-signals-1.1.1" 9368 sources."iconv-lite-0.4.24" 9369 + sources."ieee754-1.2.1" 9370 sources."ignore-4.0.6" 9371 sources."import-fresh-3.2.1" 9372 sources."import-local-3.0.2" ··· 9382 sources."is-arrayish-0.2.1" 9383 sources."is-buffer-1.1.6" 9384 sources."is-ci-2.0.0" 9385 + sources."is-core-module-2.0.0" 9386 (sources."is-data-descriptor-0.1.4" // { 9387 dependencies = [ 9388 sources."kind-of-3.2.2" ··· 9424 }) 9425 sources."istanbul-lib-source-maps-4.0.0" 9426 sources."istanbul-reports-3.0.2" 9427 + (sources."jest-26.6.1" // { 9428 dependencies = [ 9429 + sources."jest-cli-26.6.1" 9430 ]; 9431 }) 9432 + (sources."jest-changed-files-26.6.1" // { 9433 dependencies = [ 9434 + sources."execa-4.1.0" 9435 sources."get-stream-5.2.0" 9436 sources."is-stream-2.0.0" 9437 sources."npm-run-path-4.0.1" 9438 ]; 9439 }) 9440 + sources."jest-config-26.6.1" 9441 + sources."jest-diff-26.6.1" 9442 sources."jest-docblock-26.0.0" 9443 + sources."jest-each-26.6.1" 9444 + sources."jest-environment-jsdom-26.6.1" 9445 + sources."jest-environment-node-26.6.1" 9446 sources."jest-get-type-26.3.0" 9447 + sources."jest-haste-map-26.6.1" 9448 + sources."jest-jasmine2-26.6.1" 9449 + sources."jest-leak-detector-26.6.1" 9450 + sources."jest-matcher-utils-26.6.1" 9451 + sources."jest-message-util-26.6.1" 9452 + sources."jest-mock-26.6.1" 9453 sources."jest-pnp-resolver-1.2.2" 9454 sources."jest-regex-util-26.0.0" 9455 + sources."jest-resolve-26.6.1" 9456 + sources."jest-resolve-dependencies-26.6.1" 9457 + sources."jest-runner-26.6.1" 9458 + sources."jest-runtime-26.6.1" 9459 + sources."jest-serializer-26.5.0" 9460 + sources."jest-snapshot-26.6.1" 9461 + sources."jest-util-26.6.1" 9462 + (sources."jest-validate-26.6.1" // { 9463 dependencies = [ 9464 + sources."camelcase-6.2.0" 9465 ]; 9466 }) 9467 + sources."jest-watcher-26.6.1" 9468 + (sources."jest-worker-26.6.1" // { 9469 dependencies = [ 9470 sources."has-flag-4.0.0" 9471 sources."supports-color-7.2.0" ··· 9564 sources."pkg-dir-4.2.0" 9565 sources."posix-character-classes-0.1.1" 9566 sources."prelude-ls-1.2.1" 9567 + (sources."pretty-format-26.6.1" // { 9568 dependencies = [ 9569 + sources."ansi-styles-4.3.0" 9570 sources."color-convert-2.0.1" 9571 sources."color-name-1.1.4" 9572 ]; 9573 }) 9574 sources."progress-2.0.3" 9575 + sources."prompts-2.4.0" 9576 sources."psl-1.8.0" 9577 sources."pump-3.0.0" 9578 sources."punycode-2.1.1" 9579 sources."qs-6.5.2" 9580 + sources."react-is-17.0.1" 9581 (sources."read-pkg-5.2.0" // { 9582 dependencies = [ 9583 sources."type-fest-0.6.0" ··· 9604 }) 9605 sources."require-directory-2.1.1" 9606 sources."require-main-filename-2.0.0" 9607 + sources."resolve-1.18.1" 9608 (sources."resolve-cwd-3.0.0" // { 9609 dependencies = [ 9610 sources."resolve-from-5.0.0" ··· 9616 sources."reusify-1.0.4" 9617 sources."rimraf-2.6.3" 9618 sources."rsvp-4.8.5" 9619 + sources."run-parallel-1.1.10" 9620 sources."safe-buffer-5.2.1" 9621 sources."safe-regex-1.1.0" 9622 sources."safer-buffer-2.1.2" ··· 9740 sources."to-regex-range-5.0.1" 9741 sources."tough-cookie-3.0.1" 9742 sources."tr46-2.0.2" 9743 + sources."tslib-1.14.1" 9744 sources."tsutils-3.17.1" 9745 sources."tunnel-agent-0.6.0" 9746 sources."tweetnacl-0.14.5" ··· 9763 sources."urix-0.1.0" 9764 sources."use-3.1.1" 9765 sources."util-deprecate-1.0.2" 9766 + sources."uuid-8.3.1" 9767 + sources."v8-compile-cache-2.2.0" 9768 + (sources."v8-to-istanbul-6.0.1" // { 9769 dependencies = [ 9770 sources."source-map-0.7.3" 9771 ]; ··· 9778 sources."webidl-conversions-6.1.0" 9779 sources."whatwg-encoding-1.0.5" 9780 sources."whatwg-mimetype-2.3.0" 9781 + sources."whatwg-url-8.4.0" 9782 sources."which-2.0.2" 9783 sources."which-module-2.0.0" 9784 sources."word-wrap-1.2.3" 9785 (sources."wrap-ansi-6.2.0" // { 9786 dependencies = [ 9787 + sources."ansi-styles-4.3.0" 9788 sources."color-convert-2.0.1" 9789 sources."color-name-1.1.4" 9790 sources."emoji-regex-8.0.0" ··· 9809 sources."yargs-parser-18.1.3" 9810 ]; 9811 }) 9812 + sources."zigbee2mqtt-frontend-0.2.68" 9813 ]; 9814 buildInputs = globalBuildInputs; 9815 meta = {
+6 -3
pkgs/shells/mrsh/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mrsh"; 5 - version = "2020-01-08"; 6 7 src = fetchFromGitHub { 8 owner = "emersion"; 9 repo = "mrsh"; 10 - rev = "ef21854fc9ce172fb1f7f580b19a89d030d67c65"; 11 - sha256 = "1iyxmwl61p2x9v9b22416n4lnrlwjqyxybq35x8bcbjxkwypp943"; 12 }; 13 14 nativeBuildInputs = [ meson ninja pkgconfig ]; 15 buildInputs = [ readline ]; 16 17 meta = with stdenv.lib; { 18 description = "A minimal POSIX shell"; ··· 20 license = licenses.mit; 21 maintainers = with maintainers; [ matthiasbeyer ]; 22 platforms = platforms.unix; 23 }; 24 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mrsh"; 5 + version = "2020-07-27"; 6 7 src = fetchFromGitHub { 8 owner = "emersion"; 9 repo = "mrsh"; 10 + rev = "0da902c0ee6f443fe703498e60f266af7f12537e"; 11 + sha256 = "1yr09ln5p1s48aj8xv2d6dy0pahqvd86fkiwyc6zrjfq80igxf05"; 12 }; 13 14 nativeBuildInputs = [ meson ninja pkgconfig ]; 15 buildInputs = [ readline ]; 16 + 17 + doCheck = true; 18 19 meta = with stdenv.lib; { 20 description = "A minimal POSIX shell"; ··· 22 license = licenses.mit; 23 maintainers = with maintainers; [ matthiasbeyer ]; 24 platforms = platforms.unix; 25 + broken = stdenv.isDarwin; 26 }; 27 }
+2 -2
pkgs/shells/xonsh/default.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "xonsh"; 11 - version = "0.9.23"; 12 13 # fetch from github because the pypi package ships incomplete tests 14 src = fetchFromGitHub { 15 owner = "xonsh"; 16 repo = "xonsh"; 17 rev = version; 18 - sha256 = "1by13ryq9ldc9wln3fk5mm6zvjp4aim57ikw49v0dfmz8irnpglp"; 19 }; 20 21 LC_ALL = "en_US.UTF-8";
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "xonsh"; 11 + version = "0.9.24"; 12 13 # fetch from github because the pypi package ships incomplete tests 14 src = fetchFromGitHub { 15 owner = "xonsh"; 16 repo = "xonsh"; 17 rev = version; 18 + sha256 = "1nk7kbiv7jzmr6narsnr0nyzkhlc7xw3b2bksyq2j6nda67b9b3y"; 19 }; 20 21 LC_ALL = "en_US.UTF-8";
+5 -4
pkgs/tools/X11/xwinmosaic/default.nix
··· 1 - { stdenv, fetchgit, gtk2, cmake, pkgconfig, libXdamage }: 2 3 stdenv.mkDerivation rec { 4 version = "0.4.2"; 5 pname = "xwinmosaic"; 6 7 - src = fetchgit { 8 - url = "https://github.com/soulthreads/xwinmosaic/"; 9 - rev = "refs/tags/v0.4.2"; 10 sha256 = "16qhrpgn84fz0q3nfvaz5sisc82zk6y7c0sbvbr69zfx5fwbs1rr"; 11 }; 12
··· 1 + { stdenv, fetchFromGitHub, gtk2, cmake, pkgconfig, libXdamage }: 2 3 stdenv.mkDerivation rec { 4 version = "0.4.2"; 5 pname = "xwinmosaic"; 6 7 + src = fetchFromGitHub { 8 + owner = "soulthreads"; 9 + repo = pname; 10 + rev = "refs/tags/v${version}"; 11 sha256 = "16qhrpgn84fz0q3nfvaz5sisc82zk6y7c0sbvbr69zfx5fwbs1rr"; 12 }; 13
+11
pkgs/tools/admin/azure-cli/python-packages.nix
··· 411 }; 412 }); 413 414 websocket_client = super.websocket_client.overridePythonAttrs(oldAttrs: rec { 415 version = "0.56.0"; 416
··· 411 }; 412 }); 413 414 + sshtunnel = super.sshtunnel.overridePythonAttrs(oldAttrs: rec { 415 + name = "sshtunnel-${version}"; 416 + version = "0.1.5"; 417 + 418 + src = super.fetchPypi { 419 + inherit (oldAttrs) pname; 420 + inherit version; 421 + sha256 = "0jcjppp6mdfsqrbfc3ddfxg1ybgvkjv7ri7azwv3j778m36zs4y8"; 422 + }; 423 + }); 424 + 425 websocket_client = super.websocket_client.overridePythonAttrs(oldAttrs: rec { 426 version = "0.56.0"; 427
-23
pkgs/tools/archivers/unarj/default.nix
··· 1 - {stdenv, fetchurl}: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "unarj"; 5 - version = "2.65"; 6 - 7 - src = fetchurl { 8 - sha256 = "0r027z7a0azrd5k885xvwhrxicpd0ah57jzmaqlypxha2qjw7p6p"; 9 - url = "https://src.fedoraproject.org/repo/pkgs/unarj/${pname}-${version}.tar.gz/c6fe45db1741f97155c7def322aa74aa/${pname}-${version}.tar.gz"; 10 - }; 11 - 12 - preInstall = '' 13 - mkdir -p $out/bin 14 - sed -i -e s,/usr/local/bin,$out/bin, Makefile 15 - ''; 16 - 17 - meta = with stdenv.lib; { 18 - description = "Unarchiver of ARJ files"; 19 - license = licenses.free; 20 - # Vulnerable to CVE-2015-0557 & possibly CVE-2015-0556, CVE-2015-2782: 21 - broken = true; 22 - }; 23 - }
···
+2 -2
pkgs/tools/backup/bacula/default.nix
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 - name = "bacula-9.6.5"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/bacula/${name}.tar.gz"; 10 - sha256 = "0yn7qwkzix78bs811vmrn5gbywy7ggnsv72mdjz2lirqc6w3a3si"; 11 }; 12 13 buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 + name = "bacula-9.6.6"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/bacula/${name}.tar.gz"; 10 + sha256 = "10c25igfvff09nz5ll8rxc46f659rnwimj1v9cdhr67lwdswk1k2"; 11 }; 12 13 buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
+1 -1
pkgs/tools/backup/stenc/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "scsitape"; 9 repo = "stenc"; 10 - rev = "${version}"; 11 sha256 = "1778m1zcyzyf42k5m496yqh0gv6kqhb0sq5983dhky1fccjl905k"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "scsitape"; 9 repo = "stenc"; 10 + rev = version; 11 sha256 = "1778m1zcyzyf42k5m496yqh0gv6kqhb0sq5983dhky1fccjl905k"; 12 }; 13
+9 -7
pkgs/tools/backup/wal-e/default.nix
··· 1 - { stdenv, fetchurl, pythonPackages, lzop, postgresql, pv }: 2 3 - pythonPackages.buildPythonApplication rec { 4 pname = "wal-e"; 5 - version = "0.6.10"; 6 7 namePrefix = ""; 8 9 src = fetchurl { 10 url = "https://github.com/wal-e/wal-e/archive/v${version}.tar.gz"; 11 - sha256 = "1hms24xz7wx3b91vv56fhcc3j0cszwqwnmwhka4yl90202hvdir2"; 12 }; 13 14 # needs tox 15 doCheck = false; 16 17 - propagatedBuildInputs = [ 18 - pythonPackages.boto 19 - pythonPackages.gevent 20 postgresql 21 lzop 22 pv
··· 1 + { stdenv, fetchurl, python3Packages, lzop, postgresql, pv }: 2 3 + python3Packages.buildPythonApplication rec { 4 pname = "wal-e"; 5 + version = "1.1.1"; 6 7 namePrefix = ""; 8 9 src = fetchurl { 10 url = "https://github.com/wal-e/wal-e/archive/v${version}.tar.gz"; 11 + sha256 = "5TTd7NTO73+MCJf3dHIcNojjHdoaKJ1T051iW7Kt9Ow="; 12 }; 13 14 # needs tox 15 doCheck = false; 16 17 + propagatedBuildInputs = (with python3Packages; [ 18 + boto 19 + gevent 20 + google_cloud_storage 21 + ]) ++ [ 22 postgresql 23 lzop 24 pv
+2 -2
pkgs/tools/filesystems/bindfs/default.nix
··· 1 { stdenv, fetchurl, fuse, pkgconfig }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.14.7"; 5 pname = "bindfs"; 6 7 src = fetchurl { 8 url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz"; 9 - sha256 = "1lbqyc9vpgck05n0q3qsvsr34142iv721z6iwxhc5j98370ff9i8"; 10 }; 11 12 dontStrip = true;
··· 1 { stdenv, fetchurl, fuse, pkgconfig }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.14.8"; 5 pname = "bindfs"; 6 7 src = fetchurl { 8 url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz"; 9 + sha256 = "15y4brlcrqhxl6z73785m0dr1vp2q3wc6xss08x9jjr0apzmmjp5"; 10 }; 11 12 dontStrip = true;
+63
pkgs/tools/filesystems/ceph/ceph-glibc-2-32-sigdescr_np.patch
···
··· 1 + From b9b6faf66ae67648626470cb4fc3f0850ac4d842 Mon Sep 17 00:00:00 2001 2 + From: David Disseldorp <ddiss@suse.de> 3 + Date: Tue, 1 Sep 2020 13:49:21 +0200 4 + Subject: [PATCH] cmake: detect and use sigdescr_np() if available 5 + 6 + sys_siglist is deprecated with glibc 2.32. A new thread-safe and 7 + async-signal safe sigdescr_np() function is provided, so use it if 8 + available. 9 + 10 + Fixes: https://tracker.ceph.com/issues/47187 11 + Signed-off-by: David Disseldorp <ddiss@suse.de> 12 + --- 13 + cmake/modules/CephChecks.cmake | 1 + 14 + src/global/signal_handler.h | 8 +++++--- 15 + src/include/config-h.in.cmake | 3 +++ 16 + 3 files changed, 9 insertions(+), 3 deletions(-) 17 + 18 + diff --git a/cmake/modules/CephChecks.cmake b/cmake/modules/CephChecks.cmake 19 + index 23687283a7c6..ca86dcbc73de 100644 20 + --- a/cmake/modules/CephChecks.cmake 21 + +++ b/cmake/modules/CephChecks.cmake 22 + @@ -24,6 +24,7 @@ check_function_exists(strerror_r HAVE_Strerror_R) 23 + check_function_exists(name_to_handle_at HAVE_NAME_TO_HANDLE_AT) 24 + check_function_exists(pipe2 HAVE_PIPE2) 25 + check_function_exists(accept4 HAVE_ACCEPT4) 26 + +check_function_exists(sigdescr_np HAVE_SIGDESCR_NP) 27 + 28 + include(CMakePushCheckState) 29 + cmake_push_check_state(RESET) 30 + diff --git a/src/global/signal_handler.h b/src/global/signal_handler.h 31 + index 476724201aa9..c101b2e28733 100644 32 + --- a/src/global/signal_handler.h 33 + +++ b/src/global/signal_handler.h 34 + @@ -20,10 +20,12 @@ 35 + 36 + typedef void (*signal_handler_t)(int); 37 + 38 + -#ifndef HAVE_REENTRANT_STRSIGNAL 39 + -# define sig_str(signum) sys_siglist[signum] 40 + -#else 41 + +#ifdef HAVE_SIGDESCR_NP 42 + +# define sig_str(signum) sigdescr_np(signum) 43 + +#elif HAVE_REENTRANT_STRSIGNAL 44 + # define sig_str(signum) strsignal(signum) 45 + +#else 46 + +# define sig_str(signum) sys_siglist[signum] 47 + #endif 48 + 49 + void install_sighandler(int signum, signal_handler_t handler, int flags); 50 + diff --git a/src/include/config-h.in.cmake b/src/include/config-h.in.cmake 51 + index 1ea3703f620c..59bd4273511a 100644 52 + --- a/src/include/config-h.in.cmake 53 + +++ b/src/include/config-h.in.cmake 54 + @@ -220,6 +220,9 @@ 55 + /* Define to 1 if you have sched.h. */ 56 + #cmakedefine HAVE_SCHED 1 57 + 58 + +/* Define to 1 if you have sigdescr_np. */ 59 + +#cmakedefine HAVE_SIGDESCR_NP 1 60 + + 61 + /* Support SSE (Streaming SIMD Extensions) instructions */ 62 + #cmakedefine HAVE_SSE 63 +
+1
pkgs/tools/filesystems/ceph/default.nix
··· 133 134 patches = [ 135 ./0000-fix-SPDK-build-env.patch 136 ]; 137 138 nativeBuildInputs = [
··· 133 134 patches = [ 135 ./0000-fix-SPDK-build-env.patch 136 + ./ceph-glibc-2-32-sigdescr_np.patch 137 ]; 138 139 nativeBuildInputs = [
+2 -2
pkgs/tools/filesystems/f3/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "f3"; 7 - version = "7.2"; 8 9 src = fetchFromGitHub { 10 owner = "AltraMayor"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "1iwdg0r4wkgc8rynmw1qcqz62l0ldgc8lrazq33msxnk5a818jgy"; 14 }; 15 16 postPatch = ''
··· 4 5 stdenv.mkDerivation rec { 6 pname = "f3"; 7 + version = "8.0"; 8 9 src = fetchFromGitHub { 10 owner = "AltraMayor"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "17l5vspfcgfbkqg7bakp3gql29yb05gzawm8n3im30ilzdr53678"; 14 }; 15 16 postPatch = ''
+2 -2
pkgs/tools/filesystems/gcsfuse/default.nix
··· 2 3 buildGoPackage rec { 4 pname = "gcsfuse"; 5 - version = "0.30.0"; 6 7 src = fetchFromGitHub { 8 owner = "googlecloudplatform"; 9 repo = "gcsfuse"; 10 rev = "v${version}"; 11 - sha256 = "1ai1dgf07g2c08rp87kygrl67hyj7x793093wmnwaxfpylx5flv0"; 12 }; 13 14 goPackagePath = "github.com/googlecloudplatform/gcsfuse";
··· 2 3 buildGoPackage rec { 4 pname = "gcsfuse"; 5 + version = "0.32.0"; 6 7 src = fetchFromGitHub { 8 owner = "googlecloudplatform"; 9 repo = "gcsfuse"; 10 rev = "v${version}"; 11 + sha256 = "09k7479gd9rlzmxhcvc1b3ajy8frzd6881vnlvk3z9818n4aq7qc"; 12 }; 13 14 goPackagePath = "github.com/googlecloudplatform/gcsfuse";
+2 -2
pkgs/tools/misc/bdf2sfd/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bdf2sfd"; 5 - version = "1.1.4"; 6 7 src = fetchFromGitHub { 8 owner = "fcambus"; 9 repo = pname; 10 rev = version; 11 - sha256 = "1lg3yabnf26lghlrmhpq7hbhydmw85q0k64246b8fwv1dnxc7afd"; 12 }; 13 14 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bdf2sfd"; 5 + version = "1.1.5"; 6 7 src = fetchFromGitHub { 8 owner = "fcambus"; 9 repo = pname; 10 rev = version; 11 + sha256 = "1bpadw25barzmmsz9bkrsj3iwbgf945zqfakbgq1yscfb85bfgsp"; 12 }; 13 14 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/tools/misc/chezmoi/default.nix
··· 2 3 buildGoModule rec { 4 pname = "chezmoi"; 5 - version = "1.8.7"; 6 7 src = fetchFromGitHub { 8 owner = "twpayne"; 9 repo = "chezmoi"; 10 rev = "v${version}"; 11 - sha256 = "1inmrcp01rxrjylkj9vzgw3q713q6jsqbnqllbzvp8q6kqfliayg"; 12 }; 13 14 - vendorSha256 = "0m946g6iw42q5ggki2j1lqdshpsxjmdsm1snnyzjzyy8gd88m4cx"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "chezmoi"; 5 + version = "1.8.8"; 6 7 src = fetchFromGitHub { 8 owner = "twpayne"; 9 repo = "chezmoi"; 10 rev = "v${version}"; 11 + sha256 = "1ax0rq341k8mi7lghw1rkmlg802fd22zpql5v3g6lhgy6s1xq9wk"; 12 }; 13 14 + vendorSha256 = "08x81r9y2x1xcld1s6maspq94wr817w9aqjdv226058ran0492s8"; 15 16 doCheck = false; 17
+42
pkgs/tools/misc/convbin/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "convbin"; 7 + version = "3.0"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "mateoconlechuga"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + sha256 = "0n502zj8igm583kbfvyv7zhd97vb71jac41ncb9jr2yz2v5ir8j9"; 14 + }; 15 + 16 + makeFlags = [ "CC=cc" ]; 17 + 18 + checkPhase = '' 19 + pushd test 20 + patchShebangs test.sh 21 + ./test.sh 22 + popd 23 + ''; 24 + 25 + doCheck = true; 26 + 27 + installPhase = '' 28 + install -Dm755 bin/convbin $out/bin/convbin 29 + ''; 30 + 31 + meta = with stdenv.lib; { 32 + description = "Converts files to other formats"; 33 + longDescription = '' 34 + This program is used to convert files to other formats, 35 + specifically for the TI84+CE and related calculators. 36 + ''; 37 + homepage = "https://github.com/mateoconlechuga/convbin"; 38 + license = licenses.bsd3; 39 + maintainers = with maintainers; [ luc65r ]; 40 + platforms = platforms.all; 41 + }; 42 + }
+29
pkgs/tools/misc/convfont/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "convfont"; 7 + version = "1.0"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "drdnar"; 11 + repo = pname; 12 + rev = "v20190438"; 13 + sha256 = "1lj24yq5gj9hxhy1srk73521q95zyqzkws0q4v271hf5wmqaxa2f"; 14 + }; 15 + 16 + makeFlags = [ "CC=cc" ]; 17 + 18 + installPhase = '' 19 + install -Dm755 convfont $out/bin/convfont 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + description = "Converts font for use with FontLibC"; 24 + homepage = "https://github.com/drdnar/convfont"; 25 + license = licenses.wtfpl; 26 + maintainers = with maintainers; [ luc65r ]; 27 + platforms = platforms.all; 28 + }; 29 + }
+43
pkgs/tools/misc/convimg/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "convimg"; 7 + version = "8.3"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "mateoconlechuga"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + sha256 = "1k2fkzfg08y2gcm8jabmb2plgqmgw6y30m73ys4mmbskxgy7hc3s"; 14 + fetchSubmodules = true; 15 + }; 16 + 17 + makeFlags = [ "CC=cc" ]; 18 + 19 + checkPhase = '' 20 + pushd test 21 + patchShebangs test.sh 22 + ./test.sh 23 + popd 24 + ''; 25 + 26 + doCheck = true; 27 + 28 + installPhase = '' 29 + install -Dm755 bin/convimg $out/bin/convimg 30 + ''; 31 + 32 + meta = with stdenv.lib; { 33 + description = "Image palette quantization"; 34 + longDescription = '' 35 + This program is used to convert images to other formats, 36 + specifically for the TI84+CE and related calculators. 37 + ''; 38 + homepage = "https://github.com/mateoconlechuga/convimg"; 39 + license = licenses.bsd3; 40 + maintainers = with maintainers; [ luc65r ]; 41 + platforms = platforms.linux; 42 + }; 43 + }
+10 -7
pkgs/tools/misc/ddate/default.nix
··· 1 - {stdenv, fetchgit, cmake} : 2 3 - stdenv.mkDerivation { 4 - name = "ddate-0.2.2"; 5 - src = fetchgit { 6 - url = "https://github.com/bo0ts/ddate"; 7 - rev = "refs/tags/v0.2.2"; 8 sha256 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"; 9 }; 10 ··· 14 homepage = "https://github.com/bo0ts/ddate"; 15 description = "Discordian version of the date program"; 16 license = stdenv.lib.licenses.publicDomain; 17 - maintainers = with stdenv.lib.maintainers; [kovirobi]; 18 platforms = stdenv.lib.platforms.all; 19 }; 20 }
··· 1 + {stdenv, fetchFromGitHub, cmake} : 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "ddate"; 5 + version = "0.2.2"; 6 7 + src = fetchFromGitHub { 8 + owner = "bo0ts"; 9 + repo = pname; 10 + rev = "refs/tags/v${version}"; 11 sha256 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"; 12 }; 13 ··· 17 homepage = "https://github.com/bo0ts/ddate"; 18 description = "Discordian version of the date program"; 19 license = stdenv.lib.licenses.publicDomain; 20 + maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 21 platforms = stdenv.lib.platforms.all; 22 }; 23 }
+1 -1
pkgs/tools/misc/eva/default.nix
··· 8 9 src = fetchFromGitHub { 10 owner = "NerdyPepper"; 11 - repo = "${pname}"; 12 rev = "6ce0fc0212a34ffb647b24d9d903029ac4518165"; 13 sha256 = "10242vnq2ph0g3p2hdacs4lmx3f474xm04nadplxbpv9xh4nbag3"; 14 };
··· 8 9 src = fetchFromGitHub { 10 owner = "NerdyPepper"; 11 + repo = pname; 12 rev = "6ce0fc0212a34ffb647b24d9d903029ac4518165"; 13 sha256 = "10242vnq2ph0g3p2hdacs4lmx3f474xm04nadplxbpv9xh4nbag3"; 14 };
+2 -2
pkgs/tools/misc/fet-sh/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "fet-sh"; 5 - version = "1.7"; 6 7 src = fetchFromGitHub { 8 owner = "6gk"; 9 repo = "fet.sh"; 10 rev = "v${version}"; 11 - sha256 = "02izkwfph4i62adwns4q4w1pfcmdsczm8ghagx5yb9315ww3adzn"; 12 }; 13 14 dontBuild = true;
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "fet-sh"; 5 + version = "1.8"; 6 7 src = fetchFromGitHub { 8 owner = "6gk"; 9 repo = "fet.sh"; 10 rev = "v${version}"; 11 + sha256 = "1czjsyagwzbf8l023l1saz9ssb1hc245a64nfwc8wl0cn4h9byky"; 12 }; 13 14 dontBuild = true;
+2 -2
pkgs/tools/misc/flameshot/default.nix
··· 2 3 mkDerivation rec { 4 pname = "flameshot"; 5 - version = "0.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "flameshot-org"; 9 repo = "flameshot"; 10 rev = "v${version}"; 11 - sha256 = "0nr50ma8l612drl2br084kb3xac7jqkqr41b26d4p9y7ylwk05yq"; 12 }; 13 14 nativeBuildInputs = [ cmake qttools qtsvg ];
··· 2 3 mkDerivation rec { 4 pname = "flameshot"; 5 + version = "0.8.5"; 6 7 src = fetchFromGitHub { 8 owner = "flameshot-org"; 9 repo = "flameshot"; 10 rev = "v${version}"; 11 + sha256 = "1z77igs60lz106vsf6wsayxjafxm3llf2lm4dpvsqyyrxybfq191"; 12 }; 13 14 nativeBuildInputs = [ cmake qttools qtsvg ];
+2 -2
pkgs/tools/misc/fluent-bit/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fluent-bit"; 5 - version = "1.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "fluent"; 9 repo = "fluent-bit"; 10 rev = "v${version}"; 11 - sha256 = "1m8ly2h52mw67kqc7qqpf7sxxnyk4fnw2qavjpj6zgw3i6dhj0p1"; 12 }; 13 14 nativeBuildInputs = [ cmake flex bison ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fluent-bit"; 5 + version = "1.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "fluent"; 9 repo = "fluent-bit"; 10 rev = "v${version}"; 11 + sha256 = "0v2n43mn6n4nn6r2d4ksp98793xkx334xp078vhvgi01nsmd60x7"; 12 }; 13 14 nativeBuildInputs = [ cmake flex bison ];
+2 -2
pkgs/tools/misc/geekbench/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "geekbench"; 5 - version = "5.2.3"; 6 7 src = fetchurl { 8 url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz"; 9 - sha256 = "03hasbibw79vbcrpdf2fnm42i2mxc0ia7k96xv012wn6d4dfvr4w"; 10 }; 11 12 dontConfigure = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "geekbench"; 5 + version = "5.2.5"; 6 7 src = fetchurl { 8 url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz"; 9 + sha256 = "0mq33khmsay646csr7j7mqb1fr2dlacb58hjqyxfbh83r0a1q67p"; 10 }; 11 12 dontConfigure = true;
+1 -1
pkgs/tools/misc/nix-direnv/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "nix-community"; 9 repo = "nix-direnv"; 10 - rev = "${version}"; 11 sha256 = "sha256-xMz6e0OLeB3eltGrLV3Hew0lMjH5LSgqJ1l7JT2Ho/M="; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "nix-community"; 9 repo = "nix-direnv"; 10 + rev = version; 11 sha256 = "sha256-xMz6e0OLeB3eltGrLV3Hew0lMjH5LSgqJ1l7JT2Ho/M="; 12 }; 13
+1 -1
pkgs/tools/misc/rpcsvc-proto/default.nix
··· 6 7 src = fetchFromGitHub { 8 owner = "thkukuk"; 9 - repo = "${pname}"; 10 rev = "v${version}"; 11 sha256 = "006l1f824r9bcbwn1s1vbs33cdwhs66jn6v97yas597y884y40z9"; 12 };
··· 6 7 src = fetchFromGitHub { 8 owner = "thkukuk"; 9 + repo = pname; 10 rev = "v${version}"; 11 sha256 = "006l1f824r9bcbwn1s1vbs33cdwhs66jn6v97yas597y884y40z9"; 12 };
+3 -3
pkgs/tools/misc/skim/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "skim"; 5 - version = "0.9.1"; 6 7 src = fetchCrate { 8 inherit pname version; 9 - sha256 = "1r8zf56kb9rhh8nlh8w684srr8jfhndf8742x8byw374my9xn8pb"; 10 }; 11 12 outputs = [ "out" "vim" ]; 13 14 - cargoSha256 = "0wjlkyngrc03a92fwmavgj90h0kakww38bfc1wapn2my7p3b6nc1"; 15 16 postPatch = '' 17 sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/skim.vim
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "skim"; 5 + version = "0.9.2"; 6 7 src = fetchCrate { 8 inherit pname version; 9 + sha256 = "0k101ymr6shi8hivf7kv52vwgcad2dwhyma0yg2pnp9q3ll0iszb"; 10 }; 11 12 outputs = [ "out" "vim" ]; 13 14 + cargoSha256 = "0b4pj30w07p67zvpn5af23ddkvknmfp5a33sy6ai8argfi73bf4c"; 15 16 postPatch = '' 17 sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/skim.vim
+2 -2
pkgs/tools/misc/tmuxp/default.nix
··· 4 5 buildPythonApplication rec { 6 pname = "tmuxp"; 7 - version = "1.5.6"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "c305fc45bbf1093561e03cdcd37b2ab1f2efb9e208e74b2dc294cf414859bd8a"; 12 }; 13 14 postPatch = ''
··· 4 5 buildPythonApplication rec { 6 pname = "tmuxp"; 7 + version = "1.5.8"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "09b403c9e1ef50695fab1e72376ff5674906b485fbcaad50c7cafec1ba775087"; 12 }; 13 14 postPatch = ''
+2 -2
pkgs/tools/misc/youtube-dl/default.nix
··· 18 # The websites youtube-dl deals with are a very moving target. That means that 19 # downloads break constantly. Because of that, updates should always be backported 20 # to the latest stable release. 21 - version = "2020.09.20"; 22 23 src = fetchurl { 24 url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; 25 - sha256 = "1pkw3hnkddk1kqv0in152q1k4jjgbmf2xvc9j3r5nd38z6f7j6mc"; 26 }; 27 28 nativeBuildInputs = [ installShellFiles makeWrapper ];
··· 18 # The websites youtube-dl deals with are a very moving target. That means that 19 # downloads break constantly. Because of that, updates should always be backported 20 # to the latest stable release. 21 + version = "2020.11.01.1"; 22 23 src = fetchurl { 24 url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; 25 + sha256 = "06lhba4b9bm6f5yqrb5xvdr0l5shwd95djf9nlpg86prr5xihqks"; 26 }; 27 28 nativeBuildInputs = [ installShellFiles makeWrapper ];
+1 -1
pkgs/tools/networking/goimapnotify/default.nix
··· 9 src = fetchFromGitLab { 10 owner = "shackra"; 11 repo = "goimapnotify"; 12 - rev = "${version}"; 13 sha256 = "1d42gd3m2rkvy985d181dbcm5i3f7xsg2z8z6s4bpvw24pfnzs42"; 14 }; 15
··· 9 src = fetchFromGitLab { 10 owner = "shackra"; 11 repo = "goimapnotify"; 12 + rev = version; 13 sha256 = "1d42gd3m2rkvy985d181dbcm5i3f7xsg2z8z6s4bpvw24pfnzs42"; 14 }; 15
+2 -2
pkgs/tools/networking/haproxy/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 - version = "2.2.2"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 - sha256 = "1mjld865p4f7i465fcc5c4jclih1c3345a3ylriql8668rd7071r"; 19 }; 20 21 buildInputs = [ openssl zlib ]
··· 11 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 + version = "2.2.4"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 + sha256 = "1qhvaixns0xgxgd095kvqid0pi6jxsld9ghvnr60khwdzzadk947"; 19 }; 20 21 buildInputs = [ openssl zlib ]
+2 -2
pkgs/tools/networking/keepalived/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "keepalived"; 7 - version = "2.1.3"; 8 9 src = fetchFromGitHub { 10 owner = "acassen"; 11 repo = "keepalived"; 12 rev = "v${version}"; 13 - sha256 = "1zdfvicpll7a5iw6p12pmdcg8y30mr0j5miycn0nhjp8yzi9hdc5"; 14 }; 15 16 buildInputs = [
··· 4 5 stdenv.mkDerivation rec { 6 pname = "keepalived"; 7 + version = "2.1.5"; 8 9 src = fetchFromGitHub { 10 owner = "acassen"; 11 repo = "keepalived"; 12 rev = "v${version}"; 13 + sha256 = "0zdh3g491mlc0x4g8q09vq62a7pb8n13a39jnfdgrm9k29khn0sj"; 14 }; 15 16 buildInputs = [
+3 -3
pkgs/tools/networking/minio-client/default.nix
··· 2 3 buildGoModule rec { 4 pname = "minio-client"; 5 - version = "2020-08-08T02-33-58Z"; 6 7 src = fetchFromGitHub { 8 owner = "minio"; 9 repo = "mc"; 10 rev = "RELEASE.${version}"; 11 - sha256 = "15bkl3q0jidrwy04l0cdmha43r9wlxmlqkhmwz98b57rjrq6grql"; 12 }; 13 14 - vendorSha256 = "1fsx8zl2qkyf1gx3s6giccd86xawx9d1h4jdnyn1m36clsq9jkpc"; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "minio-client"; 5 + version = "2020-10-03T02-54-56Z"; 6 7 src = fetchFromGitHub { 8 owner = "minio"; 9 repo = "mc"; 10 rev = "RELEASE.${version}"; 11 + sha256 = "0pc08w0xdkk9w8xya0q7d1601wprshq852419pwpi8hd7y3q381h"; 12 }; 13 14 + vendorSha256 = "0bkidqcdfjyqjlzxy9w564c6s3vw850wgq6ksx5y1p8f5r4plzxs"; 15 16 doCheck = false; 17
+1 -1
pkgs/tools/networking/network-manager/dmenu/default.nix
··· 9 src = fetchFromGitHub { 10 owner = "firecat53"; 11 repo = "networkmanager-dmenu"; 12 - rev = "${version}"; 13 sha256 = "1liidqh8c33pxyb07qyj0jkd0fdak73g9r2iwiq62vfzrpik09k0"; 14 }; 15
··· 9 src = fetchFromGitHub { 10 owner = "firecat53"; 11 repo = "networkmanager-dmenu"; 12 + rev = version; 13 sha256 = "1liidqh8c33pxyb07qyj0jkd0fdak73g9r2iwiq62vfzrpik09k0"; 14 }; 15
+1 -1
pkgs/tools/networking/nfstrace/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "epam"; 9 repo = "nfstrace"; 10 - rev = "${version}"; 11 sha256 = "1djsyn7i3xp969rnmsdaf5vwjiik9wylxxrc5nm7by00i76c1vsg"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "epam"; 9 repo = "nfstrace"; 10 + rev = version; 11 sha256 = "1djsyn7i3xp969rnmsdaf5vwjiik9wylxxrc5nm7by00i76c1vsg"; 12 }; 13
+2 -2
pkgs/tools/networking/tridactyl-native/default.nix
··· 7 pname = "tridactyl-native"; 8 # this is actually the version of tridactyl itself; the native messenger will 9 # probably not change with every tridactyl version 10 - version = "1.20.1"; 11 12 src = fetchFromGitHub { 13 owner = "tridactyl"; 14 repo = "tridactyl"; 15 rev = version; 16 - sha256 = "108zx2x5q23cq0fzxmix31xcw62k3r1wlb55612c15ilz9c5xm32"; 17 }; 18 sourceRoot = "source/native"; 19
··· 7 pname = "tridactyl-native"; 8 # this is actually the version of tridactyl itself; the native messenger will 9 # probably not change with every tridactyl version 10 + version = "1.20.2"; 11 12 src = fetchFromGitHub { 13 owner = "tridactyl"; 14 repo = "tridactyl"; 15 rev = version; 16 + sha256 = "0yz1vbqa3sppkjmny5ipnspsdi5gnix7wb6hzvdkm9h1rj2kb8ci"; 17 }; 18 sourceRoot = "source/native"; 19
+1 -1
pkgs/tools/package-management/cargo-about/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "EmbarkStudios"; 8 repo = "cargo-about"; 9 - rev = "${version}"; 10 sha256 = "00ing1v6vjqfvirp3mbayn8rwvxf72wnhz9249k2iifw8bl2r2hd"; 11 }; 12
··· 6 src = fetchFromGitHub { 7 owner = "EmbarkStudios"; 8 repo = "cargo-about"; 9 + rev = version; 10 sha256 = "00ing1v6vjqfvirp3mbayn8rwvxf72wnhz9249k2iifw8bl2r2hd"; 11 }; 12
+3 -3
pkgs/tools/package-management/cargo-outdated/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-outdated"; 5 - version = "0.9.11"; 6 7 src = fetchFromGitHub { 8 owner = "kbknapp"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "11fdh24366czb3vv2szf5bl0mhsilwvpfc1h4qxq18z2dpb0y18m"; 12 }; 13 14 - cargoSha256 = "0sr3ijq6vh2269xav03d117kzmg68xiwqsq48xjdrsnn4dx5lizy"; 15 16 nativeBuildInputs = [ pkg-config ]; 17 buildInputs = [ openssl ]
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-outdated"; 5 + version = "0.9.13"; 6 7 src = fetchFromGitHub { 8 owner = "kbknapp"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "1dbhaaw1c3ww0s33r7z8kxks00f9gxv1ppcbmk2fbflhp7caf7fy"; 12 }; 13 14 + cargoSha256 = "0nlfn9g7hrzz72lya2p5qb8wwj66300d33hjhnw2ambpj4347rh4"; 15 16 nativeBuildInputs = [ pkg-config ]; 17 buildInputs = [ openssl ]
+13 -10
pkgs/tools/package-management/cde/default.nix
··· 5 version = "0.1"; 6 7 src = fetchFromGitHub { 8 - owner = "pgbovine"; 9 - repo = "CDE"; 10 - sha256 = "0raiz7pczkbnzxpg7g59v7gdp1ipkwgms2vh3431snw1va1gjzmk"; 11 rev = "v${version}"; 12 }; 13 14 # The build is small, so there should be no problem ··· 18 preferLocalBuild = true; 19 20 patchBuild = '' 21 - sed '/install/d' $src/Makefile > $src/Makefile 22 ''; 23 - 24 installPhase = '' 25 - mkdir -p $out/bin 26 - cp cde $out/bin 27 - cp cde-exec $out/bin 28 ''; 29 30 meta = with stdenv.lib; { 31 - homepage = "https://github.com/pgbovine/CDE"; 32 description = "A packaging tool for building portable packages"; 33 - license = licenses.gpl3; 34 maintainers = [ maintainers.rlupton20 ]; 35 platforms = platforms.linux; 36 # error: architecture aarch64 is not supported by strace
··· 5 version = "0.1"; 6 7 src = fetchFromGitHub { 8 + owner = "usnistgov"; 9 + repo = "corr-CDE"; 10 rev = "v${version}"; 11 + sha256 = "sha256-s375gtqBWx0GGXALXR+fN4bb3tmpvPNu/3bNz+75UWU="; 12 }; 13 14 # The build is small, so there should be no problem ··· 18 preferLocalBuild = true; 19 20 patchBuild = '' 21 + sed -i -e '/install/d' $src/Makefile 22 + ''; 23 + 24 + preBuild = '' 25 + patchShebangs . 26 ''; 27 + 28 installPhase = '' 29 + install -d $out/bin 30 + install -t $out/bin cde cde-exec 31 ''; 32 33 meta = with stdenv.lib; { 34 + homepage = "https://pg.ucsd.edu/cde/manual/"; 35 description = "A packaging tool for building portable packages"; 36 + license = licenses.gpl3Plus; 37 maintainers = [ maintainers.rlupton20 ]; 38 platforms = platforms.linux; 39 # error: architecture aarch64 is not supported by strace
+5 -5
pkgs/tools/package-management/gx/default.nix
··· 1 # This file was generated by go2nix. 2 - { stdenv, buildGoPackage, fetchgit }: 3 4 buildGoPackage rec { 5 pname = "gx"; 6 version = "0.14.1"; 7 - rev = "refs/tags/v${version}"; 8 9 goPackagePath = "github.com/whyrusleeping/gx"; 10 11 - src = fetchgit { 12 - inherit rev; 13 - url = "https://github.com/whyrusleeping/gx"; 14 sha256 = "0pfx2p59xdbmqzfbgaf8xvlnzh8m05hkg596glq5kvl8ib65i4ha"; 15 }; 16
··· 1 # This file was generated by go2nix. 2 + { stdenv, buildGoPackage, fetchFromGitHub }: 3 4 buildGoPackage rec { 5 pname = "gx"; 6 version = "0.14.1"; 7 8 goPackagePath = "github.com/whyrusleeping/gx"; 9 10 + src = fetchFromGitHub { 11 + owner = "whyrusleeping"; 12 + repo = pname; 13 + rev = "refs/tags/v${version}"; 14 sha256 = "0pfx2p59xdbmqzfbgaf8xvlnzh8m05hkg596glq5kvl8ib65i4ha"; 15 }; 16
+5 -5
pkgs/tools/package-management/gx/go/default.nix
··· 1 # This file was generated by go2nix. 2 - { stdenv, buildGoPackage, fetchgit 3 , gx 4 }: 5 6 buildGoPackage rec { 7 pname = "gx-go"; 8 version = "1.9.0"; 9 - rev = "refs/tags/v${version}"; 10 11 goPackagePath = "github.com/whyrusleeping/gx-go"; 12 13 - src = fetchgit { 14 - inherit rev; 15 - url = "https://github.com/whyrusleeping/gx-go"; 16 sha256 = "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc"; 17 }; 18
··· 1 # This file was generated by go2nix. 2 + { stdenv, buildGoPackage, fetchFromGitHub 3 , gx 4 }: 5 6 buildGoPackage rec { 7 pname = "gx-go"; 8 version = "1.9.0"; 9 10 goPackagePath = "github.com/whyrusleeping/gx-go"; 11 12 + src = fetchFromGitHub { 13 + owner = "whyrusleeping"; 14 + repo = pname; 15 + rev = "refs/tags/v${version}"; 16 sha256 = "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc"; 17 }; 18
+10 -10
pkgs/tools/package-management/nix/default.nix
··· 32 inherit name src; 33 version = lib.getVersion name; 34 35 - is30 = lib.versionAtLeast version "3.0pre"; 36 - isExactly30 = lib.versionAtLeast version "2.3" && lib.versionOlder version "3.0"; 37 38 VERSION_SUFFIX = suffix; 39 ··· 41 42 nativeBuildInputs = 43 [ pkgconfig ] 44 - ++ lib.optionals is30 45 [ autoreconfHook 46 autoconf-archive 47 bison flex ··· 54 brotli boost editline 55 ] 56 ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium 57 - ++ lib.optionals is30 [ libarchive gmock ] 58 ++ lib.optional withLibseccomp libseccomp 59 ++ lib.optional withAWS 60 ((aws-sdk-cpp.override { ··· 93 patchelf --set-rpath $out/lib:${stdenv.cc.cc.lib}/lib $out/lib/libboost_thread.so.* 94 ''} 95 '' + 96 - # For Nix 3.0, patch around an issue where the Nix configure step pulls in the 97 # build system's bash and other utilities when cross-compiling 98 - lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform && isExactly30) '' 99 mkdir tmp/ 100 substitute corepkgs/config.nix.in tmp/config.nix.in \ 101 --subst-var-by bash ${bash}/bin/bash \ ··· 198 }); 199 200 nixUnstable = lib.lowPrio (callPackage common rec { 201 - name = "nix-3.0${suffix}"; 202 - suffix = "pre20201020_e0ca98c"; 203 204 src = fetchFromGitHub { 205 owner = "NixOS"; 206 repo = "nix"; 207 - rev = "e0ca98c2071b815578470e280df8fdb750c7e23b"; 208 - hash = "sha256-KVS/Z6FzMBOl5XCyOLwfiVoX7G2LQRa9HMGNnJRPCoo="; 209 }; 210 211 inherit storeDir stateDir confDir boehmgc;
··· 32 inherit name src; 33 version = lib.getVersion name; 34 35 + is24 = lib.versionAtLeast version "2.4pre"; 36 + isExactly24 = lib.versionAtLeast version "2.4" && lib.versionOlder version "2.4"; 37 38 VERSION_SUFFIX = suffix; 39 ··· 41 42 nativeBuildInputs = 43 [ pkgconfig ] 44 + ++ lib.optionals is24 45 [ autoreconfHook 46 autoconf-archive 47 bison flex ··· 54 brotli boost editline 55 ] 56 ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium 57 + ++ lib.optionals is24 [ libarchive gmock ] 58 ++ lib.optional withLibseccomp libseccomp 59 ++ lib.optional withAWS 60 ((aws-sdk-cpp.override { ··· 93 patchelf --set-rpath $out/lib:${stdenv.cc.cc.lib}/lib $out/lib/libboost_thread.so.* 94 ''} 95 '' + 96 + # For Nix 2.4, patch around an issue where the Nix configure step pulls in the 97 # build system's bash and other utilities when cross-compiling 98 + lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform && isExactly24) '' 99 mkdir tmp/ 100 substitute corepkgs/config.nix.in tmp/config.nix.in \ 101 --subst-var-by bash ${bash}/bin/bash \ ··· 198 }); 199 200 nixUnstable = lib.lowPrio (callPackage common rec { 201 + name = "nix-2.4${suffix}"; 202 + suffix = "pre20201102_550e11f"; 203 204 src = fetchFromGitHub { 205 owner = "NixOS"; 206 repo = "nix"; 207 + rev = "550e11f077ae508abde5a33998a9d4029880e7b2"; 208 + sha256 = "186grfxsfqg7r92wgwbma66xc7p3iywn43ff7s59m4g6bvb0qgcl"; 209 }; 210 211 inherit storeDir stateDir confDir boehmgc;
+2 -2
pkgs/tools/security/aws-okta/default.nix
··· 2 3 buildGoPackage rec { 4 pname = "aws-okta"; 5 - version = "1.0.5"; 6 7 goPackagePath = "github.com/segmentio/aws-okta"; 8 ··· 10 owner = "segmentio"; 11 repo = "aws-okta"; 12 rev = "v${version}"; 13 - sha256 = "1xd73j6rbbdrnzj0m8dqwcvn62cz6bygdpxsx8g7117qbdzz2lj1"; 14 }; 15 16 buildFlags = [ "--tags" "release" ];
··· 2 3 buildGoPackage rec { 4 pname = "aws-okta"; 5 + version = "1.0.6"; 6 7 goPackagePath = "github.com/segmentio/aws-okta"; 8 ··· 10 owner = "segmentio"; 11 repo = "aws-okta"; 12 rev = "v${version}"; 13 + sha256 = "1nhcqj3vhdgk0a0smmyqphjw2slcvqbb8xd8bx506j8h8x84p6yf"; 14 }; 15 16 buildFlags = [ "--tags" "release" ];
+2 -2
pkgs/tools/security/clevis/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "clevis"; 7 - version = "14"; 8 9 src = fetchFromGitHub { 10 owner = "latchset"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "1j8id67jk3ikim2xh7vjg7j2ayrpm1a4n8v3n8r8pnr4rhqy76fd"; 14 }; 15 16 nativeBuildInputs = [ meson ninja pkgconfig asciidoc ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "clevis"; 7 + version = "15"; 8 9 src = fetchFromGitHub { 10 owner = "latchset"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "0wfgd2v1r47ckh5qp60b903191fx0fa27zyadxlsb8riqszhmwvz"; 14 }; 15 16 nativeBuildInputs = [ meson ninja pkgconfig asciidoc ];
+5 -4
pkgs/tools/security/crackxls/default.nix
··· 1 - { stdenv, fetchgit, pkgconfig, autoconf, automake, openssl, libgsf, gmp }: 2 3 stdenv.mkDerivation rec { 4 5 pname = "crackxls"; 6 version = "0.4"; 7 8 - src = fetchgit { 9 - url = "https://github.com/GavinSmith0123/crackxls2003.git"; 10 - rev = "refs/tags/v${version}"; 11 sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz"; 12 }; 13
··· 1 + { stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, openssl, libgsf, gmp }: 2 3 stdenv.mkDerivation rec { 4 5 pname = "crackxls"; 6 version = "0.4"; 7 8 + src = fetchFromGitHub { 9 + owner = "GavinSmith0123"; 10 + repo = "crackxls2003"; 11 + rev = "v${version}"; 12 sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz"; 13 }; 14
+3 -3
pkgs/tools/security/doppler/default.nix
··· 2 3 buildGoModule rec { 4 pname = "doppler"; 5 - version = "3.15.0"; 6 7 src = fetchFromGitHub { 8 owner = "dopplerhq"; 9 repo = "cli"; 10 rev = version; 11 - sha256 = "06icddb99ahmi5djrslpqsjjd38agvkhnfls5wqahclf0j4dylr6"; 12 }; 13 14 - vendorSha256 = "0wqbwk72k4r30a3vnf0gnx3k97y8xgnr2iavk5bc8f8vkjv0bsv6"; 15 16 buildFlagsArray = "-ldflags=-X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${version}"; 17
··· 2 3 buildGoModule rec { 4 pname = "doppler"; 5 + version = "3.16.0"; 6 7 src = fetchFromGitHub { 8 owner = "dopplerhq"; 9 repo = "cli"; 10 rev = version; 11 + sha256 = "1hypi62bzdpa55bd9z9lvisw7ybcn8jlk0kyck9h7wc2ll59jzwx"; 12 }; 13 14 + vendorSha256 = "1s8zwjfk9kcddn8cywr7llh9v5m140kvmi5lmy2glvwh3rwccgxf"; 15 16 buildFlagsArray = "-ldflags=-X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${version}"; 17
+7 -8
pkgs/tools/security/genpass/default.nix
··· 1 { stdenv 2 - , fetchFromGitHub 3 , rustPlatform 4 , CoreFoundation 5 , libiconv ··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "genpass"; 10 - version = "0.4.1"; 11 12 - src = fetchFromGitHub { 13 - owner = "cyplo"; 14 - repo = pname; 15 rev = "v${version}"; 16 - sha256 = "1b22m7g55k5ry0vwyd8pakh8rmfkhk37qy5r74cn3n5pv3fcwini"; 17 }; 18 19 - cargoSha256 = "1p6l64s9smhwka8bh3pamqimamxziad859i62nrmxzqc49nq5s7m"; 20 21 buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ]; 22 23 meta = with stdenv.lib; { 24 description = "A simple yet robust commandline random password generator"; 25 - homepage = "https://github.com/cyplo/genpass"; 26 license = licenses.agpl3; 27 maintainers = with maintainers; [ cyplo ]; 28 };
··· 1 { stdenv 2 + , fetchgit 3 , rustPlatform 4 , CoreFoundation 5 , libiconv ··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "genpass"; 10 + version = "0.4.9"; 11 12 + src = fetchgit { 13 + url = "https://git.sr.ht/~cyplo/genpass"; 14 rev = "v${version}"; 15 + sha256 = "1dpv2iyd48xd8yw9bmymjjrkhsgmpwvsl5b9zx3lpaaq59ypi9g9"; 16 }; 17 18 + cargoSha256 = "1cwxpc3xkw673wiamr4v7clrzwxl8ma1vdr6bw0hixm37gxdxz7x"; 19 20 buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ]; 21 22 meta = with stdenv.lib; { 23 description = "A simple yet robust commandline random password generator"; 24 + homepage = "https://sr.ht/~cyplo/genpass/"; 25 license = licenses.agpl3; 26 maintainers = with maintainers; [ cyplo ]; 27 };
+2 -2
pkgs/tools/security/gnu-pw-mgr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gnu-pw-mgr"; 5 - version = "2.4.2"; 6 src = fetchurl { 7 url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz"; 8 - sha256 = "1yvdzc5w37qrjrkby5699ygj9bhkvgi3zk9k9jcjry1j6b7wdl17"; 9 }; 10 11 buildInputs = [ gnulib ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gnu-pw-mgr"; 5 + version = "2.7.4"; 6 src = fetchurl { 7 url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz"; 8 + sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8"; 9 }; 10 11 buildInputs = [ gnulib ];
+1 -1
pkgs/tools/security/honggfuzz/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = pname; 13 - rev = "${version}"; 14 sha256 = "0dcl5a5jykgfmnfj42vl7kah9k26wg38l2g6yfh5pssmlf0nax33"; 15 }; 16
··· 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = pname; 13 + rev = version; 14 sha256 = "0dcl5a5jykgfmnfj42vl7kah9k26wg38l2g6yfh5pssmlf0nax33"; 15 }; 16
+2 -2
pkgs/tools/security/kpcli/default.nix
··· 1 { stdenv, fetchurl, makeWrapper, perl, perlPackages }: 2 3 stdenv.mkDerivation rec { 4 - version = "3.4"; 5 pname = "kpcli"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/kpcli/${pname}-${version}.pl"; 9 - sha256 = "0s46cni16ph93havmkrlai3k13mdppyca1s2bqm751a6rirmsgj0"; 10 }; 11 12 buildInputs = [ makeWrapper perl ];
··· 1 { stdenv, fetchurl, makeWrapper, perl, perlPackages }: 2 3 stdenv.mkDerivation rec { 4 + version = "3.6"; 5 pname = "kpcli"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/kpcli/${pname}-${version}.pl"; 9 + sha256 = "1srd6vrqgjlf906zdyxp4bg6gihkxn62cpzyfv0zzpsqsj13iwh1"; 10 }; 11 12 buildInputs = [ makeWrapper perl ];
+1 -1
pkgs/tools/security/rbw/default.nix
··· 24 25 src = fetchCrate { 26 inherit version; 27 - crateName = "${pname}"; 28 sha256 = "0p37kwkp153mkns4bh7k7gnksk6c31214wlw3faf42daav32mmgw"; 29 }; 30
··· 24 25 src = fetchCrate { 26 inherit version; 27 + crateName = pname; 28 sha256 = "0p37kwkp153mkns4bh7k7gnksk6c31214wlw3faf42daav32mmgw"; 29 }; 30
+1 -1
pkgs/tools/security/rustscan/default.nix
··· 7 src = fetchFromGitHub { 8 owner = "RustScan"; 9 repo = pname; 10 - rev = "${version}"; 11 sha256 = "0dhy7b73ipsxsr7wlc3r5yy39i3cjrdszhsw9xwjj31692s3b605"; 12 }; 13
··· 7 src = fetchFromGitHub { 8 owner = "RustScan"; 9 repo = pname; 10 + rev = version; 11 sha256 = "0dhy7b73ipsxsr7wlc3r5yy39i3cjrdszhsw9xwjj31692s3b605"; 12 }; 13
+2 -22
pkgs/tools/security/ssh-audit/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "ssh-audit"; 5 - version = "2.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "jtesta"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "1k5nv2cdnzd3j2p729vjw6ya0gwwkxhqijs2b7p68wvp0n3y3m77"; 12 }; 13 14 - postPatch = '' 15 - cp ./README.md packages/sshaudit/ 16 - cp ./ssh-audit.py packages/sshaudit/sshaudit.py 17 - mv packages/* . 18 - ls -lah 19 - ''; 20 - 21 checkInputs = with python3Packages; [ 22 pytestCheckHook 23 - ]; 24 - 25 - disabledTests = [ 26 - "test_resolve_error" 27 - "test_resolve_hostname_without_records" 28 - "test_resolve_ipv4" 29 - "test_resolve_ipv6" 30 - "test_resolve_ipv46_both" 31 - "test_resolve_ipv46_order" 32 - "test_invalid_host" 33 - "test_invalid_port" 34 - "test_not_connected_socket" 35 - "test_ssh2_server_simple" 36 ]; 37 38 meta = with lib; {
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "ssh-audit"; 5 + version = "2.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "jtesta"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "1h739r5nv5zkmjyyjwkw8r6d4avddjjxsamc5rffwfxi1kjavpxm"; 12 }; 13 14 checkInputs = with python3Packages; [ 15 pytestCheckHook 16 ]; 17 18 meta = with lib; {
+5 -3
pkgs/tools/security/vault/default.nix
··· 1 - { stdenv, fetchFromGitHub, buildGoPackage, installShellFiles }: 2 3 buildGoPackage rec { 4 pname = "vault"; 5 - version = "1.5.4"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "vault"; 10 rev = "v${version}"; 11 - sha256 = "0bin0r0qmyz8xal910csbclzc6ng2xv69jszyi69gd6n6f43vqw8"; 12 }; 13 14 goPackagePath = "github.com/hashicorp/vault"; ··· 23 echo "complete -C $out/bin/vault vault" > vault.bash 24 installShellCompletion vault.bash 25 ''; 26 27 meta = with stdenv.lib; { 28 homepage = "https://www.vaultproject.io/";
··· 1 + { stdenv, fetchFromGitHub, buildGoPackage, installShellFiles, nixosTests }: 2 3 buildGoPackage rec { 4 pname = "vault"; 5 + version = "1.5.5"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "vault"; 10 rev = "v${version}"; 11 + sha256 = "144v7vmp2amv29y6d50jzc21zrcw0g6qlwks16mvqy2hnbsnzdwa"; 12 }; 13 14 goPackagePath = "github.com/hashicorp/vault"; ··· 23 echo "complete -C $out/bin/vault vault" > vault.bash 24 installShellCompletion vault.bash 25 ''; 26 + 27 + passthru.tests.vault = nixosTests.vault; 28 29 meta = with stdenv.lib; { 30 homepage = "https://www.vaultproject.io/";
+9 -7
pkgs/tools/security/vault/vault-bin.nix
··· 1 - { stdenv, fetchurl, unzip }: 2 3 let 4 - version = "1.5.4"; 5 6 sources = let 7 base = "https://releases.hashicorp.com/vault/${version}"; 8 in { 9 x86_64-linux = fetchurl { 10 url = "${base}/vault_${version}_linux_amd64.zip"; 11 - sha256 = "1cyk9v70w0px2sxg8dichqgk38br9hc4kdl37jk57ci5gdl6w5ah"; 12 }; 13 i686-linux = fetchurl { 14 url = "${base}/vault_${version}_linux_386.zip"; 15 - sha256 = "1n6hmhd4g2c6zzbimslxpghma5dyqwb96w60srbf9gn2vrimg4l4"; 16 }; 17 x86_64-darwin = fetchurl { 18 url = "${base}/vault_${version}_darwin_amd64.zip"; 19 - sha256 = "05d5m8kdwl6mcx3swkasm5zcmddlyl6m9lwj26vbg9pllx9zxvqm"; 20 }; 21 i686-darwin = fetchurl { 22 url = "${base}/vault_${version}_darwin_386.zip"; 23 - sha256 = "109hisdwd58za541qhw61bscfrh3szzfn8vdmr4c7nh5praiqznb"; 24 }; 25 aarch64-linux = fetchurl { 26 url = "${base}/vault_${version}_linux_arm64.zip"; 27 - sha256 = "0q8icl5ncvixrdmsd2ilzvpa6c1pswa6zgh3vccsj7sg8mxprjmr"; 28 }; 29 }; 30 ··· 43 mv vault $out/bin 44 echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault 45 ''; 46 47 meta = with stdenv.lib; { 48 homepage = "https://www.vaultproject.io";
··· 1 + { stdenv, fetchurl, unzip, nixosTests }: 2 3 let 4 + version = "1.5.5"; 5 6 sources = let 7 base = "https://releases.hashicorp.com/vault/${version}"; 8 in { 9 x86_64-linux = fetchurl { 10 url = "${base}/vault_${version}_linux_amd64.zip"; 11 + sha256 = "1vg1c34d2ck2a96p800gblq06jakg29yzrczaa6nsmnnr3k5hs9a"; 12 }; 13 i686-linux = fetchurl { 14 url = "${base}/vault_${version}_linux_386.zip"; 15 + sha256 = "1hf46mm7shvq9gpi50b6hcp2cydhzbkwigqcnl527y4cvc9iv7in"; 16 }; 17 x86_64-darwin = fetchurl { 18 url = "${base}/vault_${version}_darwin_amd64.zip"; 19 + sha256 = "1jna9rmdhqi7j8p67y9dzq716dv8fn4rjsn76mbvlgc5wylky6gz"; 20 }; 21 i686-darwin = fetchurl { 22 url = "${base}/vault_${version}_darwin_386.zip"; 23 + sha256 = "1qv02zd5dwaw1i52pnbyshbd8cy0x5nr3f2s9l3p9ci5rzad4rjn"; 24 }; 25 aarch64-linux = fetchurl { 26 url = "${base}/vault_${version}_linux_arm64.zip"; 27 + sha256 = "1y4i62qq5cx2bv18dnbgys2qa5xx0acn8j3hdh0dbsw0zyms4qv7"; 28 }; 29 }; 30 ··· 43 mv vault $out/bin 44 echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault 45 ''; 46 + 47 + passthru.tests.vault = nixosTests.vault; 48 49 meta = with stdenv.lib; { 50 homepage = "https://www.vaultproject.io";
+2 -2
pkgs/tools/system/facter/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "facter"; 5 - version = "3.14.13"; 6 7 src = fetchFromGitHub { 8 - sha256 = "1rink4xxh7f2ckqfl4pc3ljm9rfb5c4npsqzlys4f2snmq4d0h39"; 9 rev = version; 10 repo = pname; 11 owner = "puppetlabs";
··· 2 3 stdenv.mkDerivation rec { 4 pname = "facter"; 5 + version = "3.14.14"; 6 7 src = fetchFromGitHub { 8 + sha256 = "07pfa11i3nn2dk5g3c1qj3g7d2s8gd2fr0lmfijndaqxm7gjrn1a"; 9 rev = version; 10 repo = pname; 11 owner = "puppetlabs";
+2 -2
pkgs/tools/system/fio/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "fio"; 7 - version = "3.22"; 8 9 src = fetchFromGitHub { 10 owner = "axboe"; 11 repo = "fio"; 12 rev = "fio-${version}"; 13 - sha256 = "16p17l1xbqqkgppvwmfaywknhk4ybafnx8hm56ffd8bls9vaqw5m"; 14 }; 15 16 buildInputs = [ python zlib ]
··· 4 5 stdenv.mkDerivation rec { 6 pname = "fio"; 7 + version = "3.23"; 8 9 src = fetchFromGitHub { 10 owner = "axboe"; 11 repo = "fio"; 12 rev = "fio-${version}"; 13 + sha256 = "0xr1d1jh7zhdhf0zfv8w6r99hk8h5d22v36h13hrd8mqyaz1g8m0"; 14 }; 15 16 buildInputs = [ python zlib ]
+3 -3
pkgs/tools/system/tre-command/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "tre-command"; 5 - version = "0.3.2"; 6 7 src = fetchFromGitHub { 8 owner = "dduan"; 9 repo = "tre"; 10 rev = "v${version}"; 11 - sha256 = "1kb8jwmjhlp9bk08rb6gq3j810cv9bidm28sa417vyykp9a8p2ky"; 12 }; 13 14 - cargoSha256 = "0cqkpvq8b2vnqpkd819cdgh4fqr9yns337fgzah4m40ygs25n9iv"; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "tre-command"; 5 + version = "0.3.3"; 6 7 src = fetchFromGitHub { 8 owner = "dduan"; 9 repo = "tre"; 10 rev = "v${version}"; 11 + sha256 = "10c8mpqzpw7m3vrm2vl2rx678z3c37hxpqyh3fn83dlh9f4f0j87"; 12 }; 13 14 + cargoSha256 = "0jd6cfs2zi2n34kirpsy12l76whaqwm1pkqa57w1ms5z658z07wj"; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
+25
pkgs/tools/text/angle-grinder/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , rustPlatform 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "angle-grinder"; 8 + version = "0.15.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "rcoh"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "1m5yj9412kjlnqi1nwh44i627ip0kqcbhvwgh87gl5vgd2a0m091"; 15 + }; 16 + 17 + cargoSha256 = "0y4c1gja0i3h2whjpm74yf3z1y85pkwmpmrl2fjsyy0mn493hzv8"; 18 + 19 + meta = with stdenv.lib; { 20 + description = "Slice and dice logs on the command line"; 21 + homepage = "https://github.com/rcoh/angle-grinder"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ bbigras ]; 24 + }; 25 + }
+1 -1
pkgs/tools/text/ledger2beancount/default.nix
··· 17 src = fetchFromGitHub { 18 owner = "zacchiro"; 19 repo = "ledger2beancount"; 20 - rev = "${version}"; 21 sha256 = "0w88jb1x0w02jwwf6ipx3cxr89kzffrrdqws3556zrvvs01bh84j"; 22 }; 23
··· 17 src = fetchFromGitHub { 18 owner = "zacchiro"; 19 repo = "ledger2beancount"; 20 + rev = version; 21 sha256 = "0w88jb1x0w02jwwf6ipx3cxr89kzffrrdqws3556zrvvs01bh84j"; 22 }; 23
+8 -3
pkgs/tools/typesetting/tectonic/default.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "tectonic"; 6 - version = "0.2.0"; 7 8 src = fetchFromGitHub { 9 owner = "tectonic-typesetting"; 10 repo = "tectonic"; 11 rev = "tectonic@${version}"; 12 - sha256 = "+kHp5qy0lzT5sLoxC1tlW6oaKZ11vQF+30zW0wXlQBU="; 13 }; 14 15 - cargoSha256 = "bsuNHqr/8OTG3LXd+PYPKsXEBpbcwxP4A7SEqLYNKU0="; 16 17 nativeBuildInputs = [ pkgconfig ]; 18 19 buildInputs = [ fontconfig harfbuzz openssl ] 20 ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ApplicationServices Cocoa Foundation ]); 21 22 doCheck = true; 23
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "tectonic"; 6 + version = "0.3.0"; 7 8 src = fetchFromGitHub { 9 owner = "tectonic-typesetting"; 10 repo = "tectonic"; 11 rev = "tectonic@${version}"; 12 + sha256 = "yJzfymA4elyyeVR8FzTJe8wgs+vm3RWwcOh7IlmBYPE="; 13 }; 14 15 + cargoSha256 = "7zqr54H6GemiM/xuHOH6+s669IG2orj1neoqAH+wnV4="; 16 17 nativeBuildInputs = [ pkgconfig ]; 18 19 buildInputs = [ fontconfig harfbuzz openssl ] 20 ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ApplicationServices Cocoa Foundation ]); 21 + 22 + postInstall = stdenv.lib.optionalString stdenv.isLinux '' 23 + install -D dist/appimage/tectonic.desktop -t $out/share/applications/ 24 + install -D dist/appimage/tectonic.svg -t $out/share/icons/hicolor/scalable/apps/ 25 + ''; 26 27 doCheck = true; 28
+1
pkgs/top-level/aliases.nix
··· 627 ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 628 ucsFonts = ucs-fonts; # added 2016-07-15 629 ultrastardx-beta = ultrastardx; # added 2017-08-12 630 usb_modeswitch = usb-modeswitch; # added 2016-05-10 631 usbguard-nox = usbguard; # added 2019-09-04 632 uzbl = throw "uzbl has been removed from nixpkgs, as it's unmaintained and uses insecure libraries";
··· 627 ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 628 ucsFonts = ucs-fonts; # added 2016-07-15 629 ultrastardx-beta = ultrastardx; # added 2017-08-12 630 + unicorn-emu = unicorn; # added 2020-10-29 631 usb_modeswitch = usb-modeswitch; # added 2016-05-10 632 usbguard-nox = usbguard; # added 2019-09-04 633 uzbl = throw "uzbl has been removed from nixpkgs, as it's unmaintained and uses insecure libraries";
+29 -11
pkgs/top-level/all-packages.nix
··· 805 806 analog = callPackage ../tools/admin/analog {}; 807 808 ansifilter = callPackage ../tools/text/ansifilter {}; 809 810 antora = callPackage ../development/tools/documentation/antora {}; ··· 1653 candle = libsForQt5.callPackage ../applications/misc/candle { }; 1654 1655 capstone = callPackage ../development/libraries/capstone { }; 1656 - unicorn-emu = callPackage ../development/libraries/unicorn-emu { }; 1657 1658 casync = callPackage ../applications/networking/sync/casync { 1659 sphinx = python3Packages.sphinx; ··· 3075 3076 console-bridge = callPackage ../development/libraries/console-bridge { }; 3077 3078 convmv = callPackage ../tools/misc/convmv { }; 3079 3080 convoy = callPackage ../tools/filesystems/convoy { }; ··· 3520 uudeview = callPackage ../tools/misc/uudeview { }; 3521 3522 uutils-coreutils = callPackage ../tools/misc/uutils-coreutils { 3523 - inherit (pythonPackages) sphinx; 3524 inherit (darwin.apple_sdk.frameworks) Security; 3525 }; 3526 ··· 4235 4236 google-authenticator = callPackage ../os-specific/linux/google-authenticator { }; 4237 4238 - google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { }; 4239 google-cloud-sdk-gce = google-cloud-sdk.override { with-gce = true; }; 4240 4241 google-fonts = callPackage ../data/fonts/google-fonts { }; 4242 4243 google-clasp = callPackage ../development/misc/google-clasp { }; 4244 4245 - google-compute-engine = python2.pkgs.google-compute-engine; 4246 4247 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 4248 ··· 4909 4910 kalibrate-hackrf = callPackage ../applications/radio/kalibrate-hackrf { }; 4911 4912 - wrapKakoune = callPackage ../applications/editors/kakoune/wrapper.nix { }; 4913 kakounePlugins = callPackage ../applications/editors/kakoune/plugins { }; 4914 kakoune-unwrapped = callPackage ../applications/editors/kakoune { }; 4915 - kakoune = wrapKakoune kakoune-unwrapped { }; 4916 4917 kak-lsp = callPackage ../tools/misc/kak-lsp { }; 4918 ··· 8074 8075 unbound = callPackage ../tools/networking/unbound { }; 8076 8077 units = callPackage ../tools/misc/units { 8078 enableCurrenciesUpdater = true; 8079 pythonPackages = python3Packages; ··· 8122 }; 8123 8124 unar = callPackage ../tools/archivers/unar { stdenv = clangStdenv; }; 8125 - 8126 - unarj = callPackage ../tools/archivers/unarj { }; 8127 8128 unp = callPackage ../tools/archivers/unp { }; 8129 ··· 12356 12357 cxx-prettyprint = callPackage ../development/libraries/cxx-prettyprint { }; 12358 12359 - cxxtest = callPackage ../development/libraries/cxxtest { }; 12360 12361 cypress = callPackage ../development/web/cypress { }; 12362 ··· 21778 attrs = { 21779 inherit libsForQt5; 21780 inherit lib fetchurl; 21781 - inherit okteta; 21782 }; 21783 in 21784 recurseIntoAttrs (makeOverridable mkApplications attrs); ··· 22417 if stdenv.isDarwin then 22418 callPackage ../applications/audio/musescore/darwin.nix { } 22419 else 22420 - libsForQt514.callPackage ../applications/audio/musescore { }; 22421 22422 mmh = callPackage ../applications/networking/mailreaders/mmh { }; 22423 mutt = callPackage ../applications/networking/mailreaders/mutt { }; ··· 25269 25270 instead-launcher = callPackage ../games/instead-launcher { }; 25271 25272 ivan = callPackage ../games/ivan { }; 25273 25274 ja2-stracciatella = callPackage ../games/ja2-stracciatella { }; ··· 27584 opkg = callPackage ../tools/package-management/opkg { }; 27585 27586 opkg-utils = callPackage ../tools/package-management/opkg-utils { }; 27587 27588 pgmanage = callPackage ../applications/misc/pgmanage { }; 27589
··· 805 806 analog = callPackage ../tools/admin/analog {}; 807 808 + angle-grinder = callPackage ../tools/text/angle-grinder {}; 809 + 810 ansifilter = callPackage ../tools/text/ansifilter {}; 811 812 antora = callPackage ../development/tools/documentation/antora {}; ··· 1655 candle = libsForQt5.callPackage ../applications/misc/candle { }; 1656 1657 capstone = callPackage ../development/libraries/capstone { }; 1658 + 1659 + keystone = callPackage ../development/libraries/keystone { }; 1660 1661 casync = callPackage ../applications/networking/sync/casync { 1662 sphinx = python3Packages.sphinx; ··· 3078 3079 console-bridge = callPackage ../development/libraries/console-bridge { }; 3080 3081 + convbin = callPackage ../tools/misc/convbin { }; 3082 + 3083 + convimg = callPackage ../tools/misc/convimg { }; 3084 + 3085 + convfont = callPackage ../tools/misc/convfont { }; 3086 + 3087 convmv = callPackage ../tools/misc/convmv { }; 3088 3089 convoy = callPackage ../tools/filesystems/convoy { }; ··· 3529 uudeview = callPackage ../tools/misc/uudeview { }; 3530 3531 uutils-coreutils = callPackage ../tools/misc/uutils-coreutils { 3532 + inherit (python3Packages) sphinx; 3533 inherit (darwin.apple_sdk.frameworks) Security; 3534 }; 3535 ··· 4244 4245 google-authenticator = callPackage ../os-specific/linux/google-authenticator { }; 4246 4247 + google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { 4248 + python = python3; 4249 + }; 4250 google-cloud-sdk-gce = google-cloud-sdk.override { with-gce = true; }; 4251 4252 google-fonts = callPackage ../data/fonts/google-fonts { }; 4253 4254 google-clasp = callPackage ../development/misc/google-clasp { }; 4255 4256 + google-compute-engine = with python3.pkgs; toPythonApplication google-compute-engine; 4257 4258 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 4259 ··· 4920 4921 kalibrate-hackrf = callPackage ../applications/radio/kalibrate-hackrf { }; 4922 4923 + wrapKakoune = kakoune: attrs: callPackage ../applications/editors/kakoune/wrapper.nix (attrs // { inherit kakoune; }); 4924 kakounePlugins = callPackage ../applications/editors/kakoune/plugins { }; 4925 kakoune-unwrapped = callPackage ../applications/editors/kakoune { }; 4926 + kakoune = wrapKakoune kakoune-unwrapped { 4927 + plugins = [ ]; # override with the list of desired plugins 4928 + }; 4929 4930 kak-lsp = callPackage ../tools/misc/kak-lsp { }; 4931 ··· 8087 8088 unbound = callPackage ../tools/networking/unbound { }; 8089 8090 + unicorn = callPackage ../development/libraries/unicorn { }; 8091 + 8092 units = callPackage ../tools/misc/units { 8093 enableCurrenciesUpdater = true; 8094 pythonPackages = python3Packages; ··· 8137 }; 8138 8139 unar = callPackage ../tools/archivers/unar { stdenv = clangStdenv; }; 8140 8141 unp = callPackage ../tools/archivers/unp { }; 8142 ··· 12369 12370 cxx-prettyprint = callPackage ../development/libraries/cxx-prettyprint { }; 12371 12372 + cxxtest = python2Packages.callPackage ../development/libraries/cxxtest { }; 12373 12374 cypress = callPackage ../development/web/cypress { }; 12375 ··· 21791 attrs = { 21792 inherit libsForQt5; 21793 inherit lib fetchurl; 21794 }; 21795 in 21796 recurseIntoAttrs (makeOverridable mkApplications attrs); ··· 22429 if stdenv.isDarwin then 22430 callPackage ../applications/audio/musescore/darwin.nix { } 22431 else 22432 + libsForQt5.callPackage ../applications/audio/musescore { }; 22433 22434 mmh = callPackage ../applications/networking/mailreaders/mmh { }; 22435 mutt = callPackage ../applications/networking/mailreaders/mutt { }; ··· 25281 25282 instead-launcher = callPackage ../games/instead-launcher { }; 25283 25284 + iortcw = callPackage ../games/iortcw { }; 25285 + # used as base package for iortcw forks 25286 + iortcw_sp = callPackage ../games/iortcw/sp.nix { }; 25287 + 25288 ivan = callPackage ../games/ivan { }; 25289 25290 ja2-stracciatella = callPackage ../games/ja2-stracciatella { }; ··· 27600 opkg = callPackage ../tools/package-management/opkg { }; 27601 27602 opkg-utils = callPackage ../tools/package-management/opkg-utils { }; 27603 + 27604 + OSCAR = qt5.callPackage ../applications/misc/OSCAR { }; 27605 27606 pgmanage = callPackage ../applications/misc/pgmanage { }; 27607
+2
pkgs/top-level/ocaml-packages.nix
··· 569 570 mirage-net = callPackage ../development/ocaml-modules/mirage-net { }; 571 572 mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { }; 573 574 mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
··· 569 570 mirage-net = callPackage ../development/ocaml-modules/mirage-net { }; 571 572 + mirage-profile = callPackage ../development/ocaml-modules/mirage-profile { }; 573 + 574 mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { }; 575 576 mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
+4 -2
pkgs/top-level/python-packages.nix
··· 4272 4273 ovh = callPackage ../development/python-modules/ovh { }; 4274 4275 - ovito = toPythonModule (pkgs.libsForQt5.callPackage ../development/python-modules/ovito { pythonPackages = self; }); 4276 4277 owslib = callPackage ../development/python-modules/owslib { }; 4278 ··· 7375 7376 unicode-slugify = callPackage ../development/python-modules/unicode-slugify { }; 7377 7378 - unicorn = callPackage ../development/python-modules/unicorn { }; 7379 7380 unidecode = callPackage ../development/python-modules/unidecode { }; 7381
··· 4272 4273 ovh = callPackage ../development/python-modules/ovh { }; 4274 4275 + ovito = toPythonModule (pkgs.libsForQt5.callPackage ../development/python-modules/ovito { inherit python; }); 4276 4277 owslib = callPackage ../development/python-modules/owslib { }; 4278 ··· 7375 7376 unicode-slugify = callPackage ../development/python-modules/unicode-slugify { }; 7377 7378 + unicorn = callPackage ../development/python-modules/unicorn { 7379 + unicorn-emu = pkgs.unicorn; 7380 + }; 7381 7382 unidecode = callPackage ../development/python-modules/unidecode { }; 7383