diff --git a/pkgs/companion/default.nix b/pkgs/companion/default.nix index 0c3b2f6..51728a9 100644 --- a/pkgs/companion/default.nix +++ b/pkgs/companion/default.nix @@ -1,24 +1,64 @@ -{ stdenv, mkYarnPackage, mkYarnModules, fetchFromGitHub, libsass, python, python3, pkg-config, libusb, fetchurl, nodejs, electron, writeText, makeWrapper, udev, nodePackages, libvips }: +{ stdenv +, mkYarnPackage +, mkYarnModules +, fetchFromGitHub +, libsass +, python +, python3 +, pkg-config +, libusb +, fetchurl +, nodejs +, electron +, writeText +, makeWrapper +, udev +, nodePackages +, libvips +}: + +# some weird javascript thingy that runs our tally lights on conferences. +# +# in case it breaks or you want to update it: +# 1. update companion sources below (also update the hash) +# 2. re-generate the yarn.nix / yarn-webui.nix files (see comments below) +# 3. try re-generating yarn.lock itself (`yarn install --mode update-lockfile`) +# +# if things break, try taking a look at yarn2nix's documentation. In +# nix-typical fashion, it was deleted when yarn2nix got integrated into +# nixpkgs; a shorter version is now in the nixpkgs manual: +# - https://nixos.org/manual/nixpkgs/stable/#javascript-tool-specific +# sometimes the archived original documentation can still be helpful: +# - https://github.com/nix-community/yarn2nix let version = "2.1.3"; + source = fetchFromGitHub { owner = "bitfocus"; repo = "companion"; -# rev = "v${version}"; - rev = "1cc51029a19d7263a09058f73922277ca53a1583"; - sha256 = "0305wwdic3n20whzhh9zqcd3dwj7hc4fpycs645ncc3sk48azmj0"; + rev = "b653211f5507a090a120fa3e819ab3044405e461"; + sha256 = "0gvibbhfqa9gk8cf3m07gd5dbik3kbpr03hx2pppqnh9pfrx35qh"; }; + nodeHeaders = fetchurl { url = "https://nodejs.org/download/release/v${nodejs.version}/node-v${nodejs.version}-headers.tar.gz"; sha256 = "19b0dg8292cjx758wlrvpb3jf520bpyvjal2n7r4fyvk38x9flik"; }; + + # the companion's web ui. In a seperate derivation, but is symlinked into + # the companion itself. webui = mkYarnPackage rec { inherit version; pname = "bitfocus-companion-webui"; src = "${source}/webui"; + # nixified dependencies generated using `yarn2nix`. Must be re-generated + # when updating the companion using yarn2nix on the yarn.lock file of the + # webui. + yarnNix = ./yarn-webui.nix; + configurePhase = " cp -r $node_modules node_modules chmod -R u+w node_modules @@ -27,7 +67,6 @@ let installPhase = "mv build $out"; distPhase = "true"; - yarnNix = ./yarn-webui.nix; pkgConfig = { node-sass = { @@ -38,17 +77,38 @@ let }; yarnModulesNoWorkspace = args: (mkYarnModules args).overrideAttrs(old: { - buildPhase = builtins.replaceStrings [" ./package.json"] [" /dev/null; cp deps/*/package.json ."] old.buildPhase; + # this replaces exactly one occurance of that string in + # /pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix + buildPhase = builtins.replaceStrings + [" ./package.json"] + [" /dev/null; cp deps/*/package.json ."] + old.buildPhase; }); +in stdenv.mkDerivation rec { + inherit version; + pname = "bitfocus-companion"; + + src = source; + + # yarn modules needed for the build; these would usually be fetched by yarn + # when running `yarn build`. modules = yarnModulesNoWorkspace rec { inherit version; pname = "companion-modules"; name = "${pname}-${version}"; + + # A nixified version of yarn's yarn.lock file. If anything in here breaks, + # try regenerating it using `yarn2nix` (found in nixpkgs.yarn2nix) on the + # yarn.lock file found in the companion's source tree (also try a newer + # version while you're at it). yarnNix = ./yarn.nix; + + # no idea what these two do tbh packageJSON = "${source}/package.json"; yarnLock = "${source}/yarn.lock"; + # ??? pkgConfig = { node-hid = { buildInputs = [ udev libusb python3 pkg-config ]; @@ -66,11 +126,6 @@ let }; }; }; -in stdenv.mkDerivation rec { - inherit version webui modules; - pname = "bitfocus-companion"; - - src = source; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/companion/yarn-webui.nix b/pkgs/companion/yarn-webui.nix index 60a050a..22e1e15 100644 --- a/pkgs/companion/yarn-webui.nix +++ b/pkgs/companion/yarn-webui.nix @@ -1,4 +1,4 @@ -{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { +{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { offline_cache = linkFarm "offline" packages; packages = [ { @@ -26,11 +26,11 @@ }; } { - name = "_babel_compat_data___compat_data_7.14.5.tgz"; + name = "_babel_compat_data___compat_data_7.15.0.tgz"; path = fetchurl { - name = "_babel_compat_data___compat_data_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.5.tgz"; - sha1 = "8ef4c18e58e801c5c95d3c1c0f2874a2680fadea"; + name = "_babel_compat_data___compat_data_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz"; + sha1 = "2dbaf8b85334796cafbb0f5793a90a2fc010b176"; }; } { @@ -42,51 +42,51 @@ }; } { - name = "_babel_core___core_7.14.5.tgz"; + name = "_babel_core___core_7.15.4.tgz"; path = fetchurl { - name = "_babel_core___core_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.14.5.tgz"; - sha1 = "d281f46a9905f07d1b3bf71ead54d9c7d89cb1e3"; + name = "_babel_core___core_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.15.4.tgz"; + sha1 = "a70d06c58ae1fce39c23f8efd79f9d5eb8b2f397"; }; } { - name = "_babel_generator___generator_7.14.5.tgz"; + name = "_babel_generator___generator_7.15.4.tgz"; path = fetchurl { - name = "_babel_generator___generator_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz"; - sha1 = "848d7b9f031caca9d0cd0af01b063f226f52d785"; + name = "_babel_generator___generator_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.4.tgz"; + sha1 = "85acb159a267ca6324f9793986991ee2022a05b0"; }; } { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz"; - sha1 = "7bf478ec3b71726d56a8ca5775b046fc29879e61"; + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz"; + sha1 = "3d0e43b00c5e49fdb6c57e421601a7a658d5f835"; }; } { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.14.5.tgz"; + name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz"; - sha1 = "b939b43f8c37765443a19ae74ad8b15978e0a191"; + name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz"; + sha1 = "21ad815f609b84ee0e3058676c33cf6d1670525f"; }; } { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.14.5.tgz"; + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz"; - sha1 = "7a99c5d0967911e972fe2c3411f7d5b498498ecf"; + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"; + sha1 = "cf6d94f30fbefc139123e27dd6b02f65aeedb7b9"; }; } { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.5.tgz"; + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz"; - sha1 = "8842ec495516dd1ed8f6c572be92ba78b1e9beef"; + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz"; + sha1 = "7f977c17bd12a5fba363cb19bea090394bf37d2e"; }; } { @@ -106,67 +106,67 @@ }; } { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.14.5.tgz"; + name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz"; - sha1 = "8aa72e708205c7bb643e45c73b4386cdf2a1f645"; + name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz"; + sha1 = "f9aec9d219f271eaf92b9f561598ca6b2682600c"; }; } { - name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz"; + name = "_babel_helper_function_name___helper_function_name_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"; - sha1 = "89e2c474972f15d8e233b52ee8c480e2cfcd50c4"; + name = "_babel_helper_function_name___helper_function_name_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"; + sha1 = "845744dafc4381a4a5fb6afa6c3d36f98a787ebc"; }; } { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz"; + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"; - sha1 = "25fbfa579b0937eee1f3b805ece4ce398c431815"; + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"; + sha1 = "098818934a137fce78b536a3e015864be1e2879b"; }; } { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"; - sha1 = "e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"; + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"; + sha1 = "09993a3259c0e918f99d104261dfdfc033f178df"; }; } { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.5.tgz"; + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz"; - sha1 = "d5c70e4ad13b402c95156c7a53568f504e2fb7b8"; + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"; + sha1 = "bfd34dc9bba9824a4658b0317ec2fd571a51e6ef"; }; } { - name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz"; + name = "_babel_helper_module_imports___helper_module_imports_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"; - sha1 = "6d1a44df6a38c957aa7c312da076429f11b422f3"; + name = "_babel_helper_module_imports___helper_module_imports_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; + sha1 = "e18007d230632dea19b47853b984476e7b4e103f"; }; } { - name = "_babel_helper_module_transforms___helper_module_transforms_7.14.5.tgz"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_module_transforms___helper_module_transforms_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz"; - sha1 = "7de42f10d789b423eb902ebd24031ca77cb1e10e"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz"; + sha1 = "962cc629a7f7f9a082dd62d0307fa75fe8788d7c"; }; } { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"; - sha1 = "f27395a8619e0665b3f0364cddb41c25d71b499c"; + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"; + sha1 = "f310a5121a3b9cc52d9ab19122bd729822dee171"; }; } { @@ -178,51 +178,51 @@ }; } { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.14.5.tgz"; + name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz"; - sha1 = "51439c913612958f54a987a4ffc9ee587a2045d6"; + name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz"; + sha1 = "2637c0731e4c90fbf58ac58b50b2b5a192fc970f"; }; } { - name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz"; + name = "_babel_helper_replace_supers___helper_replace_supers_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz"; - sha1 = "0ecc0b03c41cd567b4024ea016134c28414abb94"; + name = "_babel_helper_replace_supers___helper_replace_supers_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"; + sha1 = "52a8ab26ba918c7f6dee28628b07071ac7b7347a"; }; } { - name = "_babel_helper_simple_access___helper_simple_access_7.14.5.tgz"; + name = "_babel_helper_simple_access___helper_simple_access_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_simple_access___helper_simple_access_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz"; - sha1 = "66ea85cf53ba0b4e588ba77fc813f53abcaa41c4"; + name = "_babel_helper_simple_access___helper_simple_access_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"; + sha1 = "ac368905abf1de8e9781434b635d8f8674bcc13b"; }; } { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz"; + name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz"; - sha1 = "96f486ac050ca9f44b009fbe5b7d394cab3a0ee4"; + name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz"; + sha1 = "707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb"; }; } { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"; - sha1 = "22b23a54ef51c2b7605d851930c1976dd0bc693a"; + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"; + sha1 = "aecab92dcdbef6a10aa3b62ab204b085f776e257"; }; } { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.5.tgz"; + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; path = fetchurl { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"; - sha1 = "d0f0e277c512e0c938277faa85a3968c9a44c0e8"; + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; + sha1 = "6654d171b2024f6d8ee151bf2509699919131d48"; }; } { @@ -234,19 +234,19 @@ }; } { - name = "_babel_helper_wrap_function___helper_wrap_function_7.14.5.tgz"; + name = "_babel_helper_wrap_function___helper_wrap_function_7.15.4.tgz"; path = fetchurl { - name = "_babel_helper_wrap_function___helper_wrap_function_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz"; - sha1 = "5919d115bf0fe328b8a5d63bcb610f51601f2bff"; + name = "_babel_helper_wrap_function___helper_wrap_function_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz"; + sha1 = "6f754b2446cfaf3d612523e6ab8d79c27c3a3de7"; }; } { - name = "_babel_helpers___helpers_7.14.5.tgz"; + name = "_babel_helpers___helpers_7.15.4.tgz"; path = fetchurl { - name = "_babel_helpers___helpers_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.5.tgz"; - sha1 = "4870f8d9a6fdbbd65e5674a3558b4ff7fef0d9b2"; + name = "_babel_helpers___helpers_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz"; + sha1 = "5f40f02050a3027121a3cf48d497c05c555eaf43"; }; } { @@ -258,27 +258,27 @@ }; } { - name = "_babel_parser___parser_7.14.5.tgz"; + name = "_babel_parser___parser_7.15.4.tgz"; path = fetchurl { - name = "_babel_parser___parser_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.5.tgz"; - sha1 = "4cd2f346261061b2518873ffecdf1612cb032829"; + name = "_babel_parser___parser_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.4.tgz"; + sha1 = "02f2931b822512d3aad17d475ae83da74a255a84"; }; } { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.14.5.tgz"; + name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz"; - sha1 = "4b467302e1548ed3b1be43beae2cc9cf45e0bb7e"; + name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz"; + sha1 = "dbdeabb1e80f622d9f0b583efb2999605e0a567e"; }; } { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.14.5.tgz"; + name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz"; - sha1 = "4024990e3dd74181f4f426ea657769ff49a2df39"; + name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz"; + sha1 = "f82aabe96c135d2ceaa917feb9f5fca31635277e"; }; } { @@ -298,11 +298,11 @@ }; } { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.14.5.tgz"; + name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz"; - sha1 = "158e9e10d449c3849ef3ecde94a03d9f1841b681"; + name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz"; + sha1 = "3e7ca6128453c089e8b477a99f970c63fc1cb8d7"; }; } { @@ -378,11 +378,11 @@ }; } { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.14.5.tgz"; + name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.14.7.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz"; - sha1 = "e581d5ccdfa187ea6ed73f56c6a21c1580b90fbf"; + name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.14.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz"; + sha1 = "5920a2b3df7f7901df0205974c0641b13fd9d363"; }; } { @@ -418,11 +418,11 @@ }; } { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.14.5.tgz"; + name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz"; - sha1 = "9f65a4d0493a940b4c01f8aa9d3f1894a587f636"; + name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz"; + sha1 = "55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5"; }; } { @@ -618,19 +618,19 @@ }; } { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.5.tgz"; + name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.15.3.tgz"; path = fetchurl { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz"; - sha1 = "8cc63e61e50f42e078e6f09be775a75f23ef9939"; + name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.15.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz"; + sha1 = "94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf"; }; } { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.14.5.tgz"; + name = "_babel_plugin_transform_classes___plugin_transform_classes_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz"; - sha1 = "0e98e82097b38550b03b483f9b51a78de0acb2cf"; + name = "_babel_plugin_transform_classes___plugin_transform_classes_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz"; + sha1 = "50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1"; }; } { @@ -642,11 +642,11 @@ }; } { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.14.5.tgz"; + name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.14.7.tgz"; path = fetchurl { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz"; - sha1 = "d32ad19ff1a6da1e861dc62720d80d9776e3bf35"; + name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.14.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz"; + sha1 = "0ad58ed37e23e22084d109f185260835e5557576"; }; } { @@ -682,11 +682,11 @@ }; } { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.14.5.tgz"; + name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz"; - sha1 = "dae384613de8f77c196a8869cbf602a44f7fc0eb"; + name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz"; + sha1 = "25c62cce2718cfb29715f416e75d5263fb36a8c2"; }; } { @@ -722,19 +722,19 @@ }; } { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.14.5.tgz"; + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz"; - sha1 = "7aaee0ea98283de94da98b28f8c35701429dad97"; + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz"; + sha1 = "8201101240eabb5a76c08ef61b2954f767b6b4c1"; }; } { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.14.5.tgz"; + name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz"; - sha1 = "c75342ef8b30dcde4295d3401aae24e65638ed29"; + name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz"; + sha1 = "b42890c7349a78c827719f1d2d0cd38c7d268132"; }; } { @@ -746,11 +746,11 @@ }; } { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.14.5.tgz"; + name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.14.9.tgz"; path = fetchurl { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz"; - sha1 = "d537e8ee083ee6f6aa4f4eef9d2081d555746e4c"; + name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.14.9.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz"; + sha1 = "c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2"; }; } { @@ -770,11 +770,11 @@ }; } { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.14.5.tgz"; + name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz"; - sha1 = "49662e86a1f3ddccac6363a7dfb1ff0a158afeb3"; + name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz"; + sha1 = "5f2285cc3160bf48c8502432716b48504d29ed62"; }; } { @@ -802,11 +802,11 @@ }; } { - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.14.5.tgz"; + name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.15.1.tgz"; path = fetchurl { - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz"; - sha1 = "baa92d15c4570411301a85a74c13534873885b65"; + name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.15.1.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz"; + sha1 = "6aaac6099f1fcf6589d35ae6be1b6e10c8c602b9"; }; } { @@ -818,11 +818,11 @@ }; } { - name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.14.5.tgz"; + name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.14.9.tgz"; path = fetchurl { - name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz"; - sha1 = "703b5d1edccd342179c2a99ee8c7065c2b4403cc"; + name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.14.9.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz"; + sha1 = "33041e665453391eb6ee54a2ecf3ba1d46bd30f4"; }; } { @@ -834,11 +834,11 @@ }; } { - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.14.5.tgz"; + name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.14.9.tgz"; path = fetchurl { - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz"; - sha1 = "39749f0ee1efd8a1bd729152cf5f78f1d247a44a"; + name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.14.9.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz"; + sha1 = "3314b2163033abac5200a869c4de242cd50a914c"; }; } { @@ -882,11 +882,11 @@ }; } { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.14.5.tgz"; + name = "_babel_plugin_transform_spread___plugin_transform_spread_7.14.6.tgz"; path = fetchurl { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.5.tgz"; - sha1 = "bd269fb4119754d2ce7f4cc39a96b4f71baae356"; + name = "_babel_plugin_transform_spread___plugin_transform_spread_7.14.6.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz"; + sha1 = "6bd40e57fe7de94aa904851963b5616652f73144"; }; } { @@ -914,11 +914,11 @@ }; } { - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.14.5.tgz"; + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.4.tgz"; path = fetchurl { - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.5.tgz"; - sha1 = "5b41b59072f765bd1ec1d0b694e08c7df0f6f8a0"; + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz"; + sha1 = "db7a062dcf8be5fc096bc0eeb40a13fbfa1fa251"; }; } { @@ -946,11 +946,11 @@ }; } { - name = "_babel_preset_env___preset_env_7.14.5.tgz"; + name = "_babel_preset_env___preset_env_7.15.4.tgz"; path = fetchurl { - name = "_babel_preset_env___preset_env_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.5.tgz"; - sha1 = "c0c84e763661fd0e74292c3d511cb33b0c668997"; + name = "_babel_preset_env___preset_env_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.15.4.tgz"; + sha1 = "197e7f99a755c488f0af411af179cbd10de6e815"; }; } { @@ -986,11 +986,11 @@ }; } { - name = "_babel_runtime_corejs3___runtime_corejs3_7.14.5.tgz"; + name = "_babel_runtime_corejs3___runtime_corejs3_7.15.4.tgz"; path = fetchurl { - name = "_babel_runtime_corejs3___runtime_corejs3_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.14.5.tgz"; - sha1 = "0d9bf00d59c0b73185c462c323efffd0f4c37283"; + name = "_babel_runtime_corejs3___runtime_corejs3_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz"; + sha1 = "403139af262b9a6e8f9ba04a6fdcebf8de692bf1"; }; } { @@ -1002,35 +1002,35 @@ }; } { - name = "_babel_runtime___runtime_7.14.5.tgz"; + name = "_babel_runtime___runtime_7.15.4.tgz"; path = fetchurl { - name = "_babel_runtime___runtime_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.5.tgz"; - sha1 = "665450911c6031af38f81db530f387ec04cd9a98"; + name = "_babel_runtime___runtime_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz"; + sha1 = "fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a"; }; } { - name = "_babel_template___template_7.14.5.tgz"; + name = "_babel_template___template_7.15.4.tgz"; path = fetchurl { - name = "_babel_template___template_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz"; - sha1 = "a9bc9d8b33354ff6e55a9c60d1109200a68974f4"; + name = "_babel_template___template_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz"; + sha1 = "51898d35dcf3faa670c4ee6afcfd517ee139f194"; }; } { - name = "_babel_traverse___traverse_7.14.5.tgz"; + name = "_babel_traverse___traverse_7.15.4.tgz"; path = fetchurl { - name = "_babel_traverse___traverse_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.5.tgz"; - sha1 = "c111b0f58afab4fea3d3385a406f692748c59870"; + name = "_babel_traverse___traverse_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz"; + sha1 = "ff8510367a144bfbff552d9e18e28f3e2889c22d"; }; } { - name = "_babel_types___types_7.14.5.tgz"; + name = "_babel_types___types_7.15.4.tgz"; path = fetchurl { - name = "_babel_types___types_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz"; - sha1 = "3bb997ba829a2104cedb20689c4a5b8121d383ff"; + name = "_babel_types___types_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz"; + sha1 = "74eeb86dbd6748d2741396557b9860e57fce0a0d"; }; } { @@ -1105,14 +1105,6 @@ sha1 = "f0950bba18819512d42f7197e56c518aa491cf18"; }; } - { - name = "_emotion_cache___cache_10.0.29.tgz"; - path = fetchurl { - name = "_emotion_cache___cache_10.0.29.tgz"; - url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz"; - sha1 = "87e7e64f412c060102d589fe7c6dc042e6f9d1e0"; - }; - } { name = "_emotion_cache___cache_11.4.0.tgz"; path = fetchurl { @@ -1121,22 +1113,6 @@ sha1 = "293fc9d9a7a38b9aad8e9337e5014366c3b09ac0"; }; } - { - name = "_emotion_core___core_10.1.1.tgz"; - path = fetchurl { - name = "_emotion_core___core_10.1.1.tgz"; - url = "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz"; - sha1 = "c956c1365f2f2481960064bcb8c4732e5fb612c3"; - }; - } - { - name = "_emotion_css___css_10.0.27.tgz"; - path = fetchurl { - name = "_emotion_css___css_10.0.27.tgz"; - url = "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz"; - sha1 = "3a7458198fbbebb53b01b2b87f64e5e21241e14c"; - }; - } { name = "_emotion_hash___hash_0.8.0.tgz"; path = fetchurl { @@ -1145,14 +1121,6 @@ sha1 = "bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"; }; } - { - name = "_emotion_memoize___memoize_0.7.4.tgz"; - path = fetchurl { - name = "_emotion_memoize___memoize_0.7.4.tgz"; - url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz"; - sha1 = "19bf0f5af19149111c40d98bb0cf82119f5d9eeb"; - }; - } { name = "_emotion_memoize___memoize_0.7.5.tgz"; path = fetchurl { @@ -1162,19 +1130,11 @@ }; } { - name = "_emotion_react___react_11.4.0.tgz"; + name = "_emotion_react___react_11.4.1.tgz"; path = fetchurl { - name = "_emotion_react___react_11.4.0.tgz"; - url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.4.0.tgz"; - sha1 = "2465ad7b073a691409b88dfd96dc17097ddad9b7"; - }; - } - { - name = "_emotion_serialize___serialize_0.11.16.tgz"; - path = fetchurl { - name = "_emotion_serialize___serialize_0.11.16.tgz"; - url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz"; - sha1 = "dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad"; + name = "_emotion_react___react_11.4.1.tgz"; + url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.4.1.tgz"; + sha1 = "a1b0b767b5bad57515ffb0cad9349614d27f4d57"; }; } { @@ -1186,27 +1146,11 @@ }; } { - name = "_emotion_sheet___sheet_0.9.4.tgz"; + name = "_emotion_sheet___sheet_1.0.2.tgz"; path = fetchurl { - name = "_emotion_sheet___sheet_0.9.4.tgz"; - url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz"; - sha1 = "894374bea39ec30f489bbfc3438192b9774d32e5"; - }; - } - { - name = "_emotion_sheet___sheet_1.0.1.tgz"; - path = fetchurl { - name = "_emotion_sheet___sheet_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.1.tgz"; - sha1 = "245f54abb02dfd82326e28689f34c27aa9b2a698"; - }; - } - { - name = "_emotion_stylis___stylis_0.8.5.tgz"; - path = fetchurl { - name = "_emotion_stylis___stylis_0.8.5.tgz"; - url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz"; - sha1 = "deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"; + name = "_emotion_sheet___sheet_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.2.tgz"; + sha1 = "1d9ffde531714ba28e62dac6a996a8b1089719d0"; }; } { @@ -1217,14 +1161,6 @@ sha1 = "77211291c1900a700b8a78cfafda3160d76949ed"; }; } - { - name = "_emotion_utils___utils_0.11.3.tgz"; - path = fetchurl { - name = "_emotion_utils___utils_0.11.3.tgz"; - url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz"; - sha1 = "a759863867befa7e583400d322652a3f44820924"; - }; - } { name = "_emotion_utils___utils_1.0.0.tgz"; path = fetchurl { @@ -1242,59 +1178,67 @@ }; } { - name = "_eslint_eslintrc___eslintrc_0.4.2.tgz"; + name = "_eslint_eslintrc___eslintrc_0.4.3.tgz"; path = fetchurl { - name = "_eslint_eslintrc___eslintrc_0.4.2.tgz"; - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz"; - sha1 = "f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179"; + name = "_eslint_eslintrc___eslintrc_0.4.3.tgz"; + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; + sha1 = "9e42981ef035beb3dd49add17acb96e8ff6f394c"; }; } { - name = "_fontsource_fira_code___fira_code_4.4.5.tgz"; + name = "_fontsource_fira_code___fira_code_4.5.1.tgz"; path = fetchurl { - name = "_fontsource_fira_code___fira_code_4.4.5.tgz"; - url = "https://registry.yarnpkg.com/@fontsource/fira-code/-/fira-code-4.4.5.tgz"; - sha1 = "380c964676b1e873b192862ce03a7ad1c7838516"; + name = "_fontsource_fira_code___fira_code_4.5.1.tgz"; + url = "https://registry.yarnpkg.com/@fontsource/fira-code/-/fira-code-4.5.1.tgz"; + sha1 = "7e3e8f2f633807c69c45cefe1dd5255563826207"; }; } { - name = "_fontsource_roboto___roboto_4.4.5.tgz"; + name = "_fontsource_roboto___roboto_4.5.0.tgz"; path = fetchurl { - name = "_fontsource_roboto___roboto_4.4.5.tgz"; - url = "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-4.4.5.tgz"; - sha1 = "9ef1b9288ac4a97b97906da920c63c08dba97c89"; + name = "_fontsource_roboto___roboto_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-4.5.0.tgz"; + sha1 = "d6f925668ba6af46707f1040c43aff498ba204bb"; }; } { - name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.35.tgz"; + name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.36.tgz"; path = fetchurl { - name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.35.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz"; - sha1 = "01dd3d054da07a00b764d78748df20daf2b317e9"; + name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.36.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.36.tgz"; + sha1 = "b44e52db3b6b20523e0c57ef8c42d315532cb903"; }; } { - name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.35.tgz"; + name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.36.tgz"; path = fetchurl { - name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.35.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.35.tgz"; - sha1 = "85aea8c25645fcec88d35f2eb1045c38d3e65cff"; + name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.36.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.36.tgz"; + sha1 = "4f2ea6f778298e0c47c6524ce2e7fd58eb6930e3"; }; } { - name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.3.tgz"; + name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.4.tgz"; path = fetchurl { - name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.3.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz"; - sha1 = "52eebe354f60dc77e0bde934ffc5c75ffd04f9d8"; + name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.4.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.4.tgz"; + sha1 = "2a68f3fc3ddda12e52645654142b9e4e8fbb6cc5"; }; } { - name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.14.tgz"; + name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.15.tgz"; path = fetchurl { - name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.14.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.14.tgz"; - sha1 = "bf28875c3935b69ce2dc620e1060b217a47f64ca"; + name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.15.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.15.tgz"; + sha1 = "1450b838f905981d721bf07e14e3b52c0e9a91ed"; + }; + } + { + name = "_gar_promisify___promisify_1.1.2.tgz"; + path = fetchurl { + name = "_gar_promisify___promisify_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz"; + sha1 = "30aa825f11d438671d585bd44e7fd564535fc210"; }; } { @@ -1337,6 +1281,22 @@ sha1 = "68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29"; }; } + { + name = "_humanwhocodes_config_array___config_array_0.5.0.tgz"; + path = fetchurl { + name = "_humanwhocodes_config_array___config_array_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; + sha1 = "1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"; + }; + } + { + name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz"; + path = fetchurl { + name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz"; + sha1 = "87de7af9c231826fdd68ac7258f77c429e0e5fcf"; + }; + } { name = "_icons_material___material_0.2.4.tgz"; path = fetchurl { @@ -1466,11 +1426,19 @@ }; } { - name = "_nodelib_fs.walk___fs.walk_1.2.7.tgz"; + name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; path = fetchurl { - name = "_nodelib_fs.walk___fs.walk_1.2.7.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz"; - sha1 = "94c23db18ee4653e129abd26fb06f870ac9e1ee2"; + name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; + sha1 = "e95737e8bb6746ddedf69c556953494f196fe69a"; + }; + } + { + name = "_npmcli_fs___fs_1.0.0.tgz"; + path = fetchurl { + name = "_npmcli_fs___fs_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.0.0.tgz"; + sha1 = "589612cfad3a6ea0feafcb901d29c63fd52db09f"; }; } { @@ -1490,11 +1458,11 @@ }; } { - name = "_popperjs_core___core_2.9.2.tgz"; + name = "_popperjs_core___core_2.10.1.tgz"; path = fetchurl { - name = "_popperjs_core___core_2.9.2.tgz"; - url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz"; - sha1 = "adea7b6953cbb34651766b0548468e743c6a2353"; + name = "_popperjs_core___core_2.10.1.tgz"; + url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.1.tgz"; + sha1 = "728ecd95ab207aab8a9a4e421f0422db329232be"; }; } { @@ -1690,35 +1658,35 @@ }; } { - name = "_types_babel__core___babel__core_7.1.14.tgz"; + name = "_types_babel__core___babel__core_7.1.15.tgz"; path = fetchurl { - name = "_types_babel__core___babel__core_7.1.14.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz"; - sha1 = "faaeefc4185ec71c389f4501ee5ec84b170cc402"; + name = "_types_babel__core___babel__core_7.1.15.tgz"; + url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz"; + sha1 = "2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024"; }; } { - name = "_types_babel__generator___babel__generator_7.6.2.tgz"; + name = "_types_babel__generator___babel__generator_7.6.3.tgz"; path = fetchurl { - name = "_types_babel__generator___babel__generator_7.6.2.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz"; - sha1 = "f3d71178e187858f7c45e30380f8f1b7415a12d8"; + name = "_types_babel__generator___babel__generator_7.6.3.tgz"; + url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz"; + sha1 = "f456b4b2ce79137f768aa130d2423d2f0ccfaba5"; }; } { - name = "_types_babel__template___babel__template_7.4.0.tgz"; + name = "_types_babel__template___babel__template_7.4.1.tgz"; path = fetchurl { - name = "_types_babel__template___babel__template_7.4.0.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.0.tgz"; - sha1 = "0c888dd70b3ee9eebb6e4f200e809da0076262be"; + name = "_types_babel__template___babel__template_7.4.1.tgz"; + url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz"; + sha1 = "3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"; }; } { - name = "_types_babel__traverse___babel__traverse_7.11.1.tgz"; + name = "_types_babel__traverse___babel__traverse_7.14.2.tgz"; path = fetchurl { - name = "_types_babel__traverse___babel__traverse_7.11.1.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz"; - sha1 = "654f6c4f67568e24c23b367e947098c6206fa639"; + name = "_types_babel__traverse___babel__traverse_7.14.2.tgz"; + url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"; + sha1 = "ffcd470bbb3f8bf30481678fb5502278ca833a43"; }; } { @@ -1730,19 +1698,19 @@ }; } { - name = "_types_eslint___eslint_7.2.13.tgz"; + name = "_types_eslint___eslint_7.28.0.tgz"; path = fetchurl { - name = "_types_eslint___eslint_7.2.13.tgz"; - url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.13.tgz"; - sha1 = "e0ca7219ba5ded402062ad6f926d491ebb29dd53"; + name = "_types_eslint___eslint_7.28.0.tgz"; + url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.0.tgz"; + sha1 = "7e41f2481d301c68e14f483fe10b017753ce8d5a"; }; } { - name = "_types_estree___estree_0.0.48.tgz"; + name = "_types_estree___estree_0.0.50.tgz"; path = fetchurl { - name = "_types_estree___estree_0.0.48.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.48.tgz"; - sha1 = "18dc8091b285df90db2f25aa7d906cfc394b7f74"; + name = "_types_estree___estree_0.0.50.tgz"; + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz"; + sha1 = "1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83"; }; } { @@ -1754,11 +1722,11 @@ }; } { - name = "_types_glob___glob_7.1.3.tgz"; + name = "_types_glob___glob_7.1.4.tgz"; path = fetchurl { - name = "_types_glob___glob_7.1.3.tgz"; - url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz"; - sha1 = "e6ba80f36b7daad2c685acd9266382e68985c183"; + name = "_types_glob___glob_7.1.4.tgz"; + url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz"; + sha1 = "ea59e21d2ee5c517914cb4bc8e4153b99e566672"; }; } { @@ -1778,11 +1746,11 @@ }; } { - name = "_types_html_minifier_terser___html_minifier_terser_5.1.1.tgz"; + name = "_types_html_minifier_terser___html_minifier_terser_5.1.2.tgz"; path = fetchurl { - name = "_types_html_minifier_terser___html_minifier_terser_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz"; - sha1 = "3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50"; + name = "_types_html_minifier_terser___html_minifier_terser_5.1.2.tgz"; + url = "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz"; + sha1 = "693b316ad323ea97eed6b38ed1a3cc02b1672b57"; }; } { @@ -1810,11 +1778,11 @@ }; } { - name = "_types_json_schema___json_schema_7.0.7.tgz"; + name = "_types_json_schema___json_schema_7.0.9.tgz"; path = fetchurl { - name = "_types_json_schema___json_schema_7.0.7.tgz"; - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz"; - sha1 = "98a993516c859eb0d5c4c8f098317a9ea68db9ad"; + name = "_types_json_schema___json_schema_7.0.9.tgz"; + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz"; + sha1 = "97edc9037ea0c38585320b28964dde3b39e4660d"; }; } { @@ -1826,27 +1794,27 @@ }; } { - name = "_types_minimatch___minimatch_3.0.4.tgz"; + name = "_types_minimatch___minimatch_3.0.5.tgz"; path = fetchurl { - name = "_types_minimatch___minimatch_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz"; - sha1 = "f0ec25dbf2f0e4b18647313ac031134ca5b24b21"; + name = "_types_minimatch___minimatch_3.0.5.tgz"; + url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz"; + sha1 = "1001cc5e6a3704b83c236027e77f2f58ea010f40"; }; } { - name = "_types_node___node_15.12.2.tgz"; + name = "_types_node___node_16.7.10.tgz"; path = fetchurl { - name = "_types_node___node_15.12.2.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz"; - sha1 = "1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d"; + name = "_types_node___node_16.7.10.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-16.7.10.tgz"; + sha1 = "7aa732cc47341c12a16b7d562f519c2383b6d4fc"; }; } { - name = "_types_normalize_package_data___normalize_package_data_2.4.0.tgz"; + name = "_types_normalize_package_data___normalize_package_data_2.4.1.tgz"; path = fetchurl { - name = "_types_normalize_package_data___normalize_package_data_2.4.0.tgz"; - url = "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; - sha1 = "e486d0d97396d79beedd0a6e33f4534ff6b4973e"; + name = "_types_normalize_package_data___normalize_package_data_2.4.1.tgz"; + url = "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"; + sha1 = "d3357479a0fdfdd5907fe67e17e0a85c906e1301"; }; } { @@ -1858,35 +1826,35 @@ }; } { - name = "_types_prettier___prettier_2.3.0.tgz"; + name = "_types_prettier___prettier_2.3.2.tgz"; path = fetchurl { - name = "_types_prettier___prettier_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.0.tgz"; - sha1 = "2e8332cc7363f887d32ec5496b207d26ba8052bb"; + name = "_types_prettier___prettier_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.2.tgz"; + sha1 = "fc8c2825e4ed2142473b4a81064e6e081463d1b3"; }; } { - name = "_types_prop_types___prop_types_15.7.3.tgz"; + name = "_types_prop_types___prop_types_15.7.4.tgz"; path = fetchurl { - name = "_types_prop_types___prop_types_15.7.3.tgz"; - url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"; - sha1 = "2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"; + name = "_types_prop_types___prop_types_15.7.4.tgz"; + url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz"; + sha1 = "fcf7205c25dff795ee79af1e30da2c9790808f11"; }; } { - name = "_types_q___q_1.5.4.tgz"; + name = "_types_q___q_1.5.5.tgz"; path = fetchurl { - name = "_types_q___q_1.5.4.tgz"; - url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz"; - sha1 = "15925414e0ad2cd765bfef58842f7e26a7accb24"; + name = "_types_q___q_1.5.5.tgz"; + url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz"; + sha1 = "75a2a8e7d8ab4b230414505d92335d1dcb53a6df"; }; } { - name = "_types_react___react_17.0.11.tgz"; + name = "_types_react___react_17.0.19.tgz"; path = fetchurl { - name = "_types_react___react_17.0.11.tgz"; - url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.11.tgz"; - sha1 = "67fcd0ddbf5a0b083a0f94e926c7d63f3b836451"; + name = "_types_react___react_17.0.19.tgz"; + url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.19.tgz"; + sha1 = "8f2a85e8180a43b57966b237d26a29481dacc991"; }; } { @@ -1898,11 +1866,11 @@ }; } { - name = "_types_scheduler___scheduler_0.16.1.tgz"; + name = "_types_scheduler___scheduler_0.16.2.tgz"; path = fetchurl { - name = "_types_scheduler___scheduler_0.16.1.tgz"; - url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz"; - sha1 = "18845205e86ff0038517aab7a18a62a6b9f71275"; + name = "_types_scheduler___scheduler_0.16.2.tgz"; + url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz"; + sha1 = "1a62f89525723dde24ba1b01b092bf5df8ad4d39"; }; } { @@ -1914,75 +1882,75 @@ }; } { - name = "_types_stack_utils___stack_utils_2.0.0.tgz"; + name = "_types_stack_utils___stack_utils_2.0.1.tgz"; path = fetchurl { - name = "_types_stack_utils___stack_utils_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.0.tgz"; - sha1 = "7036640b4e21cc2f259ae826ce843d277dad8cff"; + name = "_types_stack_utils___stack_utils_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz"; + sha1 = "20f18294f797f2209b5f65c8e3b5c8e8261d127c"; }; } { - name = "_types_tapable___tapable_1.0.7.tgz"; + name = "_types_tapable___tapable_1.0.8.tgz"; path = fetchurl { - name = "_types_tapable___tapable_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz"; - sha1 = "545158342f949e8fd3bfd813224971ecddc3fac4"; + name = "_types_tapable___tapable_1.0.8.tgz"; + url = "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz"; + sha1 = "b94a4391c85666c7b73299fd3ad79d4faa435310"; }; } { - name = "_types_uglify_js___uglify_js_3.13.0.tgz"; + name = "_types_uglify_js___uglify_js_3.13.1.tgz"; path = fetchurl { - name = "_types_uglify_js___uglify_js_3.13.0.tgz"; - url = "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz"; - sha1 = "1cad8df1fb0b143c5aba08de5712ea9d1ff71124"; + name = "_types_uglify_js___uglify_js_3.13.1.tgz"; + url = "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.1.tgz"; + sha1 = "5e889e9e81e94245c75b6450600e1c5ea2878aea"; }; } { - name = "_types_webpack_sources___webpack_sources_2.1.0.tgz"; + name = "_types_webpack_sources___webpack_sources_3.2.0.tgz"; path = fetchurl { - name = "_types_webpack_sources___webpack_sources_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.1.0.tgz"; - sha1 = "8882b0bd62d1e0ce62f183d0d01b72e6e82e8c10"; + name = "_types_webpack_sources___webpack_sources_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; + sha1 = "16d759ba096c289034b26553d2df1bf45248d38b"; }; } { - name = "_types_webpack___webpack_4.41.29.tgz"; + name = "_types_webpack___webpack_4.41.30.tgz"; path = fetchurl { - name = "_types_webpack___webpack_4.41.29.tgz"; - url = "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.29.tgz"; - sha1 = "2e66c1de8223c440366469415c50a47d97625773"; + name = "_types_webpack___webpack_4.41.30.tgz"; + url = "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.30.tgz"; + sha1 = "fd3db6d0d41e145a8eeeafcd3c4a7ccde9068ddc"; }; } { - name = "_types_yargs_parser___yargs_parser_20.2.0.tgz"; + name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; path = fetchurl { - name = "_types_yargs_parser___yargs_parser_20.2.0.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"; - sha1 = "dd3e6699ba3237f0348cd085e4698780204842f9"; + name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; + url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"; + sha1 = "3b9ce2489919d9e4fea439b76916abc34b2df129"; }; } { - name = "_types_yargs___yargs_15.0.13.tgz"; + name = "_types_yargs___yargs_15.0.14.tgz"; path = fetchurl { - name = "_types_yargs___yargs_15.0.13.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz"; - sha1 = "34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"; + name = "_types_yargs___yargs_15.0.14.tgz"; + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz"; + sha1 = "26d821ddb89e70492160b66d10a0eb6df8f6fb06"; }; } { - name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.26.1.tgz"; + name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.26.1.tgz"; - sha1 = "b9c7313321cb837e2bf8bebe7acc2220659e67d3"; + name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.30.0.tgz"; + sha1 = "4a0c1ae96b953f4e67435e20248d812bfa55e4fb"; }; } { - name = "_typescript_eslint_experimental_utils___experimental_utils_4.26.1.tgz"; + name = "_typescript_eslint_experimental_utils___experimental_utils_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_experimental_utils___experimental_utils_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.26.1.tgz"; - sha1 = "a35980a2390da9232aa206b27f620eab66e94142"; + name = "_typescript_eslint_experimental_utils___experimental_utils_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.30.0.tgz"; + sha1 = "9e49704fef568432ae16fc0d6685c13d67db0fd5"; }; } { @@ -1994,19 +1962,19 @@ }; } { - name = "_typescript_eslint_parser___parser_4.26.1.tgz"; + name = "_typescript_eslint_parser___parser_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_parser___parser_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.26.1.tgz"; - sha1 = "cecfdd5eb7a5c13aabce1c1cfd7fbafb5a0f1e8e"; + name = "_typescript_eslint_parser___parser_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.30.0.tgz"; + sha1 = "6abd720f66bd790f3e0e80c3be77180c8fcb192d"; }; } { - name = "_typescript_eslint_scope_manager___scope_manager_4.26.1.tgz"; + name = "_typescript_eslint_scope_manager___scope_manager_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_scope_manager___scope_manager_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.26.1.tgz"; - sha1 = "075a74a15ff33ee3a7ed33e5fce16ee86689f662"; + name = "_typescript_eslint_scope_manager___scope_manager_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.30.0.tgz"; + sha1 = "1a3ffbb385b1a06be85cd5165a22324f069a85ee"; }; } { @@ -2018,11 +1986,11 @@ }; } { - name = "_typescript_eslint_types___types_4.26.1.tgz"; + name = "_typescript_eslint_types___types_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_types___types_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.26.1.tgz"; - sha1 = "9e7c523f73c34b04a765e4167ca5650436ef1d38"; + name = "_typescript_eslint_types___types_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.30.0.tgz"; + sha1 = "fb9d9b0358426f18687fba82eb0b0f869780204f"; }; } { @@ -2034,11 +2002,11 @@ }; } { - name = "_typescript_eslint_typescript_estree___typescript_estree_4.26.1.tgz"; + name = "_typescript_eslint_typescript_estree___typescript_estree_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_typescript_estree___typescript_estree_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.26.1.tgz"; - sha1 = "b2ce2e789233d62283fae2c16baabd4f1dbc9633"; + name = "_typescript_eslint_typescript_estree___typescript_estree_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.30.0.tgz"; + sha1 = "ae57833da72a753f4846cd3053758c771670c2ac"; }; } { @@ -2050,11 +2018,11 @@ }; } { - name = "_typescript_eslint_visitor_keys___visitor_keys_4.26.1.tgz"; + name = "_typescript_eslint_visitor_keys___visitor_keys_4.30.0.tgz"; path = fetchurl { - name = "_typescript_eslint_visitor_keys___visitor_keys_4.26.1.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.26.1.tgz"; - sha1 = "0d55ea735cb0d8903b198017d6d4f518fdaac546"; + name = "_typescript_eslint_visitor_keys___visitor_keys_4.30.0.tgz"; + url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.30.0.tgz"; + sha1 = "a47c6272fc71b0c627d1691f68eaecf4ad71445e"; }; } { @@ -2250,11 +2218,11 @@ }; } { - name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; + name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; path = fetchurl { - name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; - sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b"; + name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; + sha1 = "7ed5bb55908b3b2f1bc55c6af1653bada7f07937"; }; } { @@ -2282,11 +2250,11 @@ }; } { - name = "acorn___acorn_8.4.0.tgz"; + name = "acorn___acorn_8.4.1.tgz"; path = fetchurl { - name = "acorn___acorn_8.4.0.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.4.0.tgz"; - sha1 = "af53266e698d7cffa416714b503066a82221be60"; + name = "acorn___acorn_8.4.1.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz"; + sha1 = "56c36251fc7cabc7096adc18f05afe814321a28c"; }; } { @@ -2346,11 +2314,11 @@ }; } { - name = "ajv___ajv_8.6.0.tgz"; + name = "ajv___ajv_8.6.2.tgz"; path = fetchurl { - name = "ajv___ajv_8.6.0.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.0.tgz"; - sha1 = "60cc45d9c46a477d80d92c48076d972c342e5720"; + name = "ajv___ajv_8.6.2.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz"; + sha1 = "2fb45e0e5fcbc0813326c1c3da535d1881bb0571"; }; } { @@ -2482,11 +2450,11 @@ }; } { - name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; path = fetchurl { - name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; - sha1 = "4b35c2944f062a8bfcda66410760350fe9ddfc21"; + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"; + sha1 = "b15474a932adab4ff8a50d9adfa7e4e926f21146"; }; } { @@ -2770,11 +2738,11 @@ }; } { - name = "axe_core___axe_core_4.2.2.tgz"; + name = "axe_core___axe_core_4.3.3.tgz"; path = fetchurl { - name = "axe_core___axe_core_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.2.2.tgz"; - sha1 = "0c987d82c8b82b4b9b7a945f1b5ef0d8fed586ed"; + name = "axe_core___axe_core_4.3.3.tgz"; + url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.3.tgz"; + sha1 = "b55cd8e8ddf659fe89b064680e1c6a4dceab0325"; }; } { @@ -2825,14 +2793,6 @@ sha1 = "84fda19c976ec5c6defef57f9427b3def66e17a3"; }; } - { - name = "babel_plugin_emotion___babel_plugin_emotion_10.2.2.tgz"; - path = fetchurl { - name = "babel_plugin_emotion___babel_plugin_emotion_10.2.2.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz"; - sha1 = "a1fe3503cff80abfd0bdda14abd2e8e57a79d17d"; - }; - } { name = "babel_plugin_istanbul___babel_plugin_istanbul_6.0.0.tgz"; path = fetchurl { @@ -2874,11 +2834,11 @@ }; } { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.2.tgz"; + name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.4.tgz"; path = fetchurl { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.2.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz"; - sha1 = "7424a1682ee44baec817327710b1b094e5f8f7f5"; + name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.4.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz"; + sha1 = "68cb81316b0e8d9d721a92e0009ec6ecd4cd2ca9"; }; } { @@ -2889,14 +2849,6 @@ sha1 = "b310c8d642acada348c1fa3b3e6ce0e851bee077"; }; } - { - name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; - path = fetchurl { - name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; - sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; - }; - } { name = "babel_plugin_syntax_object_rest_spread___babel_plugin_syntax_object_rest_spread_6.13.0.tgz"; path = fetchurl { @@ -3202,11 +3154,11 @@ }; } { - name = "browserslist___browserslist_4.16.6.tgz"; + name = "browserslist___browserslist_4.16.8.tgz"; path = fetchurl { - name = "browserslist___browserslist_4.16.6.tgz"; - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz"; - sha1 = "d7901277a5a88e554ed305b183ec9b0c08f66fa2"; + name = "browserslist___browserslist_4.16.8.tgz"; + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.8.tgz"; + sha1 = "cb868b0b554f137ba6e33de0ecff2eda403c4fb0"; }; } { @@ -3218,11 +3170,11 @@ }; } { - name = "buffer_from___buffer_from_1.1.1.tgz"; + name = "buffer_from___buffer_from_1.1.2.tgz"; path = fetchurl { - name = "buffer_from___buffer_from_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; - sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; + name = "buffer_from___buffer_from_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; + sha1 = "2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"; }; } { @@ -3290,11 +3242,11 @@ }; } { - name = "cacache___cacache_15.2.0.tgz"; + name = "cacache___cacache_15.3.0.tgz"; path = fetchurl { - name = "cacache___cacache_15.2.0.tgz"; - url = "https://registry.yarnpkg.com/cacache/-/cacache-15.2.0.tgz"; - sha1 = "73af75f77c58e72d8c630a7a2858cb18ef523389"; + name = "cacache___cacache_15.3.0.tgz"; + url = "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz"; + sha1 = "dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"; }; } { @@ -3394,11 +3346,11 @@ }; } { - name = "caniuse_lite___caniuse_lite_1.0.30001237.tgz"; + name = "caniuse_lite___caniuse_lite_1.0.30001252.tgz"; path = fetchurl { - name = "caniuse_lite___caniuse_lite_1.0.30001237.tgz"; - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz"; - sha1 = "4b7783661515b8e7151fc6376cfd97f0e427b9e5"; + name = "caniuse_lite___caniuse_lite_1.0.30001252.tgz"; + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz"; + sha1 = "cb16e4e3dafe948fc4a9bb3307aea054b912019a"; }; } { @@ -3442,11 +3394,11 @@ }; } { - name = "chalk___chalk_4.1.1.tgz"; + name = "chalk___chalk_4.1.2.tgz"; path = fetchurl { - name = "chalk___chalk_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz"; - sha1 = "c80b3fab28bf6371e6863325eee67e618b77e6ad"; + name = "chalk___chalk_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; + sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01"; }; } { @@ -3474,11 +3426,11 @@ }; } { - name = "chokidar___chokidar_3.5.1.tgz"; + name = "chokidar___chokidar_3.5.2.tgz"; path = fetchurl { - name = "chokidar___chokidar_3.5.1.tgz"; - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz"; - sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a"; + name = "chokidar___chokidar_3.5.2.tgz"; + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz"; + sha1 = "dba3976fcadb016f66fd365021d91600d01c1e75"; }; } { @@ -3658,27 +3610,27 @@ }; } { - name = "color_string___color_string_1.5.5.tgz"; + name = "color_string___color_string_1.6.0.tgz"; path = fetchurl { - name = "color_string___color_string_1.5.5.tgz"; - url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz"; - sha1 = "65474a8f0e7439625f3d27a6a19d89fc45223014"; + name = "color_string___color_string_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz"; + sha1 = "c3915f61fe267672cb7e1e064c9d692219f6c312"; }; } { - name = "color___color_3.1.3.tgz"; + name = "color___color_3.2.1.tgz"; path = fetchurl { - name = "color___color_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz"; - sha1 = "ca67fb4e7b97d611dcde39eceed422067d91596e"; + name = "color___color_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz"; + sha1 = "3544dc198caf4490c3ecc9a790b54fe9ff45e164"; }; } { - name = "colorette___colorette_1.2.2.tgz"; + name = "colorette___colorette_1.3.0.tgz"; path = fetchurl { - name = "colorette___colorette_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz"; - sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"; + name = "colorette___colorette_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/colorette/-/colorette-1.3.0.tgz"; + sha1 = "ff45d2f0edb244069d3b772adeb04fed38d0a0af"; }; } { @@ -3841,6 +3793,14 @@ sha1 = "f1d802950af7dd2631a1febe0596550c86ab3190"; }; } + { + name = "convert_source_map___convert_source_map_1.8.0.tgz"; + path = fetchurl { + name = "convert_source_map___convert_source_map_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz"; + sha1 = "f3373c32d21b4d780dd8004514684fb791ca4369"; + }; + } { name = "cookie_signature___cookie_signature_1.0.6.tgz"; path = fetchurl { @@ -3882,19 +3842,19 @@ }; } { - name = "core_js_compat___core_js_compat_3.14.0.tgz"; + name = "core_js_compat___core_js_compat_3.17.2.tgz"; path = fetchurl { - name = "core_js_compat___core_js_compat_3.14.0.tgz"; - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.14.0.tgz"; - sha1 = "b574dabf29184681d5b16357bd33d104df3d29a5"; + name = "core_js_compat___core_js_compat_3.17.2.tgz"; + url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.17.2.tgz"; + sha1 = "f461ab950c0a0ffedfc327debf28b7e518950936"; }; } { - name = "core_js_pure___core_js_pure_3.14.0.tgz"; + name = "core_js_pure___core_js_pure_3.17.2.tgz"; path = fetchurl { - name = "core_js_pure___core_js_pure_3.14.0.tgz"; - url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.14.0.tgz"; - sha1 = "72bcfacba74a65ffce04bf94ae91d966e80ee553"; + name = "core_js_pure___core_js_pure_3.17.2.tgz"; + url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.17.2.tgz"; + sha1 = "ba6311b6aa1e2f2adeba4ac6ec51a9ff40bdc1af"; }; } { @@ -3906,11 +3866,11 @@ }; } { - name = "core_js___core_js_3.14.0.tgz"; + name = "core_js___core_js_3.17.2.tgz"; path = fetchurl { - name = "core_js___core_js_3.14.0.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.14.0.tgz"; - sha1 = "62322b98c71cc2018b027971a69419e2425c2a6c"; + name = "core_js___core_js_3.17.2.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.17.2.tgz"; + sha1 = "f960eae710dc62c29cca93d5332e3660e289db10"; }; } { @@ -3921,6 +3881,14 @@ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; }; } + { + name = "core_util_is___core_util_is_1.0.3.tgz"; + path = fetchurl { + name = "core_util_is___core_util_is_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz"; + sha1 = "a6042d3634c2b27e9328f837b965fac83808db85"; + }; + } { name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; path = fetchurl { @@ -3938,11 +3906,11 @@ }; } { - name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; + name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; path = fetchurl { - name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz"; - sha1 = "ef9b44d773959cae63ddecd122de23853b60f8d3"; + name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; + sha1 = "714d756522cace867867ccb4474c5d01bbae5d6d"; }; } { @@ -4225,14 +4193,6 @@ sha1 = "ff665a0ddbdc31864b09647f34163443d90b0852"; }; } - { - name = "csstype___csstype_2.6.17.tgz"; - path = fetchurl { - name = "csstype___csstype_2.6.17.tgz"; - url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.17.tgz"; - sha1 = "4cf30eb87e1d1a005d8b6510f95292413f6a1c0e"; - }; - } { name = "csstype___csstype_3.0.8.tgz"; path = fetchurl { @@ -4290,11 +4250,11 @@ }; } { - name = "dayjs___dayjs_1.10.5.tgz"; + name = "dayjs___dayjs_1.10.6.tgz"; path = fetchurl { - name = "dayjs___dayjs_1.10.5.tgz"; - url = "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.5.tgz"; - sha1 = "5600df4548fc2453b3f163ebb2abbe965ccfb986"; + name = "dayjs___dayjs_1.10.6.tgz"; + url = "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.6.tgz"; + sha1 = "288b2aa82f2d8418a6c9d4df5898c0737ad02a63"; }; } { @@ -4314,11 +4274,11 @@ }; } { - name = "debug___debug_4.3.1.tgz"; + name = "debug___debug_4.3.2.tgz"; path = fetchurl { - name = "debug___debug_4.3.1.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; - sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; + name = "debug___debug_4.3.2.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz"; + sha1 = "f0a49c18ac8779e31d4a0c6029dfb76873c7428b"; }; } { @@ -4338,11 +4298,11 @@ }; } { - name = "decimal.js___decimal.js_10.2.1.tgz"; + name = "decimal.js___decimal.js_10.3.1.tgz"; path = fetchurl { - name = "decimal.js___decimal.js_10.2.1.tgz"; - url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz"; - sha1 = "238ae7b0f0c793d3e3cea410108b35a2c01426a3"; + name = "decimal.js___decimal.js_10.3.1.tgz"; + url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz"; + sha1 = "d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"; }; } { @@ -4634,11 +4594,11 @@ }; } { - name = "domhandler___domhandler_4.2.0.tgz"; + name = "domhandler___domhandler_4.2.2.tgz"; path = fetchurl { - name = "domhandler___domhandler_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz"; - sha1 = "f9768a5f034be60a89a27c2e4d0f74eba0d8b059"; + name = "domhandler___domhandler_4.2.2.tgz"; + url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz"; + sha1 = "e825d721d19a86b8c201a35264e226c678ee755f"; }; } { @@ -4650,11 +4610,11 @@ }; } { - name = "domutils___domutils_2.7.0.tgz"; + name = "domutils___domutils_2.8.0.tgz"; path = fetchurl { - name = "domutils___domutils_2.7.0.tgz"; - url = "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz"; - sha1 = "8ebaf0c41ebafcf55b0b72ec31c56323712c5442"; + name = "domutils___domutils_2.8.0.tgz"; + url = "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz"; + sha1 = "4437def5db6e2d1f5d6ee859bd95ca7d02048135"; }; } { @@ -4730,11 +4690,11 @@ }; } { - name = "electron_to_chromium___electron_to_chromium_1.3.752.tgz"; + name = "electron_to_chromium___electron_to_chromium_1.3.829.tgz"; path = fetchurl { - name = "electron_to_chromium___electron_to_chromium_1.3.752.tgz"; - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz"; - sha1 = "0728587f1b9b970ec9ffad932496429aef750d09"; + name = "electron_to_chromium___electron_to_chromium_1.3.829.tgz"; + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.829.tgz"; + sha1 = "efd360b594824fcd84e24c6eb0c8e41e2a44fbc7"; }; } { @@ -4810,19 +4770,19 @@ }; } { - name = "engine.io_client___engine.io_client_5.1.1.tgz"; + name = "engine.io_client___engine.io_client_5.2.0.tgz"; path = fetchurl { - name = "engine.io_client___engine.io_client_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.1.1.tgz"; - sha1 = "f5c3aaaef1bdc9443aac6ffde48b3b2fb2dc56fc"; + name = "engine.io_client___engine.io_client_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.2.0.tgz"; + sha1 = "ae38c79a4af16258c0300e6819c0ea8ecc1597cd"; }; } { - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; + name = "engine.io_parser___engine.io_parser_4.0.3.tgz"; path = fetchurl { - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.2.tgz"; - sha1 = "e41d0b3fb66f7bf4a3671d2038a154024edb501e"; + name = "engine.io_parser___engine.io_parser_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.3.tgz"; + sha1 = "83d3a17acfd4226f19e721bb22a1ee8f7662d2f6"; }; } { @@ -4882,11 +4842,11 @@ }; } { - name = "es_abstract___es_abstract_1.18.3.tgz"; + name = "es_abstract___es_abstract_1.18.5.tgz"; path = fetchurl { - name = "es_abstract___es_abstract_1.18.3.tgz"; - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz"; - sha1 = "25c4c3380a27aa203c44b2b685bba94da31b63e0"; + name = "es_abstract___es_abstract_1.18.5.tgz"; + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz"; + sha1 = "9b10de7d4c206a3581fd5b2124233e04db49ae19"; }; } { @@ -4978,43 +4938,43 @@ }; } { - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz"; path = fetchurl { - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; - url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"; - sha1 = "85ffa81942c25012d8231096ddf679c03042c717"; + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz"; + url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; + sha1 = "4048b958395da89668252001dbd9eca6b83bacbd"; }; } { - name = "eslint_module_utils___eslint_module_utils_2.6.1.tgz"; + name = "eslint_module_utils___eslint_module_utils_2.6.2.tgz"; path = fetchurl { - name = "eslint_module_utils___eslint_module_utils_2.6.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz"; - sha1 = "b51be1e473dd0de1c5ea638e22429c2490ea8233"; + name = "eslint_module_utils___eslint_module_utils_2.6.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz"; + sha1 = "94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534"; }; } { - name = "eslint_plugin_flowtype___eslint_plugin_flowtype_5.7.2.tgz"; + name = "eslint_plugin_flowtype___eslint_plugin_flowtype_5.9.2.tgz"; path = fetchurl { - name = "eslint_plugin_flowtype___eslint_plugin_flowtype_5.7.2.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.7.2.tgz"; - sha1 = "482a42fe5d15ee614652ed256d37543d584d7bc0"; + name = "eslint_plugin_flowtype___eslint_plugin_flowtype_5.9.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.2.tgz"; + sha1 = "aac08cd26ee4da79cba0e40c3877bb4d96a74ebc"; }; } { - name = "eslint_plugin_import___eslint_plugin_import_2.23.4.tgz"; + name = "eslint_plugin_import___eslint_plugin_import_2.24.2.tgz"; path = fetchurl { - name = "eslint_plugin_import___eslint_plugin_import_2.23.4.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz"; - sha1 = "8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"; + name = "eslint_plugin_import___eslint_plugin_import_2.24.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz"; + sha1 = "2c8cd2e341f3885918ee27d18479910ade7bb4da"; }; } { - name = "eslint_plugin_jest___eslint_plugin_jest_24.3.6.tgz"; + name = "eslint_plugin_jest___eslint_plugin_jest_24.4.0.tgz"; path = fetchurl { - name = "eslint_plugin_jest___eslint_plugin_jest_24.3.6.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.6.tgz"; - sha1 = "5f0ca019183c3188c5ad3af8e80b41de6c8e9173"; + name = "eslint_plugin_jest___eslint_plugin_jest_24.4.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz"; + sha1 = "fa4b614dbd46a98b652d830377971f097bda9262"; }; } { @@ -5034,11 +4994,11 @@ }; } { - name = "eslint_plugin_react___eslint_plugin_react_7.24.0.tgz"; + name = "eslint_plugin_react___eslint_plugin_react_7.25.1.tgz"; path = fetchurl { - name = "eslint_plugin_react___eslint_plugin_react_7.24.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz"; - sha1 = "eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"; + name = "eslint_plugin_react___eslint_plugin_react_7.25.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.25.1.tgz"; + sha1 = "9286b7cd9bf917d40309760f403e53016eda8331"; }; } { @@ -5106,11 +5066,11 @@ }; } { - name = "eslint___eslint_7.28.0.tgz"; + name = "eslint___eslint_7.32.0.tgz"; path = fetchurl { - name = "eslint___eslint_7.28.0.tgz"; - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.28.0.tgz"; - sha1 = "435aa17a0b82c13bb2be9d51408b617e49c1e820"; + name = "eslint___eslint_7.32.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz"; + sha1 = "c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"; }; } { @@ -5282,11 +5242,11 @@ }; } { - name = "ext___ext_1.4.0.tgz"; + name = "ext___ext_1.5.0.tgz"; path = fetchurl { - name = "ext___ext_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz"; - sha1 = "89ae7a07158f79d35517882904324077e4379244"; + name = "ext___ext_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/ext/-/ext-1.5.0.tgz"; + sha1 = "e93b97ae0cb23f8370380f6107d2d2b7887687ad"; }; } { @@ -5346,11 +5306,11 @@ }; } { - name = "fast_glob___fast_glob_3.2.5.tgz"; + name = "fast_glob___fast_glob_3.2.7.tgz"; path = fetchurl { - name = "fast_glob___fast_glob_3.2.5.tgz"; - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz"; - sha1 = "7939af2a656de79a4f1901903ee8adcaa7cb9661"; + name = "fast_glob___fast_glob_3.2.7.tgz"; + url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz"; + sha1 = "fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"; }; } { @@ -5370,11 +5330,11 @@ }; } { - name = "fastq___fastq_1.11.0.tgz"; + name = "fastq___fastq_1.12.0.tgz"; path = fetchurl { - name = "fastq___fastq_1.11.0.tgz"; - url = "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz"; - sha1 = "bb9fb955a07130a918eb63c1f5161cc32a5d0858"; + name = "fastq___fastq_1.12.0.tgz"; + url = "https://registry.yarnpkg.com/fastq/-/fastq-1.12.0.tgz"; + sha1 = "ed7b6ab5d62393fb2cc591c853652a5c318bf794"; }; } { @@ -5474,19 +5434,11 @@ }; } { - name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; + name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; path = fetchurl { - name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; - url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; - sha1 = "89b33fad4a4670daa94f855f7fbe31d6d84fe880"; - }; - } - { - name = "find_root___find_root_1.1.0.tgz"; - path = fetchurl { - name = "find_root___find_root_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; - sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"; + name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; + url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; + sha1 = "b30c5b6eff0730731aea9bbd9dbecbd80256d64b"; }; } { @@ -5530,11 +5482,11 @@ }; } { - name = "flatted___flatted_3.1.1.tgz"; + name = "flatted___flatted_3.2.2.tgz"; path = fetchurl { - name = "flatted___flatted_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz"; - sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469"; + name = "flatted___flatted_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz"; + sha1 = "64bfed5cb68fe3ca78b3eb214ad97b63bedce561"; }; } { @@ -5554,11 +5506,11 @@ }; } { - name = "follow_redirects___follow_redirects_1.14.1.tgz"; + name = "follow_redirects___follow_redirects_1.14.3.tgz"; path = fetchurl { - name = "follow_redirects___follow_redirects_1.14.1.tgz"; - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.1.tgz"; - sha1 = "d9114ded0a1cfdd334e164e6662ad02bfd91ff43"; + name = "follow_redirects___follow_redirects_1.14.3.tgz"; + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz"; + sha1 = "6ada78118d8d24caee595595accdc0ac6abd022e"; }; } { @@ -5858,11 +5810,11 @@ }; } { - name = "globals___globals_13.9.0.tgz"; + name = "globals___globals_13.11.0.tgz"; path = fetchurl { - name = "globals___globals_13.9.0.tgz"; - url = "https://registry.yarnpkg.com/globals/-/globals-13.9.0.tgz"; - sha1 = "4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb"; + name = "globals___globals_13.11.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz"; + sha1 = "40ef678da117fe7bd2e28f1fab24951bd0255be7"; }; } { @@ -5874,11 +5826,11 @@ }; } { - name = "globby___globby_11.0.3.tgz"; + name = "globby___globby_11.0.4.tgz"; path = fetchurl { - name = "globby___globby_11.0.3.tgz"; - url = "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz"; - sha1 = "9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"; + name = "globby___globby_11.0.4.tgz"; + url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz"; + sha1 = "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"; }; } { @@ -5890,19 +5842,19 @@ }; } { - name = "globule___globule_1.3.2.tgz"; + name = "globule___globule_1.3.3.tgz"; path = fetchurl { - name = "globule___globule_1.3.2.tgz"; - url = "https://registry.yarnpkg.com/globule/-/globule-1.3.2.tgz"; - sha1 = "d8bdd9e9e4eef8f96e245999a5dee7eb5d8529c4"; + name = "globule___globule_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/globule/-/globule-1.3.3.tgz"; + sha1 = "811919eeac1ab7344e905f2e3be80a13447973c2"; }; } { - name = "graceful_fs___graceful_fs_4.2.6.tgz"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; path = fetchurl { - name = "graceful_fs___graceful_fs_4.2.6.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz"; - sha1 = "ff040b2b0853b23c3d31027523706f1885d76bee"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz"; + sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a"; }; } { @@ -6001,6 +5953,14 @@ sha1 = "165d3070c00309752a1236a479331e3ac56f1423"; }; } + { + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; + path = fetchurl { + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; + sha1 = "7e133818a7d394734f941e73c3d3f9291e658b25"; + }; + } { name = "has_unicode___has_unicode_2.0.1.tgz"; path = fetchurl { @@ -6306,19 +6266,19 @@ }; } { - name = "i18next_browser_languagedetector___i18next_browser_languagedetector_6.1.1.tgz"; + name = "i18next_browser_languagedetector___i18next_browser_languagedetector_6.1.2.tgz"; path = fetchurl { - name = "i18next_browser_languagedetector___i18next_browser_languagedetector_6.1.1.tgz"; - url = "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-6.1.1.tgz"; - sha1 = "fc4c6606bb3f7afc331737cf7c41e50919d55542"; + name = "i18next_browser_languagedetector___i18next_browser_languagedetector_6.1.2.tgz"; + url = "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-6.1.2.tgz"; + sha1 = "68565a28b929cbc98ab6a56826ef2faf0e927ff8"; }; } { - name = "i18next_http_backend___i18next_http_backend_1.2.6.tgz"; + name = "i18next_http_backend___i18next_http_backend_1.3.0.tgz"; path = fetchurl { - name = "i18next_http_backend___i18next_http_backend_1.2.6.tgz"; - url = "https://registry.yarnpkg.com/i18next-http-backend/-/i18next-http-backend-1.2.6.tgz"; - sha1 = "80b12e8b207814aebb3b8a74c4487dd156973bee"; + name = "i18next_http_backend___i18next_http_backend_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/i18next-http-backend/-/i18next-http-backend-1.3.0.tgz"; + sha1 = "fcafb9583cf2942a9c669bd1868ec84a11410536"; }; } { @@ -6610,11 +6570,11 @@ }; } { - name = "is_arguments___is_arguments_1.1.0.tgz"; + name = "is_arguments___is_arguments_1.1.1.tgz"; path = fetchurl { - name = "is_arguments___is_arguments_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz"; - sha1 = "62353031dfbee07ceb34656a6bde59efecae8dd9"; + name = "is_arguments___is_arguments_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz"; + sha1 = "15b3f88fda01f2a97fec84ca761a560f123efa9b"; }; } { @@ -6634,11 +6594,11 @@ }; } { - name = "is_bigint___is_bigint_1.0.2.tgz"; + name = "is_bigint___is_bigint_1.0.4.tgz"; path = fetchurl { - name = "is_bigint___is_bigint_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz"; - sha1 = "ffb381442503235ad245ea89e45b3dbff040ee5a"; + name = "is_bigint___is_bigint_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; + sha1 = "08147a1875bc2b32005d41ccd8291dffc6691df3"; }; } { @@ -6658,11 +6618,11 @@ }; } { - name = "is_boolean_object___is_boolean_object_1.1.1.tgz"; + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; path = fetchurl { - name = "is_boolean_object___is_boolean_object_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz"; - sha1 = "3c0878f035cb821228d350d2e1e36719716a3de8"; + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; + sha1 = "5c6dc200246dd9321ae4b885a114bb1f75f63719"; }; } { @@ -6674,11 +6634,11 @@ }; } { - name = "is_callable___is_callable_1.2.3.tgz"; + name = "is_callable___is_callable_1.2.4.tgz"; path = fetchurl { - name = "is_callable___is_callable_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz"; - sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e"; + name = "is_callable___is_callable_1.2.4.tgz"; + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; + sha1 = "47301d58dd0259407865547853df6d61fe471945"; }; } { @@ -6698,11 +6658,11 @@ }; } { - name = "is_core_module___is_core_module_2.4.0.tgz"; + name = "is_core_module___is_core_module_2.6.0.tgz"; path = fetchurl { - name = "is_core_module___is_core_module_2.4.0.tgz"; - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz"; - sha1 = "8e9fc8e15027b011418026e98f0e6f4d86305cc1"; + name = "is_core_module___is_core_module_2.6.0.tgz"; + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz"; + sha1 = "d7553b2526fe59b92ba3e40c8df757ec8a709e19"; }; } { @@ -6722,11 +6682,11 @@ }; } { - name = "is_date_object___is_date_object_1.0.4.tgz"; + name = "is_date_object___is_date_object_1.0.5.tgz"; path = fetchurl { - name = "is_date_object___is_date_object_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz"; - sha1 = "550cfcc03afada05eea3dd30981c7b09551f73e5"; + name = "is_date_object___is_date_object_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; + sha1 = "0841d5536e724c25597bf6ea62e1bd38298df31f"; }; } { @@ -6858,11 +6818,11 @@ }; } { - name = "is_number_object___is_number_object_1.0.5.tgz"; + name = "is_number_object___is_number_object_1.0.6.tgz"; path = fetchurl { - name = "is_number_object___is_number_object_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz"; - sha1 = "6edfaeed7950cff19afedce9fbfca9ee6dd289eb"; + name = "is_number_object___is_number_object_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; + sha1 = "6a7aaf838c7f0686a50b4553f7e54a96494e89f0"; }; } { @@ -6954,11 +6914,11 @@ }; } { - name = "is_regex___is_regex_1.1.3.tgz"; + name = "is_regex___is_regex_1.1.4.tgz"; path = fetchurl { - name = "is_regex___is_regex_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz"; - sha1 = "d029f9aff6448b93ebbe3f33dac71511fdcbef9f"; + name = "is_regex___is_regex_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; + sha1 = "eef5663cd59fa4c0ae339505323df6854bb15958"; }; } { @@ -6994,19 +6954,19 @@ }; } { - name = "is_stream___is_stream_2.0.0.tgz"; + name = "is_stream___is_stream_2.0.1.tgz"; path = fetchurl { - name = "is_stream___is_stream_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz"; - sha1 = "bde9c32680d6fae04129d6ac9d921ce7815f78e3"; + name = "is_stream___is_stream_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; + sha1 = "fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"; }; } { - name = "is_string___is_string_1.0.6.tgz"; + name = "is_string___is_string_1.0.7.tgz"; path = fetchurl { - name = "is_string___is_string_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz"; - sha1 = "3fe5d5992fb0d93404f32584d4b0179a71b54a5f"; + name = "is_string___is_string_1.0.7.tgz"; + url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; + sha1 = "0dd12bf2006f255bb58f695110eff7491eebc0fd"; }; } { @@ -7434,11 +7394,11 @@ }; } { - name = "jsdom___jsdom_16.6.0.tgz"; + name = "jsdom___jsdom_16.7.0.tgz"; path = fetchurl { - name = "jsdom___jsdom_16.6.0.tgz"; - url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.6.0.tgz"; - sha1 = "f79b3786682065492a3da6a60a4695da983805ac"; + name = "jsdom___jsdom_16.7.0.tgz"; + url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz"; + sha1 = "918ae71965424b197c819f8183a754e18977b710"; }; } { @@ -7946,11 +7906,11 @@ }; } { - name = "marked___marked_2.0.7.tgz"; + name = "marked___marked_3.0.2.tgz"; path = fetchurl { - name = "marked___marked_2.0.7.tgz"; - url = "https://registry.yarnpkg.com/marked/-/marked-2.0.7.tgz"; - sha1 = "bc5b857a09071b48ce82a1f7304913a993d4b7d1"; + name = "marked___marked_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/marked/-/marked-3.0.2.tgz"; + sha1 = "60ce97d6aec34dd882ab4bb4df82494666854e17"; }; } { @@ -8090,19 +8050,19 @@ }; } { - name = "mime_db___mime_db_1.48.0.tgz"; + name = "mime_db___mime_db_1.49.0.tgz"; path = fetchurl { - name = "mime_db___mime_db_1.48.0.tgz"; - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz"; - sha1 = "e35b31045dd7eada3aaad537ed88a33afbef2d1d"; + name = "mime_db___mime_db_1.49.0.tgz"; + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz"; + sha1 = "f3dfde60c99e9cf3bc9701d687778f537001cbed"; }; } { - name = "mime_types___mime_types_2.1.31.tgz"; + name = "mime_types___mime_types_2.1.32.tgz"; path = fetchurl { - name = "mime_types___mime_types_2.1.31.tgz"; - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz"; - sha1 = "a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"; + name = "mime_types___mime_types_2.1.32.tgz"; + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz"; + sha1 = "1d00e89e7de7fe02008db61001d9e02852670fd5"; }; } { @@ -8314,11 +8274,11 @@ }; } { - name = "nan___nan_2.14.2.tgz"; + name = "nan___nan_2.15.0.tgz"; path = fetchurl { - name = "nan___nan_2.14.2.tgz"; - url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz"; - sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19"; + name = "nan___nan_2.15.0.tgz"; + url = "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz"; + sha1 = "3f34a473ff18e15c1b5626b62903b5ad6e665fee"; }; } { @@ -8330,11 +8290,11 @@ }; } { - name = "nanoid___nanoid_3.1.23.tgz"; + name = "nanoid___nanoid_3.1.25.tgz"; path = fetchurl { - name = "nanoid___nanoid_3.1.23.tgz"; - url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz"; - sha1 = "f744086ce7c2bc47ee0a8472574d5c78e4183a81"; + name = "nanoid___nanoid_3.1.25.tgz"; + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz"; + sha1 = "09ca32747c0e543f0e1814b7d3793477f9c8e152"; }; } { @@ -8458,11 +8418,11 @@ }; } { - name = "node_releases___node_releases_1.1.73.tgz"; + name = "node_releases___node_releases_1.1.75.tgz"; path = fetchurl { - name = "node_releases___node_releases_1.1.73.tgz"; - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz"; - sha1 = "dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"; + name = "node_releases___node_releases_1.1.75.tgz"; + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz"; + sha1 = "6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe"; }; } { @@ -8618,11 +8578,11 @@ }; } { - name = "object_inspect___object_inspect_1.10.3.tgz"; + name = "object_inspect___object_inspect_1.11.0.tgz"; path = fetchurl { - name = "object_inspect___object_inspect_1.10.3.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz"; - sha1 = "c2aa7d2d09f50c99375704f7a0adf24c5782d369"; + name = "object_inspect___object_inspect_1.11.0.tgz"; + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz"; + sha1 = "9dceb146cedd4148a0d9e51ab88d34cf509922b1"; }; } { @@ -8970,11 +8930,11 @@ }; } { - name = "parse_numeric_range___parse_numeric_range_1.2.0.tgz"; + name = "parse_numeric_range___parse_numeric_range_1.3.0.tgz"; path = fetchurl { - name = "parse_numeric_range___parse_numeric_range_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.2.0.tgz"; - sha1 = "aa70b00f29624ed13e9f943e9461b306e386b0fa"; + name = "parse_numeric_range___parse_numeric_range_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz"; + sha1 = "7c63b61190d61e4d53a1197f0c83c47bb670ffa3"; }; } { @@ -9162,11 +9122,11 @@ }; } { - name = "perfect_scrollbar___perfect_scrollbar_1.5.1.tgz"; + name = "perfect_scrollbar___perfect_scrollbar_1.5.2.tgz"; path = fetchurl { - name = "perfect_scrollbar___perfect_scrollbar_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/perfect-scrollbar/-/perfect-scrollbar-1.5.1.tgz"; - sha1 = "8ee5b3ca06ce9c3f7338fd4ab67a55248a6cf3be"; + name = "perfect_scrollbar___perfect_scrollbar_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/perfect-scrollbar/-/perfect-scrollbar-1.5.2.tgz"; + sha1 = "41167ac6bc95e3a5e87a7402fa36fdacca9bc298"; }; } { @@ -9881,14 +9841,6 @@ sha1 = "da8b472d901da1e205b47bdc98637b9e9e550e5f"; }; } - { - name = "postcss___postcss_7.0.21.tgz"; - path = fetchurl { - name = "postcss___postcss_7.0.21.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz"; - sha1 = "06bb07824c19c2021c5d056d5b10c35b989f7e17"; - }; - } { name = "postcss___postcss_7.0.36.tgz"; path = fetchurl { @@ -9898,11 +9850,11 @@ }; } { - name = "postcss___postcss_8.3.2.tgz"; + name = "postcss___postcss_8.3.6.tgz"; path = fetchurl { - name = "postcss___postcss_8.3.2.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-8.3.2.tgz"; - sha1 = "ed3ec489f5428af5740cd6effcc216b4d455ee64"; + name = "postcss___postcss_8.3.6.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz"; + sha1 = "2730dd76a97969f37f53b9a6096197be311cc4ea"; }; } { @@ -10130,11 +10082,11 @@ }; } { - name = "query_string___query_string_7.0.0.tgz"; + name = "query_string___query_string_7.0.1.tgz"; path = fetchurl { - name = "query_string___query_string_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/query-string/-/query-string-7.0.0.tgz"; - sha1 = "aaad2c8d5c6a6d0c6afada877fecbd56af79e609"; + name = "query_string___query_string_7.0.1.tgz"; + url = "https://registry.yarnpkg.com/query-string/-/query-string-7.0.1.tgz"; + sha1 = "45bd149cf586aaa582dffc7ec7a8ad97dd02f75d"; }; } { @@ -10234,11 +10186,11 @@ }; } { - name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.3.tgz"; + name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.4.tgz"; path = fetchurl { - name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.3.tgz"; - url = "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.3.tgz"; - sha1 = "2a0623b1115a1d8c84144e9434d3342b5af41ab4"; + name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.4.tgz"; + url = "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.4.tgz"; + sha1 = "42ec519b03eb9413b118af92d1780c403a5f19bf"; }; } { @@ -10290,11 +10242,11 @@ }; } { - name = "react_i18next___react_i18next_11.10.0.tgz"; + name = "react_i18next___react_i18next_11.11.4.tgz"; path = fetchurl { - name = "react_i18next___react_i18next_11.10.0.tgz"; - url = "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.10.0.tgz"; - sha1 = "f34257447e18e710e36d8fd3f721dd7d37c7004f"; + name = "react_i18next___react_i18next_11.11.4.tgz"; + url = "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.11.4.tgz"; + sha1 = "f6f9a1c827e7a5271377de2bf14db04cb1c9e5ce"; }; } { @@ -10306,11 +10258,11 @@ }; } { - name = "react_intersection_observer___react_intersection_observer_8.32.0.tgz"; + name = "react_intersection_observer___react_intersection_observer_8.32.1.tgz"; path = fetchurl { - name = "react_intersection_observer___react_intersection_observer_8.32.0.tgz"; - url = "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-8.32.0.tgz"; - sha1 = "47249332e12e8bb99ed35a10bb7dd10446445a7b"; + name = "react_intersection_observer___react_intersection_observer_8.32.1.tgz"; + url = "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-8.32.1.tgz"; + sha1 = "9b949871eb35eb1fc730732bbf8fcfaaaf3f5b02"; }; } { @@ -10338,19 +10290,19 @@ }; } { - name = "react_router_dom___react_router_dom_5.2.0.tgz"; + name = "react_router_dom___react_router_dom_5.2.1.tgz"; path = fetchurl { - name = "react_router_dom___react_router_dom_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.2.0.tgz"; - sha1 = "9e65a4d0c45e13289e66c7b17c7e175d0ea15662"; + name = "react_router_dom___react_router_dom_5.2.1.tgz"; + url = "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.2.1.tgz"; + sha1 = "34af8b551a4ce17487d3f80e651b91651978dff6"; }; } { - name = "react_router___react_router_5.2.0.tgz"; + name = "react_router___react_router_5.2.1.tgz"; path = fetchurl { - name = "react_router___react_router_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/react-router/-/react-router-5.2.0.tgz"; - sha1 = "424e75641ca8747fbf76e5ecca69781aa37ea293"; + name = "react_router___react_router_5.2.1.tgz"; + url = "https://registry.yarnpkg.com/react-router/-/react-router-5.2.1.tgz"; + sha1 = "4d2e4e9d5ae9425091845b8dbc6d9d276239774d"; }; } { @@ -10370,11 +10322,11 @@ }; } { - name = "react_spinners___react_spinners_0.10.6.tgz"; + name = "react_spinners___react_spinners_0.11.0.tgz"; path = fetchurl { - name = "react_spinners___react_spinners_0.10.6.tgz"; - url = "https://registry.yarnpkg.com/react-spinners/-/react-spinners-0.10.6.tgz"; - sha1 = "7e780144aaf54372231f6168ca075b4cd70e48ef"; + name = "react_spinners___react_spinners_0.11.0.tgz"; + url = "https://registry.yarnpkg.com/react-spinners/-/react-spinners-0.11.0.tgz"; + sha1 = "186fd150cc9f7ab1436227f70d5d113b47e9e43d"; }; } { @@ -10474,11 +10426,11 @@ }; } { - name = "readdirp___readdirp_3.5.0.tgz"; + name = "readdirp___readdirp_3.6.0.tgz"; path = fetchurl { - name = "readdirp___readdirp_3.5.0.tgz"; - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; - sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"; + name = "readdirp___readdirp_3.6.0.tgz"; + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz"; + sha1 = "74a370bd857116e245b29cc97340cd431a02a6c7"; }; } { @@ -10498,11 +10450,11 @@ }; } { - name = "redux___redux_4.1.0.tgz"; + name = "redux___redux_4.1.1.tgz"; path = fetchurl { - name = "redux___redux_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz"; - sha1 = "eb049679f2f523c379f1aff345c8612f294c88d4"; + name = "redux___redux_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/redux/-/redux-4.1.1.tgz"; + sha1 = "76f1c439bb42043f985fbd9bf21990e60bd67f47"; }; } { @@ -10530,11 +10482,11 @@ }; } { - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; path = fetchurl { - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; - sha1 = "cac2dacc8a1ea675feaabaeb8ae833898ae46f55"; + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; + sha1 = "8925742a98ffd90814988d7566ad30ca3b263b52"; }; } { @@ -10570,11 +10522,11 @@ }; } { - name = "regexpp___regexpp_3.1.0.tgz"; + name = "regexpp___regexpp_3.2.0.tgz"; path = fetchurl { - name = "regexpp___regexpp_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; - sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; + name = "regexpp___regexpp_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz"; + sha1 = "0425a2768d8f23bad70ca4b90461fa2f1213e1b2"; }; } { @@ -10738,11 +10690,11 @@ }; } { - name = "resolve_url_loader___resolve_url_loader_3.1.3.tgz"; + name = "resolve_url_loader___resolve_url_loader_3.1.4.tgz"; path = fetchurl { - name = "resolve_url_loader___resolve_url_loader_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.3.tgz"; - sha1 = "49ec68340f67d8d2ab6b401948d5def3ab2d0367"; + name = "resolve_url_loader___resolve_url_loader_3.1.4.tgz"; + url = "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.4.tgz"; + sha1 = "3c16caebe0b9faea9c7cc252fa49d2353c412320"; }; } { @@ -11026,11 +10978,11 @@ }; } { - name = "schema_utils___schema_utils_3.0.0.tgz"; + name = "schema_utils___schema_utils_3.1.1.tgz"; path = fetchurl { - name = "schema_utils___schema_utils_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz"; - sha1 = "67502f6aa2b66a2d4032b4279a2944978a0913ef"; + name = "schema_utils___schema_utils_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz"; + sha1 = "bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"; }; } { @@ -11314,11 +11266,11 @@ }; } { - name = "socket.io_client___socket.io_client_4.1.2.tgz"; + name = "socket.io_client___socket.io_client_4.2.0.tgz"; path = fetchurl { - name = "socket.io_client___socket.io_client_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.1.2.tgz"; - sha1 = "95ad7113318ea01fba0860237b96d71e1b1fd2eb"; + name = "socket.io_client___socket.io_client_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.2.0.tgz"; + sha1 = "195feed3de40283b1ae3f7d02cf91d3eb2c905c1"; }; } { @@ -11330,11 +11282,11 @@ }; } { - name = "sockjs_client___sockjs_client_1.5.1.tgz"; + name = "sockjs_client___sockjs_client_1.5.2.tgz"; path = fetchurl { - name = "sockjs_client___sockjs_client_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.1.tgz"; - sha1 = "256908f6d5adfb94dabbdbd02c66362cca0f9ea6"; + name = "sockjs_client___sockjs_client_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.2.tgz"; + sha1 = "4bc48c2da9ce4769f19dc723396b50f5c12330a3"; }; } { @@ -11458,11 +11410,11 @@ }; } { - name = "spdx_license_ids___spdx_license_ids_3.0.9.tgz"; + name = "spdx_license_ids___spdx_license_ids_3.0.10.tgz"; path = fetchurl { - name = "spdx_license_ids___spdx_license_ids_3.0.9.tgz"; - url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz"; - sha1 = "8a595135def9592bda69709474f1cbeea7c2467f"; + name = "spdx_license_ids___spdx_license_ids_3.0.10.tgz"; + url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz"; + sha1 = "0d9becccde7003d6c658d487dd48a32f0bf3014b"; }; } { @@ -11922,11 +11874,11 @@ }; } { - name = "tar___tar_6.1.0.tgz"; + name = "tar___tar_6.1.11.tgz"; path = fetchurl { - name = "tar___tar_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/tar/-/tar-6.1.0.tgz"; - sha1 = "d1724e9bcc04b977b18d5c573b333a2207229a83"; + name = "tar___tar_6.1.11.tgz"; + url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz"; + sha1 = "6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"; }; } { @@ -11978,11 +11930,11 @@ }; } { - name = "terser___terser_5.7.0.tgz"; + name = "terser___terser_5.7.2.tgz"; path = fetchurl { - name = "terser___terser_5.7.0.tgz"; - url = "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz"; - sha1 = "a761eeec206bc87b605ab13029876ead938ae693"; + name = "terser___terser_5.7.2.tgz"; + url = "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz"; + sha1 = "d4d95ed4f8bf735cb933e802f2a1829abf545e3f"; }; } { @@ -12074,11 +12026,11 @@ }; } { - name = "tmpl___tmpl_1.0.4.tgz"; + name = "tmpl___tmpl_1.0.5.tgz"; path = fetchurl { - name = "tmpl___tmpl_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz"; - sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; + name = "tmpl___tmpl_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz"; + sha1 = "8683e0b902bb9c20c4f726e3c0b69f36518c07cc"; }; } { @@ -12210,11 +12162,11 @@ }; } { - name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; + name = "tsconfig_paths___tsconfig_paths_3.11.0.tgz"; path = fetchurl { - name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; - url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"; - sha1 = "098547a6c4448807e8fcb8eae081064ee9a3c90b"; + name = "tsconfig_paths___tsconfig_paths_3.11.0.tgz"; + url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; + sha1 = "954c1fe973da6339c78e06b03ce2e48810b65f36"; }; } { @@ -12226,11 +12178,11 @@ }; } { - name = "tslib___tslib_2.3.0.tgz"; + name = "tslib___tslib_2.3.1.tgz"; path = fetchurl { - name = "tslib___tslib_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz"; - sha1 = "803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"; + name = "tslib___tslib_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz"; + sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01"; }; } { @@ -12530,11 +12482,11 @@ }; } { - name = "url_parse___url_parse_1.5.1.tgz"; + name = "url_parse___url_parse_1.5.3.tgz"; path = fetchurl { - name = "url_parse___url_parse_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz"; - sha1 = "d5fa9890af8a5e1f274a2c98376510f6425f6e3b"; + name = "url_parse___url_parse_1.5.3.tgz"; + url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.3.tgz"; + sha1 = "71c1303d38fb6639ade183c2992c8cc0686df862"; }; } { @@ -12858,11 +12810,11 @@ }; } { - name = "whatwg_url___whatwg_url_8.6.0.tgz"; + name = "whatwg_url___whatwg_url_8.7.0.tgz"; path = fetchurl { - name = "whatwg_url___whatwg_url_8.6.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.6.0.tgz"; - sha1 = "27c0205a4902084b872aecb97cf0f2a7a3011f4c"; + name = "whatwg_url___whatwg_url_8.7.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz"; + sha1 = "656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"; }; } { @@ -13097,6 +13049,14 @@ sha1 = "dd5cdbd57a9979916097652d78f1cc5faea0c32e"; }; } + { + name = "ws___ws_7.5.4.tgz"; + path = fetchurl { + name = "ws___ws_7.5.4.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-7.5.4.tgz"; + sha1 = "56bfa20b167427e138a7795de68d134fe92e21f9"; + }; + } { name = "ws___ws_7.4.6.tgz"; path = fetchurl { @@ -13121,6 +13081,14 @@ sha1 = "060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"; }; } + { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; + path = fetchurl { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz"; + sha1 = "91360c86b914e67f44dce769180027c0da618c67"; + }; + } { name = "xtend___xtend_4.0.2.tgz"; path = fetchurl { diff --git a/pkgs/companion/yarn.nix b/pkgs/companion/yarn.nix index 84185ef..5f4c254 100644 --- a/pkgs/companion/yarn.nix +++ b/pkgs/companion/yarn.nix @@ -1,4 +1,4 @@ -{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { +{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { offline_cache = linkFarm "offline" packages; packages = [ { @@ -10,11 +10,35 @@ }; } { - name = "_babel_runtime___runtime_7.14.5.tgz"; + name = "_babel_code_frame___code_frame_7.16.0.tgz"; path = fetchurl { - name = "_babel_runtime___runtime_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.5.tgz"; - sha1 = "665450911c6031af38f81db530f387ec04cd9a98"; + name = "_babel_code_frame___code_frame_7.16.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz"; + sha1 = "0dfc80309beec8411e65e706461c408b0bb9b431"; + }; + } + { + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; + path = fetchurl { + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; + sha1 = "220df993bfe904a4a6b02ab4f3385a5ebf6e2389"; + }; + } + { + name = "_babel_highlight___highlight_7.16.0.tgz"; + path = fetchurl { + name = "_babel_highlight___highlight_7.16.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz"; + sha1 = "6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a"; + }; + } + { + name = "_babel_runtime___runtime_7.15.4.tgz"; + path = fetchurl { + name = "_babel_runtime___runtime_7.15.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz"; + sha1 = "fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a"; }; } { @@ -34,11 +58,11 @@ }; } { - name = "_electron_get___get_1.12.4.tgz"; + name = "_electron_get___get_1.13.0.tgz"; path = fetchurl { - name = "_electron_get___get_1.12.4.tgz"; - url = "https://registry.yarnpkg.com/@electron/get/-/get-1.12.4.tgz"; - sha1 = "a5971113fc1bf8fa12a8789dc20152a7359f06ab"; + name = "_electron_get___get_1.13.0.tgz"; + url = "https://registry.yarnpkg.com/@electron/get/-/get-1.13.0.tgz"; + sha1 = "95c6bcaff4f9a505ea46792424f451efea89228c"; }; } { @@ -49,6 +73,14 @@ sha1 = "b812340e4ef21da2b3ee77b2b4d35c9b86defe37"; }; } + { + name = "_estilles_expression_parser___expression_parser_1.0.0.tgz"; + path = fetchurl { + name = "_estilles_expression_parser___expression_parser_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@estilles/expression-parser/-/expression-parser-1.0.0.tgz"; + sha1 = "227a182309051f4e371e1b5c652351b84213eddc"; + }; + } { name = "_jest_types___types_25.5.0.tgz"; path = fetchurl { @@ -65,6 +97,14 @@ sha1 = "9337e4d3b3fa360c93df2e4b21134f9a9f4a35b4"; }; } + { + name = "_leichtgewicht_ip_codec___ip_codec_2.0.3.tgz"; + path = fetchurl { + name = "_leichtgewicht_ip_codec___ip_codec_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.3.tgz"; + sha1 = "0300943770e04231041a51bd39f0439b5c7ab4f0"; + }; + } { name = "_malept_cross_spawn_promise___cross_spawn_promise_1.1.1.tgz"; path = fetchurl { @@ -98,11 +138,11 @@ }; } { - name = "_sentry_electron___electron_2.5.0.tgz"; + name = "_sentry_electron___electron_2.5.3.tgz"; path = fetchurl { - name = "_sentry_electron___electron_2.5.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/electron/-/electron-2.5.0.tgz"; - sha1 = "4168ff04ee01cb5a99ce042f3435660a510c634d"; + name = "_sentry_electron___electron_2.5.3.tgz"; + url = "https://registry.yarnpkg.com/@sentry/electron/-/electron-2.5.3.tgz"; + sha1 = "28b2e52bc82d57cb0f3623339e1fe4cbafa07b20"; }; } { @@ -170,11 +210,11 @@ }; } { - name = "_serialport_bindings___bindings_9.2.0.tgz"; + name = "_serialport_bindings___bindings_9.2.1.tgz"; path = fetchurl { - name = "_serialport_bindings___bindings_9.2.0.tgz"; - url = "https://registry.yarnpkg.com/@serialport/bindings/-/bindings-9.2.0.tgz"; - sha1 = "de6df688d0ff99bdbb86ea6db412562cb2d9ebe7"; + name = "_serialport_bindings___bindings_9.2.1.tgz"; + url = "https://registry.yarnpkg.com/@serialport/bindings/-/bindings-9.2.1.tgz"; + sha1 = "5e6b83222821f9b849512abdc8637386a6675355"; }; } { @@ -274,11 +314,11 @@ }; } { - name = "_szmarczak_http_timer___http_timer_4.0.5.tgz"; + name = "_szmarczak_http_timer___http_timer_4.0.6.tgz"; path = fetchurl { - name = "_szmarczak_http_timer___http_timer_4.0.5.tgz"; - url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.5.tgz"; - sha1 = "bfbd50211e9dfa51ba07da58a14cdfd333205152"; + name = "_szmarczak_http_timer___http_timer_4.0.6.tgz"; + url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"; + sha1 = "b4a914bb62e7c272d4e5989fe4440f812ab1d807"; }; } { @@ -290,11 +330,11 @@ }; } { - name = "_types_cacheable_request___cacheable_request_6.0.1.tgz"; + name = "_types_cacheable_request___cacheable_request_6.0.2.tgz"; path = fetchurl { - name = "_types_cacheable_request___cacheable_request_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.1.tgz"; - sha1 = "5d22f3dded1fd3a84c0bbeb5039a7419c2c91976"; + name = "_types_cacheable_request___cacheable_request_6.0.2.tgz"; + url = "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz"; + sha1 = "c324da0197de0a98a2312156536ae262429ff6b9"; }; } { @@ -306,59 +346,59 @@ }; } { - name = "_types_cookie___cookie_0.4.0.tgz"; + name = "_types_cookie___cookie_0.4.1.tgz"; path = fetchurl { - name = "_types_cookie___cookie_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.0.tgz"; - sha1 = "14f854c0f93d326e39da6e3b6f34f7d37513d108"; + name = "_types_cookie___cookie_0.4.1.tgz"; + url = "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz"; + sha1 = "bfd02c1f2224567676c1545199f87c3a861d878d"; }; } { - name = "_types_cors___cors_2.8.10.tgz"; + name = "_types_cors___cors_2.8.12.tgz"; path = fetchurl { - name = "_types_cors___cors_2.8.10.tgz"; - url = "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.10.tgz"; - sha1 = "61cc8469849e5bcdd0c7044122265c39cec10cf4"; + name = "_types_cors___cors_2.8.12.tgz"; + url = "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.12.tgz"; + sha1 = "6b2c510a7ad7039e98e7b8d3d6598f4359e5c080"; }; } { - name = "_types_debug___debug_4.1.5.tgz"; + name = "_types_debug___debug_4.1.7.tgz"; path = fetchurl { - name = "_types_debug___debug_4.1.5.tgz"; - url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz"; - sha1 = "b14efa8852b7768d898906613c23f688713e02cd"; + name = "_types_debug___debug_4.1.7.tgz"; + url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz"; + sha1 = "7cc0ea761509124709b8b2d1090d8f6c17aadb82"; }; } { - name = "_types_dns_packet___dns_packet_5.2.0.tgz"; + name = "_types_dns_packet___dns_packet_5.2.2.tgz"; path = fetchurl { - name = "_types_dns_packet___dns_packet_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/@types/dns-packet/-/dns-packet-5.2.0.tgz"; - sha1 = "a757f85cb5ac2ba0c9e7e9ebf87d0a7ba4716be2"; + name = "_types_dns_packet___dns_packet_5.2.2.tgz"; + url = "https://registry.yarnpkg.com/@types/dns-packet/-/dns-packet-5.2.2.tgz"; + sha1 = "4f16c807a8db560a9433d89ca807634748ed2d3d"; }; } { - name = "_types_fs_extra___fs_extra_9.0.11.tgz"; + name = "_types_fs_extra___fs_extra_9.0.12.tgz"; path = fetchurl { - name = "_types_fs_extra___fs_extra_9.0.11.tgz"; - url = "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.11.tgz"; - sha1 = "8cc99e103499eab9f347dbc6ca4e99fb8d2c2b87"; + name = "_types_fs_extra___fs_extra_9.0.12.tgz"; + url = "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.12.tgz"; + sha1 = "9b8f27973df8a7a3920e8461517ebf8a7d4fdfaf"; }; } { - name = "_types_glob___glob_7.1.3.tgz"; + name = "_types_glob___glob_7.1.4.tgz"; path = fetchurl { - name = "_types_glob___glob_7.1.3.tgz"; - url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz"; - sha1 = "e6ba80f36b7daad2c685acd9266382e68985c183"; + name = "_types_glob___glob_7.1.4.tgz"; + url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz"; + sha1 = "ea59e21d2ee5c517914cb4bc8e4153b99e566672"; }; } { - name = "_types_http_cache_semantics___http_cache_semantics_4.0.0.tgz"; + name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; path = fetchurl { - name = "_types_http_cache_semantics___http_cache_semantics_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz"; - sha1 = "9140779736aa2655635ee756e2467d787cfe8a2a"; + name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; + sha1 = "0ea7b61496902b95890dc4c3a116b60cb8dae812"; }; } { @@ -394,19 +434,35 @@ }; } { - name = "_types_keyv___keyv_3.1.1.tgz"; + name = "_types_keyv___keyv_3.1.2.tgz"; path = fetchurl { - name = "_types_keyv___keyv_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz"; - sha1 = "e45a45324fca9dab716ab1230ee249c9fb52cfa7"; + name = "_types_keyv___keyv_3.1.2.tgz"; + url = "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.2.tgz"; + sha1 = "5d97bb65526c20b6e0845f6b0d2ade4f28604ee5"; }; } { - name = "_types_minimatch___minimatch_3.0.4.tgz"; + name = "_types_minimatch___minimatch_3.0.5.tgz"; path = fetchurl { - name = "_types_minimatch___minimatch_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz"; - sha1 = "f0ec25dbf2f0e4b18647313ac031134ca5b24b21"; + name = "_types_minimatch___minimatch_3.0.5.tgz"; + url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz"; + sha1 = "1001cc5e6a3704b83c236027e77f2f58ea010f40"; + }; + } + { + name = "_types_minimist___minimist_1.2.2.tgz"; + path = fetchurl { + name = "_types_minimist___minimist_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz"; + sha1 = "ee771e2ba4b3dc5b372935d549fd9617bf345b8c"; + }; + } + { + name = "_types_ms___ms_0.7.31.tgz"; + path = fetchurl { + name = "_types_ms___ms_0.7.31.tgz"; + url = "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz"; + sha1 = "31b7ca6407128a3d2bbc27fe2d21b345397f6197"; }; } { @@ -418,27 +474,27 @@ }; } { - name = "_types_node___node_15.12.2.tgz"; + name = "_types_node___node_16.7.10.tgz"; path = fetchurl { - name = "_types_node___node_15.12.2.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz"; - sha1 = "1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d"; + name = "_types_node___node_16.7.10.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-16.7.10.tgz"; + sha1 = "7aa732cc47341c12a16b7d562f519c2383b6d4fc"; }; } { - name = "_types_node___node_12.20.19.tgz"; + name = "_types_node___node_12.20.23.tgz"; path = fetchurl { - name = "_types_node___node_12.20.19.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-12.20.19.tgz"; - sha1 = "538e61fc220f77ae4a4663c3d8c3cb391365c209"; + name = "_types_node___node_12.20.23.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-12.20.23.tgz"; + sha1 = "d0d5885bb885ee9b1ed114a04ea586540a1b2e2a"; }; } { - name = "_types_node___node_14.17.3.tgz"; + name = "_types_node___node_14.17.14.tgz"; path = fetchurl { - name = "_types_node___node_14.17.3.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.3.tgz"; - sha1 = "6d327abaa4be34a74e421ed6409a0ae2f47f4c3d"; + name = "_types_node___node_14.17.14.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.14.tgz"; + sha1 = "6fda9785b41570eb628bac27be4b602769a3f938"; }; } { @@ -449,6 +505,14 @@ sha1 = "06fa7319b8131b969a8da4a14c487e6f28abacf7"; }; } + { + name = "_types_normalize_package_data___normalize_package_data_2.4.1.tgz"; + path = fetchurl { + name = "_types_normalize_package_data___normalize_package_data_2.4.1.tgz"; + url = "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"; + sha1 = "d3357479a0fdfdd5907fe67e17e0a85c906e1301"; + }; + } { name = "_types_plist___plist_3.0.2.tgz"; path = fetchurl { @@ -482,43 +546,51 @@ }; } { - name = "_types_verror___verror_1.10.4.tgz"; + name = "_types_verror___verror_1.10.5.tgz"; path = fetchurl { - name = "_types_verror___verror_1.10.4.tgz"; - url = "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.4.tgz"; - sha1 = "805c0612b3a0c124cf99f517364142946b74ba3b"; + name = "_types_verror___verror_1.10.5.tgz"; + url = "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.5.tgz"; + sha1 = "2a1413aded46e67a1fe2386800e291123ed75eb1"; }; } { - name = "_types_ws___ws_7.4.4.tgz"; + name = "_types_ws___ws_7.4.7.tgz"; path = fetchurl { - name = "_types_ws___ws_7.4.4.tgz"; - url = "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.4.tgz"; - sha1 = "93e1e00824c1de2608c30e6de4303ab3b4c0c9bc"; + name = "_types_ws___ws_7.4.7.tgz"; + url = "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz"; + sha1 = "f7c390a36f7a0679aa69de2d501319f4f8d9b702"; }; } { - name = "_types_yargs_parser___yargs_parser_20.2.0.tgz"; + name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; path = fetchurl { - name = "_types_yargs_parser___yargs_parser_20.2.0.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"; - sha1 = "dd3e6699ba3237f0348cd085e4698780204842f9"; + name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; + url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"; + sha1 = "3b9ce2489919d9e4fea439b76916abc34b2df129"; }; } { - name = "_types_yargs___yargs_15.0.13.tgz"; + name = "_types_yargs___yargs_15.0.14.tgz"; path = fetchurl { - name = "_types_yargs___yargs_15.0.13.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz"; - sha1 = "34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"; + name = "_types_yargs___yargs_15.0.14.tgz"; + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz"; + sha1 = "26d821ddb89e70492160b66d10a0eb6df8f6fb06"; }; } { - name = "_types_yargs___yargs_16.0.3.tgz"; + name = "_types_yargs___yargs_16.0.4.tgz"; path = fetchurl { - name = "_types_yargs___yargs_16.0.3.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.3.tgz"; - sha1 = "4b6d35bb8e680510a7dc2308518a80ee1ef27e01"; + name = "_types_yargs___yargs_16.0.4.tgz"; + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz"; + sha1 = "26aad98dd2c2a38e421086ea9ad42b9e51642977"; + }; + } + { + name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz"; + path = fetchurl { + name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; + sha1 = "aa58042711d6e3275dd37dc597e5d31e8c290a44"; }; } { @@ -617,6 +689,14 @@ sha1 = "57d35b8686e851e2cc04c403f1c00203976a1813"; }; } + { + name = "ansi_colors___ansi_colors_4.1.1.tgz"; + path = fetchurl { + name = "ansi_colors___ansi_colors_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz"; + sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348"; + }; + } { name = "ansi_regex___ansi_regex_2.1.1.tgz"; path = fetchurl { @@ -730,11 +810,11 @@ }; } { - name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; path = fetchurl { - name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; - sha1 = "4b35c2944f062a8bfcda66410760350fe9ddfc21"; + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"; + sha1 = "b15474a932adab4ff8a50d9adfa7e4e926f21146"; }; } { @@ -777,6 +857,14 @@ sha1 = "3bbc4275dd584cc1b10809b89d4e8b63a69e7675"; }; } + { + name = "arrify___arrify_1.0.1.tgz"; + path = fetchurl { + name = "arrify___arrify_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz"; + sha1 = "898508da2226f380df904728456849c1501a4b0d"; + }; + } { name = "arrify___arrify_2.0.1.tgz"; path = fetchurl { @@ -786,11 +874,27 @@ }; } { - name = "ee6273d6b5e59365ac446089c1b59dc90da1a374"; + name = "ee6273d6b5e59365ac446089c1b59dc90da1a374"; + path = + let + repo = fetchgit { + url = "https://github.com/haakonnessjoen/artnet-node.git"; + rev = "ee6273d6b5e59365ac446089c1b59dc90da1a374"; + sha256 = "0l4pxj1d36xs84hp9isd5nxbslgcs5arv8wrng6s6m7w0awhc5pm"; + }; + in + runCommand "ee6273d6b5e59365ac446089c1b59dc90da1a374" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "asar_node___asar_node_2.1.3.tgz"; path = fetchurl { - name = "ee6273d6b5e59365ac446089c1b59dc90da1a374"; - url = "https://codeload.github.com/haakonnessjoen/artnet-node/tar.gz/ee6273d6b5e59365ac446089c1b59dc90da1a374"; - sha1 = "e3ff6f16f53b89ebe1180006bc82eea53bb597ea"; + name = "asar_node___asar_node_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/asar-node/-/asar-node-2.1.3.tgz"; + sha1 = "697f5c612fd433e894566b06f2f8614b07a4993d"; }; } { @@ -802,19 +906,11 @@ }; } { - name = "asn1_ber___asn1_ber_1.1.0.tgz"; + name = "asn1_ber___asn1_ber_1.1.1.tgz"; path = fetchurl { - name = "asn1_ber___asn1_ber_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/asn1-ber/-/asn1-ber-1.1.0.tgz"; - sha1 = "b69f91578c08afa65511124908a7a82f62c6571c"; - }; - } - { - name = "0146823069e479e90595480dc90c72cafa161ba1"; - path = fetchurl { - name = "0146823069e479e90595480dc90c72cafa161ba1"; - url = "https://codeload.github.com/evs-broadcast/node-asn1/tar.gz/0146823069e479e90595480dc90c72cafa161ba1"; - sha1 = "99ef42f4dbd5320876c75fe6cc29de46e4972345"; + name = "asn1_ber___asn1_ber_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/asn1-ber/-/asn1-ber-1.1.1.tgz"; + sha1 = "9ff68b0b430709dd487bd6bbc4508c9b2f25d3bb"; }; } { @@ -825,6 +921,22 @@ sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; }; } + { + name = "0146823069e479e90595480dc90c72cafa161ba1"; + path = + let + repo = fetchgit { + url = "https://github.com/evs-broadcast/node-asn1.git"; + rev = "0146823069e479e90595480dc90c72cafa161ba1"; + sha256 = "11dc1rnv823jn51i7ak1j3xn6pwcdk9bq1makdb0430b9g75jv4j"; + }; + in + runCommand "0146823069e479e90595480dc90c72cafa161ba1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } { name = "assert_plus___assert_plus_1.0.0.tgz"; path = fetchurl { @@ -866,11 +978,11 @@ }; } { - name = "async___async_3.2.0.tgz"; + name = "async___async_3.2.1.tgz"; path = fetchurl { - name = "async___async_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz"; - sha1 = "b3a2685c5ebb641d3de02d161002c60fc9f85720"; + name = "async___async_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/async/-/async-3.2.1.tgz"; + sha1 = "d3274ec66d107a47476a4c49136aacdb00665fc8"; }; } { @@ -930,19 +1042,19 @@ }; } { - name = "available_typed_arrays___available_typed_arrays_1.0.4.tgz"; + name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz"; path = fetchurl { - name = "available_typed_arrays___available_typed_arrays_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz"; - sha1 = "9e0ae84ecff20caae6a94a1c3bc39b955649b7a9"; + name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; + sha1 = "92f95616501069d07d10edb2fc37d3e1c65123b7"; }; } { - name = "aws_sdk___aws_sdk_2.931.0.tgz"; + name = "aws_sdk___aws_sdk_2.982.0.tgz"; path = fetchurl { - name = "aws_sdk___aws_sdk_2.931.0.tgz"; - url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.931.0.tgz"; - sha1 = "7fdc886fa7697095203fe7de16bc948a8b1c8daa"; + name = "aws_sdk___aws_sdk_2.982.0.tgz"; + url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.982.0.tgz"; + sha1 = "0c7d874ab11ed5b054a411bc01678937c6def013"; }; } { @@ -969,14 +1081,6 @@ sha1 = "3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27"; }; } - { - name = "axios___axios_0.20.0.tgz"; - path = fetchurl { - name = "axios___axios_0.20.0.tgz"; - url = "https://registry.yarnpkg.com/axios/-/axios-0.20.0.tgz"; - sha1 = "057ba30f04884694993a8cd07fa394cff11c50bd"; - }; - } { name = "axios___axios_0.21.1.tgz"; path = fetchurl { @@ -1002,13 +1106,21 @@ }; } { - name = "barco_eventmaster___barco_eventmaster_6.2.1.tgz"; - path = fetchurl { - name = "barco_eventmaster___barco_eventmaster_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/barco-eventmaster/-/barco-eventmaster-6.2.1.tgz"; - sha1 = "2a87076c57c5682bd1a025df6faac7caf5ebaa4f"; - }; - } + name = "b6c6586ec02b674b9c3051e0bc79b35d04b80748"; + path = + let + repo = fetchgit { + url = "https://github.com/willosof/node-barco-eventmaster.git"; + rev = "b6c6586ec02b674b9c3051e0bc79b35d04b80748"; + sha256 = "13c5sc9nrqc04aqa09gm1w7zbrgq3ami1rwzsv1lv5r5kzvvq99w"; + }; + in + runCommand "b6c6586ec02b674b9c3051e0bc79b35d04b80748" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } { name = "base64_arraybuffer_es6___base64_arraybuffer_es6_0.3.1.tgz"; path = fetchurl { @@ -1074,11 +1186,11 @@ }; } { - name = "binary_parser___binary_parser_1.8.0.tgz"; + name = "binary_parser___binary_parser_1.9.2.tgz"; path = fetchurl { - name = "binary_parser___binary_parser_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/binary-parser/-/binary-parser-1.8.0.tgz"; - sha1 = "ec6946f234f4bc76fa7b06860d83b834f3ceed8b"; + name = "binary_parser___binary_parser_1.9.2.tgz"; + url = "https://registry.yarnpkg.com/binary-parser/-/binary-parser-1.9.2.tgz"; + sha1 = "6474e30eb2ddee85ab042135e2d011fa80d11438"; }; } { @@ -1178,11 +1290,11 @@ }; } { - name = "boolean___boolean_3.1.2.tgz"; + name = "boolean___boolean_3.1.4.tgz"; path = fetchurl { - name = "boolean___boolean_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/boolean/-/boolean-3.1.2.tgz"; - sha1 = "e30f210a26b02458482a8cc353ab06f262a780c2"; + name = "boolean___boolean_3.1.4.tgz"; + url = "https://registry.yarnpkg.com/boolean/-/boolean-3.1.4.tgz"; + sha1 = "f51a2fb5838a99e06f9b6ec1edb674de67026435"; }; } { @@ -1258,11 +1370,11 @@ }; } { - name = "buffer_from___buffer_from_1.1.1.tgz"; + name = "buffer_from___buffer_from_1.1.2.tgz"; path = fetchurl { - name = "buffer_from___buffer_from_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; - sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; + name = "buffer_from___buffer_from_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; + sha1 = "2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"; }; } { @@ -1393,14 +1505,6 @@ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; }; } - { - name = "callback_stream___callback_stream_1.1.0.tgz"; - path = fetchurl { - name = "callback_stream___callback_stream_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/callback-stream/-/callback-stream-1.1.0.tgz"; - sha1 = "4701a51266f06e06eaa71fc17233822d875f4908"; - }; - } { name = "callsites___callsites_3.1.0.tgz"; path = fetchurl { @@ -1409,6 +1513,14 @@ sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; }; } + { + name = "camelcase_keys___camelcase_keys_7.0.1.tgz"; + path = fetchurl { + name = "camelcase_keys___camelcase_keys_7.0.1.tgz"; + url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-7.0.1.tgz"; + sha1 = "5a57e6dfb3f6c7929dad15599ee4476a7e9a3b2d"; + }; + } { name = "camelcase___camelcase_2.1.1.tgz"; path = fetchurl { @@ -1425,6 +1537,14 @@ sha1 = "e3c9b31569e106811df242f715725a1f4c494320"; }; } + { + name = "camelcase___camelcase_6.2.1.tgz"; + path = fetchurl { + name = "camelcase___camelcase_6.2.1.tgz"; + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.1.tgz"; + sha1 = "250fd350cfd555d0d2160b1d51510eaf8326e86e"; + }; + } { name = "camelcase___camelcase_6.2.0.tgz"; path = fetchurl { @@ -1490,11 +1610,11 @@ }; } { - name = "chalk___chalk_4.1.1.tgz"; + name = "chalk___chalk_4.1.2.tgz"; path = fetchurl { - name = "chalk___chalk_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz"; - sha1 = "c80b3fab28bf6371e6863325eee67e618b77e6ad"; + name = "chalk___chalk_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; + sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01"; }; } { @@ -1522,11 +1642,19 @@ }; } { - name = "chokidar___chokidar_3.5.1.tgz"; + name = "chia___chia_0.0.1.tgz"; path = fetchurl { - name = "chokidar___chokidar_3.5.1.tgz"; - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz"; - sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a"; + name = "chia___chia_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/chia/-/chia-0.0.1.tgz"; + sha1 = "6ada69aecc6579bf254075c5ac3e8b2f01c91c70"; + }; + } + { + name = "chokidar___chokidar_3.5.2.tgz"; + path = fetchurl { + name = "chokidar___chokidar_3.5.2.tgz"; + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz"; + sha1 = "dba3976fcadb016f66fd365021d91600d01c1e75"; }; } { @@ -1666,19 +1794,19 @@ }; } { - name = "color_string___color_string_1.5.5.tgz"; + name = "color_string___color_string_1.6.0.tgz"; path = fetchurl { - name = "color_string___color_string_1.5.5.tgz"; - url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz"; - sha1 = "65474a8f0e7439625f3d27a6a19d89fc45223014"; + name = "color_string___color_string_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz"; + sha1 = "c3915f61fe267672cb7e1e064c9d692219f6c312"; }; } { - name = "color___color_3.1.3.tgz"; + name = "color___color_3.2.1.tgz"; path = fetchurl { - name = "color___color_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz"; - sha1 = "ca67fb4e7b97d611dcde39eceed422067d91596e"; + name = "color___color_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz"; + sha1 = "3544dc198caf4490c3ecc9a790b54fe9ff45e164"; }; } { @@ -1705,14 +1833,6 @@ sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; }; } - { - name = "commander___commander_4.1.1.tgz"; - path = fetchurl { - name = "commander___commander_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz"; - sha1 = "9fd602bd936294e9e9ef46a3f4d6964044b18068"; - }; - } { name = "commander___commander_5.1.0.tgz"; path = fetchurl { @@ -1721,6 +1841,14 @@ sha1 = "46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"; }; } + { + name = "commander___commander_7.2.0.tgz"; + path = fetchurl { + name = "commander___commander_7.2.0.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz"; + sha1 = "a36cb57d0b501ce108e4d20559a150a391d97ab7"; + }; + } { name = "commist___commist_1.1.0.tgz"; path = fetchurl { @@ -1730,2341 +1858,4933 @@ }; } { - name = "eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0"; - path = fetchurl { - name = "eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0"; - url = "https://codeload.github.com/bitfocus/companion-module-7thsensedesign-delta/tar.gz/eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0"; - sha1 = "59a91364508ee375c9339cb6a306addc401781c9"; - }; - } - { - name = "888b7dac470f2037bf61f3982d55ef644384c418"; - path = fetchurl { - name = "888b7dac470f2037bf61f3982d55ef644384c418"; - url = "https://codeload.github.com/bitfocus/companion-module-agf-characterworks/tar.gz/888b7dac470f2037bf61f3982d55ef644384c418"; - sha1 = "cdbf18279784161fda8bcd1a06e8c85dbfbe5968"; - }; - } - { - name = "d5addc1241d300e28e1f6905bc267698ae2d2584"; - path = fetchurl { - name = "d5addc1241d300e28e1f6905bc267698ae2d2584"; - url = "https://codeload.github.com/bitfocus/companion-module-aja-helo/tar.gz/d5addc1241d300e28e1f6905bc267698ae2d2584"; - sha1 = "184eae9c786983411efd462698dcde42f7b50897"; - }; - } - { - name = "9511018462d962e2fe187f434dc9c1deae89cba9"; - path = fetchurl { - name = "9511018462d962e2fe187f434dc9c1deae89cba9"; - url = "https://codeload.github.com/bitfocus/companion-module-aja-kipro/tar.gz/9511018462d962e2fe187f434dc9c1deae89cba9"; - sha1 = "47e54fad8061259a6bbab95fdb620b483954bc81"; - }; - } - { - name = "7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7"; - path = fetchurl { - name = "7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7"; - url = "https://codeload.github.com/bitfocus/companion-module-aja-kumo/tar.gz/7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7"; - sha1 = "217d9f5ccfd406c0ccd1d0ca200836155259d787"; - }; - } - { - name = "645d3a4120341f5a4053caa7143169014008dad3"; - path = fetchurl { - name = "645d3a4120341f5a4053caa7143169014008dad3"; - url = "https://codeload.github.com/bitfocus/companion-module-allenheath-dlive-ilive/tar.gz/645d3a4120341f5a4053caa7143169014008dad3"; - sha1 = "eedd8a33a2b4fabaa101a9600f73620f7bb1aaed"; - }; - } - { - name = "8f8b20b9642f5ea840bceb8439155fca39587e17"; - path = fetchurl { - name = "8f8b20b9642f5ea840bceb8439155fca39587e17"; - url = "https://codeload.github.com/bitfocus/companion-module-allenheath-qu/tar.gz/8f8b20b9642f5ea840bceb8439155fca39587e17"; - sha1 = "ea387e2f08a2d7c0fc13454a1c50ed68325185d8"; - }; - } - { - name = "bcb380c5aa6c7ebbde8540d8774c65e02f70c331"; - path = fetchurl { - name = "bcb380c5aa6c7ebbde8540d8774c65e02f70c331"; - url = "https://codeload.github.com/bitfocus/companion-module-allenheath-sq/tar.gz/bcb380c5aa6c7ebbde8540d8774c65e02f70c331"; - sha1 = "1a5a6c85df1aca5153dc4a953f9be762e12fea47"; - }; - } - { - name = "4bfda3db526538421154eb84b437150dbf72caeb"; - path = fetchurl { - name = "4bfda3db526538421154eb84b437150dbf72caeb"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-eks500/tar.gz/4bfda3db526538421154eb84b437150dbf72caeb"; - sha1 = "c15d2558099887e0da83f421968c07e1e2be5cc2"; - }; - } - { - name = "5f9b768751f6da7ee5b8242325d501d38154ed8c"; - path = fetchurl { - name = "5f9b768751f6da7ee5b8242325d501d38154ed8c"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-livecore/tar.gz/5f9b768751f6da7ee5b8242325d501d38154ed8c"; - sha1 = "b8e7c8658a4b1a9d26805e2e6432e30c6f5f20b5"; - }; - } - { - name = "d9cf68468ee0104f3bf7541186a27dcb9d2c98b0"; - path = fetchurl { - name = "d9cf68468ee0104f3bf7541186a27dcb9d2c98b0"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-livepremier/tar.gz/d9cf68468ee0104f3bf7541186a27dcb9d2c98b0"; - sha1 = "45a8e3e0989982e6ee900873c76d0909335bf151"; - }; - } - { - name = "4644a72e34baf6a7b5b9c37878e326ca82d96642"; - path = fetchurl { - name = "4644a72e34baf6a7b5b9c37878e326ca82d96642"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-midra/tar.gz/4644a72e34baf6a7b5b9c37878e326ca82d96642"; - sha1 = "6808f460ff715a3ef9df79a3d845167dcd5d11a5"; - }; - } - { - name = "79f36637e21e89f435582c4b734e2e7066d9c0c4"; - path = fetchurl { - name = "79f36637e21e89f435582c4b734e2e7066d9c0c4"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-picturall/tar.gz/79f36637e21e89f435582c4b734e2e7066d9c0c4"; - sha1 = "d17e2aa61669d9280616a9cd114dfdcd57713f75"; - }; - } - { - name = "c04224c70b5d54e666c4b0f7d482b795b2c6c5bf"; - path = fetchurl { - name = "c04224c70b5d54e666c4b0f7d482b795b2c6c5bf"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-pls300/tar.gz/c04224c70b5d54e666c4b0f7d482b795b2c6c5bf"; - sha1 = "4c69a6ddf1b1c1805a4500ba7a00274848266a8b"; - }; - } - { - name = "693134b1c1515076de818cd5d3da7d5cf35b241f"; - path = fetchurl { - name = "693134b1c1515076de818cd5d3da7d5cf35b241f"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-vertige/tar.gz/693134b1c1515076de818cd5d3da7d5cf35b241f"; - sha1 = "8539d2685581200594b2e6ffb64baf03a2929b21"; - }; - } - { - name = "aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb"; - path = fetchurl { - name = "aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb"; - url = "https://codeload.github.com/bitfocus/companion-module-analogway-vio/tar.gz/aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb"; - sha1 = "3830eeec6fee33ed5471be7363af64b65297d662"; - }; - } - { - name = "121d069e6c292521c71ba812f1bf605b40c46b0e"; - path = fetchurl { - name = "121d069e6c292521c71ba812f1bf605b40c46b0e"; - url = "https://codeload.github.com/bitfocus/companion-module-anomes-millumin/tar.gz/121d069e6c292521c71ba812f1bf605b40c46b0e"; - sha1 = "0b6186d228003b729802fe8241379f3913062065"; - }; - } - { - name = "05428b2b8e116cc31a779777de8a0cde97b85a65"; - path = fetchurl { - name = "05428b2b8e116cc31a779777de8a0cde97b85a65"; - url = "https://codeload.github.com/bitfocus/companion-module-arkaos-mediamaster/tar.gz/05428b2b8e116cc31a779777de8a0cde97b85a65"; - sha1 = "b919414b2d9db7b2781023e9abfa1e8f51b21bc3"; - }; - } - { - name = "5f71055fd1c5d788662f8422153bb82abe09257c"; - path = fetchurl { - name = "5f71055fd1c5d788662f8422153bb82abe09257c"; - url = "https://codeload.github.com/bitfocus/companion-module-aten-matrix/tar.gz/5f71055fd1c5d788662f8422153bb82abe09257c"; - sha1 = "83dc298782873d7adcc81a8400eb53b93e1b6c08"; - }; - } - { - name = "863f264987520bb23a21c734ae618e31f818f66b"; - path = fetchurl { - name = "863f264987520bb23a21c734ae618e31f818f66b"; - url = "https://codeload.github.com/bitfocus/companion-module-audiostrom-liveprofessor/tar.gz/863f264987520bb23a21c734ae618e31f818f66b"; - sha1 = "da82274a7fee63d927bc3434718514a577a5e8f7"; - }; - } - { - name = "6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3"; - path = fetchurl { - name = "6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3"; - url = "https://codeload.github.com/bitfocus/companion-module-audivero-unityintercom-client/tar.gz/6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3"; - sha1 = "a5955511fa244da24926afd26117f06799b6b408"; - }; - } - { - name = "9f505e539643e4040ec7ce95645a4d7cfbdc67ad"; - path = fetchurl { - name = "9f505e539643e4040ec7ce95645a4d7cfbdc67ad"; - url = "https://codeload.github.com/bitfocus/companion-module-avishop-hdbaset-matrix/tar.gz/9f505e539643e4040ec7ce95645a4d7cfbdc67ad"; - sha1 = "9523c757e4c838b2851c0c9cc47b62d3426ba520"; - }; - } - { - name = "b918c3a66d77454c7321bf8167554f8cc740c680"; - path = fetchurl { - name = "b918c3a66d77454c7321bf8167554f8cc740c680"; - url = "https://codeload.github.com/bitfocus/companion-module-avolites-ai/tar.gz/b918c3a66d77454c7321bf8167554f8cc740c680"; - sha1 = "40998438b4b2e61e3a2e146ca0234089306673b4"; - }; - } - { - name = "de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed"; - path = fetchurl { - name = "de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed"; - url = "https://codeload.github.com/bitfocus/companion-module-avolites-titan/tar.gz/de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed"; - sha1 = "5328169f06c9f3e6b8157874da2d07d401b08ec8"; - }; - } - { - name = "07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708"; - path = fetchurl { - name = "07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708"; - url = "https://codeload.github.com/bitfocus/companion-module-avproconnect-acmx1616-auhd/tar.gz/07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708"; - sha1 = "7b9e90625690a31afccb5a78e7863d0a2b65a9d0"; - }; - } - { - name = "325859d6596422bdc3be256231964efc4201464f"; - path = fetchurl { - name = "325859d6596422bdc3be256231964efc4201464f"; - url = "https://codeload.github.com/bitfocus/companion-module-avstumpfl-pixera/tar.gz/325859d6596422bdc3be256231964efc4201464f"; - sha1 = "b2a28067841098f550b741d59e33822a213415e3"; - }; - } - { - name = "19c822eb8a6c68a9b78ea67aa2782ddc621c37b4"; - path = fetchurl { - name = "19c822eb8a6c68a9b78ea67aa2782ddc621c37b4"; - url = "https://codeload.github.com/bitfocus/companion-module-axis-ptz/tar.gz/19c822eb8a6c68a9b78ea67aa2782ddc621c37b4"; - sha1 = "652f5e09771cd6992785d09cc60e5aed298c627a"; - }; - } - { - name = "a020f5152e5ec88a4aba091e1c246308e1271d94"; - path = fetchurl { - name = "a020f5152e5ec88a4aba091e1c246308e1271d94"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-dcs/tar.gz/a020f5152e5ec88a4aba091e1c246308e1271d94"; - sha1 = "cb24ddf5702613382f739ddcb43961e0a1264417"; - }; - } - { - name = "543453a0eb05aa8271f140495f364e796c22f734"; - path = fetchurl { - name = "543453a0eb05aa8271f140495f364e796c22f734"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-dp/tar.gz/543453a0eb05aa8271f140495f364e796c22f734"; - sha1 = "a67cdf7f99e90453ba9b379a14253cf54537faf7"; - }; - } - { - name = "3d2f214752d56ec8dd8585e85e0705c49a50dcd0"; - path = fetchurl { - name = "3d2f214752d56ec8dd8585e85e0705c49a50dcd0"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-encore/tar.gz/3d2f214752d56ec8dd8585e85e0705c49a50dcd0"; - sha1 = "ad2a328997916eee850b513d34a4dc43d35b97c4"; - }; - } - { - name = "09dc986cac1c18648bfd1eae2200054e43ef49ac"; - path = fetchurl { - name = "09dc986cac1c18648bfd1eae2200054e43ef49ac"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-eventmaster-xml/tar.gz/09dc986cac1c18648bfd1eae2200054e43ef49ac"; - sha1 = "04036c549342d54921bf0a5d219a6b5be8f1cbdc"; - }; - } - { - name = "82cd5113c5d34fc0331696926f4f3bb4b8d0070f"; - path = fetchurl { - name = "82cd5113c5d34fc0331696926f4f3bb4b8d0070f"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-eventmaster/tar.gz/82cd5113c5d34fc0331696926f4f3bb4b8d0070f"; - sha1 = "b585028a002d9dfb0bd45c93c564324ea8e9514a"; - }; - } - { - name = "db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6"; - path = fetchurl { - name = "db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-hdx/tar.gz/db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6"; - sha1 = "713ef081e4f4bbe193cacf1ed38cba916ab2b317"; - }; - } - { - name = "ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3"; - path = fetchurl { - name = "ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-imagepro/tar.gz/ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3"; - sha1 = "1cae599b176fd47ff0b22ab23eb02bc8c1340c10"; - }; - } - { - name = "83bb6bf3187e43b33006e2b18349871669b7cd47"; - path = fetchurl { - name = "83bb6bf3187e43b33006e2b18349871669b7cd47"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-matrixpro/tar.gz/83bb6bf3187e43b33006e2b18349871669b7cd47"; - sha1 = "18161b3569cbd3d0c649ff9843e597d2ce05a7dc"; - }; - } - { - name = "65a95e65c275ecefcdf8768c259f4c3d5109110d"; - path = fetchurl { - name = "65a95e65c275ecefcdf8768c259f4c3d5109110d"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-pds/tar.gz/65a95e65c275ecefcdf8768c259f4c3d5109110d"; - sha1 = "e0e5100ba87df2f1a64019e9b1fcb361c1a2b024"; - }; - } - { - name = "580d7f1304dc02210a3baa0096a9fc4f649b25c2"; - path = fetchurl { - name = "580d7f1304dc02210a3baa0096a9fc4f649b25c2"; - url = "https://codeload.github.com/bitfocus/companion-module-barco-pulse/tar.gz/580d7f1304dc02210a3baa0096a9fc4f649b25c2"; - sha1 = "299a8b390951ed4f538e5283a0fa2d99fe5764d6"; - }; - } - { - name = "0546bca114e11bcea2a9f66cb10e3cada0b14a08"; - path = fetchurl { - name = "0546bca114e11bcea2a9f66cb10e3cada0b14a08"; - url = "https://codeload.github.com/bitfocus/companion-module-bbc-raven/tar.gz/0546bca114e11bcea2a9f66cb10e3cada0b14a08"; - sha1 = "697cd2a6eba92a1b456056fb208f6f318814940e"; - }; - } - { - name = "322fb2e32bd8a4b39592817b6472581084c5f8fa"; - path = fetchurl { - name = "322fb2e32bd8a4b39592817b6472581084c5f8fa"; - url = "https://codeload.github.com/bitfocus/companion-module-behringer-wing/tar.gz/322fb2e32bd8a4b39592817b6472581084c5f8fa"; - sha1 = "bdc2565a814db44101ca884f696008b21f015b01"; - }; - } - { - name = "9f5105503152247a721666309721feb9eaa81961"; - path = fetchurl { - name = "9f5105503152247a721666309721feb9eaa81961"; - url = "https://codeload.github.com/bitfocus/companion-module-behringer-x32/tar.gz/9f5105503152247a721666309721feb9eaa81961"; - sha1 = "274bb302c271ed3b07024773e915e4187067fd2d"; - }; - } - { - name = "927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c"; - path = fetchurl { - name = "927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c"; - url = "https://codeload.github.com/bitfocus/companion-module-behringer-xair/tar.gz/927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c"; - sha1 = "c1946579de8d1d2bc202e934703d5ff8e9489453"; - }; - } - { - name = "8824cd4569c78ed0a42c93e730b533dd2005d179"; - path = fetchurl { - name = "8824cd4569c78ed0a42c93e730b533dd2005d179"; - url = "https://codeload.github.com/bitfocus/companion-module-biamp-audia/tar.gz/8824cd4569c78ed0a42c93e730b533dd2005d179"; - sha1 = "74824c6785439e9d1b40448a46d080e773834426"; - }; - } - { - name = "5f59b86bf2b193b0c7d098fd6df0cd74497c669a"; - path = fetchurl { - name = "5f59b86bf2b193b0c7d098fd6df0cd74497c669a"; - url = "https://codeload.github.com/bitfocus/companion-module-birddog-studio/tar.gz/5f59b86bf2b193b0c7d098fd6df0cd74497c669a"; - sha1 = "478f7637180ed75ad180dbe3fc24598fb881e4b6"; - }; - } - { - name = "fb156bf173c92bcef03e19a4771b44064c27eb33"; - path = fetchurl { - name = "fb156bf173c92bcef03e19a4771b44064c27eb33"; - url = "https://codeload.github.com/bitfocus/companion-module-birddog-visca/tar.gz/fb156bf173c92bcef03e19a4771b44064c27eb33"; - sha1 = "becf3bf13a4341077906518d31a89c0e6c643cd7"; - }; - } - { - name = "1da72c0471769d015e80440dac4361b839317308"; - path = fetchurl { - name = "1da72c0471769d015e80440dac4361b839317308"; - url = "https://codeload.github.com/bitfocus/companion-module-bitfocus-companion/tar.gz/1da72c0471769d015e80440dac4361b839317308"; - sha1 = "9d970a85d28a836ab7d8712979a27dc045aa0a17"; - }; - } - { - name = "10ab10c502f9c46e1fc965f36c024e8c335c41ce"; - path = fetchurl { - name = "10ab10c502f9c46e1fc965f36c024e8c335c41ce"; - url = "https://codeload.github.com/bitfocus/companion-module-bitfocus-snapshot/tar.gz/10ab10c502f9c46e1fc965f36c024e8c335c41ce"; - sha1 = "5f8b1c593fa3a9891b65e13fbb05a9e59560b2f8"; - }; - } - { - name = "5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2"; - path = fetchurl { - name = "5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2"; - url = "https://codeload.github.com/bitfocus/companion-module-blackbox-boxilla/tar.gz/5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2"; - sha1 = "5c016ea0928297a8d423db86af7edec4dc94450e"; - }; - } - { - name = "850a80132d8dba3da7756b743e56c871648cb694"; - path = fetchurl { - name = "850a80132d8dba3da7756b743e56c871648cb694"; - url = "https://codeload.github.com/bitfocus/companion-module-blackdiamondvideo-phantom800/tar.gz/850a80132d8dba3da7756b743e56c871648cb694"; - sha1 = "3819721d7f04d8bf13c9c78e89922b8b5ad0a858"; - }; - } - { - name = "9711fcd43b0458c92d0c140e27213dc29837eb5e"; - path = fetchurl { - name = "9711fcd43b0458c92d0c140e27213dc29837eb5e"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-atem/tar.gz/9711fcd43b0458c92d0c140e27213dc29837eb5e"; - sha1 = "1f4e79a7b9bd77d2401a24804350484cbe68583d"; - }; - } - { - name = "99da63978df4770532677ce71587966d9ba1d098"; - path = fetchurl { - name = "99da63978df4770532677ce71587966d9ba1d098"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-audiomonitor/tar.gz/99da63978df4770532677ce71587966d9ba1d098"; - sha1 = "bae0abe2f21cbd2aaac6fc881c96e352432298dd"; - }; - } - { - name = "32523bf393ffe50cf316537bfa4185746fd17bb7"; - path = fetchurl { - name = "32523bf393ffe50cf316537bfa4185746fd17bb7"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-hyperdeck/tar.gz/32523bf393ffe50cf316537bfa4185746fd17bb7"; - sha1 = "4158db30a83e9c7fe7a963a4e3c0c0beb9fc6388"; - }; - } - { - name = "7b40bc40202779e0ff83a7f36912815da0f2fe35"; - path = fetchurl { - name = "7b40bc40202779e0ff83a7f36912815da0f2fe35"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-multiview16/tar.gz/7b40bc40202779e0ff83a7f36912815da0f2fe35"; - sha1 = "7797557fdd5bd5542786be533f230dd485307be4"; - }; - } - { - name = "9b36c8c7222e5252802cce85e85673636c2a3a29"; - path = fetchurl { - name = "9b36c8c7222e5252802cce85e85673636c2a3a29"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-multiview4/tar.gz/9b36c8c7222e5252802cce85e85673636c2a3a29"; - sha1 = "6c755c9c189fe420d515741a8dbeedd094f8b6d1"; - }; - } - { - name = "200ebc7a4a544ae07c742002bc7605e14495a319"; - path = fetchurl { - name = "200ebc7a4a544ae07c742002bc7605e14495a319"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-smartview/tar.gz/200ebc7a4a544ae07c742002bc7605e14495a319"; - sha1 = "b08d0414b0133102d78996d7826c398d9a675311"; - }; - } - { - name = "c0a78e6ace2c65ab8ce052ac50fce6bbe7971047"; - path = fetchurl { - name = "c0a78e6ace2c65ab8ce052ac50fce6bbe7971047"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-teranex/tar.gz/c0a78e6ace2c65ab8ce052ac50fce6bbe7971047"; - sha1 = "a85edc56289e383f8ee26f9c001f8b1366450faa"; - }; - } - { - name = "eacc96e714a9c0211cab2f29a73f923ff9755c29"; - path = fetchurl { - name = "eacc96e714a9c0211cab2f29a73f923ff9755c29"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-videohub/tar.gz/eacc96e714a9c0211cab2f29a73f923ff9755c29"; - sha1 = "116a587713ed59e72c670dde4039049111b3fddf"; - }; - } - { - name = "9433fd81bd197fbe652344b8b9c6e7b8b63f0b60"; - path = fetchurl { - name = "9433fd81bd197fbe652344b8b9c6e7b8b63f0b60"; - url = "https://codeload.github.com/bitfocus/companion-module-bmd-webpresenterhd/tar.gz/9433fd81bd197fbe652344b8b9c6e7b8b63f0b60"; - sha1 = "4bfeae0306407036a6612b2f4b3e4606b3eec9cd"; - }; - } - { - name = "f5b5ff67c08c5f430649c7d68a2734c1e9f391ea"; - path = fetchurl { - name = "f5b5ff67c08c5f430649c7d68a2734c1e9f391ea"; - url = "https://codeload.github.com/bitfocus/companion-module-boinx-mimolive/tar.gz/f5b5ff67c08c5f430649c7d68a2734c1e9f391ea"; - sha1 = "f0281446cdfa0b90ffd9a0e24e9a75f9097350f4"; - }; - } - { - name = "68aa2e20eebd67367c71ea1e30260988508eb854"; - path = fetchurl { - name = "68aa2e20eebd67367c71ea1e30260988508eb854"; - url = "https://codeload.github.com/bitfocus/companion-module-borealsystems-director/tar.gz/68aa2e20eebd67367c71ea1e30260988508eb854"; - sha1 = "c282765dcd460db9dccf9de83626242c3c71d432"; - }; - } - { - name = "56d86cca903aa834de763308ad27b5ad1222bd5c"; - path = fetchurl { - name = "56d86cca903aa834de763308ad27b5ad1222bd5c"; - url = "https://codeload.github.com/bitfocus/companion-module-brightsign-player/tar.gz/56d86cca903aa834de763308ad27b5ad1222bd5c"; - sha1 = "8da3c8f4f14a1278083d5e26f378ba6d63941df7"; - }; - } - { - name = "f8d4b454731a01e6efa4f58f6f57e801458f7313"; - path = fetchurl { - name = "f8d4b454731a01e6efa4f58f6f57e801458f7313"; - url = "https://codeload.github.com/bitfocus/companion-module-brompton-tessera/tar.gz/f8d4b454731a01e6efa4f58f6f57e801458f7313"; - sha1 = "d4291d1261f24aff2c68c970db8d8f18d0f10ee7"; - }; - } - { - name = "714a2b174f026b82fbd8c27a1d987dd4b2a7139d"; - path = fetchurl { - name = "714a2b174f026b82fbd8c27a1d987dd4b2a7139d"; - url = "https://codeload.github.com/bitfocus/companion-module-canon-xf/tar.gz/714a2b174f026b82fbd8c27a1d987dd4b2a7139d"; - sha1 = "2eaa89a9e19bba7ef9a9e37c49c247c3445ec028"; - }; - } - { - name = "a023aa591c61450fbfc0e029c1d07e64f4c64dfb"; - path = fetchurl { - name = "a023aa591c61450fbfc0e029c1d07e64f4c64dfb"; - url = "https://codeload.github.com/bitfocus/companion-module-casparcg-server/tar.gz/a023aa591c61450fbfc0e029c1d07e64f4c64dfb"; - sha1 = "d493dd93f56de7c9e679b6246221a4adec1eee40"; - }; - } - { - name = "f63b96900e569a79c1430d13726652c9bd9b9a6f"; - path = fetchurl { - name = "f63b96900e569a79c1430d13726652c9bd9b9a6f"; - url = "https://codeload.github.com/bitfocus/companion-module-chamsys-magicq-osc/tar.gz/f63b96900e569a79c1430d13726652c9bd9b9a6f"; - sha1 = "4c132c1a8994129b86d9d8f81b1800dd64b860c9"; - }; - } - { - name = "6b4d757122dc66b8d93e3e96da225d56d8f79af8"; - path = fetchurl { - name = "6b4d757122dc66b8d93e3e96da225d56d8f79af8"; - url = "https://codeload.github.com/bitfocus/companion-module-chamsys-magicq-udp/tar.gz/6b4d757122dc66b8d93e3e96da225d56d8f79af8"; - sha1 = "83c8e319cc529e3a2bd4eada8303ad141c4d114d"; - }; - } - { - name = "237193dc1d6dda650d46ee43c1efdadd75724e06"; - path = fetchurl { - name = "237193dc1d6dda650d46ee43c1efdadd75724e06"; - url = "https://codeload.github.com/bitfocus/companion-module-christie-pandorasbox/tar.gz/237193dc1d6dda650d46ee43c1efdadd75724e06"; - sha1 = "e0f144af6a5b518136dfe22fde919f989cc635eb"; - }; - } - { - name = "4f487399f6233cac8dec0b220230ce3e43ebd70d"; - path = fetchurl { - name = "4f487399f6233cac8dec0b220230ce3e43ebd70d"; - url = "https://codeload.github.com/bitfocus/companion-module-christie-projector/tar.gz/4f487399f6233cac8dec0b220230ce3e43ebd70d"; - sha1 = "c5178ab0f1bd60ccac651cbfbc357f3880d52681"; - }; - } - { - name = "1828e8c5db6f89accf1be43c5044ae832a56f03c"; - path = fetchurl { - name = "1828e8c5db6f89accf1be43c5044ae832a56f03c"; - url = "https://codeload.github.com/bitfocus/companion-module-christie-spyder/tar.gz/1828e8c5db6f89accf1be43c5044ae832a56f03c"; - sha1 = "c06784394f12d5534e46d250fecb78cedc4cb948"; - }; - } - { - name = "e28f726ce87ef54604482930622fb14f471a2f88"; - path = fetchurl { - name = "e28f726ce87ef54604482930622fb14f471a2f88"; - url = "https://codeload.github.com/bitfocus/companion-module-christie-wd/tar.gz/e28f726ce87ef54604482930622fb14f471a2f88"; - sha1 = "9038d0bc3aa917768bcfae3ccbab2fff4cdd1d11"; - }; - } - { - name = "4018eac85861e8f27f391937bf5e14da5c40b2f1"; - path = fetchurl { - name = "4018eac85861e8f27f391937bf5e14da5c40b2f1"; - url = "https://codeload.github.com/bitfocus/companion-module-cisco-cms/tar.gz/4018eac85861e8f27f391937bf5e14da5c40b2f1"; - sha1 = "67b85d40696018ac69fe6a12441c7718bfd64579"; - }; - } - { - name = "6a41d714f16cfb44ad24a5506ffd128dc74aa52b"; - path = fetchurl { - name = "6a41d714f16cfb44ad24a5506ffd128dc74aa52b"; - url = "https://codeload.github.com/bitfocus/companion-module-cisco-webex-websocket/tar.gz/6a41d714f16cfb44ad24a5506ffd128dc74aa52b"; - sha1 = "51089a6ee50ee27c1a72fad58cf6f86af7005cbb"; - }; - } - { - name = "12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb"; - path = fetchurl { - name = "12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb"; - url = "https://codeload.github.com/bitfocus/companion-module-cockos-reaper/tar.gz/12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb"; - sha1 = "486bf03620caa241266d6420646f664980280724"; - }; - } - { - name = "ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872"; - path = fetchurl { - name = "ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872"; - url = "https://codeload.github.com/bitfocus/companion-module-connect-webcaster/tar.gz/ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872"; - sha1 = "47ef8f6c8ba4c1b5edbe48dc891b7abae676cf97"; - }; - } - { - name = "f141960577fb13394736df6d37dfa320e1459de4"; - path = fetchurl { - name = "f141960577fb13394736df6d37dfa320e1459de4"; - url = "https://codeload.github.com/bitfocus/companion-module-crystal-scte/tar.gz/f141960577fb13394736df6d37dfa320e1459de4"; - sha1 = "499867d8a2124d83f68437f84ca9b09168384000"; - }; - } - { - name = "96dc82021eaa516957515f6fb8a942ed545192fd"; - path = fetchurl { - name = "96dc82021eaa516957515f6fb8a942ed545192fd"; - url = "https://codeload.github.com/bitfocus/companion-module-dahuasecurity-ptz/tar.gz/96dc82021eaa516957515f6fb8a942ed545192fd"; - sha1 = "2ec9ad9a95d33c24706cf5ad021a7ec17aef463b"; - }; - } - { - name = "4626e86aa2bde3b0578af114e31c3d201fb3c47d"; - path = fetchurl { - name = "4626e86aa2bde3b0578af114e31c3d201fb3c47d"; - url = "https://codeload.github.com/bitfocus/companion-module-dalite-scb/tar.gz/4626e86aa2bde3b0578af114e31c3d201fb3c47d"; - sha1 = "939eb4d8e6e0406a7114fdec659c1771bb9ed6ed"; - }; - } - { - name = "a1f3d33361464a771eedc09aad76df3d7cabd5bf"; - path = fetchurl { - name = "a1f3d33361464a771eedc09aad76df3d7cabd5bf"; - url = "https://codeload.github.com/bitfocus/companion-module-dashare-multiplay/tar.gz/a1f3d33361464a771eedc09aad76df3d7cabd5bf"; - sha1 = "c784bbfe7fb4be377b4134bbf7efba8f32c9610e"; - }; - } - { - name = "3cd19f7f1e57a0fd89df7a17aa99c3d7df404227"; - path = fetchurl { - name = "3cd19f7f1e57a0fd89df7a17aa99c3d7df404227"; - url = "https://codeload.github.com/bitfocus/companion-module-datapath-fx4/tar.gz/3cd19f7f1e57a0fd89df7a17aa99c3d7df404227"; - sha1 = "d085227aaf83ca2a87a380c556f1c0fbce52acf7"; - }; - } - { - name = "ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7"; - path = fetchurl { - name = "ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7"; - url = "https://codeload.github.com/bitfocus/companion-module-dataton-watchout/tar.gz/ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7"; - sha1 = "9535ffbb2ccbde49c26354a577ea12bf9d6450b5"; - }; - } - { - name = "94780f84e2eabf20cb3d35a241fdd254b9c3d0c3"; - path = fetchurl { - name = "94780f84e2eabf20cb3d35a241fdd254b9c3d0c3"; - url = "https://codeload.github.com/bitfocus/companion-module-datavideo-dvip/tar.gz/94780f84e2eabf20cb3d35a241fdd254b9c3d0c3"; - sha1 = "7802873718ec93d16232b4dc4401447b8af87fd1"; - }; - } - { - name = "9daac733f2d770d499ad7ae19073c1198d0b055b"; - path = fetchurl { - name = "9daac733f2d770d499ad7ae19073c1198d0b055b"; - url = "https://codeload.github.com/bitfocus/companion-module-datavideo-visca/tar.gz/9daac733f2d770d499ad7ae19073c1198d0b055b"; - sha1 = "ba11e28a9ce00216c3426231d16082b1c96f77ba"; - }; - } - { - name = "b739afeecd87a7e92e3347a2476e461e2be7feb0"; - path = fetchurl { - name = "b739afeecd87a7e92e3347a2476e461e2be7feb0"; - url = "https://codeload.github.com/bitfocus/companion-module-dcc-ex-commandstation/tar.gz/b739afeecd87a7e92e3347a2476e461e2be7feb0"; - sha1 = "14c2c300c8673c90ee7a9d93a5f3d62650015072"; - }; - } - { - name = "0432dfa59610b69d3eb23d67e7cb576953d1c7df"; - path = fetchurl { - name = "0432dfa59610b69d3eb23d67e7cb576953d1c7df"; - url = "https://codeload.github.com/bitfocus/companion-module-denon-dn-500bd-mkii/tar.gz/0432dfa59610b69d3eb23d67e7cb576953d1c7df"; - sha1 = "f693be668cf713c993edd7665972a980f7a47fc4"; - }; - } - { - name = "d7e8b67fa0eeddefa73d7a90dd9561f06b25029a"; - path = fetchurl { - name = "d7e8b67fa0eeddefa73d7a90dd9561f06b25029a"; - url = "https://codeload.github.com/bitfocus/companion-module-denon-receiver/tar.gz/d7e8b67fa0eeddefa73d7a90dd9561f06b25029a"; - sha1 = "339de162cd357d3eb84ef72eed30c99f3ec81749"; - }; - } - { - name = "0474a787c65d169010b4f99190a78fd680f13f34"; - path = fetchurl { - name = "0474a787c65d169010b4f99190a78fd680f13f34"; - url = "https://codeload.github.com/bitfocus/companion-module-denon-recorder/tar.gz/0474a787c65d169010b4f99190a78fd680f13f34"; - sha1 = "c9ca6e19a973662bba51068873d55724c680557c"; - }; - } - { - name = "e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6"; - path = fetchurl { - name = "e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6"; - url = "https://codeload.github.com/bitfocus/companion-module-depili-clock-8001/tar.gz/e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6"; - sha1 = "e453fd706c5172808f3a3b18139365dcf208883a"; - }; - } - { - name = "a9948be17ba7b0cf6fda91318cded6a30b098a1d"; - path = fetchurl { - name = "a9948be17ba7b0cf6fda91318cded6a30b098a1d"; - url = "https://codeload.github.com/bitfocus/companion-module-dexon-dimax/tar.gz/a9948be17ba7b0cf6fda91318cded6a30b098a1d"; - sha1 = "1f5e538e624e080a097daa852a8e54f492f894d8"; - }; - } - { - name = "3c3c336e8ad8db8f867b54e0255f254f96d147d8"; - path = fetchurl { - name = "3c3c336e8ad8db8f867b54e0255f254f96d147d8"; - url = "https://codeload.github.com/bitfocus/companion-module-dexon-divip/tar.gz/3c3c336e8ad8db8f867b54e0255f254f96d147d8"; - sha1 = "96b990a4af5873911dc507d9ece3dac4246c7586"; - }; - } - { - name = "40e3948d1648caf1bbdf3760de92da72b68f3209"; - path = fetchurl { - name = "40e3948d1648caf1bbdf3760de92da72b68f3209"; - url = "https://codeload.github.com/bitfocus/companion-module-dexon-matrix/tar.gz/40e3948d1648caf1bbdf3760de92da72b68f3209"; - sha1 = "e3496e4b306ec5b67d4132dff0ca39cc53662337"; - }; - } - { - name = "514f4c56acc15175c0287499d8e918028b6268a6"; - path = fetchurl { - name = "514f4c56acc15175c0287499d8e918028b6268a6"; - url = "https://codeload.github.com/bitfocus/companion-module-digico-osc/tar.gz/514f4c56acc15175c0287499d8e918028b6268a6"; - sha1 = "6960a088ff38e43b64c7c6d8090fba2275fc852d"; - }; - } - { - name = "6c36f8e604597a839ed9e83fad1649b93e96df6f"; - path = fetchurl { - name = "6c36f8e604597a839ed9e83fad1649b93e96df6f"; - url = "https://codeload.github.com/bitfocus/companion-module-digitalprojection-highlight/tar.gz/6c36f8e604597a839ed9e83fad1649b93e96df6f"; - sha1 = "66dd05f0ccb7c8f60410b2cf8dd09f84f0219733"; - }; - } - { - name = "f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c"; - path = fetchurl { - name = "f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c"; - url = "https://codeload.github.com/bitfocus/companion-module-disguise-mtc/tar.gz/f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c"; - sha1 = "6b3bbba29e50ef917dd780a9fc8dd4dbe1b9a435"; - }; - } - { - name = "8a4cebf439d6627ae674dddd09d035bd64ced899"; - path = fetchurl { - name = "8a4cebf439d6627ae674dddd09d035bd64ced899"; - url = "https://codeload.github.com/bitfocus/companion-module-disguise/tar.gz/8a4cebf439d6627ae674dddd09d035bd64ced899"; - sha1 = "5e5b7180f394e88c2d7e2c018080b1bc7cac454b"; - }; - } - { - name = "ab1093635116c118616aa17ce6acca1ae9e6a4ce"; - path = fetchurl { - name = "ab1093635116c118616aa17ce6acca1ae9e6a4ce"; - url = "https://codeload.github.com/bitfocus/companion-module-dolby-cinemaprocessor/tar.gz/ab1093635116c118616aa17ce6acca1ae9e6a4ce"; - sha1 = "d73e54e9fdd257082db2f6dc969ad594f914f75d"; - }; - } - { - name = "934f5542f940a4522ef5309025cbab496d01232a"; - path = fetchurl { - name = "934f5542f940a4522ef5309025cbab496d01232a"; - url = "https://codeload.github.com/bitfocus/companion-module-draco-tera/tar.gz/934f5542f940a4522ef5309025cbab496d01232a"; - sha1 = "13ad0e1098e6e1b05cfc3ff84115bf492bf263c8"; - }; - } - { - name = "073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c"; - path = fetchurl { - name = "073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c"; - url = "https://codeload.github.com/bitfocus/companion-module-dsan-limitimer/tar.gz/073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c"; - sha1 = "fae3ab049970f8ebe71c2fde096d627f18659ebf"; - }; - } - { - name = "c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc"; - path = fetchurl { - name = "c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc"; - url = "https://codeload.github.com/bitfocus/companion-module-dsan-perfectcue/tar.gz/c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc"; - sha1 = "6c3a099121b73717ccd37e16a2b15448c03f0885"; - }; - } - { - name = "a4b06682c8a9434e2c8d7683b6fb1330814f402d"; - path = fetchurl { - name = "a4b06682c8a9434e2c8d7683b6fb1330814f402d"; - url = "https://codeload.github.com/bitfocus/companion-module-dtvideolabs-playbackproplus/tar.gz/a4b06682c8a9434e2c8d7683b6fb1330814f402d"; - sha1 = "443ebff381bd1eae8de7c34d9d1bcb7f3031db8a"; - }; - } - { - name = "601a762cb33e0f1b8915c31c3ad9523b649e7c9c"; - path = fetchurl { - name = "601a762cb33e0f1b8915c31c3ad9523b649e7c9c"; - url = "https://codeload.github.com/bitfocus/companion-module-elgato-keylight/tar.gz/601a762cb33e0f1b8915c31c3ad9523b649e7c9c"; - sha1 = "30e615be12030cb86a1221f2e6fa833d6df2382d"; - }; - } - { - name = "c802053abf5442ac2c1a84fbb4d8f3d160a23e5e"; - path = fetchurl { - name = "c802053abf5442ac2c1a84fbb4d8f3d160a23e5e"; - url = "https://codeload.github.com/bitfocus/companion-module-epiphan-pearl/tar.gz/c802053abf5442ac2c1a84fbb4d8f3d160a23e5e"; - sha1 = "5834e6709b7cd95406fd9a775610aae65a63d7a4"; - }; - } - { - name = "a6994643c834719af05a1a421fccb89f31c7f0da"; - path = fetchurl { - name = "a6994643c834719af05a1a421fccb89f31c7f0da"; - url = "https://codeload.github.com/bitfocus/companion-module-etc-eos/tar.gz/a6994643c834719af05a1a421fccb89f31c7f0da"; - sha1 = "cddc57014b9cfec5a96007d1dc46bf948e597b91"; - }; - } - { - name = "69351707e61a36bb327ccc1fada77fbfd9041a2f"; - path = fetchurl { - name = "69351707e61a36bb327ccc1fada77fbfd9041a2f"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-dxp/tar.gz/69351707e61a36bb327ccc1fada77fbfd9041a2f"; - sha1 = "9e29002b732c3e410457e584b049dbe7b026701f"; - }; - } - { - name = "fbdf9bee21569473c4688afe97d80e564570090b"; - path = fetchurl { - name = "fbdf9bee21569473c4688afe97d80e564570090b"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-in1604/tar.gz/fbdf9bee21569473c4688afe97d80e564570090b"; - sha1 = "dd6e97338d3ed7ac7d2d6173e7780bdd1f92ad40"; - }; - } - { - name = "b494cc12de56d211ca2d15981e978ae5c6ba1e73"; - path = fetchurl { - name = "b494cc12de56d211ca2d15981e978ae5c6ba1e73"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-ipl-t-pcs4/tar.gz/b494cc12de56d211ca2d15981e978ae5c6ba1e73"; - sha1 = "58f878ca080e525f26d86793900c2ee399cb9678"; - }; - } - { - name = "1881129abb9f7925bdfa466005b6b7909d287e13"; - path = fetchurl { - name = "1881129abb9f7925bdfa466005b6b7909d287e13"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-smp111/tar.gz/1881129abb9f7925bdfa466005b6b7909d287e13"; - sha1 = "a1bc303243a735374adfe62aa303f2d436643f36"; - }; - } - { - name = "1a6bea4583881a67d6435b67807b13c45105ca46"; - path = fetchurl { - name = "1a6bea4583881a67d6435b67807b13c45105ca46"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-smp351/tar.gz/1a6bea4583881a67d6435b67807b13c45105ca46"; - sha1 = "5d9d8e12f019293e594b8812922b035c4f569362"; - }; - } - { - name = "d86f28cea84ce0fe38e8073706520b8077dc7a1e"; - path = fetchurl { - name = "d86f28cea84ce0fe38e8073706520b8077dc7a1e"; - url = "https://codeload.github.com/bitfocus/companion-module-extron-smx/tar.gz/d86f28cea84ce0fe38e8073706520b8077dc7a1e"; - sha1 = "8fb971e337038e701d045ab830879e7d60d1691d"; - }; - } - { - name = "fc6a89e2f054598ed39685ba17546ec110215046"; - path = fetchurl { - name = "fc6a89e2f054598ed39685ba17546ec110215046"; - url = "https://codeload.github.com/bitfocus/companion-module-faithchapel-videoplayoutserver/tar.gz/fc6a89e2f054598ed39685ba17546ec110215046"; - sha1 = "fe0b2f254ad5136c0a9e3de60a9e5cc9d7a738e1"; - }; - } - { - name = "fc0a1203ff8f20d563e0a62be206cd8b3c24e560"; - path = fetchurl { - name = "fc0a1203ff8f20d563e0a62be206cd8b3c24e560"; - url = "https://codeload.github.com/bitfocus/companion-module-figure53-go-button/tar.gz/fc0a1203ff8f20d563e0a62be206cd8b3c24e560"; - sha1 = "8d218d86b64aab62f7498b14fb4dbb401bf269ff"; - }; - } - { - name = "603f380b302c125cb3634608dd68508938f03439"; - path = fetchurl { - name = "603f380b302c125cb3634608dd68508938f03439"; - url = "https://codeload.github.com/bitfocus/companion-module-figure53-qlab-advance/tar.gz/603f380b302c125cb3634608dd68508938f03439"; - sha1 = "59d00757080009584d3c1310cf32f196d18810fd"; - }; - } - { - name = "2d644edfd87795a5cdbfb9b00cfb70365e6112f4"; - path = fetchurl { - name = "2d644edfd87795a5cdbfb9b00cfb70365e6112f4"; - url = "https://codeload.github.com/bitfocus/companion-module-figure53-qlab/tar.gz/2d644edfd87795a5cdbfb9b00cfb70365e6112f4"; - sha1 = "682b2a9ad985cd61eba7d669e7d9e290ca94c6c3"; - }; - } - { - name = "cb94f853a66e56d548393e407e8ced9fb6c67379"; - path = fetchurl { - name = "cb94f853a66e56d548393e407e8ced9fb6c67379"; - url = "https://codeload.github.com/bitfocus/companion-module-figure53-qview/tar.gz/cb94f853a66e56d548393e407e8ced9fb6c67379"; - sha1 = "7b9a93f3c03f99e60aa4c233d7eaceda40c82258"; - }; - } - { - name = "5524298aeac542289332bdef4d7259b6f1adfdf3"; - path = fetchurl { - name = "5524298aeac542289332bdef4d7259b6f1adfdf3"; - url = "https://codeload.github.com/bitfocus/companion-module-folivora-btt/tar.gz/5524298aeac542289332bdef4d7259b6f1adfdf3"; - sha1 = "9b295f255288b75abad4383ab9e9db4755b0f031"; - }; - } - { - name = "950833097490b4ad701dcd609e78056875d4b3ec"; - path = fetchurl { - name = "950833097490b4ad701dcd609e78056875d4b3ec"; - url = "https://codeload.github.com/bitfocus/companion-module-fora-hvs/tar.gz/950833097490b4ad701dcd609e78056875d4b3ec"; - sha1 = "7d5a0f5ae549ed4a2dd1f0b79687a30963e96751"; - }; - } - { - name = "11d06c2cbcda7d56a41d81b92c1869ed27a72ee5"; - path = fetchurl { - name = "11d06c2cbcda7d56a41d81b92c1869ed27a72ee5"; - url = "https://codeload.github.com/bitfocus/companion-module-foscam-ptz/tar.gz/11d06c2cbcda7d56a41d81b92c1869ed27a72ee5"; - sha1 = "5ea4720c8a0cd00e3ea7aeecfac3defa1c7e20de"; - }; - } - { - name = "24948a48665a392c7c5d17d3e8208fa9ced4ed8d"; - path = fetchurl { - name = "24948a48665a392c7c5d17d3e8208fa9ced4ed8d"; - url = "https://codeload.github.com/bitfocus/companion-module-gallery-virtualvtrpro/tar.gz/24948a48665a392c7c5d17d3e8208fa9ced4ed8d"; - sha1 = "2e0e81c29d4b933aefe1612cb0844c12bbbe0f36"; - }; - } - { - name = "1a29dda5078b229a020163cd47c8e2ed5bf0accc"; - path = fetchurl { - name = "1a29dda5078b229a020163cd47c8e2ed5bf0accc"; - url = "https://codeload.github.com/bitfocus/companion-module-gammacontrol-gmaestro/tar.gz/1a29dda5078b229a020163cd47c8e2ed5bf0accc"; - sha1 = "8468c4d977bd67a36b61446c3aee084cd6669d1b"; - }; - } - { - name = "5438e2fd29c5793786b75c25c13d19897fe57864"; - path = fetchurl { - name = "5438e2fd29c5793786b75c25c13d19897fe57864"; - url = "https://codeload.github.com/bitfocus/companion-module-gefen-dvimatrix/tar.gz/5438e2fd29c5793786b75c25c13d19897fe57864"; - sha1 = "160fe48bf6b5a3a7c465fb8d65e5be54e6a79c7b"; - }; - } - { - name = "f57a06abbd0abefd9fc731b6850ca8ebc06a024d"; - path = fetchurl { - name = "f57a06abbd0abefd9fc731b6850ca8ebc06a024d"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-artnet/tar.gz/f57a06abbd0abefd9fc731b6850ca8ebc06a024d"; - sha1 = "c16129637cb457cae5ad34af0aea7ab8fb7d8179"; - }; - } - { - name = "028ef31b4bcdb8be615656646bd2e7b3abb02d3b"; - path = fetchurl { - name = "028ef31b4bcdb8be615656646bd2e7b3abb02d3b"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-emberplus/tar.gz/028ef31b4bcdb8be615656646bd2e7b3abb02d3b"; - sha1 = "7763f40ddd881a7721ca7d49ea3342f9af095f85"; - }; - } - { - name = "c1c1c93c74d96f847d8ed810af9595d6063932ea"; - path = fetchurl { - name = "c1c1c93c74d96f847d8ed810af9595d6063932ea"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-http/tar.gz/c1c1c93c74d96f847d8ed810af9595d6063932ea"; - sha1 = "35d8a81d6aeced6c00db92d219539736268ebdad"; - }; - } - { - name = "d0744e473b79ade02bc4484d6d701db76b97a85e"; - path = fetchurl { - name = "d0744e473b79ade02bc4484d6d701db76b97a85e"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-mqtt/tar.gz/d0744e473b79ade02bc4484d6d701db76b97a85e"; - sha1 = "fe9e62b7ef00727b8d9e5240304d44ec1ec4d8e6"; - }; - } - { - name = "4c73da866ac2b2adcd5690728febe7620ab95b29"; - path = fetchurl { - name = "4c73da866ac2b2adcd5690728febe7620ab95b29"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-osc/tar.gz/4c73da866ac2b2adcd5690728febe7620ab95b29"; - sha1 = "828e93755d588ffc132e0b140a82c5aa4f3fd833"; - }; - } - { - name = "c4db10119ed5ffd74b2164fff5867764f27caae4"; - path = fetchurl { - name = "c4db10119ed5ffd74b2164fff5867764f27caae4"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-pjlink/tar.gz/c4db10119ed5ffd74b2164fff5867764f27caae4"; - sha1 = "0fdcd57a523108bd8399f1369fa3495c3e5d95f4"; - }; - } - { - name = "fec30a4264909ea903b7bbc6472a0df917a57a2d"; - path = fetchurl { - name = "fec30a4264909ea903b7bbc6472a0df917a57a2d"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-sacn/tar.gz/fec30a4264909ea903b7bbc6472a0df917a57a2d"; - sha1 = "4fe64de0f21e6faaea1b8306d6bce541db9c15a2"; - }; - } - { - name = "d9e1d1bfd3a0ca5964de19f492c51b97a65d3767"; - path = fetchurl { - name = "d9e1d1bfd3a0ca5964de19f492c51b97a65d3767"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-swp08/tar.gz/d9e1d1bfd3a0ca5964de19f492c51b97a65d3767"; - sha1 = "f0d3a15fa70137f9afd19e339d7e9c5895d70e14"; - }; - } - { - name = "ef8a8cd5653895daa069cf0cee2b1baf6665d524"; - path = fetchurl { - name = "ef8a8cd5653895daa069cf0cee2b1baf6665d524"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-tcp-serial/tar.gz/ef8a8cd5653895daa069cf0cee2b1baf6665d524"; - sha1 = "3ce5ca224dae2302442129cebe0d19fa91758f56"; - }; - } - { - name = "6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24"; - path = fetchurl { - name = "6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-tcp-udp/tar.gz/6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24"; - sha1 = "22f92d10a09a35ca7f35a4c672adfcb06ac14198"; - }; - } - { - name = "bad91b9a1c263dea72e24be0f66622d1bf0dac07"; - path = fetchurl { - name = "bad91b9a1c263dea72e24be0f66622d1bf0dac07"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-wakeonlan/tar.gz/bad91b9a1c263dea72e24be0f66622d1bf0dac07"; - sha1 = "102cff52e578fe71da3c0d2af76d46bd60c079c1"; - }; - } - { - name = "623606e02f93c2cc15abc4d279f7fd228540d53e"; - path = fetchurl { - name = "623606e02f93c2cc15abc4d279f7fd228540d53e"; - url = "https://codeload.github.com/bitfocus/companion-module-generic-websocket/tar.gz/623606e02f93c2cc15abc4d279f7fd228540d53e"; - sha1 = "86ac118e94aae0e8d7f1a8eaca6d0fb04ef2166b"; - }; - } - { - name = "f9a9f067e442d0fb5e17fb184c715bc301135e9a"; - path = fetchurl { - name = "f9a9f067e442d0fb5e17fb184c715bc301135e9a"; - url = "https://codeload.github.com/bitfocus/companion-module-globalcache-itac-cc/tar.gz/f9a9f067e442d0fb5e17fb184c715bc301135e9a"; - sha1 = "93dc7de6e37ab91755e0beba7cef2ef18947e4a9"; - }; - } - { - name = "2c89e5a96642a60400ad517dd3aca30c945dcd13"; - path = fetchurl { - name = "2c89e5a96642a60400ad517dd3aca30c945dcd13"; - url = "https://codeload.github.com/bitfocus/companion-module-globalcache-itac-ir/tar.gz/2c89e5a96642a60400ad517dd3aca30c945dcd13"; - sha1 = "b2be78095f43fd5a19ce562743a9327c4b24a089"; - }; - } - { - name = "877fa2d003c3d237f2522fba0f623238cada4bdf"; - path = fetchurl { - name = "877fa2d003c3d237f2522fba0f623238cada4bdf"; - url = "https://codeload.github.com/bitfocus/companion-module-globalcache-itac-sl/tar.gz/877fa2d003c3d237f2522fba0f623238cada4bdf"; - sha1 = "90c0040d40df45a8364fc4139657c59835fbec55"; - }; - } - { - name = "d0ffb1fc884a9cc028376ca2dde8d66ced522589"; - path = fetchurl { - name = "d0ffb1fc884a9cc028376ca2dde8d66ced522589"; - url = "https://codeload.github.com/bitfocus/companion-module-grassvalley-amp/tar.gz/d0ffb1fc884a9cc028376ca2dde8d66ced522589"; - sha1 = "bd0df9939b5e9558cf574aaefa8f696c172760bd"; - }; - } - { - name = "fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9"; - path = fetchurl { - name = "fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9"; - url = "https://codeload.github.com/bitfocus/companion-module-greenhippo-hippotizer/tar.gz/fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9"; - sha1 = "1ced10db80f52a17d5bed6745f56358925fc72d1"; - }; - } - { - name = "236ee520771f6281198f98001da2157d0144f60d"; - path = fetchurl { - name = "236ee520771f6281198f98001da2157d0144f60d"; - url = "https://codeload.github.com/bitfocus/companion-module-h2r-graphics/tar.gz/236ee520771f6281198f98001da2157d0144f60d"; - sha1 = "a68219f6ebc4f163e58c3d7c93bd98b7b0c8dbb7"; - }; - } - { - name = "cc35aeb5ba83f3d47450794010fd77eecef77778"; - path = fetchurl { - name = "cc35aeb5ba83f3d47450794010fd77eecef77778"; - url = "https://codeload.github.com/bitfocus/companion-module-haivision-connectdvr/tar.gz/cc35aeb5ba83f3d47450794010fd77eecef77778"; - sha1 = "179882c32595164e05651ce91242d2006f6bde18"; - }; - } - { - name = "125f76e7dd1839d341d7beae5c040a171c5b7546"; - path = fetchurl { - name = "125f76e7dd1839d341d7beae5c040a171c5b7546"; - url = "https://codeload.github.com/bitfocus/companion-module-haivision-kbencoder/tar.gz/125f76e7dd1839d341d7beae5c040a171c5b7546"; - sha1 = "3366c2a101d84b9d79c1da55bcbd75afc0c79d29"; - }; - } - { - name = "c0bd9f50c77746875f2ae969b9152b996964a74a"; - path = fetchurl { - name = "c0bd9f50c77746875f2ae969b9152b996964a74a"; - url = "https://codeload.github.com/bitfocus/companion-module-highend-hog4/tar.gz/c0bd9f50c77746875f2ae969b9152b996964a74a"; - sha1 = "16d4b899cc62788ef70c925e66ec9432209fa866"; - }; - } - { - name = "78e44a87fa123b24bc05d9fe839d20a832be53b5"; - path = fetchurl { - name = "78e44a87fa123b24bc05d9fe839d20a832be53b5"; - url = "https://codeload.github.com/bitfocus/companion-module-hologfx-holographics/tar.gz/78e44a87fa123b24bc05d9fe839d20a832be53b5"; - sha1 = "8cb15d3fa071add98f028d6f5cfe27b9c77b7456"; - }; - } - { - name = "fdb463635c37b00973f9453fa6cc9eedfe550fa4"; - path = fetchurl { - name = "fdb463635c37b00973f9453fa6cc9eedfe550fa4"; - url = "https://codeload.github.com/bitfocus/companion-module-homeassistant-server/tar.gz/fdb463635c37b00973f9453fa6cc9eedfe550fa4"; - sha1 = "3043992486d6db960619f348f006db8888f837af"; - }; - } - { - name = "1b81a6ee71af8f69c833ddd454cfc4a508535599"; - path = fetchurl { - name = "1b81a6ee71af8f69c833ddd454cfc4a508535599"; - url = "https://codeload.github.com/bitfocus/companion-module-ifelseware-avkey/tar.gz/1b81a6ee71af8f69c833ddd454cfc4a508535599"; - sha1 = "5d985463e00071d81c744f4a511ddce9753b5aa0"; - }; - } - { - name = "00b14afe3c9d7b88588652f1c64e635daa89ace7"; - path = fetchurl { - name = "00b14afe3c9d7b88588652f1c64e635daa89ace7"; - url = "https://codeload.github.com/bitfocus/companion-module-ifelseware-avplayback/tar.gz/00b14afe3c9d7b88588652f1c64e635daa89ace7"; - sha1 = "758d3a8d04f77ea5ce16f93ebaf0e186ee889e0f"; - }; - } - { - name = "a65b5be341a8fa431992fd92f6af137e056d53fa"; - path = fetchurl { - name = "a65b5be341a8fa431992fd92f6af137e056d53fa"; - url = "https://codeload.github.com/bitfocus/companion-module-imimot-mitti/tar.gz/a65b5be341a8fa431992fd92f6af137e056d53fa"; - sha1 = "d463a33c692c72600487f5ba6848eccb597e9af8"; - }; - } - { - name = "dab079226b1e25ab0647ebb33d2814102e8583ed"; - path = fetchurl { - name = "dab079226b1e25ab0647ebb33d2814102e8583ed"; - url = "https://codeload.github.com/bitfocus/companion-module-interactivetechnologies-cueserver/tar.gz/dab079226b1e25ab0647ebb33d2814102e8583ed"; - sha1 = "8a44de72d1b71773198bd589f187677f0c46a12f"; - }; - } - { - name = "9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd"; - path = fetchurl { - name = "9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd"; - url = "https://codeload.github.com/bitfocus/companion-module-irisdown-countdowntimer/tar.gz/9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd"; - sha1 = "bda69cf1cffb40c384c106a6708eac6330db6ba9"; - }; - } - { - name = "8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b"; - path = fetchurl { - name = "8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b"; - url = "https://codeload.github.com/bitfocus/companion-module-irisdown-remoteshowcontrol/tar.gz/8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b"; - sha1 = "39f7faed459295fab4c574232585424d6679d7c3"; - }; - } - { - name = "1d348edca30a9323d9402c34bb8c197a49dc3abc"; - path = fetchurl { - name = "1d348edca30a9323d9402c34bb8c197a49dc3abc"; - url = "https://codeload.github.com/bitfocus/companion-module-jamesholt-x32tc/tar.gz/1d348edca30a9323d9402c34bb8c197a49dc3abc"; - sha1 = "03795e8115a38d3b7aff2e1ca1a5c381e9f05128"; - }; - } - { - name = "bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05"; - path = fetchurl { - name = "bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05"; - url = "https://codeload.github.com/bitfocus/companion-module-joy-playdeck/tar.gz/bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05"; - sha1 = "ed6e6424a985a77a7fb0301b662487e4bbdeda07"; - }; - } - { - name = "991f2e7d3ce3421d54a210624e3d36a9e08978ad"; - path = fetchurl { - name = "991f2e7d3ce3421d54a210624e3d36a9e08978ad"; - url = "https://codeload.github.com/bitfocus/companion-module-justmacros-lua/tar.gz/991f2e7d3ce3421d54a210624e3d36a9e08978ad"; - sha1 = "76fef573a9bd9c457ac23dc86f179d681c153dc6"; - }; - } - { - name = "70223a3d53a6d911e540de0d281e7b503c06be42"; - path = fetchurl { - name = "70223a3d53a6d911e540de0d281e7b503c06be42"; - url = "https://codeload.github.com/bitfocus/companion-module-jvc-ptz/tar.gz/70223a3d53a6d911e540de0d281e7b503c06be42"; - sha1 = "a397aaa6b19f3bba7ff20151b123f4641305954e"; - }; - } - { - name = "b5003fad378fdf22008f8c509e3d275e1ed181b1"; - path = fetchurl { - name = "b5003fad378fdf22008f8c509e3d275e1ed181b1"; - url = "https://codeload.github.com/bitfocus/companion-module-kiloview-ndi/tar.gz/b5003fad378fdf22008f8c509e3d275e1ed181b1"; - sha1 = "a5a37ea523f27cc6223b18b5fba6655aabe06f6e"; - }; - } - { - name = "179c8e71baae3e9dc100f8020810e6b29ada77b6"; - path = fetchurl { - name = "179c8e71baae3e9dc100f8020810e6b29ada77b6"; - url = "https://codeload.github.com/bitfocus/companion-module-kramer-matrix/tar.gz/179c8e71baae3e9dc100f8020810e6b29ada77b6"; - sha1 = "cfd829ce281a524fa0e297b967d031f10e76dd8e"; - }; - } - { - name = "b90cfefc9bf8e29a4d91032866fa2abeaa633181"; - path = fetchurl { - name = "b90cfefc9bf8e29a4d91032866fa2abeaa633181"; - url = "https://codeload.github.com/bitfocus/companion-module-kramer-vp727/tar.gz/b90cfefc9bf8e29a4d91032866fa2abeaa633181"; - sha1 = "a8c473ed4148733ff91823aef6a2c854a1886df0"; - }; - } - { - name = "cb38da02af3c6f3711263ef5f426060833392b91"; - path = fetchurl { - name = "cb38da02af3c6f3711263ef5f426060833392b91"; - url = "https://codeload.github.com/bitfocus/companion-module-kramer-vp734/tar.gz/cb38da02af3c6f3711263ef5f426060833392b91"; - sha1 = "51867c87750439b43f38da54e80f97e1ecb5d281"; - }; - } - { - name = "8f64b7000a9e99fea0af8211c2bb6fa306ec3159"; - path = fetchurl { - name = "8f64b7000a9e99fea0af8211c2bb6fa306ec3159"; - url = "https://codeload.github.com/bitfocus/companion-module-kramer-vp773a/tar.gz/8f64b7000a9e99fea0af8211c2bb6fa306ec3159"; - sha1 = "3c928ed191f309b0dd8e8d9cd15bbb6b913de715"; - }; - } - { - name = "ed647059bbc42d08605201dc197158efe1a6c7e1"; - path = fetchurl { - name = "ed647059bbc42d08605201dc197158efe1a6c7e1"; - url = "https://codeload.github.com/bitfocus/companion-module-kramer-vs41h/tar.gz/ed647059bbc42d08605201dc197158efe1a6c7e1"; - sha1 = "c7a67589c73a6fe67bc36d824176abcafe11a1a2"; - }; - } - { - name = "ea96faaab6e08dac4cf956b114dfe57e17b02b49"; - path = fetchurl { - name = "ea96faaab6e08dac4cf956b114dfe57e17b02b49"; - url = "https://codeload.github.com/bitfocus/companion-module-leafcoders-titler/tar.gz/ea96faaab6e08dac4cf956b114dfe57e17b02b49"; - sha1 = "b15c0e89d2ee0108968e52b6c6b4c8d3372cd37c"; - }; - } - { - name = "84f0286c3818cd2b7269d02c267cdcebf037a633"; - path = fetchurl { - name = "84f0286c3818cd2b7269d02c267cdcebf037a633"; - url = "https://codeload.github.com/bitfocus/companion-module-lectrosonics-aspen/tar.gz/84f0286c3818cd2b7269d02c267cdcebf037a633"; - sha1 = "8d4484c8155b247f042784acc2ebc2eecd4c7103"; - }; - } - { - name = "178b773043c4f6b17ae5f87b1b8bd98804e31bec"; - path = fetchurl { - name = "178b773043c4f6b17ae5f87b1b8bd98804e31bec"; - url = "https://codeload.github.com/bitfocus/companion-module-lightware-lw2/tar.gz/178b773043c4f6b17ae5f87b1b8bd98804e31bec"; - sha1 = "c9c8598cda84f40868284393bf2bf2c87cc23ea0"; - }; - } - { - name = "7d9dbe947cf68dafb710f02079550405bbaa8a0e"; - path = fetchurl { - name = "7d9dbe947cf68dafb710f02079550405bbaa8a0e"; - url = "https://codeload.github.com/bitfocus/companion-module-lightware-lw3/tar.gz/7d9dbe947cf68dafb710f02079550405bbaa8a0e"; - sha1 = "987727dcce345c5255e3f1e8cf6038fc0329cbb4"; - }; - } - { - name = "a353c62fce799d1ec8f96f4bc10434b2403a4cba"; - path = fetchurl { - name = "a353c62fce799d1ec8f96f4bc10434b2403a4cba"; - url = "https://codeload.github.com/bitfocus/companion-module-liminalet-zoomosc/tar.gz/a353c62fce799d1ec8f96f4bc10434b2403a4cba"; - sha1 = "2bb802b1fe4f9b4f9db4f1aeda57eb5e80ae1406"; - }; - } - { - name = "37ddd22da970c6e83d5f3333ac4be9906fe545a9"; - path = fetchurl { - name = "37ddd22da970c6e83d5f3333ac4be9906fe545a9"; - url = "https://codeload.github.com/bitfocus/companion-module-linkbox-remote/tar.gz/37ddd22da970c6e83d5f3333ac4be9906fe545a9"; - sha1 = "bc11e42ef7609cb2173c67af85e54d22d918a27a"; - }; - } - { - name = "cb8539e8aad002cab9c27b6298f786d4e1a4c6ac"; - path = fetchurl { - name = "cb8539e8aad002cab9c27b6298f786d4e1a4c6ac"; - url = "https://codeload.github.com/bitfocus/companion-module-livingasone-decoders/tar.gz/cb8539e8aad002cab9c27b6298f786d4e1a4c6ac"; - sha1 = "1d68dd6ae6607a40f0405fee736cb4509e63364b"; - }; - } - { - name = "d0b0b825323e1fb24f7faf929af8998edafcca9d"; - path = fetchurl { - name = "d0b0b825323e1fb24f7faf929af8998edafcca9d"; - url = "https://codeload.github.com/bitfocus/companion-module-ltn-schedule/tar.gz/d0b0b825323e1fb24f7faf929af8998edafcca9d"; - sha1 = "2552ae8e622c9d9ad8a450df8eaed9d70950113d"; - }; - } - { - name = "5898e6b9a5ab0501d8869c3c2d6efe294dbb696e"; - path = fetchurl { - name = "5898e6b9a5ab0501d8869c3c2d6efe294dbb696e"; - url = "https://codeload.github.com/bitfocus/companion-module-lumens-mediaprocessor/tar.gz/5898e6b9a5ab0501d8869c3c2d6efe294dbb696e"; - sha1 = "c4a433db9f81266b3790559439b44063a48e4903"; - }; - } - { - name = "baeea7f514c73805b1b16f0ffb5b1d93ec13e40a"; - path = fetchurl { - name = "baeea7f514c73805b1b16f0ffb5b1d93ec13e40a"; - url = "https://codeload.github.com/bitfocus/companion-module-lumens-visca/tar.gz/baeea7f514c73805b1b16f0ffb5b1d93ec13e40a"; - sha1 = "d0c61640250e55089aaf51b6647317faaf763951"; - }; - } - { - name = "9eb087081025e341a417b1e70195641db8886029"; - path = fetchurl { - name = "9eb087081025e341a417b1e70195641db8886029"; - url = "https://codeload.github.com/bitfocus/companion-module-lyntec-rpc-breaker/tar.gz/9eb087081025e341a417b1e70195641db8886029"; - sha1 = "300bc0412c7492fddb00e3cb809ffed3137ff0c4"; - }; - } - { - name = "82777002cf0e45304fbbe6221823df797689c50a"; - path = fetchurl { - name = "82777002cf0e45304fbbe6221823df797689c50a"; - url = "https://codeload.github.com/bitfocus/companion-module-magewell-proconvert-decoder/tar.gz/82777002cf0e45304fbbe6221823df797689c50a"; - sha1 = "88f4f59fed538673229f5e1e4706ba05952ccd78"; - }; - } - { - name = "042d398941e02ebb82f01d25a916cb45154eabb1"; - path = fetchurl { - name = "042d398941e02ebb82f01d25a916cb45154eabb1"; - url = "https://codeload.github.com/bitfocus/companion-module-magewell-ultrastream/tar.gz/042d398941e02ebb82f01d25a916cb45154eabb1"; - sha1 = "b54289abe995b67baa0eb10ce3b5bf0acc36209a"; - }; - } - { - name = "ddf39267d5a758a4b0dd2d9f0111e1095c0ace51"; - path = fetchurl { - name = "ddf39267d5a758a4b0dd2d9f0111e1095c0ace51"; - url = "https://codeload.github.com/bitfocus/companion-module-magicsoft-recorder/tar.gz/ddf39267d5a758a4b0dd2d9f0111e1095c0ace51"; - sha1 = "ad9dd929cee31f5ad8d574576011dccf3c83ae99"; - }; - } - { - name = "bd1bcd1427c1830c728662025a0f17cc1f9f6098"; - path = fetchurl { - name = "bd1bcd1427c1830c728662025a0f17cc1f9f6098"; - url = "https://codeload.github.com/bitfocus/companion-module-malighting-grandma2/tar.gz/bd1bcd1427c1830c728662025a0f17cc1f9f6098"; - sha1 = "9efee6eab2904b453743741175e122b0efe6b0a4"; - }; - } - { - name = "ee070100327b138f224658df9ecf1e8d1ad0bd82"; - path = fetchurl { - name = "ee070100327b138f224658df9ecf1e8d1ad0bd82"; - url = "https://codeload.github.com/bitfocus/companion-module-malighting-msc/tar.gz/ee070100327b138f224658df9ecf1e8d1ad0bd82"; - sha1 = "c6afcd93df8482d0181e39acce623a8c49fba1c2"; - }; - } - { - name = "b2b80e8ce37e4f809ad24a44621c953924014aa5"; - path = fetchurl { - name = "b2b80e8ce37e4f809ad24a44621c953924014aa5"; - url = "https://codeload.github.com/bitfocus/companion-module-matrox-monarch/tar.gz/b2b80e8ce37e4f809ad24a44621c953924014aa5"; - sha1 = "e372f3d39c7cb42a3b0780e422fc02f5b0ffc124"; - }; - } - { - name = "f69104a0a66a50cd7bbdbfc8e27453b4f131e18d"; - path = fetchurl { - name = "f69104a0a66a50cd7bbdbfc8e27453b4f131e18d"; - url = "https://codeload.github.com/bitfocus/companion-module-media-player-classic/tar.gz/f69104a0a66a50cd7bbdbfc8e27453b4f131e18d"; - sha1 = "afc11b76b7d28a868b16afb9646c9612c7a0e656"; - }; - } - { - name = "3eda2c8b5859d2a256c4bd46b08aeed642d9e084"; - path = fetchurl { - name = "3eda2c8b5859d2a256c4bd46b08aeed642d9e084"; - url = "https://codeload.github.com/bitfocus/companion-module-metus-ingest/tar.gz/3eda2c8b5859d2a256c4bd46b08aeed642d9e084"; - sha1 = "4c02617da7952872c44d495419350078277e7d5c"; - }; - } - { - name = "faae8c75ea657db6a94bcc93d770f651fb736102"; - path = fetchurl { - name = "faae8c75ea657db6a94bcc93d770f651fb736102"; - url = "https://codeload.github.com/bitfocus/companion-module-middleatlantic-racklink/tar.gz/faae8c75ea657db6a94bcc93d770f651fb736102"; - sha1 = "aafa1e17ae6a6f07c5fe32eb11d1ad748c86957b"; - }; - } - { - name = "ed6919147e6e4fe18ddb7f79f187fc27aa462edf"; - path = fetchurl { - name = "ed6919147e6e4fe18ddb7f79f187fc27aa462edf"; - url = "https://codeload.github.com/bitfocus/companion-module-middlethings-middlecontrol/tar.gz/ed6919147e6e4fe18ddb7f79f187fc27aa462edf"; - sha1 = "63e83e7ed55e51d6f2a2938ad5a2d1e9c9649cc1"; - }; - } - { - name = "1114d5cfa2810e09519436eb6f8cb911d98a3aa9"; - path = fetchurl { - name = "1114d5cfa2810e09519436eb6f8cb911d98a3aa9"; - url = "https://codeload.github.com/bitfocus/companion-module-modelighting-edin/tar.gz/1114d5cfa2810e09519436eb6f8cb911d98a3aa9"; - sha1 = "828d7c07a1ed532d5292983de8393a97b1b9caf7"; - }; - } - { - name = "a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766"; - path = fetchurl { - name = "a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766"; - url = "https://codeload.github.com/bitfocus/companion-module-modulo/tar.gz/a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766"; - sha1 = "a4eeaa9f7176aa25e97ebeb8c670a1f9a7a012b4"; - }; - } - { - name = "7c73cf7a1131177f826f97f353d164e7af10abfe"; - path = fetchurl { - name = "7c73cf7a1131177f826f97f353d164e7af10abfe"; - url = "https://codeload.github.com/bitfocus/companion-module-motu-avb/tar.gz/7c73cf7a1131177f826f97f353d164e7af10abfe"; - sha1 = "0428bb36a7f5a29cfeb9b4fbda24042fa2503832"; - }; - } - { - name = "bb388382d66a9c0bec7489e40806899647152456"; - path = fetchurl { - name = "bb388382d66a9c0bec7489e40806899647152456"; - url = "https://codeload.github.com/bitfocus/companion-module-msc-router/tar.gz/bb388382d66a9c0bec7489e40806899647152456"; - sha1 = "e1cd03edae6fbdc241a2ded8b7ec934ccfb48939"; - }; - } - { - name = "2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2"; - path = fetchurl { - name = "2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2"; - url = "https://codeload.github.com/bitfocus/companion-module-multicamsystems-multicamsuite/tar.gz/2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2"; - sha1 = "787b848bee403582084465d4a6ac73980ad681bb"; - }; - } - { - name = "9334f6e8c4ed64ecc8e75f160c216e5955fa5484"; - path = fetchurl { - name = "9334f6e8c4ed64ecc8e75f160c216e5955fa5484"; - url = "https://codeload.github.com/bitfocus/companion-module-muxlab-kvm/tar.gz/9334f6e8c4ed64ecc8e75f160c216e5955fa5484"; - sha1 = "1da42e552a8bfb685020c3b9170d24c2548d4bf5"; - }; - } - { - name = "ff54136179e073b5f625075166e0fe1bc8cf60c7"; - path = fetchurl { - name = "ff54136179e073b5f625075166e0fe1bc8cf60c7"; - url = "https://codeload.github.com/bitfocus/companion-module-neodarque-stagetimer2/tar.gz/ff54136179e073b5f625075166e0fe1bc8cf60c7"; - sha1 = "44cb1ae1c83bf4dcf7c78c5d363b54f11ea969bb"; - }; - } - { - name = "c28e57da9784c77c8ec22554bf0c7d80f97d20bd"; - path = fetchurl { - name = "c28e57da9784c77c8ec22554bf0c7d80f97d20bd"; - url = "https://codeload.github.com/bitfocus/companion-module-netio-powerbox/tar.gz/c28e57da9784c77c8ec22554bf0c7d80f97d20bd"; - sha1 = "4ac8d2f1ca037e7667be6f3fc0f02d9dbf28cb3e"; - }; - } - { - name = "f4c7e323592ce59d965f2fb99cbcca213e7afce4"; - path = fetchurl { - name = "f4c7e323592ce59d965f2fb99cbcca213e7afce4"; - url = "https://codeload.github.com/bitfocus/companion-module-nevion-mrp/tar.gz/f4c7e323592ce59d965f2fb99cbcca213e7afce4"; - sha1 = "ddfbb02b00504adc27055d9177b8e2291dc9d4f6"; - }; - } - { - name = "594c729657afb6b398d7b48753e3ba373f541079"; - path = fetchurl { - name = "594c729657afb6b398d7b48753e3ba373f541079"; - url = "https://codeload.github.com/bitfocus/companion-module-newbluefx-titler/tar.gz/594c729657afb6b398d7b48753e3ba373f541079"; - sha1 = "927ba0b14b960098d3b460ecb543fc933fe52235"; - }; - } - { - name = "8b7434fc1f3157ee90ce36ebfbc2daa353621fde"; - path = fetchurl { - name = "8b7434fc1f3157ee90ce36ebfbc2daa353621fde"; - url = "https://codeload.github.com/bitfocus/companion-module-newtek-ndistudiomonitor/tar.gz/8b7434fc1f3157ee90ce36ebfbc2daa353621fde"; - sha1 = "a66d3b12bca992f5c444062cc010f5b1f5b5ecc9"; - }; - } - { - name = "670fd7385f99e7275c44b9ecd5816f6d86e79985"; - path = fetchurl { - name = "670fd7385f99e7275c44b9ecd5816f6d86e79985"; - url = "https://codeload.github.com/bitfocus/companion-module-newtek-tricaster/tar.gz/670fd7385f99e7275c44b9ecd5816f6d86e79985"; - sha1 = "91a7c0ff5a1d4dbdf33d416842354297882d5936"; - }; - } - { - name = "4ce5aee1d599fdfb3c1f86401c0602502864526a"; - path = fetchurl { - name = "4ce5aee1d599fdfb3c1f86401c0602502864526a"; - url = "https://codeload.github.com/bitfocus/companion-module-nexo-nxamp/tar.gz/4ce5aee1d599fdfb3c1f86401c0602502864526a"; - sha1 = "bdb80ac74660e753d0cb70ac721896aaeb5c2d37"; - }; - } - { - name = "f05ab696fe550052c035cafe6dd1cc254d336656"; - path = fetchurl { - name = "f05ab696fe550052c035cafe6dd1cc254d336656"; - url = "https://codeload.github.com/bitfocus/companion-module-nobe-omniscope/tar.gz/f05ab696fe550052c035cafe6dd1cc254d336656"; - sha1 = "f4d6f84aee2ec40eb2b622143e9939c9b1ee289b"; - }; - } - { - name = "3d11e1b210f1771f6cd68a253efa30e0122f6f00"; - path = fetchurl { - name = "3d11e1b210f1771f6cd68a253efa30e0122f6f00"; - url = "https://codeload.github.com/bitfocus/companion-module-noismada-octopuslistener/tar.gz/3d11e1b210f1771f6cd68a253efa30e0122f6f00"; - sha1 = "dc1e374dd3da97e8f48202b8ae769b434723f3be"; - }; - } - { - name = "972bd9b4fde8f8e52cd8b099bdde116e6e465cb6"; - path = fetchurl { - name = "972bd9b4fde8f8e52cd8b099bdde116e6e465cb6"; - url = "https://codeload.github.com/bitfocus/companion-module-noismada-octopusshowcontrol/tar.gz/972bd9b4fde8f8e52cd8b099bdde116e6e465cb6"; - sha1 = "90badac31942de53bf146425cc5dcf1c01b2d728"; - }; - } - { - name = "0efb9cfc858ab0d117f67e554ba51821f95225f9"; - path = fetchurl { - name = "0efb9cfc858ab0d117f67e554ba51821f95225f9"; - url = "https://codeload.github.com/bitfocus/companion-module-novastar-controller/tar.gz/0efb9cfc858ab0d117f67e554ba51821f95225f9"; - sha1 = "0d1fde84cbadbc3e0938d3e024c73425dcd92088"; - }; - } - { - name = "50252fea7a0cc890ea2db64d9ad4125cd1119d2b"; - path = fetchurl { - name = "50252fea7a0cc890ea2db64d9ad4125cd1119d2b"; - url = "https://codeload.github.com/bitfocus/companion-module-obs-studio/tar.gz/50252fea7a0cc890ea2db64d9ad4125cd1119d2b"; - sha1 = "856be52ea97006a8562032fee76ffa0a9030114c"; - }; - } - { - name = "8c8a108554282ab4654d6803b9721c79e6353ae2"; - path = fetchurl { - name = "8c8a108554282ab4654d6803b9721c79e6353ae2"; - url = "https://codeload.github.com/bitfocus/companion-module-obsidiancontrol-onyx/tar.gz/8c8a108554282ab4654d6803b9721c79e6353ae2"; - sha1 = "9b04fe3d507b08b10c76cfad77fd3c10eae9120c"; - }; - } - { - name = "0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf"; - path = fetchurl { - name = "0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf"; - url = "https://codeload.github.com/bitfocus/companion-module-octava-pro-dsx/tar.gz/0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf"; - sha1 = "70030f67bae4d282e6029fe3239c94f838db65db"; - }; - } - { - name = "f69ee134fed777721fa6ec9d7a5dfbef9f3ab4db"; - path = fetchurl { - name = "f69ee134fed777721fa6ec9d7a5dfbef9f3ab4db"; - url = "https://codeload.github.com/bitfocus/companion-module-openlp-http/tar.gz/f69ee134fed777721fa6ec9d7a5dfbef9f3ab4db"; - sha1 = "580f02f9b948321b743fe87649cc75427bfbd627"; - }; - } - { - name = "87a164fa78e809def2859c65e89895eb75771f59"; - path = fetchurl { - name = "87a164fa78e809def2859c65e89895eb75771f59"; - url = "https://codeload.github.com/bitfocus/companion-module-opensong-api/tar.gz/87a164fa78e809def2859c65e89895eb75771f59"; - sha1 = "30effe0879985b651f891266b907debcc272a955"; - }; - } - { - name = "20f019df84a9769dea91af1acda50a31f13e13e6"; - path = fetchurl { - name = "20f019df84a9769dea91af1acda50a31f13e13e6"; - url = "https://codeload.github.com/bitfocus/companion-module-openweather-rest/tar.gz/20f019df84a9769dea91af1acda50a31f13e13e6"; - sha1 = "885608063869eac2b8b455aa1ae117fd8b7e3f7d"; - }; - } - { - name = "f33e9545566f41821a69e3b55b42bee5e5904fb1"; - path = fetchurl { - name = "f33e9545566f41821a69e3b55b42bee5e5904fb1"; - url = "https://codeload.github.com/bitfocus/companion-module-opticis-omm-1000/tar.gz/f33e9545566f41821a69e3b55b42bee5e5904fb1"; - sha1 = "1d43e92871958b6d231ab4031bc209627cf2bd82"; - }; - } - { - name = "79f9a38298e70ab046f4e26df1c79d56f0088c3c"; - path = fetchurl { - name = "79f9a38298e70ab046f4e26df1c79d56f0088c3c"; - url = "https://codeload.github.com/bitfocus/companion-module-optoma-z28s/tar.gz/79f9a38298e70ab046f4e26df1c79d56f0088c3c"; - sha1 = "e96f584219bd4e577a3e2aa65acca4c33dc354e9"; - }; - } - { - name = "32c28f886b07a7da3aed8a38c6a3a71881c8543e"; - path = fetchurl { - name = "32c28f886b07a7da3aed8a38c6a3a71881c8543e"; - url = "https://codeload.github.com/bitfocus/companion-module-orfast-ndi/tar.gz/32c28f886b07a7da3aed8a38c6a3a71881c8543e"; - sha1 = "6f9dfc3549f50f8b868a973c5f6c8446a298588c"; - }; - } - { - name = "ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a"; - path = fetchurl { - name = "ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a"; - url = "https://codeload.github.com/bitfocus/companion-module-panasonic-avhs/tar.gz/ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a"; - sha1 = "8f7840b80e73b641b77616df0e12a5e4725252d1"; - }; - } - { - name = "7f0838496d1e232a32fdcdb529dc9f98484f3f6c"; - path = fetchurl { - name = "7f0838496d1e232a32fdcdb529dc9f98484f3f6c"; - url = "https://codeload.github.com/bitfocus/companion-module-panasonic-camera-controller/tar.gz/7f0838496d1e232a32fdcdb529dc9f98484f3f6c"; - sha1 = "fac091e86c53245ce6311d277430b995f571240e"; - }; - } - { - name = "4576b77417773e2fe357ba206b660984f7e25a7e"; - path = fetchurl { - name = "4576b77417773e2fe357ba206b660984f7e25a7e"; - url = "https://codeload.github.com/bitfocus/companion-module-panasonic-projector/tar.gz/4576b77417773e2fe357ba206b660984f7e25a7e"; - sha1 = "118a4ad193021361f246e3425db06c0f3e660522"; - }; - } - { - name = "c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6"; - path = fetchurl { - name = "c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6"; - url = "https://codeload.github.com/bitfocus/companion-module-panasonic-ptz/tar.gz/c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6"; - sha1 = "54f8a142c9be27f15764b70c416c0aa47907641e"; - }; - } - { - name = "0fb03e1cea30dd26abbcdb6c402156eba313356d"; - path = fetchurl { - name = "0fb03e1cea30dd26abbcdb6c402156eba313356d"; - url = "https://codeload.github.com/bitfocus/companion-module-panasonic-tv-th/tar.gz/0fb03e1cea30dd26abbcdb6c402156eba313356d"; - sha1 = "d34a95c9079caaf1d1f7e6430f67b5d7e6aeb822"; - }; - } - { - name = "28065ebafad177328c4ae5a16e334f9213a56fad"; - path = fetchurl { - name = "28065ebafad177328c4ae5a16e334f9213a56fad"; - url = "https://codeload.github.com/bitfocus/companion-module-pangolin-beyond/tar.gz/28065ebafad177328c4ae5a16e334f9213a56fad"; - sha1 = "a292adf7a1a72eae45916af1fda54cf25f41587d"; - }; - } - { - name = "670a541a220c9ff42ee6438b038772fe188d8b97"; - path = fetchurl { - name = "670a541a220c9ff42ee6438b038772fe188d8b97"; - url = "https://codeload.github.com/bitfocus/companion-module-phillips-hue/tar.gz/670a541a220c9ff42ee6438b038772fe188d8b97"; - sha1 = "6484bbee49d70acf0c1556001b4b1a130ed1ac14"; - }; - } - { - name = "31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba"; - path = fetchurl { - name = "31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba"; - url = "https://codeload.github.com/bitfocus/companion-module-pixap-pixtimerpro/tar.gz/31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba"; - sha1 = "b8025e4065d721537e32d44ad4ed2f163e54ef18"; - }; - } - { - name = "6bc84e4dfeb5e3085370b21730621b6057c9f546"; - path = fetchurl { - name = "6bc84e4dfeb5e3085370b21730621b6057c9f546"; - url = "https://codeload.github.com/bitfocus/companion-module-planningcenter-serviceslive/tar.gz/6bc84e4dfeb5e3085370b21730621b6057c9f546"; - sha1 = "526b55d52721aa29a6662eeec69d9815953801f6"; - }; - } - { - name = "d705dcf538eb8301e1c59888da763436fcd3b1fc"; - path = fetchurl { - name = "d705dcf538eb8301e1c59888da763436fcd3b1fc"; - url = "https://codeload.github.com/bitfocus/companion-module-presentationtools-aps/tar.gz/d705dcf538eb8301e1c59888da763436fcd3b1fc"; - sha1 = "5d816dbb6927abdc19a65aec3df462a2ce18a6ba"; - }; - } - { - name = "2fa1aee4c97c44dd9f09f0285855830a14ef91e2"; - path = fetchurl { - name = "2fa1aee4c97c44dd9f09f0285855830a14ef91e2"; - url = "https://codeload.github.com/bitfocus/companion-module-presentationtools-cuetimer/tar.gz/2fa1aee4c97c44dd9f09f0285855830a14ef91e2"; - sha1 = "cda3f29dc81afebbac470ff44607437e4cb90173"; - }; - } - { - name = "48572a5f1f8e58cd8d128afc841f7245be59a4e5"; - path = fetchurl { - name = "48572a5f1f8e58cd8d128afc841f7245be59a4e5"; - url = "https://codeload.github.com/bitfocus/companion-module-protopie-bridge/tar.gz/48572a5f1f8e58cd8d128afc841f7245be59a4e5"; - sha1 = "4f9e995a2ac253faf2f1a8b212ada14297c52d43"; - }; - } - { - name = "8a50434af7c25ed81da8155b69be92b4ac91f3a9"; - path = fetchurl { - name = "8a50434af7c25ed81da8155b69be92b4ac91f3a9"; - url = "https://codeload.github.com/bitfocus/companion-module-prsi-ipower/tar.gz/8a50434af7c25ed81da8155b69be92b4ac91f3a9"; - sha1 = "2dc89afe4683a50a49544b6ee529dcc76af23d9b"; - }; - } - { - name = "0a78c6ad59de5ef6ead35937df89dc991b416aac"; - path = fetchurl { - name = "0a78c6ad59de5ef6ead35937df89dc991b416aac"; - url = "https://codeload.github.com/bitfocus/companion-module-ptzoptics-visca/tar.gz/0a78c6ad59de5ef6ead35937df89dc991b416aac"; - sha1 = "7d095e36b914fb03457372f1b57287ec386e8e06"; - }; - } - { - name = "52dbc92b096ae3f465f814948820ddf12a33a7e2"; - path = fetchurl { - name = "52dbc92b096ae3f465f814948820ddf12a33a7e2"; - url = "https://codeload.github.com/bitfocus/companion-module-qsys-remote-control/tar.gz/52dbc92b096ae3f465f814948820ddf12a33a7e2"; - sha1 = "e22c5c03bb20f897f5d82aa6b2e0e57320c5928b"; - }; - } - { - name = "79d922c4d186e6dfe14f715d3f4566dccba03a64"; - path = fetchurl { - name = "79d922c4d186e6dfe14f715d3f4566dccba03a64"; - url = "https://codeload.github.com/bitfocus/companion-module-radiodj-rest/tar.gz/79d922c4d186e6dfe14f715d3f4566dccba03a64"; - sha1 = "6bd9d6e6b2395ec12c51e39e5227b5bc337e588c"; - }; - } - { - name = "10b2369d4a62ff8e2479234fa2eab32e32b18697"; - path = fetchurl { - name = "10b2369d4a62ff8e2479234fa2eab32e32b18697"; - url = "https://codeload.github.com/bitfocus/companion-module-rationalacoustics-smaart3/tar.gz/10b2369d4a62ff8e2479234fa2eab32e32b18697"; - sha1 = "35a6954559e3e3d373eabb2d9146eb90017cc9b8"; - }; - } - { - name = "99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d"; - path = fetchurl { - name = "99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d"; - url = "https://codeload.github.com/bitfocus/companion-module-renewedvision-propresenter/tar.gz/99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d"; - sha1 = "19621acffcf9e39f15e0b8ebad1d6734a85f9c45"; - }; - } - { - name = "fc08f0c024c627d3192736888fcbb7ef3dc96a74"; - path = fetchurl { - name = "fc08f0c024c627d3192736888fcbb7ef3dc96a74"; - url = "https://codeload.github.com/bitfocus/companion-module-renewedvision-pvp/tar.gz/fc08f0c024c627d3192736888fcbb7ef3dc96a74"; - sha1 = "11c0d472f0879ddeb47e4d8ad91d82ac218410f3"; - }; - } - { - name = "41cf815770609d949730b9691fd438f2b96d8d17"; - path = fetchurl { - name = "41cf815770609d949730b9691fd438f2b96d8d17"; - url = "https://codeload.github.com/bitfocus/companion-module-resolume-arena/tar.gz/41cf815770609d949730b9691fd438f2b96d8d17"; - sha1 = "1b6867503798c7f8b319db585587e6e2cac564cd"; - }; - } - { - name = "91d8b4741b87fd4f647530eb77e32743bea4edbb"; - path = fetchurl { - name = "91d8b4741b87fd4f647530eb77e32743bea4edbb"; - url = "https://codeload.github.com/bitfocus/companion-module-rocosoft-ptzjoy/tar.gz/91d8b4741b87fd4f647530eb77e32743bea4edbb"; - sha1 = "b916fe58abfc4357a5fd9a3ad2089b61f467b127"; - }; - } - { - name = "401ec0153a49235eb01c44c5bf78fbb7f9e078c7"; - path = fetchurl { - name = "401ec0153a49235eb01c44c5bf78fbb7f9e078c7"; - url = "https://codeload.github.com/bitfocus/companion-module-roku-tv/tar.gz/401ec0153a49235eb01c44c5bf78fbb7f9e078c7"; - sha1 = "b2371c3581ea2f2d70d525e36fdd1ecf0ad10c9a"; - }; - } - { - name = "580e5321fd44526870469c483c996be43a39476c"; - path = fetchurl { - name = "580e5321fd44526870469c483c996be43a39476c"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-m5000/tar.gz/580e5321fd44526870469c483c996be43a39476c"; - sha1 = "b620dab67ee0d6fcc01307142c01c55d4f1ff725"; - }; - } - { - name = "132dd273a54a77900a2f9a8ad1de392ac1f10849"; - path = fetchurl { - name = "132dd273a54a77900a2f9a8ad1de392ac1f10849"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-v1200hd/tar.gz/132dd273a54a77900a2f9a8ad1de392ac1f10849"; - sha1 = "aa00eecf5e23b5f5f2f2c55b99d3e0999770180f"; - }; - } - { - name = "88832ff65c1112f62e2457cd00f5a4c4e997d74b"; - path = fetchurl { - name = "88832ff65c1112f62e2457cd00f5a4c4e997d74b"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-v600uhd/tar.gz/88832ff65c1112f62e2457cd00f5a4c4e997d74b"; - sha1 = "1ada201a4fee669d89a6e6d409989c8a2feea4e6"; - }; - } - { - name = "5f5d841b31fb26111a91ab156e5756963039ec1e"; - path = fetchurl { - name = "5f5d841b31fb26111a91ab156e5756963039ec1e"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-v60hd/tar.gz/5f5d841b31fb26111a91ab156e5756963039ec1e"; - sha1 = "2a1d3e539d1d2471eac40703914eee4aecaa43d0"; - }; - } - { - name = "a2775e1ec6d22861821617e3cae039fc36bbaccd"; - path = fetchurl { - name = "a2775e1ec6d22861821617e3cae039fc36bbaccd"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-vp42h/tar.gz/a2775e1ec6d22861821617e3cae039fc36bbaccd"; - sha1 = "cfc9b8290fce9dd9b3f40b66e07a37c6bc7ef2de"; - }; - } - { - name = "d0e00d1d791c1aa379f8b4c36260bdcf299df0b7"; - path = fetchurl { - name = "d0e00d1d791c1aa379f8b4c36260bdcf299df0b7"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-vr50hd-mk2/tar.gz/d0e00d1d791c1aa379f8b4c36260bdcf299df0b7"; - sha1 = "38eb6b27816a19e0886d62774ff264b8739ae384"; - }; - } - { - name = "9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e"; - path = fetchurl { - name = "9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-xs42h/tar.gz/9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e"; - sha1 = "e125c4c3a0a91accb948bed4513bc288cb02b632"; - }; - } - { - name = "7d649c4c83eb4d470690391e1fd99a0992acaeef"; - path = fetchurl { - name = "7d649c4c83eb4d470690391e1fd99a0992acaeef"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-xs62s/tar.gz/7d649c4c83eb4d470690391e1fd99a0992acaeef"; - sha1 = "cad901e2d7f4cd002e14c98ad88c1e347d5af086"; - }; - } - { - name = "ee879c94aaf20a1882acce37b57f95bfe8d74b08"; - path = fetchurl { - name = "ee879c94aaf20a1882acce37b57f95bfe8d74b08"; - url = "https://codeload.github.com/bitfocus/companion-module-roland-xs84h/tar.gz/ee879c94aaf20a1882acce37b57f95bfe8d74b08"; - sha1 = "64ba300c505d2b3a895cd44eadc7f8ad9748705c"; - }; - } - { - name = "25810a26ffec50e961c6d2a613c6a8cf82a2a7d3"; - path = fetchurl { - name = "25810a26ffec50e961c6d2a613c6a8cf82a2a7d3"; - url = "https://codeload.github.com/bitfocus/companion-module-rossvideo-caprica/tar.gz/25810a26ffec50e961c6d2a613c6a8cf82a2a7d3"; - sha1 = "a726e8a8e74dcf915fe3335d147f4cec1ba76ed4"; - }; - } - { - name = "ff13aa71641b61b9c821f8746f154199e87ee3af"; - path = fetchurl { - name = "ff13aa71641b61b9c821f8746f154199e87ee3af"; - url = "https://codeload.github.com/bitfocus/companion-module-rossvideo-nkrouter/tar.gz/ff13aa71641b61b9c821f8746f154199e87ee3af"; - sha1 = "c41312373f81e00cd644e70e19ef09ea2cd31733"; - }; - } - { - name = "5017f3cd24e9a58aabc017ed748eac461de4d9c7"; - path = fetchurl { - name = "5017f3cd24e9a58aabc017ed748eac461de4d9c7"; - url = "https://codeload.github.com/bitfocus/companion-module-rossvideo-rosstalk/tar.gz/5017f3cd24e9a58aabc017ed748eac461de4d9c7"; - sha1 = "48eea61335171fc3ec446cc82acf31f6fa9ce36c"; - }; - } - { - name = "d8b48cfde173c6f0f177595d08f8fc608602f22e"; - path = fetchurl { - name = "d8b48cfde173c6f0f177595d08f8fc608602f22e"; - url = "https://codeload.github.com/bitfocus/companion-module-rossvideo-xpression/tar.gz/d8b48cfde173c6f0f177595d08f8fc608602f22e"; - sha1 = "743e82fd458ed8eb8f70f949ed12dfba5d3466ee"; - }; - } - { - name = "93fb898fe631a9a940b269f94b90644e4163982b"; - path = fetchurl { - name = "93fb898fe631a9a940b269f94b90644e4163982b"; - url = "https://codeload.github.com/bitfocus/companion-module-sain-smart-relay/tar.gz/93fb898fe631a9a940b269f94b90644e4163982b"; - sha1 = "2e64bf5d7c99fde6eba59ddf598aa97ee8902799"; - }; - } - { - name = "058edcb36cac910f7264ed0f25fffc7a0c891731"; - path = fetchurl { - name = "058edcb36cac910f7264ed0f25fffc7a0c891731"; - url = "https://codeload.github.com/bitfocus/companion-module-seervision-suite/tar.gz/058edcb36cac910f7264ed0f25fffc7a0c891731"; - sha1 = "57d7b4b2fa8ace2378f1ee40c0833000d7fac508"; - }; - } - { - name = "b1d35877bb7c18b46edd3295e0b6c2809ebd1829"; - path = fetchurl { - name = "b1d35877bb7c18b46edd3295e0b6c2809ebd1829"; - url = "https://codeload.github.com/bitfocus/companion-module-sharp-tv/tar.gz/b1d35877bb7c18b46edd3295e0b6c2809ebd1829"; - sha1 = "d42600a8b99789cb7720cba89d591f85c1dcdd9d"; - }; - } - { - name = "3779545db8a50a95548f5350de10e870fce02373"; - path = fetchurl { - name = "3779545db8a50a95548f5350de10e870fce02373"; - url = "https://codeload.github.com/bitfocus/companion-module-showcuesystems-scs/tar.gz/3779545db8a50a95548f5350de10e870fce02373"; - sha1 = "b79070ab32c556ff41633a1222095507fe25ddbf"; - }; - } - { - name = "99997a3c2a5616b457cd0abec419a914ad87465c"; - path = fetchurl { - name = "99997a3c2a5616b457cd0abec419a914ad87465c"; - url = "https://codeload.github.com/bitfocus/companion-module-shure-dis-ccu/tar.gz/99997a3c2a5616b457cd0abec419a914ad87465c"; - sha1 = "1e437b0df7cfbe9addc3501ecf54f9d621878157"; - }; - } - { - name = "0ab3c8440f3e5ff12183f07a0c831b16dcc8e452"; - path = fetchurl { - name = "0ab3c8440f3e5ff12183f07a0c831b16dcc8e452"; - url = "https://codeload.github.com/bitfocus/companion-module-shure-psm1000/tar.gz/0ab3c8440f3e5ff12183f07a0c831b16dcc8e452"; - sha1 = "01a78d7a8956420dc4a79b855374c9a4667fa006"; - }; - } - { - name = "37780c1672c9a2ddd29dd141f745fc71df7d989a"; - path = fetchurl { - name = "37780c1672c9a2ddd29dd141f745fc71df7d989a"; - url = "https://codeload.github.com/bitfocus/companion-module-shure-scm820/tar.gz/37780c1672c9a2ddd29dd141f745fc71df7d989a"; - sha1 = "54c3f32a99563d02134e340769fc2d988c42f38a"; - }; - } - { - name = "ee38e990550aebb241936454282b3d1f812bfbe8"; - path = fetchurl { - name = "ee38e990550aebb241936454282b3d1f812bfbe8"; - url = "https://codeload.github.com/bitfocus/companion-module-shure-wireless/tar.gz/ee38e990550aebb241936454282b3d1f812bfbe8"; - sha1 = "64f86e8eaf4ad1488fa934a44b928f9d909671ab"; - }; - } - { - name = "23564ea3d942f66b91cc4df37a8b1cf7ea4661d3"; - path = fetchurl { - name = "23564ea3d942f66b91cc4df37a8b1cf7ea4661d3"; - url = "https://codeload.github.com/bitfocus/companion-module-sienna-ndimonitor/tar.gz/23564ea3d942f66b91cc4df37a8b1cf7ea4661d3"; - sha1 = "0e82e319b75de0d9b6c187be122d479a02207a3c"; - }; - } - { - name = "3da429714a4330b1e4ef7335229dc5a6928b704c"; - path = fetchurl { - name = "3da429714a4330b1e4ef7335229dc5a6928b704c"; - url = "https://codeload.github.com/bitfocus/companion-module-singularlive-studio/tar.gz/3da429714a4330b1e4ef7335229dc5a6928b704c"; - sha1 = "b72bb67ac44cc07ec3f084cfaafef5adde944b0f"; - }; - } - { - name = "d18447b43281d069308876aa2980c57688035710"; - path = fetchurl { - name = "d18447b43281d069308876aa2980c57688035710"; - url = "https://codeload.github.com/bitfocus/companion-module-slack-webhooks/tar.gz/d18447b43281d069308876aa2980c57688035710"; - sha1 = "338b818d6f5ee2226bae7dc65af3c7304658eafb"; - }; - } - { - name = "26ca705d7ec0f105a33837a732bc83113b31725c"; - path = fetchurl { - name = "26ca705d7ec0f105a33837a732bc83113b31725c"; - url = "https://codeload.github.com/bitfocus/companion-module-softron-movierecorder/tar.gz/26ca705d7ec0f105a33837a732bc83113b31725c"; - sha1 = "baec13c5a2c5e78a31091c1b7d7a199183419e24"; - }; - } - { - name = "0cf0f8f26003ee87e6ea85558f2315739ba236e5"; - path = fetchurl { - name = "0cf0f8f26003ee87e6ea85558f2315739ba236e5"; - url = "https://codeload.github.com/bitfocus/companion-module-softron-ontheairvideo/tar.gz/0cf0f8f26003ee87e6ea85558f2315739ba236e5"; - sha1 = "de8dfee1fca4f2635639b2992d33db42c0166d60"; - }; - } - { - name = "6c9240ec0f2c3e56b3e369c3cda7a410147f71f4"; - path = fetchurl { - name = "6c9240ec0f2c3e56b3e369c3cda7a410147f71f4"; - url = "https://codeload.github.com/bitfocus/companion-module-sononum-horae/tar.gz/6c9240ec0f2c3e56b3e369c3cda7a410147f71f4"; - sha1 = "b0ef0f8043ef4e7588890555dc4ed39849be147f"; - }; - } - { - name = "bfe159c295d15929f994772419668874fba5e900"; - path = fetchurl { - name = "bfe159c295d15929f994772419668874fba5e900"; - url = "https://codeload.github.com/bitfocus/companion-module-sonoran-coyote/tar.gz/bfe159c295d15929f994772419668874fba5e900"; - sha1 = "6d3373a0c1d65f4590f3530b1212654ca3308a9b"; - }; - } - { - name = "845424e0f1bea78a9e5009b212651d4301543414"; - path = fetchurl { - name = "845424e0f1bea78a9e5009b212651d4301543414"; - url = "https://codeload.github.com/bitfocus/companion-module-sonos-speakers/tar.gz/845424e0f1bea78a9e5009b212651d4301543414"; - sha1 = "2fd18df5f8e448901a1d7e4b808556e68370ab29"; - }; - } - { - name = "c464edba830c93e668d3ec64044530c126648f70"; - path = fetchurl { - name = "c464edba830c93e668d3ec64044530c126648f70"; - url = "https://codeload.github.com/bitfocus/companion-module-sony-bravia/tar.gz/c464edba830c93e668d3ec64044530c126648f70"; - sha1 = "93832228a0922145866484e42bdc9158e33432f7"; - }; - } - { - name = "e95ec2025d6647cb95b29bdb0dbfc23790b86922"; - path = fetchurl { - name = "e95ec2025d6647cb95b29bdb0dbfc23790b86922"; - url = "https://codeload.github.com/bitfocus/companion-module-sony-visca/tar.gz/e95ec2025d6647cb95b29bdb0dbfc23790b86922"; - sha1 = "e24c0a7c90bbc3d4e9fa988e429cb1fbcbb4d996"; - }; - } - { - name = "0805c986d9b3853ce9a7e95063bef6655944f57a"; - path = fetchurl { - name = "0805c986d9b3853ce9a7e95063bef6655944f57a"; - url = "https://codeload.github.com/bitfocus/companion-module-soundcraft-ui/tar.gz/0805c986d9b3853ce9a7e95063bef6655944f57a"; - sha1 = "77ad5a3b818131f0cfc70da12b5911bae0761788"; - }; - } - { - name = "ded91efc401513f33b2bb8a42ccd11cb3b73e419"; - path = fetchurl { - name = "ded91efc401513f33b2bb8a42ccd11cb3b73e419"; - url = "https://codeload.github.com/bitfocus/companion-module-sounddevices-pixnet/tar.gz/ded91efc401513f33b2bb8a42ccd11cb3b73e419"; - sha1 = "b126c5202b861cba71ce17329421748f2ecfd2b0"; - }; - } - { - name = "3d451b9d4814d46c6909965b1d7f10203ad82421"; - path = fetchurl { - name = "3d451b9d4814d46c6909965b1d7f10203ad82421"; - url = "https://codeload.github.com/bitfocus/companion-module-spotify-remote/tar.gz/3d451b9d4814d46c6909965b1d7f10203ad82421"; - sha1 = "60774ba01d2f955fffd6e3b325f0a3d19fa91237"; - }; - } - { - name = "99d8b79d73a828aa3bfd8f56bac8e6a24a62bcc0"; - path = fetchurl { - name = "99d8b79d73a828aa3bfd8f56bac8e6a24a62bcc0"; - url = "https://codeload.github.com/bitfocus/companion-module-spx-gc/tar.gz/99d8b79d73a828aa3bfd8f56bac8e6a24a62bcc0"; - sha1 = "a3899f5ce20690f5ad93d2e441a8ecab5e6728e1"; - }; - } - { - name = "a82ecec9c8a57e7b45a1302162105266b00054c7"; - path = fetchurl { - name = "a82ecec9c8a57e7b45a1302162105266b00054c7"; - url = "https://codeload.github.com/bitfocus/companion-module-studiocoast-vmix/tar.gz/a82ecec9c8a57e7b45a1302162105266b00054c7"; - sha1 = "ea751cc4f4408535826047814217966225ffa01c"; - }; - } - { - name = "aacfa6072d27a794e547a2257e5539fbc093f639"; - path = fetchurl { - name = "aacfa6072d27a794e547a2257e5539fbc093f639"; - url = "https://codeload.github.com/bitfocus/companion-module-symetrix-dsp/tar.gz/aacfa6072d27a794e547a2257e5539fbc093f639"; - sha1 = "234fde793b42885206570e135f5a5444a5c7f519"; - }; - } - { - name = "d0cc693d22d484bdb18a810634f4f02910fdc6fe"; - path = fetchurl { - name = "d0cc693d22d484bdb18a810634f4f02910fdc6fe"; - url = "https://codeload.github.com/bitfocus/companion-module-tallyma-wirelesstally/tar.gz/d0cc693d22d484bdb18a810634f4f02910fdc6fe"; - sha1 = "c455b5fc7fe6b85b040d2dd88a1d5be96fc37ec6"; - }; - } - { - name = "8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33"; - path = fetchurl { - name = "8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33"; - url = "https://codeload.github.com/bitfocus/companion-module-tascam-bdmp1/tar.gz/8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33"; - sha1 = "3dbca24b55a8a4f12ebaff495522d6996ca9f124"; - }; - } - { - name = "15f56292c03a353a12f8d1ea33b38d94d3dc9b09"; - path = fetchurl { - name = "15f56292c03a353a12f8d1ea33b38d94d3dc9b09"; - url = "https://codeload.github.com/bitfocus/companion-module-tascam-cd/tar.gz/15f56292c03a353a12f8d1ea33b38d94d3dc9b09"; - sha1 = "7fdf792d89b9eb330da3eef16f278d229c33f8c9"; - }; - } - { - name = "59f2998e0b9b41875c20cfee8b1c6775a587f987"; - path = fetchurl { - name = "59f2998e0b9b41875c20cfee8b1c6775a587f987"; - url = "https://codeload.github.com/bitfocus/companion-module-techministry-midirelay/tar.gz/59f2998e0b9b41875c20cfee8b1c6775a587f987"; - sha1 = "d15465df8029dafafaa3e5d82caf3768d36386fb"; - }; - } - { - name = "1e7ae64e9f42fdb261f603fbb2818aa5d0700091"; - path = fetchurl { - name = "1e7ae64e9f42fdb261f603fbb2818aa5d0700091"; - url = "https://codeload.github.com/bitfocus/companion-module-techministry-protally/tar.gz/1e7ae64e9f42fdb261f603fbb2818aa5d0700091"; - sha1 = "90657750ac44f0a96e67375e6efc3e8896758f3f"; - }; - } - { - name = "10b5fc774a153b1adc2cde1021636b82cc7b8850"; - path = fetchurl { - name = "10b5fc774a153b1adc2cde1021636b82cc7b8850"; - url = "https://codeload.github.com/bitfocus/companion-module-techministry-tallyarbiter/tar.gz/10b5fc774a153b1adc2cde1021636b82cc7b8850"; - sha1 = "83b69c724282cfe4bbce65616be59cc2f6979c4a"; - }; - } - { - name = "2f79bb9bbd8646d21f3942b89fd79eb6305c7a28"; - path = fetchurl { - name = "2f79bb9bbd8646d21f3942b89fd79eb6305c7a28"; - url = "https://codeload.github.com/bitfocus/companion-module-teracom-tcw181b/tar.gz/2f79bb9bbd8646d21f3942b89fd79eb6305c7a28"; - sha1 = "26718d1f09386738d4a8eb65222fa21eece8b58e"; - }; - } - { - name = "156c8665aa960e924daa52c89d45e0a7a06937f5"; - path = fetchurl { - name = "156c8665aa960e924daa52c89d45e0a7a06937f5"; - url = "https://codeload.github.com/bitfocus/companion-module-teradek-vidiu/tar.gz/156c8665aa960e924daa52c89d45e0a7a06937f5"; - sha1 = "26e1fdf024176421dc394ce6285986ea41ccc155"; - }; - } - { - name = "2f19dbedc1d69285eaf0c9388ba141841ef5424a"; - path = fetchurl { - name = "2f19dbedc1d69285eaf0c9388ba141841ef5424a"; - url = "https://codeload.github.com/bitfocus/companion-module-tesla-smart/tar.gz/2f19dbedc1d69285eaf0c9388ba141841ef5424a"; - sha1 = "a8d83aa3dc3412e4357fc6156048eb2c71041c63"; - }; - } - { - name = "4237d1d5643e6897d308bdacb6863ed86b1f6e71"; - path = fetchurl { - name = "4237d1d5643e6897d308bdacb6863ed86b1f6e71"; - url = "https://codeload.github.com/bitfocus/companion-module-thelightingcontroller/tar.gz/4237d1d5643e6897d308bdacb6863ed86b1f6e71"; - sha1 = "b7b7e77ccaa45f96ec80e4c0c8476d15fa27a9c5"; - }; - } - { - name = "728f4c593fff60995be0244b6a25bac53891505f"; - path = fetchurl { - name = "728f4c593fff60995be0244b6a25bac53891505f"; - url = "https://codeload.github.com/bitfocus/companion-module-thingm-blink1/tar.gz/728f4c593fff60995be0244b6a25bac53891505f"; - sha1 = "d3c2d3a2833c64395ccdc144149def599edb3a3c"; - }; - } - { - name = "5610184a3251a35d636e0bf44057a4f40fa028ac"; - path = fetchurl { - name = "5610184a3251a35d636e0bf44057a4f40fa028ac"; - url = "https://codeload.github.com/bitfocus/companion-module-tplink-kasasmartplug/tar.gz/5610184a3251a35d636e0bf44057a4f40fa028ac"; - sha1 = "27a22501d7999d4dfa74ef69c53ba926f57be1f5"; - }; - } - { - name = "e81d4a0f393b983bfed5a09adf27d91e11ef09f6"; - path = fetchurl { - name = "e81d4a0f393b983bfed5a09adf27d91e11ef09f6"; - url = "https://codeload.github.com/bitfocus/companion-module-tslproducts-umd/tar.gz/e81d4a0f393b983bfed5a09adf27d91e11ef09f6"; - sha1 = "5c8cd0caa44c46d4379c8eae6692783162436515"; - }; - } - { - name = "c70aa83095d0a7cc0ded18b4b058232473a3a1c5"; - path = fetchurl { - name = "c70aa83095d0a7cc0ded18b4b058232473a3a1c5"; - url = "https://codeload.github.com/bitfocus/companion-module-tvone-corio/tar.gz/c70aa83095d0a7cc0ded18b4b058232473a3a1c5"; - sha1 = "182c0dd69ee406552d4c8a5dfe8998ad04dd70ed"; - }; - } - { - name = "006526e7a0c77997d1c8ebce753c2359424ec607"; - path = fetchurl { - name = "006526e7a0c77997d1c8ebce753c2359424ec607"; - url = "https://codeload.github.com/bitfocus/companion-module-twitch-api/tar.gz/006526e7a0c77997d1c8ebce753c2359424ec607"; - sha1 = "ba9f7b771dfd9630af200f3fc5aed6e2cc512ee0"; - }; - } - { - name = "a2afb925f30ab9baf64a01de8649e4c14415b0fe"; - path = fetchurl { - name = "a2afb925f30ab9baf64a01de8649e4c14415b0fe"; - url = "https://codeload.github.com/bitfocus/companion-module-ubiquiti-unifi/tar.gz/a2afb925f30ab9baf64a01de8649e4c14415b0fe"; - sha1 = "a346e75e8af7085d182e509d75e295bcd0592d0c"; - }; - } - { - name = "16bf099f3c35aa231c74b10b6b2cb60f93ef63a1"; - path = fetchurl { - name = "16bf099f3c35aa231c74b10b6b2cb60f93ef63a1"; - url = "https://codeload.github.com/bitfocus/companion-module-vaddio-ptz/tar.gz/16bf099f3c35aa231c74b10b6b2cb60f93ef63a1"; - sha1 = "53acf8cd752286374c8456d315e0367522858b0b"; - }; - } - { - name = "f010e5598a42ea094f38f3f9d9c536f1c50a7e01"; - path = fetchurl { - name = "f010e5598a42ea094f38f3f9d9c536f1c50a7e01"; - url = "https://codeload.github.com/bitfocus/companion-module-vicreo-hotkey/tar.gz/f010e5598a42ea094f38f3f9d9c536f1c50a7e01"; - sha1 = "893b4d83fa0ec5c244659e1b29282c6f36a148f3"; - }; - } - { - name = "f71becbb6b4d68e5c091cedb434235e9af44d309"; - path = fetchurl { - name = "f71becbb6b4d68e5c091cedb434235e9af44d309"; - url = "https://codeload.github.com/bitfocus/companion-module-vicreo-variablelistener/tar.gz/f71becbb6b4d68e5c091cedb434235e9af44d309"; - sha1 = "f0204697a6d1993b26afc2390508bbac7cc92f73"; - }; - } - { - name = "0c84f58892cb92900182dd56c6cb8bbbcf640368"; - path = fetchurl { - name = "0c84f58892cb92900182dd56c6cb8bbbcf640368"; - url = "https://codeload.github.com/bitfocus/companion-module-videolan-vlc/tar.gz/0c84f58892cb92900182dd56c6cb8bbbcf640368"; - sha1 = "b1453f3c474e39fe9e100bda212c655345286b0b"; - }; - } - { - name = "6ccb8cef1ccebed26dc1a47f16c959bb55a74732"; - path = fetchurl { - name = "6ccb8cef1ccebed26dc1a47f16c959bb55a74732"; - url = "https://codeload.github.com/bitfocus/companion-module-visualproductions-bstation2/tar.gz/6ccb8cef1ccebed26dc1a47f16c959bb55a74732"; - sha1 = "71b3da5d22b173dbc05be120c4363bed0ea0ba02"; - }; - } - { - name = "50f78602ee98ecfa750465edfd69c7c59a774297"; - path = fetchurl { - name = "50f78602ee98ecfa750465edfd69c7c59a774297"; - url = "https://codeload.github.com/bitfocus/companion-module-vivitek-projector/tar.gz/50f78602ee98ecfa750465edfd69c7c59a774297"; - sha1 = "7ccd4c817df18a1323de881191bfb808947ac084"; - }; - } - { - name = "67e9022739c9d36907d2e09b20ccd5c91ebe2d82"; - path = fetchurl { - name = "67e9022739c9d36907d2e09b20ccd5c91ebe2d82"; - url = "https://codeload.github.com/bitfocus/companion-module-vizio-smartcast/tar.gz/67e9022739c9d36907d2e09b20ccd5c91ebe2d82"; - sha1 = "cb8598f44af8a6e5837a705cf12b971e9e6b2849"; - }; - } - { - name = "a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b"; - path = fetchurl { - name = "a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b"; - url = "https://codeload.github.com/bitfocus/companion-module-vyv-photon/tar.gz/a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b"; - sha1 = "ef8974061144f35ba734e11a9f7d63b762d2f8f6"; - }; - } - { - name = "d900755e93d4962a3384068a1791a3776907d970"; - path = fetchurl { - name = "d900755e93d4962a3384068a1791a3776907d970"; - url = "https://codeload.github.com/bitfocus/companion-module-wyrestorm-sw0402mv/tar.gz/d900755e93d4962a3384068a1791a3776907d970"; - sha1 = "7007501afee25e4b91ad18f859bca0d5189857dd"; - }; - } - { - name = "5bd1b9f69cf9d56164625cae941f4cfa9ec5687e"; - path = fetchurl { - name = "5bd1b9f69cf9d56164625cae941f4cfa9ec5687e"; - url = "https://codeload.github.com/bitfocus/companion-module-xiamen-sprolink-vd-series/tar.gz/5bd1b9f69cf9d56164625cae941f4cfa9ec5687e"; - sha1 = "295313d16ddf690c22d6b59118613d821c9ee5ab"; - }; - } - { - name = "12305273d4aee2f53a1b77debd55c4facb49a003"; - path = fetchurl { - name = "12305273d4aee2f53a1b77debd55c4facb49a003"; - url = "https://codeload.github.com/bitfocus/companion-module-yamaha-rcp/tar.gz/12305273d4aee2f53a1b77debd55c4facb49a003"; - sha1 = "ada1f3ba508210eabf5a35726bdc44c9519317b0"; - }; - } - { - name = "b36298a53f0aa89832642aa106f6ec53fd6cc228"; - path = fetchurl { - name = "b36298a53f0aa89832642aa106f6ec53fd6cc228"; - url = "https://codeload.github.com/bitfocus/companion-module-youtube-live/tar.gz/b36298a53f0aa89832642aa106f6ec53fd6cc228"; - sha1 = "1037262fa72b765e2972357b063aefe93349366c"; - }; - } - { - name = "ced6d739e85cb1eee177c5bf6be79443872793d1"; - path = fetchurl { - name = "ced6d739e85cb1eee177c5bf6be79443872793d1"; - url = "https://codeload.github.com/bitfocus/companion-module-zenvideo-ndirouter/tar.gz/ced6d739e85cb1eee177c5bf6be79443872793d1"; - sha1 = "1e55811fb907ec642b9b83539f312dfbb3b9466f"; - }; - } + name = "eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-7thsensedesign-delta.git"; + rev = "eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0"; + sha256 = "1lp76f4lpdanbwk0s3925cfi3b4vh6f24fwixv2p3jdf64g8vn0i"; + }; + in + runCommand "eb4ce25837dbb1cd3f8773a9540e2c13de9a50b0" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "888b7dac470f2037bf61f3982d55ef644384c418"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-agf-characterworks.git"; + rev = "888b7dac470f2037bf61f3982d55ef644384c418"; + sha256 = "137vd4rn88fhgxgz8v1yc2y7szsy425apfm0jjd0y39dgk9h969p"; + }; + in + runCommand "888b7dac470f2037bf61f3982d55ef644384c418" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d5addc1241d300e28e1f6905bc267698ae2d2584"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-aja-helo.git"; + rev = "d5addc1241d300e28e1f6905bc267698ae2d2584"; + sha256 = "1i9vb100hp62wll53apkwg8kqak3as44xlw247v27aif4b9r247y"; + }; + in + runCommand "d5addc1241d300e28e1f6905bc267698ae2d2584" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9511018462d962e2fe187f434dc9c1deae89cba9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-aja-kipro.git"; + rev = "9511018462d962e2fe187f434dc9c1deae89cba9"; + sha256 = "16dv634ggzwdvz1b5mc5d6mgg7r7sfqcdl4m1schgp65h993l9z9"; + }; + in + runCommand "9511018462d962e2fe187f434dc9c1deae89cba9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-aja-kumo.git"; + rev = "7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7"; + sha256 = "07m4j75jv4rrndbzljrfx7gzhbsiihaix8gqv81ap5jknxa0b1z9"; + }; + in + runCommand "7d212e32ebbac8ffc8d61a53e33f1a83aaa2eaa7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "645d3a4120341f5a4053caa7143169014008dad3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-allenheath-dlive-ilive.git"; + rev = "645d3a4120341f5a4053caa7143169014008dad3"; + sha256 = "1mmapl4gmh4qr22ldhr5nnkpc1sv5njqgkqvdc959pixyy58q4f6"; + }; + in + runCommand "645d3a4120341f5a4053caa7143169014008dad3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8f8b20b9642f5ea840bceb8439155fca39587e17"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-allenheath-qu.git"; + rev = "8f8b20b9642f5ea840bceb8439155fca39587e17"; + sha256 = "074h4krmfyv6f2ydy1z2w79md936v46z5zpnilnigm5hclmnp2bh"; + }; + in + runCommand "8f8b20b9642f5ea840bceb8439155fca39587e17" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0c65f0635c5d645f21a64c40cff8f211cb016791"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-allenheath-sq.git"; + rev = "0c65f0635c5d645f21a64c40cff8f211cb016791"; + sha256 = "0wbzs9wd1mcxw33k64hnnfc4s580jqd5nplf4j3vrgwp9fg1rdzp"; + }; + in + runCommand "0c65f0635c5d645f21a64c40cff8f211cb016791" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4bfda3db526538421154eb84b437150dbf72caeb"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-eks500.git"; + rev = "4bfda3db526538421154eb84b437150dbf72caeb"; + sha256 = "141nb6rpzm57ky12f5wixly93ppcrl63vkxpadcmwz6jyln9rk2k"; + }; + in + runCommand "4bfda3db526538421154eb84b437150dbf72caeb" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5f9b768751f6da7ee5b8242325d501d38154ed8c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-livecore.git"; + rev = "5f9b768751f6da7ee5b8242325d501d38154ed8c"; + sha256 = "1m66h394yw529z4lmqg07ix02xiipbzc6504dg5hh0gxqdkbkxw0"; + }; + in + runCommand "5f9b768751f6da7ee5b8242325d501d38154ed8c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d9cf68468ee0104f3bf7541186a27dcb9d2c98b0"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-livepremier.git"; + rev = "d9cf68468ee0104f3bf7541186a27dcb9d2c98b0"; + sha256 = "0w4q1zhx5c8x4pcgbn3a1mj0sb5n817n2lw0kwkwha8r9mlc7b9q"; + }; + in + runCommand "d9cf68468ee0104f3bf7541186a27dcb9d2c98b0" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4644a72e34baf6a7b5b9c37878e326ca82d96642"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-midra.git"; + rev = "4644a72e34baf6a7b5b9c37878e326ca82d96642"; + sha256 = "14izcyv283fj9ghfbrn7rs40fgq84s8i5zxhbvaflkv4grc6caf2"; + }; + in + runCommand "4644a72e34baf6a7b5b9c37878e326ca82d96642" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "79f36637e21e89f435582c4b734e2e7066d9c0c4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-picturall.git"; + rev = "79f36637e21e89f435582c4b734e2e7066d9c0c4"; + sha256 = "1b50wqdin2zpiffnlq76cxfikkwpjm1hizx06idrdvigvfiwby4c"; + }; + in + runCommand "79f36637e21e89f435582c4b734e2e7066d9c0c4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c04224c70b5d54e666c4b0f7d482b795b2c6c5bf"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-pls300.git"; + rev = "c04224c70b5d54e666c4b0f7d482b795b2c6c5bf"; + sha256 = "01w8js0lxsivmlx2418shpskldh58yq6n6x5nmfd971yx5rxniq1"; + }; + in + runCommand "c04224c70b5d54e666c4b0f7d482b795b2c6c5bf" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "693134b1c1515076de818cd5d3da7d5cf35b241f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-vertige.git"; + rev = "693134b1c1515076de818cd5d3da7d5cf35b241f"; + sha256 = "0f4g6ik6430grchlmlsils3y3z95wcn5gwm1csg9avsj0a56sa63"; + }; + in + runCommand "693134b1c1515076de818cd5d3da7d5cf35b241f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-analogway-vio.git"; + rev = "aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb"; + sha256 = "14jcwwpdzjsnslsy7pzgjig5v8gwwrnha1gh4i9j4kgn25wly8xk"; + }; + in + runCommand "aa0f9bfeeb2ebeda4c0770e992a706a34caeaffb" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "121d069e6c292521c71ba812f1bf605b40c46b0e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-anomes-millumin.git"; + rev = "121d069e6c292521c71ba812f1bf605b40c46b0e"; + sha256 = "1wdiy66m7msxdczdxr05dbgcs6g1fjl3dmwlhw9zjpm1qs61sslf"; + }; + in + runCommand "121d069e6c292521c71ba812f1bf605b40c46b0e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d5094fb5e4bf48991a3a4d34d2ca2b4355a8a1ee"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-arkaos-mediamaster.git"; + rev = "d5094fb5e4bf48991a3a4d34d2ca2b4355a8a1ee"; + sha256 = "0v33v46zxvxb2d472mv6yjqwpag64cx4sa1543118bd3bp54arzl"; + }; + in + runCommand "d5094fb5e4bf48991a3a4d34d2ca2b4355a8a1ee" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5f71055fd1c5d788662f8422153bb82abe09257c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-aten-matrix.git"; + rev = "5f71055fd1c5d788662f8422153bb82abe09257c"; + sha256 = "03cjij85ih4s3xz2aipa73pcb1cvqn4sbv0s978vp05k7ynhly6s"; + }; + in + runCommand "5f71055fd1c5d788662f8422153bb82abe09257c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "863f264987520bb23a21c734ae618e31f818f66b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-audiostrom-liveprofessor.git"; + rev = "863f264987520bb23a21c734ae618e31f818f66b"; + sha256 = "1g0qsakqlq274npb3pa3v07cx20gglldagjl3msyndpsma3q5jan"; + }; + in + runCommand "863f264987520bb23a21c734ae618e31f818f66b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-audivero-unityintercom-client.git"; + rev = "6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3"; + sha256 = "1lb10khk0hlxsa5jma7ih0x5g3b7nlcf3n5f9lm7k75wif0iknff"; + }; + in + runCommand "6a4f3e56bdec7a70df7480f7b0c5e4842350b5c3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9f505e539643e4040ec7ce95645a4d7cfbdc67ad"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-avishop-hdbaset-matrix.git"; + rev = "9f505e539643e4040ec7ce95645a4d7cfbdc67ad"; + sha256 = "0rvnjss0fva7sm0r5nj4fj20vd8nc4wn9c0w44frp2wlc642zy2q"; + }; + in + runCommand "9f505e539643e4040ec7ce95645a4d7cfbdc67ad" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b918c3a66d77454c7321bf8167554f8cc740c680"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-avolites-ai.git"; + rev = "b918c3a66d77454c7321bf8167554f8cc740c680"; + sha256 = "0x0189jx1q4mjg816cwspfyzkjalm5ai5m6l29p0l34wsj6z9x7w"; + }; + in + runCommand "b918c3a66d77454c7321bf8167554f8cc740c680" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-avolites-titan.git"; + rev = "de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed"; + sha256 = "01f0pn9i42xlcjfwvppbm6jr256cirx6wkhz1kxpra6j7j0s101d"; + }; + in + runCommand "de9fc5ee082bf0373ddb0a7fdcf2c18f8015e4ed" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-avproconnect-acmx1616-auhd.git"; + rev = "07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708"; + sha256 = "01h44s79p9i927qim363bqr22b4l3q27kdq0f0namwc8l2dvml7a"; + }; + in + runCommand "07b8dfd7ac20444bc8cbd5c61d92a4cf46cda708" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "325859d6596422bdc3be256231964efc4201464f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-avstumpfl-pixera.git"; + rev = "325859d6596422bdc3be256231964efc4201464f"; + sha256 = "0yxh9c2wck25a9hjj0gi58bsfn71vy34qvbaybkw4dkwmwi9126b"; + }; + in + runCommand "325859d6596422bdc3be256231964efc4201464f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "19c822eb8a6c68a9b78ea67aa2782ddc621c37b4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-axis-ptz.git"; + rev = "19c822eb8a6c68a9b78ea67aa2782ddc621c37b4"; + sha256 = "02sxk6hv7qz5r0vghcmz1n9nqzyynv49ib71s6hxqf665nzimjfl"; + }; + in + runCommand "19c822eb8a6c68a9b78ea67aa2782ddc621c37b4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a020f5152e5ec88a4aba091e1c246308e1271d94"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-dcs.git"; + rev = "a020f5152e5ec88a4aba091e1c246308e1271d94"; + sha256 = "07yi1l1na4w41rvijkg3v9yf1jlwla4np4qcf4f87idvdsg36n95"; + }; + in + runCommand "a020f5152e5ec88a4aba091e1c246308e1271d94" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "543453a0eb05aa8271f140495f364e796c22f734"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-dp.git"; + rev = "543453a0eb05aa8271f140495f364e796c22f734"; + sha256 = "0s1v6v8jjji4fpdb5sc7824vq77piipfglnnaxai09zawf60ai7d"; + }; + in + runCommand "543453a0eb05aa8271f140495f364e796c22f734" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3d2f214752d56ec8dd8585e85e0705c49a50dcd0"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-encore.git"; + rev = "3d2f214752d56ec8dd8585e85e0705c49a50dcd0"; + sha256 = "00l0s5xn9nqjzc75g1dnva7p48c31q91vw5rfga0c1jk4ki5rsdc"; + }; + in + runCommand "3d2f214752d56ec8dd8585e85e0705c49a50dcd0" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "09dc986cac1c18648bfd1eae2200054e43ef49ac"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-eventmaster-xml.git"; + rev = "09dc986cac1c18648bfd1eae2200054e43ef49ac"; + sha256 = "0bgqbhrph122mgjlr4wxxs567c19b1gwawlf00qpjpn1x6yalk7r"; + }; + in + runCommand "09dc986cac1c18648bfd1eae2200054e43ef49ac" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "80e54c074dcf613fedfa7274adb44ba3c2485875"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-eventmaster.git"; + rev = "80e54c074dcf613fedfa7274adb44ba3c2485875"; + sha256 = "01faiwirdlcli5njmp5hf3iayzfz46y5igh2yy4x7anb6f7j7b8k"; + }; + in + runCommand "80e54c074dcf613fedfa7274adb44ba3c2485875" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-hdx.git"; + rev = "db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6"; + sha256 = "1x9qnjlk67m275lfmfkl78wfw50b8f40j7jvqwmzkb6wmvm451xl"; + }; + in + runCommand "db5d7652b5f1f6eaf5d951d11aaa83204dfaa4b6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-imagepro.git"; + rev = "ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3"; + sha256 = "02dxnmkkp5iwpn93kjfp618ciix9qa6bx4b4i9ipqml4xpv14nal"; + }; + in + runCommand "ea8ebaee543cd724efca4ac1b9f5c34f8a9a7ac3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "83bb6bf3187e43b33006e2b18349871669b7cd47"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-matrixpro.git"; + rev = "83bb6bf3187e43b33006e2b18349871669b7cd47"; + sha256 = "0qmnaalfz30j2x7wwz18sxhvr5f2vglcni0czp4diiva7gaglmr3"; + }; + in + runCommand "83bb6bf3187e43b33006e2b18349871669b7cd47" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "65a95e65c275ecefcdf8768c259f4c3d5109110d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-pds.git"; + rev = "65a95e65c275ecefcdf8768c259f4c3d5109110d"; + sha256 = "1rnrmmp74d8d25zl04inf0755vpsq5y5jrdnj2pqz9nl2mjplddg"; + }; + in + runCommand "65a95e65c275ecefcdf8768c259f4c3d5109110d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "580d7f1304dc02210a3baa0096a9fc4f649b25c2"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-barco-pulse.git"; + rev = "580d7f1304dc02210a3baa0096a9fc4f649b25c2"; + sha256 = "0wbl8rri5slbhzyn8b1dvrqvqqfl9gmh53qdhlcl665i1bbs64c7"; + }; + in + runCommand "580d7f1304dc02210a3baa0096a9fc4f649b25c2" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0546bca114e11bcea2a9f66cb10e3cada0b14a08"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bbc-raven.git"; + rev = "0546bca114e11bcea2a9f66cb10e3cada0b14a08"; + sha256 = "10p5smal7xzfqlzmq91iwxpgp9i84mlb84himpl430r68yyn869b"; + }; + in + runCommand "0546bca114e11bcea2a9f66cb10e3cada0b14a08" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "322fb2e32bd8a4b39592817b6472581084c5f8fa"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-behringer-wing.git"; + rev = "322fb2e32bd8a4b39592817b6472581084c5f8fa"; + sha256 = "1jmfdx7kh6czmvhikgx2i5ja97hxkl9sklhk69pbxczbn3x0xzl5"; + }; + in + runCommand "322fb2e32bd8a4b39592817b6472581084c5f8fa" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9f5105503152247a721666309721feb9eaa81961"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-behringer-x32.git"; + rev = "9f5105503152247a721666309721feb9eaa81961"; + sha256 = "110p3f0gy7c6mv6knfmqmcfd60sgqbi17d5lysim2sl5fvbjcqap"; + }; + in + runCommand "9f5105503152247a721666309721feb9eaa81961" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-behringer-xair.git"; + rev = "927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c"; + sha256 = "19mrd50k9ma19g6qvfrbdgs2rwdyn8bh6zygjpr6ym8jrflysih4"; + }; + in + runCommand "927c7d6ccd122e0e6dd4f5f0c0f4f8490e09a85c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8824cd4569c78ed0a42c93e730b533dd2005d179"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-biamp-audia.git"; + rev = "8824cd4569c78ed0a42c93e730b533dd2005d179"; + sha256 = "1k7jc60ij48q4vhmr418q0klmfprb5ji7yak35s3kkxbj63avwl4"; + }; + in + runCommand "8824cd4569c78ed0a42c93e730b533dd2005d179" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5f59b86bf2b193b0c7d098fd6df0cd74497c669a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-birddog-studio.git"; + rev = "5f59b86bf2b193b0c7d098fd6df0cd74497c669a"; + sha256 = "07xk2q603b6r53ggsrcrmh8bdxia3b7310zhl5nbkp6pzd28ll3f"; + }; + in + runCommand "5f59b86bf2b193b0c7d098fd6df0cd74497c669a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fb156bf173c92bcef03e19a4771b44064c27eb33"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-birddog-visca.git"; + rev = "fb156bf173c92bcef03e19a4771b44064c27eb33"; + sha256 = "056c7ldc2nlyyv4wyzziv7bpd1sinbv10ynln3mybyz6gdnvi3gy"; + }; + in + runCommand "fb156bf173c92bcef03e19a4771b44064c27eb33" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6d49494f8314558c739f752e2ded64d8724a4b90"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bitfocus-companion.git"; + rev = "6d49494f8314558c739f752e2ded64d8724a4b90"; + sha256 = "03rc1lcy3qis8x7rwbfm4ddvdgg7jyqv2zcrbwqcyx0fwhppk2pn"; + }; + in + runCommand "6d49494f8314558c739f752e2ded64d8724a4b90" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "10ab10c502f9c46e1fc965f36c024e8c335c41ce"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bitfocus-snapshot.git"; + rev = "10ab10c502f9c46e1fc965f36c024e8c335c41ce"; + sha256 = "0qvng9r187vx035vjgjbpnv97a2q4rgvykmyqyj9mkxf90i7mcs4"; + }; + in + runCommand "10ab10c502f9c46e1fc965f36c024e8c335c41ce" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "844813029aacbb3c4e3028f27b08f1761f0927de"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-blackbird-hdmimatrix.git"; + rev = "844813029aacbb3c4e3028f27b08f1761f0927de"; + sha256 = "17903xmczihar6c3d8j7n4fzvgyhyjcc02qgybq1sx1knqclq4vn"; + }; + in + runCommand "844813029aacbb3c4e3028f27b08f1761f0927de" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-blackbox-boxilla.git"; + rev = "5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2"; + sha256 = "1jhkrpr36h6mmaabj7b4bjw2pliig5kz123naxsghdnlpgigbh9f"; + }; + in + runCommand "5a0fdf5f0c79f7fec8cf932d9f91942d095bfbf2" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "850a80132d8dba3da7756b743e56c871648cb694"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-blackdiamondvideo-phantom800.git"; + rev = "850a80132d8dba3da7756b743e56c871648cb694"; + sha256 = "1mqv99qyjiv93y1riaqj37b0rq1g89xv9i9v50ckczjnah9iz5z1"; + }; + in + runCommand "850a80132d8dba3da7756b743e56c871648cb694" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9711fcd43b0458c92d0c140e27213dc29837eb5e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-atem.git"; + rev = "9711fcd43b0458c92d0c140e27213dc29837eb5e"; + sha256 = "0bq7d5qis4hzny1bgasw4jng0cbdhyvzkaf6r0msnb27mpy011gq"; + }; + in + runCommand "9711fcd43b0458c92d0c140e27213dc29837eb5e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "99da63978df4770532677ce71587966d9ba1d098"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-audiomonitor.git"; + rev = "99da63978df4770532677ce71587966d9ba1d098"; + sha256 = "0biqsdg5mc9yxw001m7qdhnwdcvia9g3kk471qz8a6ilx4jdkqrb"; + }; + in + runCommand "99da63978df4770532677ce71587966d9ba1d098" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "32523bf393ffe50cf316537bfa4185746fd17bb7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-hyperdeck.git"; + rev = "32523bf393ffe50cf316537bfa4185746fd17bb7"; + sha256 = "1jl5l9926mip10qa697amjh070mv2hdq4951x8jk45qamp9n4kyn"; + }; + in + runCommand "32523bf393ffe50cf316537bfa4185746fd17bb7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7b40bc40202779e0ff83a7f36912815da0f2fe35"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-multiview16.git"; + rev = "7b40bc40202779e0ff83a7f36912815da0f2fe35"; + sha256 = "1sypb2rqa22fghq2hr8jiywq4dwq4wsl4c8wss8q8bqmw6l314vg"; + }; + in + runCommand "7b40bc40202779e0ff83a7f36912815da0f2fe35" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9b36c8c7222e5252802cce85e85673636c2a3a29"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-multiview4.git"; + rev = "9b36c8c7222e5252802cce85e85673636c2a3a29"; + sha256 = "1d5dhh3ykh23b8lbfcq2d3n9imrr17gsh8zddw5hzxrfz6k2wsiv"; + }; + in + runCommand "9b36c8c7222e5252802cce85e85673636c2a3a29" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "200ebc7a4a544ae07c742002bc7605e14495a319"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-smartview.git"; + rev = "200ebc7a4a544ae07c742002bc7605e14495a319"; + sha256 = "1m2nbxbp4cjyk0vii4dxz0wyj65h8sj9bh4nfn267y31ij1ny6nh"; + }; + in + runCommand "200ebc7a4a544ae07c742002bc7605e14495a319" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c0a78e6ace2c65ab8ce052ac50fce6bbe7971047"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-teranex.git"; + rev = "c0a78e6ace2c65ab8ce052ac50fce6bbe7971047"; + sha256 = "0c6b4jwjszrjn5v251qiql6fnl517waccfc34987y2h8accf2y6x"; + }; + in + runCommand "c0a78e6ace2c65ab8ce052ac50fce6bbe7971047" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "eacc96e714a9c0211cab2f29a73f923ff9755c29"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-videohub.git"; + rev = "eacc96e714a9c0211cab2f29a73f923ff9755c29"; + sha256 = "0i3zwsb3mzq2hckscrc82ck1b29xk7n8awyax2x90f9ykqldamwm"; + }; + in + runCommand "eacc96e714a9c0211cab2f29a73f923ff9755c29" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9433fd81bd197fbe652344b8b9c6e7b8b63f0b60"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bmd-webpresenterhd.git"; + rev = "9433fd81bd197fbe652344b8b9c6e7b8b63f0b60"; + sha256 = "0y6azbgpn23zr2jmycqn1vxqzzqqqjf2l50i0sn1l0iq61x7m9li"; + }; + in + runCommand "9433fd81bd197fbe652344b8b9c6e7b8b63f0b60" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f5b5ff67c08c5f430649c7d68a2734c1e9f391ea"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-boinx-mimolive.git"; + rev = "f5b5ff67c08c5f430649c7d68a2734c1e9f391ea"; + sha256 = "1nkxj50jwl3zl8i3qx66par0s4b3y4j48sx7cbqj2ji1hlh7d9jz"; + }; + in + runCommand "f5b5ff67c08c5f430649c7d68a2734c1e9f391ea" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "68aa2e20eebd67367c71ea1e30260988508eb854"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-borealsystems-director.git"; + rev = "68aa2e20eebd67367c71ea1e30260988508eb854"; + sha256 = "0h92g06ndwxhqkd6sm5svf2k0xh4ymvp7fj29mvs89mikq6yma1m"; + }; + in + runCommand "68aa2e20eebd67367c71ea1e30260988508eb854" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "56d86cca903aa834de763308ad27b5ad1222bd5c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-brightsign-player.git"; + rev = "56d86cca903aa834de763308ad27b5ad1222bd5c"; + sha256 = "12w1iplwnb9v24imxr9h5518a5ligxivrj1vv96mkbmhj5k06h27"; + }; + in + runCommand "56d86cca903aa834de763308ad27b5ad1222bd5c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f8d4b454731a01e6efa4f58f6f57e801458f7313"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-brompton-tessera.git"; + rev = "f8d4b454731a01e6efa4f58f6f57e801458f7313"; + sha256 = "0bpd6rn20b4r2q82skxzznvpfb1lh3rplljybc57s8wcplh82204"; + }; + in + runCommand "f8d4b454731a01e6efa4f58f6f57e801458f7313" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "97ad661d3011c84c53234ec02cff54171de2f4fc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-bytehive-playoutbee.git"; + rev = "97ad661d3011c84c53234ec02cff54171de2f4fc"; + sha256 = "1cdwn9z88ncdw3vi0hx3k1vhvi952npm1qfxd5p8d37knr3jxdlj"; + }; + in + runCommand "97ad661d3011c84c53234ec02cff54171de2f4fc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "714a2b174f026b82fbd8c27a1d987dd4b2a7139d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-canon-xf.git"; + rev = "714a2b174f026b82fbd8c27a1d987dd4b2a7139d"; + sha256 = "1dphlj3nincwfbxmv8sv8nfbqjsqcmm6h3ph5nvyn5jl1x5hg7jp"; + }; + in + runCommand "714a2b174f026b82fbd8c27a1d987dd4b2a7139d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a023aa591c61450fbfc0e029c1d07e64f4c64dfb"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-casparcg-server.git"; + rev = "a023aa591c61450fbfc0e029c1d07e64f4c64dfb"; + sha256 = "04bx8rcizhw3ss055zk9y0cc4lk0fl1p6y2yljfaxnn3bq3habnr"; + }; + in + runCommand "a023aa591c61450fbfc0e029c1d07e64f4c64dfb" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f63b96900e569a79c1430d13726652c9bd9b9a6f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-chamsys-magicq-osc.git"; + rev = "f63b96900e569a79c1430d13726652c9bd9b9a6f"; + sha256 = "0wc1j19av3c30r0fnhwdg753dwa3shxlx9snch29rjgb5vhq178r"; + }; + in + runCommand "f63b96900e569a79c1430d13726652c9bd9b9a6f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6b4d757122dc66b8d93e3e96da225d56d8f79af8"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-chamsys-magicq-udp.git"; + rev = "6b4d757122dc66b8d93e3e96da225d56d8f79af8"; + sha256 = "1zriyxxnmwpcvxv8afii1msqdckmj7115h9phhrz5vzmavqkw04k"; + }; + in + runCommand "6b4d757122dc66b8d93e3e96da225d56d8f79af8" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "237193dc1d6dda650d46ee43c1efdadd75724e06"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-christie-pandorasbox.git"; + rev = "237193dc1d6dda650d46ee43c1efdadd75724e06"; + sha256 = "13w4ldk4n41ql52r13j8w0g4akfww5n3pswkgwywx2h6bsaqgyw3"; + }; + in + runCommand "237193dc1d6dda650d46ee43c1efdadd75724e06" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4f487399f6233cac8dec0b220230ce3e43ebd70d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-christie-projector.git"; + rev = "4f487399f6233cac8dec0b220230ce3e43ebd70d"; + sha256 = "16z83g828wdz7prf9kpgsf7msf9h8fsy70bqr89m02zha4y289h0"; + }; + in + runCommand "4f487399f6233cac8dec0b220230ce3e43ebd70d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1828e8c5db6f89accf1be43c5044ae832a56f03c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-christie-spyder.git"; + rev = "1828e8c5db6f89accf1be43c5044ae832a56f03c"; + sha256 = "0j2nq1wvwr0n55dh7dsck9arh5azhz3n90w5idmpjfqr3fwdam1a"; + }; + in + runCommand "1828e8c5db6f89accf1be43c5044ae832a56f03c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "e28f726ce87ef54604482930622fb14f471a2f88"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-christie-wd.git"; + rev = "e28f726ce87ef54604482930622fb14f471a2f88"; + sha256 = "0iv90bxgxdi4802kph1ajpabq7c2sy2wry9zgrff71ian8jknyjs"; + }; + in + runCommand "e28f726ce87ef54604482930622fb14f471a2f88" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4018eac85861e8f27f391937bf5e14da5c40b2f1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-cisco-cms.git"; + rev = "4018eac85861e8f27f391937bf5e14da5c40b2f1"; + sha256 = "115y5xz5wl5pf00lqsfxwljha9353zlrlivmkv6vvl089n8n0vkx"; + }; + in + runCommand "4018eac85861e8f27f391937bf5e14da5c40b2f1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6a41d714f16cfb44ad24a5506ffd128dc74aa52b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-cisco-webex-websocket.git"; + rev = "6a41d714f16cfb44ad24a5506ffd128dc74aa52b"; + sha256 = "10sqkc9s47ccsf9gfp8db97dzd1kdg1argaipdb2g6nra1kgv23v"; + }; + in + runCommand "6a41d714f16cfb44ad24a5506ffd128dc74aa52b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "38d6d9395031ebda8e6a4425c50aa77f0f5d7e6a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-classx-liveboard.git"; + rev = "38d6d9395031ebda8e6a4425c50aa77f0f5d7e6a"; + sha256 = "08an202f3f6xir0kl6jydq66ldacb2b07vhwbgcsy78v0wn8wv4l"; + }; + in + runCommand "38d6d9395031ebda8e6a4425c50aa77f0f5d7e6a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-cockos-reaper.git"; + rev = "12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb"; + sha256 = "0s84dqcgkjwl2k76yn80cfxlsqrzc2m6yfri6k03mxcp6y309bw6"; + }; + in + runCommand "12736ea2d8f67d8bca1d4d68b041bdb0dc3f27eb" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-connect-webcaster.git"; + rev = "ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872"; + sha256 = "1pilm3gp9jlhszai6z10clzvsw6aj9wjdwf9klprbayqq2vbajq7"; + }; + in + runCommand "ef33a56dc53b7d7fefe65d4bea87bfaf2fd21872" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f141960577fb13394736df6d37dfa320e1459de4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-crystal-scte.git"; + rev = "f141960577fb13394736df6d37dfa320e1459de4"; + sha256 = "1q9k1w01kl481incll6nb98z25a5knnbwwd4qhyfjf0iapiv3nf6"; + }; + in + runCommand "f141960577fb13394736df6d37dfa320e1459de4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "96dc82021eaa516957515f6fb8a942ed545192fd"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dahuasecurity-ptz.git"; + rev = "96dc82021eaa516957515f6fb8a942ed545192fd"; + sha256 = "0prad7wcq5vpylh10bw4p17yi3qfjvr9ljhyc8ixkkjfk0143w6m"; + }; + in + runCommand "96dc82021eaa516957515f6fb8a942ed545192fd" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4626e86aa2bde3b0578af114e31c3d201fb3c47d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dalite-scb.git"; + rev = "4626e86aa2bde3b0578af114e31c3d201fb3c47d"; + sha256 = "1q8hjbw1yjk8n24khipj16n2z1c0bgapfl2swjc1z6g3ry3mngjj"; + }; + in + runCommand "4626e86aa2bde3b0578af114e31c3d201fb3c47d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a1f3d33361464a771eedc09aad76df3d7cabd5bf"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dashare-multiplay.git"; + rev = "a1f3d33361464a771eedc09aad76df3d7cabd5bf"; + sha256 = "0vfv6lqxj6ki5376l1pwzqb09nv8sqwab06s1sfxmx6h7kszs6cw"; + }; + in + runCommand "a1f3d33361464a771eedc09aad76df3d7cabd5bf" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3cd19f7f1e57a0fd89df7a17aa99c3d7df404227"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-datapath-fx4.git"; + rev = "3cd19f7f1e57a0fd89df7a17aa99c3d7df404227"; + sha256 = "01s27b6msji39zw5s82rzxymld7lbfliydr4j8src1zmrla3rg18"; + }; + in + runCommand "3cd19f7f1e57a0fd89df7a17aa99c3d7df404227" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dataton-watchout.git"; + rev = "ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7"; + sha256 = "0yymmaswjy7lybg8jnw2w3ybspzc98bmaa8fl0j2jj32xcnj0rsp"; + }; + in + runCommand "ec11829da1612b8e2bfe8b7ad61fe4c006e4e4f7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "94780f84e2eabf20cb3d35a241fdd254b9c3d0c3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-datavideo-dvip.git"; + rev = "94780f84e2eabf20cb3d35a241fdd254b9c3d0c3"; + sha256 = "0k3bmskmx05piyhnhzypvxi1pdg8c34995a7bxknddcp7gnm9ir4"; + }; + in + runCommand "94780f84e2eabf20cb3d35a241fdd254b9c3d0c3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9daac733f2d770d499ad7ae19073c1198d0b055b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-datavideo-visca.git"; + rev = "9daac733f2d770d499ad7ae19073c1198d0b055b"; + sha256 = "0av5zawc05k0lb7j00grz8rdyhhvwc8mvipysq6x6ham2qz3xggi"; + }; + in + runCommand "9daac733f2d770d499ad7ae19073c1198d0b055b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b739afeecd87a7e92e3347a2476e461e2be7feb0"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dcc-ex-commandstation.git"; + rev = "b739afeecd87a7e92e3347a2476e461e2be7feb0"; + sha256 = "0yff14nbrnpmpl7fpb5gy4l9j84xyia4zvgqvg33l48ba22cbkpk"; + }; + in + runCommand "b739afeecd87a7e92e3347a2476e461e2be7feb0" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0432dfa59610b69d3eb23d67e7cb576953d1c7df"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-denon-dn-500bd-mkii.git"; + rev = "0432dfa59610b69d3eb23d67e7cb576953d1c7df"; + sha256 = "14vd3gb9yrq10mjic1p7q60ln186skr8gmad319lcflhqw9jgds2"; + }; + in + runCommand "0432dfa59610b69d3eb23d67e7cb576953d1c7df" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d7e8b67fa0eeddefa73d7a90dd9561f06b25029a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-denon-receiver.git"; + rev = "d7e8b67fa0eeddefa73d7a90dd9561f06b25029a"; + sha256 = "1i5yhnjxd2ni946p9sbq9mr1g14rmbdl2f07mc839y6d1h647ha9"; + }; + in + runCommand "d7e8b67fa0eeddefa73d7a90dd9561f06b25029a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0474a787c65d169010b4f99190a78fd680f13f34"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-denon-recorder.git"; + rev = "0474a787c65d169010b4f99190a78fd680f13f34"; + sha256 = "0fxgr5g31q57gh9v1riaxbkpj7ysyvx3lhag01gmkmm979gdh38z"; + }; + in + runCommand "0474a787c65d169010b4f99190a78fd680f13f34" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-depili-clock-8001.git"; + rev = "e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6"; + sha256 = "17mypw1y2p2q6l1gdgqya42xpq2cx6kz22ijmpr0gap5ylc9b244"; + }; + in + runCommand "e9f105a3cacf0529b1865b6a2403e4b4ee8ed0b6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a9948be17ba7b0cf6fda91318cded6a30b098a1d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dexon-dimax.git"; + rev = "a9948be17ba7b0cf6fda91318cded6a30b098a1d"; + sha256 = "08bqd4az5dwa1silg1x4pyapvxjc7i902na5mibfhyf7nb30wibw"; + }; + in + runCommand "a9948be17ba7b0cf6fda91318cded6a30b098a1d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3c3c336e8ad8db8f867b54e0255f254f96d147d8"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dexon-divip.git"; + rev = "3c3c336e8ad8db8f867b54e0255f254f96d147d8"; + sha256 = "0cr8ld82ywpdjdxxac1frf2yvx5b934p862vmmp7ldyza11mhyzr"; + }; + in + runCommand "3c3c336e8ad8db8f867b54e0255f254f96d147d8" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "40e3948d1648caf1bbdf3760de92da72b68f3209"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dexon-matrix.git"; + rev = "40e3948d1648caf1bbdf3760de92da72b68f3209"; + sha256 = "13g4vclgrns5fs3gswfaf1a4n07nf073mb52cbslvardqypl1i14"; + }; + in + runCommand "40e3948d1648caf1bbdf3760de92da72b68f3209" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "514f4c56acc15175c0287499d8e918028b6268a6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-digico-osc.git"; + rev = "514f4c56acc15175c0287499d8e918028b6268a6"; + sha256 = "17pq41im9qg65kcz2rjl50v8fk99b5m2xza3arw5kbwbrm0d6gj5"; + }; + in + runCommand "514f4c56acc15175c0287499d8e918028b6268a6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6c36f8e604597a839ed9e83fad1649b93e96df6f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-digitalprojection-highlight.git"; + rev = "6c36f8e604597a839ed9e83fad1649b93e96df6f"; + sha256 = "1fh5wanb8lfdijmjk93yxhvv0v50bshb2nn00gvbdm909nngj0v4"; + }; + in + runCommand "6c36f8e604597a839ed9e83fad1649b93e96df6f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-disguise-mtc.git"; + rev = "f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c"; + sha256 = "0chjws9smpvi47fs42rr5rrhqhw6cgl9rpwcmvx8dg766zmzl44a"; + }; + in + runCommand "f53b6f6ea14a5209d0fe8a7f1cbf169e390e519c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8a4cebf439d6627ae674dddd09d035bd64ced899"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-disguise.git"; + rev = "8a4cebf439d6627ae674dddd09d035bd64ced899"; + sha256 = "0b3zr04p0iyww4cv089hfhwnv1r0jdcnbix2v8wqa8kmci3f8nvj"; + }; + in + runCommand "8a4cebf439d6627ae674dddd09d035bd64ced899" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ab1093635116c118616aa17ce6acca1ae9e6a4ce"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dolby-cinemaprocessor.git"; + rev = "ab1093635116c118616aa17ce6acca1ae9e6a4ce"; + sha256 = "0s8wf8wvjzwq9hp6473cn4ys4kli3gpv47ih2nd0f22gw7p8jcw7"; + }; + in + runCommand "ab1093635116c118616aa17ce6acca1ae9e6a4ce" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "934f5542f940a4522ef5309025cbab496d01232a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-draco-tera.git"; + rev = "934f5542f940a4522ef5309025cbab496d01232a"; + sha256 = "10z6bcmd3sksc40pkxg9z9h90n2jzrrkvapf0k3j4c6v8rg8n05g"; + }; + in + runCommand "934f5542f940a4522ef5309025cbab496d01232a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dsan-limitimer.git"; + rev = "073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c"; + sha256 = "0dh00akk3kf1mj12ls2kfn6fk359axpdzbpcn6gzrqkdn89djipp"; + }; + in + runCommand "073fa699a7b7091dcb5c786c5f4e3c23c0e75f9c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dsan-perfectcue.git"; + rev = "c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc"; + sha256 = "1bkyzshkrihy2dn2hg2lbvdspv9rknl3gg3w82hdza2k7vdyj3wv"; + }; + in + runCommand "c3675b60e05f29099dfa0b59fe69dbd0c6e36dcc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a4b06682c8a9434e2c8d7683b6fb1330814f402d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-dtvideolabs-playbackproplus.git"; + rev = "a4b06682c8a9434e2c8d7683b6fb1330814f402d"; + sha256 = "0sh7cvw2x3vwxv0xjyxak4q5n5igrcw1wbqii28sx81lr5yl9scd"; + }; + in + runCommand "a4b06682c8a9434e2c8d7683b6fb1330814f402d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "601a762cb33e0f1b8915c31c3ad9523b649e7c9c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-elgato-keylight.git"; + rev = "601a762cb33e0f1b8915c31c3ad9523b649e7c9c"; + sha256 = "0axxl0348j864nkpzj45rdcsjhgpg830kfddxkqfa1wivphmkr87"; + }; + in + runCommand "601a762cb33e0f1b8915c31c3ad9523b649e7c9c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c802053abf5442ac2c1a84fbb4d8f3d160a23e5e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-epiphan-pearl.git"; + rev = "c802053abf5442ac2c1a84fbb4d8f3d160a23e5e"; + sha256 = "1bavnxmpzli11ddfgcvxrfwzvwvcwyjknfzz897xnkrpmypmrqxb"; + }; + in + runCommand "c802053abf5442ac2c1a84fbb4d8f3d160a23e5e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a6994643c834719af05a1a421fccb89f31c7f0da"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-etc-eos.git"; + rev = "a6994643c834719af05a1a421fccb89f31c7f0da"; + sha256 = "0qa5bs3dl44bx050chqi2197xlryrymr7h5k36y8j89ipbnzhy1r"; + }; + in + runCommand "a6994643c834719af05a1a421fccb89f31c7f0da" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "69351707e61a36bb327ccc1fada77fbfd9041a2f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-dxp.git"; + rev = "69351707e61a36bb327ccc1fada77fbfd9041a2f"; + sha256 = "0lg1fswfzsnr6l1d725sa437h2yw1j1wdxkrdcnkpzl31w9g50wp"; + }; + in + runCommand "69351707e61a36bb327ccc1fada77fbfd9041a2f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fbdf9bee21569473c4688afe97d80e564570090b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-in1604.git"; + rev = "fbdf9bee21569473c4688afe97d80e564570090b"; + sha256 = "18yhx7iyilv4zfwjbn6lr9zkq8gz6aa3v22kxianfn9n76k1j4a2"; + }; + in + runCommand "fbdf9bee21569473c4688afe97d80e564570090b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b494cc12de56d211ca2d15981e978ae5c6ba1e73"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-ipl-t-pcs4.git"; + rev = "b494cc12de56d211ca2d15981e978ae5c6ba1e73"; + sha256 = "1bqlfzwpzpysbc7qdr22w4ma7rfcq7n7ia0r6844k78xhw4k08n0"; + }; + in + runCommand "b494cc12de56d211ca2d15981e978ae5c6ba1e73" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1881129abb9f7925bdfa466005b6b7909d287e13"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-smp111.git"; + rev = "1881129abb9f7925bdfa466005b6b7909d287e13"; + sha256 = "1mhgd0hf2yjracp1hdyn7hfb986j21igylpszjjcclkjkdjnk1xf"; + }; + in + runCommand "1881129abb9f7925bdfa466005b6b7909d287e13" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5e86847f7351c806ee2b55b54ef74979acf911fa"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-smp351.git"; + rev = "5e86847f7351c806ee2b55b54ef74979acf911fa"; + sha256 = "0x5n08hiaizggim9sjpskvg642k5cinsl49nj3nnvavcivw4s74i"; + }; + in + runCommand "5e86847f7351c806ee2b55b54ef74979acf911fa" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d86f28cea84ce0fe38e8073706520b8077dc7a1e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-smx.git"; + rev = "d86f28cea84ce0fe38e8073706520b8077dc7a1e"; + sha256 = "1xmz9cpr8gr8f73qlalqgdricnnhcbg0l5cw61v1js93phqvjq3q"; + }; + in + runCommand "d86f28cea84ce0fe38e8073706520b8077dc7a1e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a4e8a838b43a165ed8e7152903a971025a6d1f56"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-extron-xtp-3200.git"; + rev = "a4e8a838b43a165ed8e7152903a971025a6d1f56"; + sha256 = "1misp5wpjl713bm5apc11d3dqzacrk2a5hwy8yqr3vv2x8c2a8w8"; + }; + in + runCommand "a4e8a838b43a165ed8e7152903a971025a6d1f56" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fc6a89e2f054598ed39685ba17546ec110215046"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-faithchapel-videoplayoutserver.git"; + rev = "fc6a89e2f054598ed39685ba17546ec110215046"; + sha256 = "16rb3s5khiijynidc0197a5rni6zhrwr3b569d4x0rmbppayk6n1"; + }; + in + runCommand "fc6a89e2f054598ed39685ba17546ec110215046" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fc0a1203ff8f20d563e0a62be206cd8b3c24e560"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-figure53-go-button.git"; + rev = "fc0a1203ff8f20d563e0a62be206cd8b3c24e560"; + sha256 = "1yiq4mp1ch59ziw2hfwcp505a9cv2ccm3z28yjjgb7bmv9b9bc94"; + }; + in + runCommand "fc0a1203ff8f20d563e0a62be206cd8b3c24e560" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "603f380b302c125cb3634608dd68508938f03439"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-figure53-qlab-advance.git"; + rev = "603f380b302c125cb3634608dd68508938f03439"; + sha256 = "0vq3sksp6f09psfjfqmq8cgz7kckggwxdrmbmrq7l8cdm5x3rfcs"; + }; + in + runCommand "603f380b302c125cb3634608dd68508938f03439" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2d644edfd87795a5cdbfb9b00cfb70365e6112f4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-figure53-qlab.git"; + rev = "2d644edfd87795a5cdbfb9b00cfb70365e6112f4"; + sha256 = "1lzv5an7g1y43zlxmcd3cx9bvb6cmx2d6grv967cha533i6rdg1q"; + }; + in + runCommand "2d644edfd87795a5cdbfb9b00cfb70365e6112f4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "cb94f853a66e56d548393e407e8ced9fb6c67379"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-figure53-qview.git"; + rev = "cb94f853a66e56d548393e407e8ced9fb6c67379"; + sha256 = "1whm430aaj6wj5s8sjns87ms0hcqibqdl5igllwc2bgkz0g7ygbq"; + }; + in + runCommand "cb94f853a66e56d548393e407e8ced9fb6c67379" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5524298aeac542289332bdef4d7259b6f1adfdf3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-folivora-btt.git"; + rev = "5524298aeac542289332bdef4d7259b6f1adfdf3"; + sha256 = "1diwxiw74ci8265mjbn73my7ypwlja675kwn0kv095l1jr2xhwb4"; + }; + in + runCommand "5524298aeac542289332bdef4d7259b6f1adfdf3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "950833097490b4ad701dcd609e78056875d4b3ec"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-fora-hvs.git"; + rev = "950833097490b4ad701dcd609e78056875d4b3ec"; + sha256 = "140k4dv4w65bk08x0a1ndmqy3zbia9mpp8qvafcvfb2zp3sn1dww"; + }; + in + runCommand "950833097490b4ad701dcd609e78056875d4b3ec" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "11d06c2cbcda7d56a41d81b92c1869ed27a72ee5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-foscam-ptz.git"; + rev = "11d06c2cbcda7d56a41d81b92c1869ed27a72ee5"; + sha256 = "0hk6f8ja3svlbfdacw0wr0c0h4bjvch1p6101wfz3673vw75px85"; + }; + in + runCommand "11d06c2cbcda7d56a41d81b92c1869ed27a72ee5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "24948a48665a392c7c5d17d3e8208fa9ced4ed8d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-gallery-virtualvtrpro.git"; + rev = "24948a48665a392c7c5d17d3e8208fa9ced4ed8d"; + sha256 = "0gpff5kbs864jyfnp63kc7qf254ggnb593282957w1v7yl09mi29"; + }; + in + runCommand "24948a48665a392c7c5d17d3e8208fa9ced4ed8d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1a29dda5078b229a020163cd47c8e2ed5bf0accc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-gammacontrol-gmaestro.git"; + rev = "1a29dda5078b229a020163cd47c8e2ed5bf0accc"; + sha256 = "0cn3862s802ka2p1p7sfxn5c1g4pkn2pclmawz5bgailq31mkj1w"; + }; + in + runCommand "1a29dda5078b229a020163cd47c8e2ed5bf0accc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5438e2fd29c5793786b75c25c13d19897fe57864"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-gefen-dvimatrix.git"; + rev = "5438e2fd29c5793786b75c25c13d19897fe57864"; + sha256 = "0m2j7m2kn12qyaaa95nk7m78px2lk16x82wa6w5pkgkg9nfr44kk"; + }; + in + runCommand "5438e2fd29c5793786b75c25c13d19897fe57864" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f57a06abbd0abefd9fc731b6850ca8ebc06a024d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-artnet.git"; + rev = "f57a06abbd0abefd9fc731b6850ca8ebc06a024d"; + sha256 = "0ppd5crm7v3smssw0blqlrf72avl7w5h08qjsl8n4q4xqlnw8mvy"; + }; + in + runCommand "f57a06abbd0abefd9fc731b6850ca8ebc06a024d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "028ef31b4bcdb8be615656646bd2e7b3abb02d3b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-emberplus.git"; + rev = "028ef31b4bcdb8be615656646bd2e7b3abb02d3b"; + sha256 = "14szgn44k0v6965xw19da5s4w8z4lj414r9gbzs9cqkjfi9va041"; + }; + in + runCommand "028ef31b4bcdb8be615656646bd2e7b3abb02d3b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7981d38c7015921a4d3023a1021d6a5d81ba8c1f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-http.git"; + rev = "7981d38c7015921a4d3023a1021d6a5d81ba8c1f"; + sha256 = "113myvinxvi47khs4845szpq4pkbk8vv6smsanvbpns5mkl9z3z1"; + }; + in + runCommand "7981d38c7015921a4d3023a1021d6a5d81ba8c1f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d0744e473b79ade02bc4484d6d701db76b97a85e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-mqtt.git"; + rev = "d0744e473b79ade02bc4484d6d701db76b97a85e"; + sha256 = "06l7p4mw62f4vls9i4sywwsx7mipypyjbdwgf4jsrx9kbjccmb22"; + }; + in + runCommand "d0744e473b79ade02bc4484d6d701db76b97a85e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4c73da866ac2b2adcd5690728febe7620ab95b29"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-osc.git"; + rev = "4c73da866ac2b2adcd5690728febe7620ab95b29"; + sha256 = "1ch6k3d5ip1h8bdlg0rwidj2fg2k6mpx0izzbananndzbw9hqfrl"; + }; + in + runCommand "4c73da866ac2b2adcd5690728febe7620ab95b29" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c4db10119ed5ffd74b2164fff5867764f27caae4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-pjlink.git"; + rev = "c4db10119ed5ffd74b2164fff5867764f27caae4"; + sha256 = "1yzwqaj6wbc0bfpnga3pp763aigcf699j746k62kvvyz0dw5fy97"; + }; + in + runCommand "c4db10119ed5ffd74b2164fff5867764f27caae4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fec30a4264909ea903b7bbc6472a0df917a57a2d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-sacn.git"; + rev = "fec30a4264909ea903b7bbc6472a0df917a57a2d"; + sha256 = "19qd6n8wgpjlspdqq1a20gj769ibd9j32b8h15n38bri9r8x3cyq"; + }; + in + runCommand "fec30a4264909ea903b7bbc6472a0df917a57a2d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d9e1d1bfd3a0ca5964de19f492c51b97a65d3767"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-swp08.git"; + rev = "d9e1d1bfd3a0ca5964de19f492c51b97a65d3767"; + sha256 = "1rg1d7jg1rz3i1m84183q0skcqd8r7xdic263akliaymagk1kask"; + }; + in + runCommand "d9e1d1bfd3a0ca5964de19f492c51b97a65d3767" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ef8a8cd5653895daa069cf0cee2b1baf6665d524"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-tcp-serial.git"; + rev = "ef8a8cd5653895daa069cf0cee2b1baf6665d524"; + sha256 = "077821nmk0s4vqs7dsksxg6lrvj9lj2k1d2yh5ha5s8krhvimcnw"; + }; + in + runCommand "ef8a8cd5653895daa069cf0cee2b1baf6665d524" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-tcp-udp.git"; + rev = "6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24"; + sha256 = "0m5gpvq4pd79dl9b89qsk1k5l7ralrrw05vg2mv3q6fx0h188fm8"; + }; + in + runCommand "6d2b717a15bfdc0eaee60d8e9b5993bbc3d30c24" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "bad91b9a1c263dea72e24be0f66622d1bf0dac07"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-wakeonlan.git"; + rev = "bad91b9a1c263dea72e24be0f66622d1bf0dac07"; + sha256 = "1j6lmnn2y91ncqqy8kxqjbklxamjxvqwipsggrnxcz86qg3c340l"; + }; + in + runCommand "bad91b9a1c263dea72e24be0f66622d1bf0dac07" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "623606e02f93c2cc15abc4d279f7fd228540d53e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-generic-websocket.git"; + rev = "623606e02f93c2cc15abc4d279f7fd228540d53e"; + sha256 = "0yf33kh46kdp094qgyj0bk3lz69c0gi28vfdnnpp6ypfwf6jiwz9"; + }; + in + runCommand "623606e02f93c2cc15abc4d279f7fd228540d53e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f9a9f067e442d0fb5e17fb184c715bc301135e9a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-globalcache-itac-cc.git"; + rev = "f9a9f067e442d0fb5e17fb184c715bc301135e9a"; + sha256 = "1fvijjhc3333nx21xnb04ry0hshbqmrfqjk47scxlch69j26lflx"; + }; + in + runCommand "f9a9f067e442d0fb5e17fb184c715bc301135e9a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2c89e5a96642a60400ad517dd3aca30c945dcd13"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-globalcache-itac-ir.git"; + rev = "2c89e5a96642a60400ad517dd3aca30c945dcd13"; + sha256 = "08bmcrq504mc4j5zr4ckgvd0lmg6zfzfqqckw7f0ar231jaq2pnc"; + }; + in + runCommand "2c89e5a96642a60400ad517dd3aca30c945dcd13" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "877fa2d003c3d237f2522fba0f623238cada4bdf"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-globalcache-itac-sl.git"; + rev = "877fa2d003c3d237f2522fba0f623238cada4bdf"; + sha256 = "1fg1dz7k147mc052r26ccx2dph4l36mwgwfzs8hhxbi4jwc654gc"; + }; + in + runCommand "877fa2d003c3d237f2522fba0f623238cada4bdf" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d0ffb1fc884a9cc028376ca2dde8d66ced522589"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-grassvalley-amp.git"; + rev = "d0ffb1fc884a9cc028376ca2dde8d66ced522589"; + sha256 = "0sqi483lfxzc61gmc394xa8qa0kb4ca4v280lpc3jchy42qylnj7"; + }; + in + runCommand "d0ffb1fc884a9cc028376ca2dde8d66ced522589" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-greenhippo-hippotizer.git"; + rev = "fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9"; + sha256 = "0g99lw6jil1717f72whcxaxizam1drswc19484zjkpqywvil2qim"; + }; + in + runCommand "fdb8c6739a4982bf8e5d00c1c077e91aa87c69d9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "287fa840136781a1189e6db4ab4f4320ce5c8318"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-h2r-graphics.git"; + rev = "287fa840136781a1189e6db4ab4f4320ce5c8318"; + sha256 = "0lfmaysnwzrschg9gi5gibcym67nbik463rismiajb1pd9savs49"; + }; + in + runCommand "287fa840136781a1189e6db4ab4f4320ce5c8318" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6787b84b48138db7066f71178aabd7b2dbf84f5a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-haivision-connectdvr.git"; + rev = "6787b84b48138db7066f71178aabd7b2dbf84f5a"; + sha256 = "01pi29qxjygr6rlvv84x9v0d5r5c5lb4zzyv4a4irbavh7ygyw1m"; + }; + in + runCommand "6787b84b48138db7066f71178aabd7b2dbf84f5a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "125f76e7dd1839d341d7beae5c040a171c5b7546"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-haivision-kbencoder.git"; + rev = "125f76e7dd1839d341d7beae5c040a171c5b7546"; + sha256 = "1v607ffwhfg5zg5gczkz99ll17whkll7yhgjc7gijvpibrq1i79y"; + }; + in + runCommand "125f76e7dd1839d341d7beae5c040a171c5b7546" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2badfb5085d838debc862c3ed2d6eb30ec051373"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-hermann-stagetimerio.git"; + rev = "2badfb5085d838debc862c3ed2d6eb30ec051373"; + sha256 = "0lsgqrxqxdhascpvcwby8gfp44sx1r1d9ri4zdgrn7p8gk4y2c7i"; + }; + in + runCommand "2badfb5085d838debc862c3ed2d6eb30ec051373" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c0bd9f50c77746875f2ae969b9152b996964a74a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-highend-hog4.git"; + rev = "c0bd9f50c77746875f2ae969b9152b996964a74a"; + sha256 = "1j1rj8v21v820zxrj8b8id7rjp4ip88fiaaixnc657k7759zzxdw"; + }; + in + runCommand "c0bd9f50c77746875f2ae969b9152b996964a74a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "78e44a87fa123b24bc05d9fe839d20a832be53b5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-hologfx-holographics.git"; + rev = "78e44a87fa123b24bc05d9fe839d20a832be53b5"; + sha256 = "1yg537cq3rqwchf352qy4jqqbp3qc7z690wxw6imcyygx6icxxxr"; + }; + in + runCommand "78e44a87fa123b24bc05d9fe839d20a832be53b5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fdb463635c37b00973f9453fa6cc9eedfe550fa4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-homeassistant-server.git"; + rev = "fdb463635c37b00973f9453fa6cc9eedfe550fa4"; + sha256 = "1nc62f5dfxmnh7rqjrlpyq83pq7z64r405y90if74jn45y2clg6x"; + }; + in + runCommand "fdb463635c37b00973f9453fa6cc9eedfe550fa4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1b81a6ee71af8f69c833ddd454cfc4a508535599"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-ifelseware-avkey.git"; + rev = "1b81a6ee71af8f69c833ddd454cfc4a508535599"; + sha256 = "098rs4s53ph2wl2sj0bybxlisj5gygzwi0c4d1axg9iviiwwqfwn"; + }; + in + runCommand "1b81a6ee71af8f69c833ddd454cfc4a508535599" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "00b14afe3c9d7b88588652f1c64e635daa89ace7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-ifelseware-avplayback.git"; + rev = "00b14afe3c9d7b88588652f1c64e635daa89ace7"; + sha256 = "05gqjyw04m4wqm2bjwd2kr5fngx9pxxp437xsid9a21vnqynp9b9"; + }; + in + runCommand "00b14afe3c9d7b88588652f1c64e635daa89ace7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "60566ff0cc6de61748568da7ffa47e67e96ee0dc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-imagine-lrc.git"; + rev = "60566ff0cc6de61748568da7ffa47e67e96ee0dc"; + sha256 = "1z9v8wy9zv38gf5fcx2cq7ws71wkpn8m2s6bw5l6ir6a768mkymd"; + }; + in + runCommand "60566ff0cc6de61748568da7ffa47e67e96ee0dc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a65b5be341a8fa431992fd92f6af137e056d53fa"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-imimot-mitti.git"; + rev = "a65b5be341a8fa431992fd92f6af137e056d53fa"; + sha256 = "0czdl1n05in60iqs4wagprrfr7j48wkl9kc5wgnlil35yq4r9qz5"; + }; + in + runCommand "a65b5be341a8fa431992fd92f6af137e056d53fa" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "dab079226b1e25ab0647ebb33d2814102e8583ed"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-interactivetechnologies-cueserver.git"; + rev = "dab079226b1e25ab0647ebb33d2814102e8583ed"; + sha256 = "1gm30clzgbc77yr2q6j3qv0irz7fpvqmx7izgf19zvcm50dyjld2"; + }; + in + runCommand "dab079226b1e25ab0647ebb33d2814102e8583ed" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-irisdown-countdowntimer.git"; + rev = "9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd"; + sha256 = "0a5cjn5dksq5nj71hwc9drikg5pnbvy52vfjy4b4isk210710z7n"; + }; + in + runCommand "9cf3b0ee8ca43b463abb715ea70e3ecdec22b0cd" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-irisdown-remoteshowcontrol.git"; + rev = "8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b"; + sha256 = "1naaxmlahhi63y09ad6i6v4nar2yv05xpivqs5dc7ilryvnf1x45"; + }; + in + runCommand "8836da01c2146c2e856dc4f9696cf3c4d1f3cc6b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1d348edca30a9323d9402c34bb8c197a49dc3abc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-jamesholt-x32tc.git"; + rev = "1d348edca30a9323d9402c34bb8c197a49dc3abc"; + sha256 = "0r995nl9j08573yb66grm8k8vhlzbfv9gasfx8hpbh3rwmq4ddj1"; + }; + in + runCommand "1d348edca30a9323d9402c34bb8c197a49dc3abc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-joy-playdeck.git"; + rev = "bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05"; + sha256 = "11zinz6pkhkdlil062wdm5vcxdrihdrh55lglycpmysq37blbbsz"; + }; + in + runCommand "bfc0f2d735d6aa42c09bf6ac1e5d7b2ecb84ba05" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "991f2e7d3ce3421d54a210624e3d36a9e08978ad"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-justmacros-lua.git"; + rev = "991f2e7d3ce3421d54a210624e3d36a9e08978ad"; + sha256 = "01vray8s8xjgkrr6k9vbldbr2ngx5ysgvax5ha94vii30xh99fiw"; + }; + in + runCommand "991f2e7d3ce3421d54a210624e3d36a9e08978ad" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "70223a3d53a6d911e540de0d281e7b503c06be42"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-jvc-ptz.git"; + rev = "70223a3d53a6d911e540de0d281e7b503c06be42"; + sha256 = "1y4gzh82rdcdvxzpyrp7iz1mv14sf952vfr3yjf9g4hcspys71qs"; + }; + in + runCommand "70223a3d53a6d911e540de0d281e7b503c06be42" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b5003fad378fdf22008f8c509e3d275e1ed181b1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kiloview-ndi.git"; + rev = "b5003fad378fdf22008f8c509e3d275e1ed181b1"; + sha256 = "1rsr1xply3qpn9qb8pvwd1n8jr55i8hmiq41jz0yjkny6j93yhr8"; + }; + in + runCommand "b5003fad378fdf22008f8c509e3d275e1ed181b1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "179c8e71baae3e9dc100f8020810e6b29ada77b6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kramer-matrix.git"; + rev = "179c8e71baae3e9dc100f8020810e6b29ada77b6"; + sha256 = "1hiympb51lxx6nglm9fwdbhlxj2gjzidgx2vl2xk7xpfhxam0f7z"; + }; + in + runCommand "179c8e71baae3e9dc100f8020810e6b29ada77b6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b90cfefc9bf8e29a4d91032866fa2abeaa633181"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kramer-vp727.git"; + rev = "b90cfefc9bf8e29a4d91032866fa2abeaa633181"; + sha256 = "08fb26n3b89q0hyqapj9p0xd9hi5ccq57p1yfgfz4vir0zs7jhbj"; + }; + in + runCommand "b90cfefc9bf8e29a4d91032866fa2abeaa633181" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "cb38da02af3c6f3711263ef5f426060833392b91"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kramer-vp734.git"; + rev = "cb38da02af3c6f3711263ef5f426060833392b91"; + sha256 = "1y5ij0rg12s5np0h23l1zlc1pdm1mp4q6za435a41zymy2hjas40"; + }; + in + runCommand "cb38da02af3c6f3711263ef5f426060833392b91" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8f64b7000a9e99fea0af8211c2bb6fa306ec3159"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kramer-vp773a.git"; + rev = "8f64b7000a9e99fea0af8211c2bb6fa306ec3159"; + sha256 = "1vws4rk8jlki8dadyjn548y5jvs0vkccvbicvl2rasggaf558kis"; + }; + in + runCommand "8f64b7000a9e99fea0af8211c2bb6fa306ec3159" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ed647059bbc42d08605201dc197158efe1a6c7e1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-kramer-vs41h.git"; + rev = "ed647059bbc42d08605201dc197158efe1a6c7e1"; + sha256 = "0h5hm3ii6fcja8pl4gvhn1hmyvwfs8jn95xqlr02fdlvy2rgxgmi"; + }; + in + runCommand "ed647059bbc42d08605201dc197158efe1a6c7e1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f2008c67073f43edbcf256ee9308576bf85a435f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-leadled-clockotron.git"; + rev = "f2008c67073f43edbcf256ee9308576bf85a435f"; + sha256 = "07pkpr70q9ga4dlqd1hfmq5mh8k7973ik3rvkkbn3y9vl7qb43r8"; + }; + in + runCommand "f2008c67073f43edbcf256ee9308576bf85a435f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ea96faaab6e08dac4cf956b114dfe57e17b02b49"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-leafcoders-titler.git"; + rev = "ea96faaab6e08dac4cf956b114dfe57e17b02b49"; + sha256 = "1bzbyyk4bd3g3bvb25im2ia2h73hjy5fp2l570288z8sdnbm8nnk"; + }; + in + runCommand "ea96faaab6e08dac4cf956b114dfe57e17b02b49" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "84f0286c3818cd2b7269d02c267cdcebf037a633"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lectrosonics-aspen.git"; + rev = "84f0286c3818cd2b7269d02c267cdcebf037a633"; + sha256 = "08vsw6wd2bna25184sdfzm7cpqdwz67fwvyjx6c2y3f9y87gpp9p"; + }; + in + runCommand "84f0286c3818cd2b7269d02c267cdcebf037a633" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "178b773043c4f6b17ae5f87b1b8bd98804e31bec"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lightware-lw2.git"; + rev = "178b773043c4f6b17ae5f87b1b8bd98804e31bec"; + sha256 = "1r3418w28qq25vykxfffawgmh457p0wnna9qq5mhvdq82cpmj3h3"; + }; + in + runCommand "178b773043c4f6b17ae5f87b1b8bd98804e31bec" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7d9dbe947cf68dafb710f02079550405bbaa8a0e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lightware-lw3.git"; + rev = "7d9dbe947cf68dafb710f02079550405bbaa8a0e"; + sha256 = "0wjljq785q3hwrpbnh4ni63x38kqzj5abzpbykcr987dqnyh2kkk"; + }; + in + runCommand "7d9dbe947cf68dafb710f02079550405bbaa8a0e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a353c62fce799d1ec8f96f4bc10434b2403a4cba"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-liminalet-zoomosc.git"; + rev = "a353c62fce799d1ec8f96f4bc10434b2403a4cba"; + sha256 = "13jpcw3zd76hz345kfpyhly0pgy6pg5vd5z3jk0ccal3v9x3cpaa"; + }; + in + runCommand "a353c62fce799d1ec8f96f4bc10434b2403a4cba" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "37ddd22da970c6e83d5f3333ac4be9906fe545a9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-linkbox-remote.git"; + rev = "37ddd22da970c6e83d5f3333ac4be9906fe545a9"; + sha256 = "0vc4m552039qilnbj5zd3pcah4r5lz6rb15cg19m0i6f52wz17f4"; + }; + in + runCommand "37ddd22da970c6e83d5f3333ac4be9906fe545a9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d2e1566bb7318f1096689ab32be340c84acbad8b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-livemind-recorder.git"; + rev = "d2e1566bb7318f1096689ab32be340c84acbad8b"; + sha256 = "1w803kwr7v019r9j9pzlahzcylddzqrq9f36zwryh1fipz73byc0"; + }; + in + runCommand "d2e1566bb7318f1096689ab32be340c84acbad8b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8a7e64d3c1b12738300d46cf00198a29251528cf"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-ltn-schedule.git"; + rev = "8a7e64d3c1b12738300d46cf00198a29251528cf"; + sha256 = "1b2gq97y711cw7mrn14x3vpp5kraw849sk8g3zz377gp6zi3jd3z"; + }; + in + runCommand "8a7e64d3c1b12738300d46cf00198a29251528cf" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5898e6b9a5ab0501d8869c3c2d6efe294dbb696e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lumens-mediaprocessor.git"; + rev = "5898e6b9a5ab0501d8869c3c2d6efe294dbb696e"; + sha256 = "0qbwbv6mffgv8dcn5fsk7y1vxilc9a8gi5bba069hd7asb8s4j80"; + }; + in + runCommand "5898e6b9a5ab0501d8869c3c2d6efe294dbb696e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "baeea7f514c73805b1b16f0ffb5b1d93ec13e40a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lumens-visca.git"; + rev = "baeea7f514c73805b1b16f0ffb5b1d93ec13e40a"; + sha256 = "16125zd7yqa62ijicbd1bf7idy6zb7m93xxwm153m4fwpz9mb662"; + }; + in + runCommand "baeea7f514c73805b1b16f0ffb5b1d93ec13e40a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9eb087081025e341a417b1e70195641db8886029"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-lyntec-rpc-breaker.git"; + rev = "9eb087081025e341a417b1e70195641db8886029"; + sha256 = "1wkgnlxmmmrl0yqhal90bs5xsn2hdk603ypzyqxhq0yqhjdv0pl3"; + }; + in + runCommand "9eb087081025e341a417b1e70195641db8886029" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "82777002cf0e45304fbbe6221823df797689c50a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-magewell-proconvert-decoder.git"; + rev = "82777002cf0e45304fbbe6221823df797689c50a"; + sha256 = "1m5lhdjjbshamjmmdn964sv4wd8bzhv068gcysllv83szlsm1ha8"; + }; + in + runCommand "82777002cf0e45304fbbe6221823df797689c50a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "042d398941e02ebb82f01d25a916cb45154eabb1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-magewell-ultrastream.git"; + rev = "042d398941e02ebb82f01d25a916cb45154eabb1"; + sha256 = "0jky1z1v2kd851djzcz6ca8d4y9hqfy9rwninvba5768nyhxcnqa"; + }; + in + runCommand "042d398941e02ebb82f01d25a916cb45154eabb1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ddf39267d5a758a4b0dd2d9f0111e1095c0ace51"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-magicsoft-recorder.git"; + rev = "ddf39267d5a758a4b0dd2d9f0111e1095c0ace51"; + sha256 = "1z2m9hcp88b7qsd1p8vlmv8sgn5chrf84xnjhnswkc976jkafnmb"; + }; + in + runCommand "ddf39267d5a758a4b0dd2d9f0111e1095c0ace51" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "bd1bcd1427c1830c728662025a0f17cc1f9f6098"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-malighting-grandma2.git"; + rev = "bd1bcd1427c1830c728662025a0f17cc1f9f6098"; + sha256 = "1bad8phq7fi64agh57kl6nrz1s4h07zm0kja139ccxqmfj2j42fq"; + }; + in + runCommand "bd1bcd1427c1830c728662025a0f17cc1f9f6098" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ee070100327b138f224658df9ecf1e8d1ad0bd82"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-malighting-msc.git"; + rev = "ee070100327b138f224658df9ecf1e8d1ad0bd82"; + sha256 = "05vnxxj1mqgpijkgnw48cn7h1d7dvb33qi44qd5p0cp5nqm7bz2m"; + }; + in + runCommand "ee070100327b138f224658df9ecf1e8d1ad0bd82" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b2b80e8ce37e4f809ad24a44621c953924014aa5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-matrox-monarch.git"; + rev = "b2b80e8ce37e4f809ad24a44621c953924014aa5"; + sha256 = "0k60ann0gkygw7mljvm4nywzdpy2xsrgwa5rsxi805hxki7vqks2"; + }; + in + runCommand "b2b80e8ce37e4f809ad24a44621c953924014aa5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f69104a0a66a50cd7bbdbfc8e27453b4f131e18d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-media-player-classic.git"; + rev = "f69104a0a66a50cd7bbdbfc8e27453b4f131e18d"; + sha256 = "084grcyimj3dr5gppfk5z0ij917yh09lyp9kh6vhprp9kmbrlf2s"; + }; + in + runCommand "f69104a0a66a50cd7bbdbfc8e27453b4f131e18d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3eda2c8b5859d2a256c4bd46b08aeed642d9e084"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-metus-ingest.git"; + rev = "3eda2c8b5859d2a256c4bd46b08aeed642d9e084"; + sha256 = "05zn6ik683szb4parq5zxpkx057pq3zy2xvvhc26b8mzhviwsqqi"; + }; + in + runCommand "3eda2c8b5859d2a256c4bd46b08aeed642d9e084" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "faae8c75ea657db6a94bcc93d770f651fb736102"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-middleatlantic-racklink.git"; + rev = "faae8c75ea657db6a94bcc93d770f651fb736102"; + sha256 = "1wg9l1j2kcfd2k2lmdlz48yiszvam4ayi4jyff8vwq5igx3hgj1r"; + }; + in + runCommand "faae8c75ea657db6a94bcc93d770f651fb736102" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "560b228f308fb501b4de49cc5aa41ef08e31c7ef"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-middlethings-middlecontrol.git"; + rev = "560b228f308fb501b4de49cc5aa41ef08e31c7ef"; + sha256 = "1gwm0yvbp49fi968fd0p2qb6hkvgz3m4jm4xslwzc94jag1k1fmd"; + }; + in + runCommand "560b228f308fb501b4de49cc5aa41ef08e31c7ef" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1114d5cfa2810e09519436eb6f8cb911d98a3aa9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-modelighting-edin.git"; + rev = "1114d5cfa2810e09519436eb6f8cb911d98a3aa9"; + sha256 = "0gj8a37rjn43nz2gw608hdi6bqj3mf9vnrzvr5kr593jwshii923"; + }; + in + runCommand "1114d5cfa2810e09519436eb6f8cb911d98a3aa9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-modulo.git"; + rev = "a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766"; + sha256 = "1fjaislw1bfxx1rgbfnr09mrgrg9fk7gcj1ya5rqlzq6pwgnil7a"; + }; + in + runCommand "a8cd7dfdb91a37acc4c1ad18cd18287fb4a31766" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a24b66fe6f463bb7d396cde36b5560e001bb66f8"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-motu-avb.git"; + rev = "a24b66fe6f463bb7d396cde36b5560e001bb66f8"; + sha256 = "1k1g564zz17kz61l96bilpcahf0nnkzjcpcn0ky3ki6c3l1vlpnl"; + }; + in + runCommand "a24b66fe6f463bb7d396cde36b5560e001bb66f8" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "bb388382d66a9c0bec7489e40806899647152456"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-msc-router.git"; + rev = "bb388382d66a9c0bec7489e40806899647152456"; + sha256 = "001wny1xapn0i0aqax3dlpidmbgyfva4xf476875ggn86yg5f89k"; + }; + in + runCommand "bb388382d66a9c0bec7489e40806899647152456" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-multicamsystems-multicamsuite.git"; + rev = "2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2"; + sha256 = "0v4rjg272b8z92w14pj8p6sw7snswbf0rkhwnyj09rqwzr7yazng"; + }; + in + runCommand "2c128ec66d6977b9ecd64e8b3bc70cd5f43970d2" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9334f6e8c4ed64ecc8e75f160c216e5955fa5484"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-muxlab-kvm.git"; + rev = "9334f6e8c4ed64ecc8e75f160c216e5955fa5484"; + sha256 = "14cx0nk8mbqxd6c13vk08nx69cmd88qxjhcjxvfq3vxwdaqd91qb"; + }; + in + runCommand "9334f6e8c4ed64ecc8e75f160c216e5955fa5484" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ff54136179e073b5f625075166e0fe1bc8cf60c7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-neodarque-stagetimer2.git"; + rev = "ff54136179e073b5f625075166e0fe1bc8cf60c7"; + sha256 = "1zss202mfjhb960yl24am1nlvsd0aw1ylf7djqkscvarn77msqry"; + }; + in + runCommand "ff54136179e073b5f625075166e0fe1bc8cf60c7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c28e57da9784c77c8ec22554bf0c7d80f97d20bd"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-netio-powerbox.git"; + rev = "c28e57da9784c77c8ec22554bf0c7d80f97d20bd"; + sha256 = "1kyyf4vvslzxb8gj16p4blllf598f3l89fmk1xpq0y79f7d4m13l"; + }; + in + runCommand "c28e57da9784c77c8ec22554bf0c7d80f97d20bd" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f4c7e323592ce59d965f2fb99cbcca213e7afce4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-nevion-mrp.git"; + rev = "f4c7e323592ce59d965f2fb99cbcca213e7afce4"; + sha256 = "1b5a2bjxcqynjxqlqdnas49ddnbz5qas70ccdhaqakjhpawzx1av"; + }; + in + runCommand "f4c7e323592ce59d965f2fb99cbcca213e7afce4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "90794a5e67b229428d580294c58704de376ec30c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-newbluefx-titler.git"; + rev = "90794a5e67b229428d580294c58704de376ec30c"; + sha256 = "07mp6c22666hrqg9fagkzb0wa0fc9x1av46dki6d3awhlx0jg7c7"; + }; + in + runCommand "90794a5e67b229428d580294c58704de376ec30c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8b7434fc1f3157ee90ce36ebfbc2daa353621fde"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-newtek-ndistudiomonitor.git"; + rev = "8b7434fc1f3157ee90ce36ebfbc2daa353621fde"; + sha256 = "0hs15zdnmbf1kjlx2jiqp1fy6w21kxb1b7wiyryr4h5xp56jk399"; + }; + in + runCommand "8b7434fc1f3157ee90ce36ebfbc2daa353621fde" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "670fd7385f99e7275c44b9ecd5816f6d86e79985"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-newtek-tricaster.git"; + rev = "670fd7385f99e7275c44b9ecd5816f6d86e79985"; + sha256 = "0zcf05im8almnml08j4y45m2r68xzp93djbf5yf3zngrrrv5mmap"; + }; + in + runCommand "670fd7385f99e7275c44b9ecd5816f6d86e79985" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4ce5aee1d599fdfb3c1f86401c0602502864526a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-nexo-nxamp.git"; + rev = "4ce5aee1d599fdfb3c1f86401c0602502864526a"; + sha256 = "0qy110nzyks2h0h8abg7sy1p5dz2ws8knh88lpq5bd264kkympsv"; + }; + in + runCommand "4ce5aee1d599fdfb3c1f86401c0602502864526a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f05ab696fe550052c035cafe6dd1cc254d336656"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-nobe-omniscope.git"; + rev = "f05ab696fe550052c035cafe6dd1cc254d336656"; + sha256 = "1s0nxbkbf7la6md10sswb8gz9xh528nf08zxzl3hcrlvq9sbxsbc"; + }; + in + runCommand "f05ab696fe550052c035cafe6dd1cc254d336656" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3d11e1b210f1771f6cd68a253efa30e0122f6f00"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-noismada-octopuslistener.git"; + rev = "3d11e1b210f1771f6cd68a253efa30e0122f6f00"; + sha256 = "1kdiaa8jgfs6jzjw287kgmwpimk480w5ys266yqgjbjpw7v8ipl7"; + }; + in + runCommand "3d11e1b210f1771f6cd68a253efa30e0122f6f00" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "972bd9b4fde8f8e52cd8b099bdde116e6e465cb6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-noismada-octopusshowcontrol.git"; + rev = "972bd9b4fde8f8e52cd8b099bdde116e6e465cb6"; + sha256 = "1ssnb2xlcj049vm2scsm5wi66l903533yj87hwyvrpi1ndapw2jd"; + }; + in + runCommand "972bd9b4fde8f8e52cd8b099bdde116e6e465cb6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0efb9cfc858ab0d117f67e554ba51821f95225f9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-novastar-controller.git"; + rev = "0efb9cfc858ab0d117f67e554ba51821f95225f9"; + sha256 = "17s8fw9gsirnv9zkg35a4h5vfjnlzjpaxd7wcg3r8wj55wcmx8pz"; + }; + in + runCommand "0efb9cfc858ab0d117f67e554ba51821f95225f9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2784f841dc71a8b5bba594872db8bcb7480312ba"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-obs-studio.git"; + rev = "2784f841dc71a8b5bba594872db8bcb7480312ba"; + sha256 = "08n0yxlgxvch2gj0xvazwqbj6d0sj42s8xsigzlp28blx0azpd63"; + }; + in + runCommand "2784f841dc71a8b5bba594872db8bcb7480312ba" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8c8a108554282ab4654d6803b9721c79e6353ae2"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-obsidiancontrol-onyx.git"; + rev = "8c8a108554282ab4654d6803b9721c79e6353ae2"; + sha256 = "16qmxd7qxr01c8hhwpbri9k0hp2mab1jrjlahn30krwqik7vh7bk"; + }; + in + runCommand "8c8a108554282ab4654d6803b9721c79e6353ae2" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-octava-pro-dsx.git"; + rev = "0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf"; + sha256 = "1hwb8jkb164iiifdysw82lgwh40z8frbrdz3ksqxcyjjgfvl7zmi"; + }; + in + runCommand "0e7bac9aae64ccf23d61f46b4c3133fa82ba2aaf" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b1d25060671a977ec4b3f43565a5e7224a03274c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-openlp-http.git"; + rev = "b1d25060671a977ec4b3f43565a5e7224a03274c"; + sha256 = "08387m6ay58851kq4a4pcni5gfr0009zfiiv6zf2babl3nc1i2sf"; + }; + in + runCommand "b1d25060671a977ec4b3f43565a5e7224a03274c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "87a164fa78e809def2859c65e89895eb75771f59"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-opensong-api.git"; + rev = "87a164fa78e809def2859c65e89895eb75771f59"; + sha256 = "1m5rlg8j64vh74f6fgckgvk3nb9c9zx1cn7y4inxa572qlf0375g"; + }; + in + runCommand "87a164fa78e809def2859c65e89895eb75771f59" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "20f019df84a9769dea91af1acda50a31f13e13e6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-openweather-rest.git"; + rev = "20f019df84a9769dea91af1acda50a31f13e13e6"; + sha256 = "1b2p40hrv13i30r193kf83nflgbs2cgzq4wqym6sfbd8nh7ziqfd"; + }; + in + runCommand "20f019df84a9769dea91af1acda50a31f13e13e6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f33e9545566f41821a69e3b55b42bee5e5904fb1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-opticis-omm-1000.git"; + rev = "f33e9545566f41821a69e3b55b42bee5e5904fb1"; + sha256 = "1j9dlv96kh96hwhj62nimh39k61qr0flzqd13c6mz63d7cchc6nd"; + }; + in + runCommand "f33e9545566f41821a69e3b55b42bee5e5904fb1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "79f9a38298e70ab046f4e26df1c79d56f0088c3c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-optoma-z28s.git"; + rev = "79f9a38298e70ab046f4e26df1c79d56f0088c3c"; + sha256 = "1b6j3mzm57lg6mib9kjfibk11x7z7x065n5bp0kd8b5nn9rlpxmk"; + }; + in + runCommand "79f9a38298e70ab046f4e26df1c79d56f0088c3c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "32c28f886b07a7da3aed8a38c6a3a71881c8543e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-orfast-ndi.git"; + rev = "32c28f886b07a7da3aed8a38c6a3a71881c8543e"; + sha256 = "0w97ggjpd8a2yhcwjm5p8p6m4q6jf9fgr1yy0g1hb3j7wjcflsfd"; + }; + in + runCommand "32c28f886b07a7da3aed8a38c6a3a71881c8543e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-panasonic-avhs.git"; + rev = "ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a"; + sha256 = "0ql4jr88gqqsqg6l4y9ilxryhjmha9rcz4k1ngdxd0mb1dp4jb9b"; + }; + in + runCommand "ef0d20caf0cce1ed11236b5e1c9cbd9894ff8c5a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7f0838496d1e232a32fdcdb529dc9f98484f3f6c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-panasonic-camera-controller.git"; + rev = "7f0838496d1e232a32fdcdb529dc9f98484f3f6c"; + sha256 = "0s8q1i0a7js8kzhyac3bakkz2pqf4h79g5amwib85m1jp1f802sw"; + }; + in + runCommand "7f0838496d1e232a32fdcdb529dc9f98484f3f6c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4576b77417773e2fe357ba206b660984f7e25a7e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-panasonic-projector.git"; + rev = "4576b77417773e2fe357ba206b660984f7e25a7e"; + sha256 = "0m4xnvjmh7zwyr61f68yjjsdqr90m369gvkzp3f1x8wwlxqvir2w"; + }; + in + runCommand "4576b77417773e2fe357ba206b660984f7e25a7e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-panasonic-ptz.git"; + rev = "c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6"; + sha256 = "01ld7p1dn6k6ax00scqw8spr2la3hj2xigqdbnm336244vwsbqsr"; + }; + in + runCommand "c714cecdb8abb27b3a8c9c80880dfab5a6fde9e6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0fb03e1cea30dd26abbcdb6c402156eba313356d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-panasonic-tv-th.git"; + rev = "0fb03e1cea30dd26abbcdb6c402156eba313356d"; + sha256 = "0f2mij86x0rdyivbvxczjm6lk4v9j6hjzahxkic79gfraxmxmc9m"; + }; + in + runCommand "0fb03e1cea30dd26abbcdb6c402156eba313356d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "28065ebafad177328c4ae5a16e334f9213a56fad"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-pangolin-beyond.git"; + rev = "28065ebafad177328c4ae5a16e334f9213a56fad"; + sha256 = "11wk195dy8ginclf92f1yzr3xbiajg143bn1b1xc646nwpz6q6ar"; + }; + in + runCommand "28065ebafad177328c4ae5a16e334f9213a56fad" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "670a541a220c9ff42ee6438b038772fe188d8b97"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-phillips-hue.git"; + rev = "670a541a220c9ff42ee6438b038772fe188d8b97"; + sha256 = "049li9w4z0ccgf07yrqymhgcra6wb1hlhlzzmzvz9czfaq64kmzg"; + }; + in + runCommand "670a541a220c9ff42ee6438b038772fe188d8b97" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-pixap-pixtimerpro.git"; + rev = "31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba"; + sha256 = "086461qz0mpvknnj7hs6p7sdv6bivk7y8vnr2q030ckl6m49xdnd"; + }; + in + runCommand "31eb1ff6086cd1eac01cdc6d309f9f3227f7cbba" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6bc84e4dfeb5e3085370b21730621b6057c9f546"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-planningcenter-serviceslive.git"; + rev = "6bc84e4dfeb5e3085370b21730621b6057c9f546"; + sha256 = "1cwm3ypvi81r30zbiyhmwbdv02jzlvmjpjb2jlsdn3fjggl7y013"; + }; + in + runCommand "6bc84e4dfeb5e3085370b21730621b6057c9f546" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d705dcf538eb8301e1c59888da763436fcd3b1fc"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-presentationtools-aps.git"; + rev = "d705dcf538eb8301e1c59888da763436fcd3b1fc"; + sha256 = "1shbaip4ficrg9i72myd36rcdyibzaa37dmv4xfzg16f9qvf2k2b"; + }; + in + runCommand "d705dcf538eb8301e1c59888da763436fcd3b1fc" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d4e34e9577646700e11d3e4f2e3bb6234ed17e94"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-presentationtools-cuetimer.git"; + rev = "d4e34e9577646700e11d3e4f2e3bb6234ed17e94"; + sha256 = "1j3j2wxs5ghjili5k4jkn0ad7wkklm33qh31dbvphv7if1fgr6bj"; + }; + in + runCommand "d4e34e9577646700e11d3e4f2e3bb6234ed17e94" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "48572a5f1f8e58cd8d128afc841f7245be59a4e5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-protopie-bridge.git"; + rev = "48572a5f1f8e58cd8d128afc841f7245be59a4e5"; + sha256 = "1vllhk86c6ah1c3pcwsh2x6ixq6csp1syk10kclkmw4c87plxz1w"; + }; + in + runCommand "48572a5f1f8e58cd8d128afc841f7245be59a4e5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8a50434af7c25ed81da8155b69be92b4ac91f3a9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-prsi-ipower.git"; + rev = "8a50434af7c25ed81da8155b69be92b4ac91f3a9"; + sha256 = "1j4k8cj219xznsgls2xkvh9r74lkdwj12q5pmwp9bm9cii8lql3f"; + }; + in + runCommand "8a50434af7c25ed81da8155b69be92b4ac91f3a9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0a78c6ad59de5ef6ead35937df89dc991b416aac"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-ptzoptics-visca.git"; + rev = "0a78c6ad59de5ef6ead35937df89dc991b416aac"; + sha256 = "0yk1ga4yvq1i1j8764b2bc8j2yp1vh5zph0j3pl0mgbkwil5qbgl"; + }; + in + runCommand "0a78c6ad59de5ef6ead35937df89dc991b416aac" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "52dbc92b096ae3f465f814948820ddf12a33a7e2"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-qsys-remote-control.git"; + rev = "52dbc92b096ae3f465f814948820ddf12a33a7e2"; + sha256 = "1ix97bc57jbw03pz0m9hb49vmd1lqwxcwr8qhlc8cy7bmzh4rc6b"; + }; + in + runCommand "52dbc92b096ae3f465f814948820ddf12a33a7e2" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "79d922c4d186e6dfe14f715d3f4566dccba03a64"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-radiodj-rest.git"; + rev = "79d922c4d186e6dfe14f715d3f4566dccba03a64"; + sha256 = "0h6xsrc4727zhp709gjis5w7i4ahi39f25vhh2i2311q9w3dqf5n"; + }; + in + runCommand "79d922c4d186e6dfe14f715d3f4566dccba03a64" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "10b2369d4a62ff8e2479234fa2eab32e32b18697"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rationalacoustics-smaart3.git"; + rev = "10b2369d4a62ff8e2479234fa2eab32e32b18697"; + sha256 = "096bvk9yzc9ffqrma139nz5vrps1fc708iiy48c9nmzpsn8931mj"; + }; + in + runCommand "10b2369d4a62ff8e2479234fa2eab32e32b18697" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-renewedvision-propresenter.git"; + rev = "99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d"; + sha256 = "1x8cxmk7nwsvq0pjvgzslgis6c3p2ampb1ynvsliwiqr508gy5m5"; + }; + in + runCommand "99cdaaef09a5bb4c6c1ad91c4a882d97b0a4db5d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "fc1be25f64bf50e2786d0dee630020763b07bac1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-renewedvision-pvp.git"; + rev = "fc1be25f64bf50e2786d0dee630020763b07bac1"; + sha256 = "1z76y5w17jcfrbxwyn426pa5lyp6qf8rvn1sz50i66ggn0gsnhbv"; + }; + in + runCommand "fc1be25f64bf50e2786d0dee630020763b07bac1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ee7df4784b246efd8931ef3d1c336f33cfe557b1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-resi-decoders.git"; + rev = "ee7df4784b246efd8931ef3d1c336f33cfe557b1"; + sha256 = "0bbgxgwg8wrw6l6a4916ap7grvmg5f4r0qdrkxfl33x6xqq2ylwr"; + }; + in + runCommand "ee7df4784b246efd8931ef3d1c336f33cfe557b1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "41cf815770609d949730b9691fd438f2b96d8d17"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-resolume-arena.git"; + rev = "41cf815770609d949730b9691fd438f2b96d8d17"; + sha256 = "12071vlh9la1rdpkfvd24rg4sdi47i1vbq8sgip1vhsp9828xiiw"; + }; + in + runCommand "41cf815770609d949730b9691fd438f2b96d8d17" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "91d8b4741b87fd4f647530eb77e32743bea4edbb"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rocosoft-ptzjoy.git"; + rev = "91d8b4741b87fd4f647530eb77e32743bea4edbb"; + sha256 = "0rn62ljazsipbnz0ffr3kbgkvbdlr5vx0hnz2ig2wv8rn9jr6f9n"; + }; + in + runCommand "91d8b4741b87fd4f647530eb77e32743bea4edbb" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "dcd6e6ee769495c82bc480e61214b2c6ada390fa"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roku-tv.git"; + rev = "dcd6e6ee769495c82bc480e61214b2c6ada390fa"; + sha256 = "1jf1x3sq30jdnqyvrljrnqdfkk2ffxcqqbrkcq54g71pi9mc4xja"; + }; + in + runCommand "dcd6e6ee769495c82bc480e61214b2c6ada390fa" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "580e5321fd44526870469c483c996be43a39476c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-m5000.git"; + rev = "580e5321fd44526870469c483c996be43a39476c"; + sha256 = "0hyzg6bp8pa8ry388n8qn1x0q5p83iadyj9km9y5pddwyp02cxg8"; + }; + in + runCommand "580e5321fd44526870469c483c996be43a39476c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "111c033a643195a2833ba0a845bb71da0538cf2d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-v1200hd.git"; + rev = "111c033a643195a2833ba0a845bb71da0538cf2d"; + sha256 = "0yidgwjaqzmrcrrh76sl162k4lb3vglaz0z255kykpnm2pxxfhzi"; + }; + in + runCommand "111c033a643195a2833ba0a845bb71da0538cf2d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "88832ff65c1112f62e2457cd00f5a4c4e997d74b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-v600uhd.git"; + rev = "88832ff65c1112f62e2457cd00f5a4c4e997d74b"; + sha256 = "1qx449nh6cqavcq8zzbvl66p6ix847vjks7lxj98dn6l99gnj7yi"; + }; + in + runCommand "88832ff65c1112f62e2457cd00f5a4c4e997d74b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5f5d841b31fb26111a91ab156e5756963039ec1e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-v60hd.git"; + rev = "5f5d841b31fb26111a91ab156e5756963039ec1e"; + sha256 = "1ghs9vsbsrv0v3y17ql12sgr3ga30np0dwg6crplfh7w07q31b4l"; + }; + in + runCommand "5f5d841b31fb26111a91ab156e5756963039ec1e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a2775e1ec6d22861821617e3cae039fc36bbaccd"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-vp42h.git"; + rev = "a2775e1ec6d22861821617e3cae039fc36bbaccd"; + sha256 = "1wliz2qdighmgxnday23zgk2zj2qbklx3in4950b74md40yi9lm8"; + }; + in + runCommand "a2775e1ec6d22861821617e3cae039fc36bbaccd" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d0e00d1d791c1aa379f8b4c36260bdcf299df0b7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-vr50hd-mk2.git"; + rev = "d0e00d1d791c1aa379f8b4c36260bdcf299df0b7"; + sha256 = "0573n3hpxsfafvdrcizhjb9byj7yyya2gybd6cm26kw094dg3nbb"; + }; + in + runCommand "d0e00d1d791c1aa379f8b4c36260bdcf299df0b7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-xs42h.git"; + rev = "9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e"; + sha256 = "0bn1ljsynl55i72351hc1iixk5kx63hjmsdsmjsx73wzzlmpirk7"; + }; + in + runCommand "9de57277d39cf1c8a3223f3bf6ccb04ef1b7af9e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7d649c4c83eb4d470690391e1fd99a0992acaeef"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-xs62s.git"; + rev = "7d649c4c83eb4d470690391e1fd99a0992acaeef"; + sha256 = "13a74av66raxh2m5gbiz42xida6wyyz68am2wg4lsxvz903kjmxn"; + }; + in + runCommand "7d649c4c83eb4d470690391e1fd99a0992acaeef" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ee879c94aaf20a1882acce37b57f95bfe8d74b08"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-roland-xs84h.git"; + rev = "ee879c94aaf20a1882acce37b57f95bfe8d74b08"; + sha256 = "0z60kjk6qvdasvc53cfa19svnq9mw0gr23i525jvj79smag98zhq"; + }; + in + runCommand "ee879c94aaf20a1882acce37b57f95bfe8d74b08" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "25810a26ffec50e961c6d2a613c6a8cf82a2a7d3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rossvideo-caprica.git"; + rev = "25810a26ffec50e961c6d2a613c6a8cf82a2a7d3"; + sha256 = "1a8l2gm6s70ar2j53f1ga2wgral1xw5l8hqgz69hqdydbhdym209"; + }; + in + runCommand "25810a26ffec50e961c6d2a613c6a8cf82a2a7d3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ff13aa71641b61b9c821f8746f154199e87ee3af"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rossvideo-nkrouter.git"; + rev = "ff13aa71641b61b9c821f8746f154199e87ee3af"; + sha256 = "1928liqpl9dcpiz4kl9k1pdbfjj0hgj3y2jjzf9smdzxivpmrglb"; + }; + in + runCommand "ff13aa71641b61b9c821f8746f154199e87ee3af" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5017f3cd24e9a58aabc017ed748eac461de4d9c7"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rossvideo-rosstalk.git"; + rev = "5017f3cd24e9a58aabc017ed748eac461de4d9c7"; + sha256 = "03qifyq9jl4pjgf2snigfcnnqg7rbj708ql2ab7k5fxq1dgj6akz"; + }; + in + runCommand "5017f3cd24e9a58aabc017ed748eac461de4d9c7" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d8b48cfde173c6f0f177595d08f8fc608602f22e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-rossvideo-xpression.git"; + rev = "d8b48cfde173c6f0f177595d08f8fc608602f22e"; + sha256 = "1dklsyfkarc0bqmipvygxrxvrizf56xsv31zyd6abzl79f8nkay4"; + }; + in + runCommand "d8b48cfde173c6f0f177595d08f8fc608602f22e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "93fb898fe631a9a940b269f94b90644e4163982b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sain-smart-relay.git"; + rev = "93fb898fe631a9a940b269f94b90644e4163982b"; + sha256 = "1h6lkkj4kqbcp9mfwq7zz4krycm28sslxz0prhvd9qnflyrfn6ih"; + }; + in + runCommand "93fb898fe631a9a940b269f94b90644e4163982b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c88162c0fa6d8257cd2e5e76400e5ea6e4112a34"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-seervision-suite.git"; + rev = "c88162c0fa6d8257cd2e5e76400e5ea6e4112a34"; + sha256 = "0lsfa0w1m0dq1gp80w3nplhj5ns8wqfk9qagn86n2jamfcqavkxk"; + }; + in + runCommand "c88162c0fa6d8257cd2e5e76400e5ea6e4112a34" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "b1d35877bb7c18b46edd3295e0b6c2809ebd1829"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sharp-tv.git"; + rev = "b1d35877bb7c18b46edd3295e0b6c2809ebd1829"; + sha256 = "11kdp29a85yzcd5qiy1lgf68yjc4dcapwysjqfm67nd7kw383xrp"; + }; + in + runCommand "b1d35877bb7c18b46edd3295e0b6c2809ebd1829" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "3779545db8a50a95548f5350de10e870fce02373"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-showcuesystems-scs.git"; + rev = "3779545db8a50a95548f5350de10e870fce02373"; + sha256 = "0kp1rkpdmq9s7vqpi6sbgx5kyj9378h1g366zqxvcyyr1dzzphmg"; + }; + in + runCommand "3779545db8a50a95548f5350de10e870fce02373" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "99997a3c2a5616b457cd0abec419a914ad87465c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-dis-ccu.git"; + rev = "99997a3c2a5616b457cd0abec419a914ad87465c"; + sha256 = "0m8zmch07p2c337wwl3kxxynkzi5qygyk55cnls1y7l8vdijaxld"; + }; + in + runCommand "99997a3c2a5616b457cd0abec419a914ad87465c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "76c098891181f9bcc698eb1cd2348beddd9bf137"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-mxa910.git"; + rev = "76c098891181f9bcc698eb1cd2348beddd9bf137"; + sha256 = "1pmc39rfzgllp0sqgv17888rvjjr3lrrp45xw3nypq2fqi6fs5h1"; + }; + in + runCommand "76c098891181f9bcc698eb1cd2348beddd9bf137" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9d11840bb80f3064593b3cb8fd608ca17e954936"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-mxn5.git"; + rev = "9d11840bb80f3064593b3cb8fd608ca17e954936"; + sha256 = "19ngw9lcag04jd3mymbhsxbqlvqj3lqh4i1qghrpwcfg4la18x1d"; + }; + in + runCommand "9d11840bb80f3064593b3cb8fd608ca17e954936" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "78e49249f18f4c2142bf59f1ec6508d479056d60"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-p300.git"; + rev = "78e49249f18f4c2142bf59f1ec6508d479056d60"; + sha256 = "190k4bf4fah7mywzqck6p7llzcn0ihwb30s41y9h326hg6ip0liq"; + }; + in + runCommand "78e49249f18f4c2142bf59f1ec6508d479056d60" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "97899a0ccbc95bbdc73ae21bd6353945cb16b1f5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-psm1000.git"; + rev = "97899a0ccbc95bbdc73ae21bd6353945cb16b1f5"; + sha256 = "0lqy37an1ndi8spmlb72gwbk51bb7s7yi6sdjlk307jhkzs111jb"; + }; + in + runCommand "97899a0ccbc95bbdc73ae21bd6353945cb16b1f5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8f6652397a7cad1c7d5ad50d75672d41e809c1c9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-scm820.git"; + rev = "8f6652397a7cad1c7d5ad50d75672d41e809c1c9"; + sha256 = "0n1zhihfjcr31bh8wshjpdnc1dxrkhr4ih77qp78iy6243ljz97h"; + }; + in + runCommand "8f6652397a7cad1c7d5ad50d75672d41e809c1c9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "9062983e6c4b1ab93645f9e8096da4a7ed16b864"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-shure-wireless.git"; + rev = "9062983e6c4b1ab93645f9e8096da4a7ed16b864"; + sha256 = "1p76pwzk7baxwdars4n1sj2iqk3kxrzyzxvylnh066gs58birwlc"; + }; + in + runCommand "9062983e6c4b1ab93645f9e8096da4a7ed16b864" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "23564ea3d942f66b91cc4df37a8b1cf7ea4661d3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sienna-ndimonitor.git"; + rev = "23564ea3d942f66b91cc4df37a8b1cf7ea4661d3"; + sha256 = "05i9cl35ff3ydd0xv46n74a5hkyf823rw0zsxra2glfzflmk4hv4"; + }; + in + runCommand "23564ea3d942f66b91cc4df37a8b1cf7ea4661d3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "832791f2a7b3bed96fca4b832a385d1811ab6c4b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-singularlive-studio.git"; + rev = "832791f2a7b3bed96fca4b832a385d1811ab6c4b"; + sha256 = "1ifkm03y29q8qvj7b3ca8bdirdj6gb9mly1d5yn0rcg12a9dqkys"; + }; + in + runCommand "832791f2a7b3bed96fca4b832a385d1811ab6c4b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d18447b43281d069308876aa2980c57688035710"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-slack-webhooks.git"; + rev = "d18447b43281d069308876aa2980c57688035710"; + sha256 = "1ip11b6jcdw2a9n2dp3q0jzfv92bnhj187z777lggxzz2jj4rcaa"; + }; + in + runCommand "d18447b43281d069308876aa2980c57688035710" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "7ea28a7b3ef1af271e1d07e006a9a1a9b4a6ffd9"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-softron-movierecorder.git"; + rev = "7ea28a7b3ef1af271e1d07e006a9a1a9b4a6ffd9"; + sha256 = "1my8d8ynwg4a9qpazfcl9iicvz0a5s3kdbzyi4hndk0cwpl14vfa"; + }; + in + runCommand "7ea28a7b3ef1af271e1d07e006a9a1a9b4a6ffd9" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0cf0f8f26003ee87e6ea85558f2315739ba236e5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-softron-ontheairvideo.git"; + rev = "0cf0f8f26003ee87e6ea85558f2315739ba236e5"; + sha256 = "08alv5y1s3hi4j5bdssqfj0b56zlhs3qv41cq48akhrda3p9bh7n"; + }; + in + runCommand "0cf0f8f26003ee87e6ea85558f2315739ba236e5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6c9240ec0f2c3e56b3e369c3cda7a410147f71f4"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sononum-horae.git"; + rev = "6c9240ec0f2c3e56b3e369c3cda7a410147f71f4"; + sha256 = "0nr811ym1ipykgqgxhf77wplcn34747pri54y3k6qmk4xk9ha9wy"; + }; + in + runCommand "6c9240ec0f2c3e56b3e369c3cda7a410147f71f4" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "bfe159c295d15929f994772419668874fba5e900"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sonoran-coyote.git"; + rev = "bfe159c295d15929f994772419668874fba5e900"; + sha256 = "13155jb5n4rhfsw43qy4q3ss8z0mgx4l1gzjhddb476p3yd6r3mx"; + }; + in + runCommand "bfe159c295d15929f994772419668874fba5e900" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "845424e0f1bea78a9e5009b212651d4301543414"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sonos-speakers.git"; + rev = "845424e0f1bea78a9e5009b212651d4301543414"; + sha256 = "00b54mnycmjngcaavy8zm3czmmd90zysdqxsridl68n506fc3d1p"; + }; + in + runCommand "845424e0f1bea78a9e5009b212651d4301543414" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c464edba830c93e668d3ec64044530c126648f70"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sony-bravia.git"; + rev = "c464edba830c93e668d3ec64044530c126648f70"; + sha256 = "13wimgnr8y1vslbcgqk4wip6mqr73106ddfjfpdq7x7qc72j5ir4"; + }; + in + runCommand "c464edba830c93e668d3ec64044530c126648f70" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1007d469c9aca87e1f0f7c19200d71398d2f2f6c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sony-broadcastmonitor.git"; + rev = "1007d469c9aca87e1f0f7c19200d71398d2f2f6c"; + sha256 = "1r37qn3jmrrjgxwizi51vz2r84zzm543pv3a59rvwxwm8h2yav6n"; + }; + in + runCommand "1007d469c9aca87e1f0f7c19200d71398d2f2f6c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "e95ec2025d6647cb95b29bdb0dbfc23790b86922"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sony-visca.git"; + rev = "e95ec2025d6647cb95b29bdb0dbfc23790b86922"; + sha256 = "1qz9nf4ip73qdgz5mbsqjr7bvqdfr5xqchl93kl1pfhxbqasm7b6"; + }; + in + runCommand "e95ec2025d6647cb95b29bdb0dbfc23790b86922" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0805c986d9b3853ce9a7e95063bef6655944f57a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-soundcraft-ui.git"; + rev = "0805c986d9b3853ce9a7e95063bef6655944f57a"; + sha256 = "0vsyh03ng4idlpl4zzp9i3cx2a9dj8d4vpsgzvi4sas172ry2zlp"; + }; + in + runCommand "0805c986d9b3853ce9a7e95063bef6655944f57a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ded91efc401513f33b2bb8a42ccd11cb3b73e419"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-sounddevices-pixnet.git"; + rev = "ded91efc401513f33b2bb8a42ccd11cb3b73e419"; + sha256 = "1bfnx0brq1xci92jqcvnygbqq95vzkvziidiwv4z09qi3qqnqx0l"; + }; + in + runCommand "ded91efc401513f33b2bb8a42ccd11cb3b73e419" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "294be0e15269d35fa31c7203748416795eafe18d"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-spotify-remote.git"; + rev = "294be0e15269d35fa31c7203748416795eafe18d"; + sha256 = "0wq2il95h9yfn1386lvdkxxn9nnwppqn1fvv2yi1iv7l033xz0aa"; + }; + in + runCommand "294be0e15269d35fa31c7203748416795eafe18d" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "83719ce70604810625652f25c5ebff39d184c4dd"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-spx-gc.git"; + rev = "83719ce70604810625652f25c5ebff39d184c4dd"; + sha256 = "1p05i8ffh9ywj6q44kbvdlq9bibwmk9yyvgvqd2x9qpqywl2ynis"; + }; + in + runCommand "83719ce70604810625652f25c5ebff39d184c4dd" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6e96cf41e83298c8abb39efbb0a0f16ced31d1b1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-studiocoast-vmix.git"; + rev = "6e96cf41e83298c8abb39efbb0a0f16ced31d1b1"; + sha256 = "0gd4623m822jnnd3wcp3c96l0yxm3bm44jj2gn4rpnz5wr41ypph"; + }; + in + runCommand "6e96cf41e83298c8abb39efbb0a0f16ced31d1b1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "aacfa6072d27a794e547a2257e5539fbc093f639"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-symetrix-dsp.git"; + rev = "aacfa6072d27a794e547a2257e5539fbc093f639"; + sha256 = "17m5v45339x2g7a35nyss15zhm3mm8jn1y831vnadwfbg7iay5xc"; + }; + in + runCommand "aacfa6072d27a794e547a2257e5539fbc093f639" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "e2b9b78ca17d939ce5f88955571aeb0050f85235"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tallyma-wirelesstally.git"; + rev = "e2b9b78ca17d939ce5f88955571aeb0050f85235"; + sha256 = "1hc7wbrkh6lvhj82gv9d23116slg020pbx79nm0kss378vayyark"; + }; + in + runCommand "e2b9b78ca17d939ce5f88955571aeb0050f85235" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tascam-bdmp1.git"; + rev = "8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33"; + sha256 = "1frgihsm6n6wnx2hnvimbhilhipr8v4afklb4pm10mar5kjgyvgr"; + }; + in + runCommand "8bfa1ce2aceb7011c2dfa3e33310ef611cb46d33" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "15f56292c03a353a12f8d1ea33b38d94d3dc9b09"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tascam-cd.git"; + rev = "15f56292c03a353a12f8d1ea33b38d94d3dc9b09"; + sha256 = "1f29sh78hrnjdrlfpf23wrz7hq8lm885i3xnk1k1hb7zvbad36a3"; + }; + in + runCommand "15f56292c03a353a12f8d1ea33b38d94d3dc9b09" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "59f2998e0b9b41875c20cfee8b1c6775a587f987"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-techministry-midirelay.git"; + rev = "59f2998e0b9b41875c20cfee8b1c6775a587f987"; + sha256 = "1qzxgqbyzr7833c7dn8cnz9whl3k41xmd7mwk0wf8zwjxp64anzz"; + }; + in + runCommand "59f2998e0b9b41875c20cfee8b1c6775a587f987" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "1e7ae64e9f42fdb261f603fbb2818aa5d0700091"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-techministry-protally.git"; + rev = "1e7ae64e9f42fdb261f603fbb2818aa5d0700091"; + sha256 = "1dhpx4kr7j6b5y2jlz0vjc70inaq0i14db7g4a1rh2a0bz74iv7k"; + }; + in + runCommand "1e7ae64e9f42fdb261f603fbb2818aa5d0700091" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "10b5fc774a153b1adc2cde1021636b82cc7b8850"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-techministry-tallyarbiter.git"; + rev = "10b5fc774a153b1adc2cde1021636b82cc7b8850"; + sha256 = "1912f86njss0471wncwsqr4vzvqsjvcyyxcx0bliz05ynxb6cgdq"; + }; + in + runCommand "10b5fc774a153b1adc2cde1021636b82cc7b8850" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2f79bb9bbd8646d21f3942b89fd79eb6305c7a28"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-teracom-tcw181b.git"; + rev = "2f79bb9bbd8646d21f3942b89fd79eb6305c7a28"; + sha256 = "1jagkxyb9s377nn4cj7wkqq944kkgf5215g4zyfamg733qny6c92"; + }; + in + runCommand "2f79bb9bbd8646d21f3942b89fd79eb6305c7a28" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "156c8665aa960e924daa52c89d45e0a7a06937f5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-teradek-vidiu.git"; + rev = "156c8665aa960e924daa52c89d45e0a7a06937f5"; + sha256 = "19jcxcih1kzv39np6wyf31cr1rlq5bi4pi8kw7hzwqnzb12cqwyr"; + }; + in + runCommand "156c8665aa960e924daa52c89d45e0a7a06937f5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "2f19dbedc1d69285eaf0c9388ba141841ef5424a"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tesla-smart.git"; + rev = "2f19dbedc1d69285eaf0c9388ba141841ef5424a"; + sha256 = "0a9cj367j0rplmlk09rlssls0ng79mxj7jlwwzqzf71sr6picxdn"; + }; + in + runCommand "2f19dbedc1d69285eaf0c9388ba141841ef5424a" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "db7d7015f72b1541794aa0249032c000c5787399"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tesmart-hdmimatrix.git"; + rev = "db7d7015f72b1541794aa0249032c000c5787399"; + sha256 = "0g76f5ib61904qlcj8fshhc62fihrcaq10xzznh4di8pczbq63h5"; + }; + in + runCommand "db7d7015f72b1541794aa0249032c000c5787399" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "4237d1d5643e6897d308bdacb6863ed86b1f6e71"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-thelightingcontroller.git"; + rev = "4237d1d5643e6897d308bdacb6863ed86b1f6e71"; + sha256 = "0bqcfjw5n2b41y7g3r34n424kby0y8l5p0ji42kkranx74v7rh0i"; + }; + in + runCommand "4237d1d5643e6897d308bdacb6863ed86b1f6e71" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "728f4c593fff60995be0244b6a25bac53891505f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-thingm-blink1.git"; + rev = "728f4c593fff60995be0244b6a25bac53891505f"; + sha256 = "1wn3z0kmwggyl8qyg723wqlb27hi63w1b4sppx8g0ls88br7jqz4"; + }; + in + runCommand "728f4c593fff60995be0244b6a25bac53891505f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a5d4e189db15b8a0006e07a95d59ab3a183e8d75"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tow-mixeffect.git"; + rev = "a5d4e189db15b8a0006e07a95d59ab3a183e8d75"; + sha256 = "1nhlg9xh0h8psz2vhccqasrkh015y6gjgqrlyqp59r8xyhf5ijsz"; + }; + in + runCommand "a5d4e189db15b8a0006e07a95d59ab3a183e8d75" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5610184a3251a35d636e0bf44057a4f40fa028ac"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tplink-kasasmartplug.git"; + rev = "5610184a3251a35d636e0bf44057a4f40fa028ac"; + sha256 = "0vr6hnvhnzq1335v9srr7dfzxsap8cbf7gxwam246qxqlc5dwdpd"; + }; + in + runCommand "5610184a3251a35d636e0bf44057a4f40fa028ac" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "e81d4a0f393b983bfed5a09adf27d91e11ef09f6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tslproducts-umd.git"; + rev = "e81d4a0f393b983bfed5a09adf27d91e11ef09f6"; + sha256 = "08f2rh9zhwdjdicxmp30r7p59g7zf3gh4l7rjcd34m0r5ijrf77s"; + }; + in + runCommand "e81d4a0f393b983bfed5a09adf27d91e11ef09f6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c70aa83095d0a7cc0ded18b4b058232473a3a1c5"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-tvone-corio.git"; + rev = "c70aa83095d0a7cc0ded18b4b058232473a3a1c5"; + sha256 = "1zd9l6bv8qcfhal8a069xn49yy0w2ihp6wbh3z2vpx1x8q71rlk8"; + }; + in + runCommand "c70aa83095d0a7cc0ded18b4b058232473a3a1c5" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "006526e7a0c77997d1c8ebce753c2359424ec607"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-twitch-api.git"; + rev = "006526e7a0c77997d1c8ebce753c2359424ec607"; + sha256 = "1411rb4zi1rccbr7ga3mzf6hr7f5mxzmm56y6bwlgwn8l5clbz92"; + }; + in + runCommand "006526e7a0c77997d1c8ebce753c2359424ec607" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "22963738c49b0c20c88850c4978f82e5d429c4b3"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-ubiquiti-unifi.git"; + rev = "22963738c49b0c20c88850c4978f82e5d429c4b3"; + sha256 = "1qqh7xa9nx2hlqgvds9c5bsbvgx2slzp4rs2nsy2n94pfx49i97d"; + }; + in + runCommand "22963738c49b0c20c88850c4978f82e5d429c4b3" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "16bf099f3c35aa231c74b10b6b2cb60f93ef63a1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vaddio-ptz.git"; + rev = "16bf099f3c35aa231c74b10b6b2cb60f93ef63a1"; + sha256 = "1x892s97py1446pmdgzxy5g3v1j33wc2jnw30k2kjqhdmsym7hqc"; + }; + in + runCommand "16bf099f3c35aa231c74b10b6b2cb60f93ef63a1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "69a200b11847c1ec4f0bfde649239e36e78aaf3f"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vdo-ninja.git"; + rev = "69a200b11847c1ec4f0bfde649239e36e78aaf3f"; + sha256 = "1r5b5fj9fv6v6pb3g93ngm4y4fdmfzx6wk0ilksy26m3n4s74dd8"; + }; + in + runCommand "69a200b11847c1ec4f0bfde649239e36e78aaf3f" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5d8defa810d9a4d3a3e0d3be31e9d0735ef6f786"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vicreo-hotkey.git"; + rev = "5d8defa810d9a4d3a3e0d3be31e9d0735ef6f786"; + sha256 = "0l431sy5k0ky30j6bfpvl3yx4h663lmrgsz0bxrigqybgby7w5jk"; + }; + in + runCommand "5d8defa810d9a4d3a3e0d3be31e9d0735ef6f786" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "f71becbb6b4d68e5c091cedb434235e9af44d309"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vicreo-variablelistener.git"; + rev = "f71becbb6b4d68e5c091cedb434235e9af44d309"; + sha256 = "16l5f6wq729139pvc1fqlksjqllpraqjxby4zm4hkjd3sbsagzmm"; + }; + in + runCommand "f71becbb6b4d68e5c091cedb434235e9af44d309" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "0c84f58892cb92900182dd56c6cb8bbbcf640368"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-videolan-vlc.git"; + rev = "0c84f58892cb92900182dd56c6cb8bbbcf640368"; + sha256 = "095pk0814y6hjl4bg3zbfavhiani1qnl9riikz5ckvrkbs478yq8"; + }; + in + runCommand "0c84f58892cb92900182dd56c6cb8bbbcf640368" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "6ccb8cef1ccebed26dc1a47f16c959bb55a74732"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-visualproductions-bstation2.git"; + rev = "6ccb8cef1ccebed26dc1a47f16c959bb55a74732"; + sha256 = "0vbvklfmlcs078iax1brqcc9nmx7ddqn0p4w6snay9546xvf0jxf"; + }; + in + runCommand "6ccb8cef1ccebed26dc1a47f16c959bb55a74732" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "631651dcc76fa81350789ef3a2fb795c30cd800c"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-visualproductions-cuety.git"; + rev = "631651dcc76fa81350789ef3a2fb795c30cd800c"; + sha256 = "0i30nxc242q17p6a0wl9rcr17hh3c7kahh82b225kmy4kkm80jm9"; + }; + in + runCommand "631651dcc76fa81350789ef3a2fb795c30cd800c" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "50f78602ee98ecfa750465edfd69c7c59a774297"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vivitek-projector.git"; + rev = "50f78602ee98ecfa750465edfd69c7c59a774297"; + sha256 = "1hhzvrb17g4hlzlc15spzla3594hi8g9sdam0wcshjmqi48cgnwy"; + }; + in + runCommand "50f78602ee98ecfa750465edfd69c7c59a774297" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "67e9022739c9d36907d2e09b20ccd5c91ebe2d82"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vizio-smartcast.git"; + rev = "67e9022739c9d36907d2e09b20ccd5c91ebe2d82"; + sha256 = "10wzxi6lhb57kq9wcpwx98p6h7n76d0wcm8fz4mbbmrjb1ix6xia"; + }; + in + runCommand "67e9022739c9d36907d2e09b20ccd5c91ebe2d82" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-vyv-photon.git"; + rev = "a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b"; + sha256 = "1k2h21j0123z9lqp7g64aqbvrdq55bmrc4iqv9q40mdb4vnm4ffi"; + }; + in + runCommand "a6fcf4b3f20bb0ccf21837ae56a09dd70a1b8a7b" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "d900755e93d4962a3384068a1791a3776907d970"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-wyrestorm-sw0402mv.git"; + rev = "d900755e93d4962a3384068a1791a3776907d970"; + sha256 = "0svlcrd8nbsy8h4p6h34hqjqhcd44f7pa08kdiggv2maapbygcv5"; + }; + in + runCommand "d900755e93d4962a3384068a1791a3776907d970" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "5bd1b9f69cf9d56164625cae941f4cfa9ec5687e"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-xiamen-sprolink-vd-series.git"; + rev = "5bd1b9f69cf9d56164625cae941f4cfa9ec5687e"; + sha256 = "1jyymff1fzgaqanzn89bsj13k63y7gkmm9xk9wz2da8x9nbkrlyl"; + }; + in + runCommand "5bd1b9f69cf9d56164625cae941f4cfa9ec5687e" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "c7df26ef0b048b76d939b3a6ebeecc36217a27a6"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-yamaha-rcp.git"; + rev = "c7df26ef0b048b76d939b3a6ebeecc36217a27a6"; + sha256 = "12fs4h92qd6k50bldjflg9qsyj3m00b2cbb2l9zimrw66m1z5syv"; + }; + in + runCommand "c7df26ef0b048b76d939b3a6ebeecc36217a27a6" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "170bd03923d7ef75c2d925d6320669f8f3b0a829"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-youtube-live.git"; + rev = "170bd03923d7ef75c2d925d6320669f8f3b0a829"; + sha256 = "1jnwi80ss2baja225yvczwdmfqfr1z96ca8q738004wh3g0xn26b"; + }; + in + runCommand "170bd03923d7ef75c2d925d6320669f8f3b0a829" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "ced6d739e85cb1eee177c5bf6be79443872793d1"; + path = + let + repo = fetchgit { + url = "https://github.com/bitfocus/companion-module-zenvideo-ndirouter.git"; + rev = "ced6d739e85cb1eee177c5bf6be79443872793d1"; + sha256 = "11zw27cvgs424dczz1gr4r0flvcqhpdh0kjhjlnclifv3dz78y82"; + }; + in + runCommand "ced6d739e85cb1eee177c5bf6be79443872793d1" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } { name = "component_bind___component_bind_1.0.0.tgz"; path = fetchurl { @@ -4202,11 +6922,11 @@ }; } { - name = "core_js___core_js_3.14.0.tgz"; + name = "core_js___core_js_3.17.2.tgz"; path = fetchurl { - name = "core_js___core_js_3.14.0.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.14.0.tgz"; - sha1 = "62322b98c71cc2018b027971a69419e2425c2a6c"; + name = "core_js___core_js_3.17.2.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.17.2.tgz"; + sha1 = "f960eae710dc62c29cca93d5332e3660e289db10"; }; } { @@ -4217,6 +6937,14 @@ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; }; } + { + name = "core_util_is___core_util_is_1.0.3.tgz"; + path = fetchurl { + name = "core_util_is___core_util_is_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz"; + sha1 = "a6042d3634c2b27e9328f837b965fac83808db85"; + }; + } { name = "cors___cors_2.8.5.tgz"; path = fetchurl { @@ -4225,6 +6953,14 @@ sha1 = "eac11da51592dd86b9f06f6e7ac293b3df875d29"; }; } + { + name = "cpu_features___cpu_features_0.0.2.tgz"; + path = fetchurl { + name = "cpu_features___cpu_features_0.0.2.tgz"; + url = "https://registry.yarnpkg.com/cpu-features/-/cpu-features-0.0.2.tgz"; + sha1 = "9f636156f1155fd04bdbaa028bb3c2fbef3cea7a"; + }; + } { name = "crc___crc_3.8.0.tgz"; path = fetchurl { @@ -4323,17 +7059,11 @@ } { name = "Julusian_debounce_fn.git"; - path = let - fileName = "Julusian_debounce_fn.git"; - repo = fetchGit { - url = "https://github.com/Julusian/debounce-fn.git"; - rev = "e616868634090b0a900d0604b0e3bc06ea775af0"; - }; in - runCommandNoCC "${fileName}" { buildInputs = [gnutar]; } '' - # Set u+w because tar-fs can't unpack archives with read-only dirs - # https://github.com/mafintosh/tar-fs/issues/79 - tar cf $out --mode u+w -C ${repo} . - ''; + path = fetchurl { + name = "Julusian_debounce_fn.git"; + url = "https://github.com/Julusian/debounce-fn.git"; + sha1 = "6rngvcpz3ajr4zqwr1chqf12xpffm928"; + }; } { name = "debug___debug_2.6.9.tgz"; @@ -4391,6 +7121,14 @@ sha1 = "3b72260255109c6b589cee050f1d516139664791"; }; } + { + name = "decamelize_keys___decamelize_keys_1.1.0.tgz"; + path = fetchurl { + name = "decamelize_keys___decamelize_keys_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz"; + sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9"; + }; + } { name = "decamelize___decamelize_1.2.0.tgz"; path = fetchurl { @@ -4399,6 +7137,22 @@ sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; }; } + { + name = "decamelize___decamelize_4.0.0.tgz"; + path = fetchurl { + name = "decamelize___decamelize_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz"; + sha1 = "aa472d7bf660eb15f3494efd531cab7f2a709837"; + }; + } + { + name = "decamelize___decamelize_5.0.1.tgz"; + path = fetchurl { + name = "decamelize___decamelize_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/decamelize/-/decamelize-5.0.1.tgz"; + sha1 = "db11a92e58c741ef339fb0a2868d8a06a9a7b1e9"; + }; + } { name = "decompress_response___decompress_response_3.3.0.tgz"; path = fetchurl { @@ -4551,6 +7305,14 @@ sha1 = "800c0dd1e0a8bfbc95835c202ad220fe317e5a12"; }; } + { + name = "diff___diff_5.0.0.tgz"; + path = fetchurl { + name = "diff___diff_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz"; + sha1 = "7ed6ad76d859d030787ec35855f5b1daf31d852b"; + }; + } { name = "digest_header___digest_header_0.0.1.tgz"; path = fetchurl { @@ -4584,11 +7346,11 @@ }; } { - name = "dns_packet___dns_packet_5.2.4.tgz"; + name = "dns_packet___dns_packet_5.3.0.tgz"; path = fetchurl { - name = "dns_packet___dns_packet_5.2.4.tgz"; - url = "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.2.4.tgz"; - sha1 = "e004f409eadfa8ec861964dcb9eb395884fcf67d"; + name = "dns_packet___dns_packet_5.3.0.tgz"; + url = "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.3.0.tgz"; + sha1 = "9a0f66118d3be176b828b911a842b0b1a4bdfd4f"; }; } { @@ -4648,11 +7410,11 @@ }; } { - name = "duplexify___duplexify_3.7.1.tgz"; + name = "duplexify___duplexify_4.1.2.tgz"; path = fetchurl { - name = "duplexify___duplexify_3.7.1.tgz"; - url = "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz"; - sha1 = "2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"; + name = "duplexify___duplexify_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz"; + sha1 = "18b4f8d28289132fa0b9573c898d9f903f81c7b0"; }; } { @@ -4695,6 +7457,14 @@ sha1 = "cd97a0d9f6e6d388112e66b4376de431cca4d596"; }; } + { + name = "electron_notarize___electron_notarize_1.1.1.tgz"; + path = fetchurl { + name = "electron_notarize___electron_notarize_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/electron-notarize/-/electron-notarize-1.1.1.tgz"; + sha1 = "3ed274b36158c1beb1dbef14e7faf5927e028629"; + }; + } { name = "electron_publish___electron_publish_22.11.7.tgz"; path = fetchurl { @@ -4704,11 +7474,11 @@ }; } { - name = "electron___electron_13.1.2.tgz"; + name = "electron___electron_13.5.1.tgz"; path = fetchurl { - name = "electron___electron_13.1.2.tgz"; - url = "https://registry.yarnpkg.com/electron/-/electron-13.1.2.tgz"; - sha1 = "8c9abf9015766c9cbc16f10c99282d00d6ae1b90"; + name = "electron___electron_13.5.1.tgz"; + url = "https://registry.yarnpkg.com/electron/-/electron-13.5.1.tgz"; + sha1 = "76c02c39be228532f886a170b472cbd3d93f0d0f"; }; } { @@ -4784,11 +7554,11 @@ }; } { - name = "engine.io_client___engine.io_client_5.1.1.tgz"; + name = "engine.io_client___engine.io_client_5.2.0.tgz"; path = fetchurl { - name = "engine.io_client___engine.io_client_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.1.1.tgz"; - sha1 = "f5c3aaaef1bdc9443aac6ffde48b3b2fb2dc56fc"; + name = "engine.io_client___engine.io_client_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.2.0.tgz"; + sha1 = "ae38c79a4af16258c0300e6819c0ea8ecc1597cd"; }; } { @@ -4800,11 +7570,11 @@ }; } { - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; + name = "engine.io_parser___engine.io_parser_4.0.3.tgz"; path = fetchurl { - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.2.tgz"; - sha1 = "e41d0b3fb66f7bf4a3671d2038a154024edb501e"; + name = "engine.io_parser___engine.io_parser_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.3.tgz"; + sha1 = "83d3a17acfd4226f19e721bb22a1ee8f7662d2f6"; }; } { @@ -4816,11 +7586,11 @@ }; } { - name = "engine.io___engine.io_5.1.1.tgz"; + name = "engine.io___engine.io_5.2.0.tgz"; path = fetchurl { - name = "engine.io___engine.io_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/engine.io/-/engine.io-5.1.1.tgz"; - sha1 = "a1f97e51ddf10cbd4db8b5ff4b165aad3760cdd3"; + name = "engine.io___engine.io_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/engine.io/-/engine.io-5.2.0.tgz"; + sha1 = "554cdd0230d89de7b1a49a809d7ee5a129d36809"; }; } { @@ -4840,11 +7610,19 @@ }; } { - name = "es_abstract___es_abstract_1.18.3.tgz"; + name = "error_ex___error_ex_1.3.2.tgz"; path = fetchurl { - name = "es_abstract___es_abstract_1.18.3.tgz"; - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz"; - sha1 = "25c4c3380a27aa203c44b2b685bba94da31b63e0"; + name = "error_ex___error_ex_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; + sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; + }; + } + { + name = "es_abstract___es_abstract_1.18.5.tgz"; + path = fetchurl { + name = "es_abstract___es_abstract_1.18.5.tgz"; + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz"; + sha1 = "9b10de7d4c206a3581fd5b2124233e04db49ae19"; }; } { @@ -5024,11 +7802,11 @@ }; } { - name = "ext___ext_1.4.0.tgz"; + name = "ext___ext_1.5.0.tgz"; path = fetchurl { - name = "ext___ext_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz"; - sha1 = "89ae7a07158f79d35517882904324077e4379244"; + name = "ext___ext_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/ext/-/ext-1.5.0.tgz"; + sha1 = "e93b97ae0cb23f8370380f6107d2d2b7887687ad"; }; } { @@ -5120,11 +7898,11 @@ }; } { - name = "fast_safe_stringify___fast_safe_stringify_2.0.7.tgz"; + name = "fast_safe_stringify___fast_safe_stringify_2.0.8.tgz"; path = fetchurl { - name = "fast_safe_stringify___fast_safe_stringify_2.0.7.tgz"; - url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz"; - sha1 = "124aa885899261f68aedb42a7c080de9da608743"; + name = "fast_safe_stringify___fast_safe_stringify_2.0.8.tgz"; + url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.8.tgz"; + sha1 = "dc2af48c46cf712b683e849b2bbd446b32de936f"; }; } { @@ -5143,6 +7921,14 @@ sha1 = "cb637ec3f3999f51406dd8ff0e6fc4d83e520d01"; }; } + { + name = "fast_xml_parser___fast_xml_parser_3.21.1.tgz"; + path = fetchurl { + name = "fast_xml_parser___fast_xml_parser_3.21.1.tgz"; + url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz"; + sha1 = "152a1d51d445380f7046b304672dd55d15c9e736"; + }; + } { name = "fd_slicer___fd_slicer_1.1.0.tgz"; path = fetchurl { @@ -5215,6 +8001,14 @@ sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73"; }; } + { + name = "find_up___find_up_5.0.0.tgz"; + path = fetchurl { + name = "find_up___find_up_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz"; + sha1 = "4c92819ecb7083561e4f4a240a86be5198f536fc"; + }; + } { name = "flat___flat_4.1.1.tgz"; path = fetchurl { @@ -5223,6 +8017,14 @@ sha1 = "a392059cc382881ff98642f5da4dde0a959f309b"; }; } + { + name = "flat___flat_5.0.2.tgz"; + path = fetchurl { + name = "flat___flat_5.0.2.tgz"; + url = "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz"; + sha1 = "8ca6fe332069ffa9d324c327198c598259ceb241"; + }; + } { name = "follow_redirects___follow_redirects_1.5.10.tgz"; path = fetchurl { @@ -5232,11 +8034,11 @@ }; } { - name = "follow_redirects___follow_redirects_1.14.1.tgz"; + name = "follow_redirects___follow_redirects_1.14.3.tgz"; path = fetchurl { - name = "follow_redirects___follow_redirects_1.14.1.tgz"; - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.1.tgz"; - sha1 = "d9114ded0a1cfdd334e164e6662ad02bfd91ff43"; + name = "follow_redirects___follow_redirects_1.14.3.tgz"; + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz"; + sha1 = "6ada78118d8d24caee595595accdc0ac6abd022e"; }; } { @@ -5503,14 +8305,6 @@ sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce"; }; } - { - name = "glob_parent___glob_parent_3.1.0.tgz"; - path = fetchurl { - name = "glob_parent___glob_parent_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz"; - sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; - }; - } { name = "glob_parent___glob_parent_5.1.2.tgz"; path = fetchurl { @@ -5519,14 +8313,6 @@ sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4"; }; } - { - name = "glob_stream___glob_stream_6.1.0.tgz"; - path = fetchurl { - name = "glob_stream___glob_stream_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz"; - sha1 = "7045c99413b3eb94888d83ab46d0b404cc7bdde4"; - }; - } { name = "glob_to_regexp___glob_to_regexp_0.3.0.tgz"; path = fetchurl { @@ -5600,11 +8386,11 @@ }; } { - name = "google_p12_pem___google_p12_pem_2.0.4.tgz"; + name = "google_p12_pem___google_p12_pem_2.0.5.tgz"; path = fetchurl { - name = "google_p12_pem___google_p12_pem_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-2.0.4.tgz"; - sha1 = "036462394e266472632a78b685f0cc3df4ef337b"; + name = "google_p12_pem___google_p12_pem_2.0.5.tgz"; + url = "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-2.0.5.tgz"; + sha1 = "b1c44164d567ae894f7a19b4ff362a06be5b793b"; }; } { @@ -5631,6 +8417,14 @@ sha1 = "7abb3959ea28c31f3576f1576c1effce23f33599"; }; } + { + name = "got___got_11.8.3.tgz"; + path = fetchurl { + name = "got___got_11.8.3.tgz"; + url = "https://registry.yarnpkg.com/got/-/got-11.8.3.tgz"; + sha1 = "f496c8fdda5d729a90b4905d2b07dbd148170770"; + }; + } { name = "got___got_6.7.1.tgz"; path = fetchurl { @@ -5648,11 +8442,11 @@ }; } { - name = "graceful_fs___graceful_fs_4.2.6.tgz"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; path = fetchurl { - name = "graceful_fs___graceful_fs_4.2.6.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz"; - sha1 = "ff040b2b0853b23c3d31027523706f1885d76bee"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz"; + sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a"; }; } { @@ -5687,6 +8481,14 @@ sha1 = "39d19494dbe69d1ea719915b578bf920344a69d5"; }; } + { + name = "graphql___graphql_15.5.2.tgz"; + path = fetchurl { + name = "graphql___graphql_15.5.2.tgz"; + url = "https://registry.yarnpkg.com/graphql/-/graphql-15.5.2.tgz"; + sha1 = "efa19f8f2bf1a48eb7d5c85bf17e144ba8bb0480"; + }; + } { name = "growl___growl_1.10.5.tgz"; path = fetchurl { @@ -5727,6 +8529,14 @@ sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"; }; } + { + name = "hard_rejection___hard_rejection_2.1.0.tgz"; + path = fetchurl { + name = "hard_rejection___hard_rejection_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz"; + sha1 = "1c6eda5c1685c63942766d79bb40ae773cecd883"; + }; + } { name = "has_bigints___has_bigints_1.0.1.tgz"; path = fetchurl { @@ -5775,6 +8585,14 @@ sha1 = "165d3070c00309752a1236a479331e3ac56f1423"; }; } + { + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; + path = fetchurl { + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; + sha1 = "7e133818a7d394734f941e73c3d3f9291e658b25"; + }; + } { name = "has_unicode___has_unicode_2.0.1.tgz"; path = fetchurl { @@ -5808,11 +8626,11 @@ }; } { - name = "help_me___help_me_1.1.0.tgz"; + name = "help_me___help_me_3.0.0.tgz"; path = fetchurl { - name = "help_me___help_me_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/help-me/-/help-me-1.1.0.tgz"; - sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; + name = "help_me___help_me_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/help-me/-/help-me-3.0.0.tgz"; + sha1 = "9803c81b5f346ad2bce2c6a0ba01b82257d319e8"; }; } { @@ -5824,11 +8642,11 @@ }; } { - name = "home_assistant_js_websocket___home_assistant_js_websocket_5.10.0.tgz"; + name = "home_assistant_js_websocket___home_assistant_js_websocket_5.11.1.tgz"; path = fetchurl { - name = "home_assistant_js_websocket___home_assistant_js_websocket_5.10.0.tgz"; - url = "https://registry.yarnpkg.com/home-assistant-js-websocket/-/home-assistant-js-websocket-5.10.0.tgz"; - sha1 = "b59fd4f20a8295571b1a2589530c995d0d910c49"; + name = "home_assistant_js_websocket___home_assistant_js_websocket_5.11.1.tgz"; + url = "https://registry.yarnpkg.com/home-assistant-js-websocket/-/home-assistant-js-websocket-5.11.1.tgz"; + sha1 = "9fbdfe4823726bb1614258bb1c86f78012aef40f"; }; } { @@ -5903,6 +8721,14 @@ sha1 = "c46e3159a293f6b896da29316d8b6fe8bb79bbed"; }; } + { + name = "husky___husky_7.0.4.tgz"; + path = fetchurl { + name = "husky___husky_7.0.4.tgz"; + url = "https://registry.yarnpkg.com/husky/-/husky-7.0.4.tgz"; + sha1 = "242048245dc49c8fb1bf0cc7cfb98dd722531535"; + }; + } { name = "hyperdeck_connection___hyperdeck_connection_0.4.4_nightly_feat_v1_11_support_20210517_143106_6d15db3.0.tgz"; path = fetchurl { @@ -5999,6 +8825,14 @@ sha1 = "624f8f4497d619b2d9768531d58f4122854d7251"; }; } + { + name = "indent_string___indent_string_5.0.0.tgz"; + path = fetchurl { + name = "indent_string___indent_string_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz"; + sha1 = "4fd2980fccaf8622d14c64d694f4cf33c81951a5"; + }; + } { name = "indexof___indexof_0.0.1.tgz"; path = fetchurl { @@ -6063,6 +8897,14 @@ sha1 = "a29da425b48806f34767a4efce397269af28432c"; }; } + { + name = "internal_slot___internal_slot_1.0.3.tgz"; + path = fetchurl { + name = "internal_slot___internal_slot_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz"; + sha1 = "7347e307deeea2faac2ac6205d4bc7d34967f59c"; + }; + } { name = "invert_kv___invert_kv_1.0.0.tgz"; path = fetchurl { @@ -6096,19 +8938,19 @@ }; } { - name = "is_absolute___is_absolute_1.0.0.tgz"; + name = "is_arguments___is_arguments_1.1.1.tgz"; path = fetchurl { - name = "is_absolute___is_absolute_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz"; - sha1 = "395e1ae84b11f26ad1795e73c17378e48a301576"; + name = "is_arguments___is_arguments_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz"; + sha1 = "15b3f88fda01f2a97fec84ca761a560f123efa9b"; }; } { - name = "is_arguments___is_arguments_1.1.0.tgz"; + name = "is_arrayish___is_arrayish_0.2.1.tgz"; path = fetchurl { - name = "is_arguments___is_arguments_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz"; - sha1 = "62353031dfbee07ceb34656a6bde59efecae8dd9"; + name = "is_arrayish___is_arrayish_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; }; } { @@ -6120,11 +8962,11 @@ }; } { - name = "is_bigint___is_bigint_1.0.2.tgz"; + name = "is_bigint___is_bigint_1.0.4.tgz"; path = fetchurl { - name = "is_bigint___is_bigint_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz"; - sha1 = "ffb381442503235ad245ea89e45b3dbff040ee5a"; + name = "is_bigint___is_bigint_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; + sha1 = "08147a1875bc2b32005d41ccd8291dffc6691df3"; }; } { @@ -6136,11 +8978,11 @@ }; } { - name = "is_boolean_object___is_boolean_object_1.1.1.tgz"; + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; path = fetchurl { - name = "is_boolean_object___is_boolean_object_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz"; - sha1 = "3c0878f035cb821228d350d2e1e36719716a3de8"; + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; + sha1 = "5c6dc200246dd9321ae4b885a114bb1f75f63719"; }; } { @@ -6160,11 +9002,11 @@ }; } { - name = "is_callable___is_callable_1.2.3.tgz"; + name = "is_callable___is_callable_1.2.4.tgz"; path = fetchurl { - name = "is_callable___is_callable_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz"; - sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e"; + name = "is_callable___is_callable_1.2.4.tgz"; + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; + sha1 = "47301d58dd0259407865547853df6d61fe471945"; }; } { @@ -6184,11 +9026,19 @@ }; } { - name = "is_date_object___is_date_object_1.0.4.tgz"; + name = "is_core_module___is_core_module_2.8.0.tgz"; path = fetchurl { - name = "is_date_object___is_date_object_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz"; - sha1 = "550cfcc03afada05eea3dd30981c7b09551f73e5"; + name = "is_core_module___is_core_module_2.8.0.tgz"; + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz"; + sha1 = "0321336c3d0925e497fd97f5d95cb114a5ccd548"; + }; + } + { + name = "is_date_object___is_date_object_1.0.5.tgz"; + path = fetchurl { + name = "is_date_object___is_date_object_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; + sha1 = "0841d5536e724c25597bf6ea62e1bd38298df31f"; }; } { @@ -6240,19 +9090,11 @@ }; } { - name = "is_generator_function___is_generator_function_1.0.9.tgz"; + name = "is_generator_function___is_generator_function_1.0.10.tgz"; path = fetchurl { - name = "is_generator_function___is_generator_function_1.0.9.tgz"; - url = "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz"; - sha1 = "e5f82c2323673e7fcad3d12858c83c4039f6399c"; - }; - } - { - name = "is_glob___is_glob_3.1.0.tgz"; - path = fetchurl { - name = "is_glob___is_glob_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz"; - sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; + name = "is_generator_function___is_generator_function_1.0.10.tgz"; + url = "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz"; + sha1 = "f1558baf1ac17e0deea7c0415c438351ff2b3c72"; }; } { @@ -6287,14 +9129,6 @@ sha1 = "4c11033b5d5d94d6eab3775dedc9be7d008325f1"; }; } - { - name = "is_negated_glob___is_negated_glob_1.0.0.tgz"; - path = fetchurl { - name = "is_negated_glob___is_negated_glob_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz"; - sha1 = "6910bca5da8c95e784b5751b976cf5a10fee36d2"; - }; - } { name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; path = fetchurl { @@ -6320,11 +9154,11 @@ }; } { - name = "is_number_object___is_number_object_1.0.5.tgz"; + name = "is_number_object___is_number_object_1.0.6.tgz"; path = fetchurl { - name = "is_number_object___is_number_object_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz"; - sha1 = "6edfaeed7950cff19afedce9fbfca9ee6dd289eb"; + name = "is_number_object___is_number_object_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; + sha1 = "6a7aaf838c7f0686a50b4553f7e54a96494e89f0"; }; } { @@ -6351,6 +9185,22 @@ sha1 = "d231362e53a07ff2b0e0ea7fed049161ffd16283"; }; } + { + name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; + path = fetchurl { + name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; + sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; + }; + } + { + name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; + path = fetchurl { + name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; + sha1 = "45e42e37fccf1f40da8e5f76ee21515840c09287"; + }; + } { name = "is_redirect___is_redirect_1.0.0.tgz"; path = fetchurl { @@ -6360,19 +9210,11 @@ }; } { - name = "is_regex___is_regex_1.1.3.tgz"; + name = "is_regex___is_regex_1.1.4.tgz"; path = fetchurl { - name = "is_regex___is_regex_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz"; - sha1 = "d029f9aff6448b93ebbe3f33dac71511fdcbef9f"; - }; - } - { - name = "is_relative___is_relative_1.0.0.tgz"; - path = fetchurl { - name = "is_relative___is_relative_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz"; - sha1 = "a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"; + name = "is_regex___is_regex_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; + sha1 = "eef5663cd59fa4c0ae339505323df6854bb15958"; }; } { @@ -6400,19 +9242,19 @@ }; } { - name = "is_stream___is_stream_2.0.0.tgz"; + name = "is_stream___is_stream_2.0.1.tgz"; path = fetchurl { - name = "is_stream___is_stream_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz"; - sha1 = "bde9c32680d6fae04129d6ac9d921ce7815f78e3"; + name = "is_stream___is_stream_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; + sha1 = "fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"; }; } { - name = "is_string___is_string_1.0.6.tgz"; + name = "is_string___is_string_1.0.7.tgz"; path = fetchurl { - name = "is_string___is_string_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz"; - sha1 = "3fe5d5992fb0d93404f32584d4b0179a71b54a5f"; + name = "is_string___is_string_1.0.7.tgz"; + url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; + sha1 = "0dd12bf2006f255bb58f695110eff7491eebc0fd"; }; } { @@ -6424,11 +9266,11 @@ }; } { - name = "is_typed_array___is_typed_array_1.1.5.tgz"; + name = "is_typed_array___is_typed_array_1.1.8.tgz"; path = fetchurl { - name = "is_typed_array___is_typed_array_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz"; - sha1 = "f32e6e096455e329eb7b423862456aa213f0eb4e"; + name = "is_typed_array___is_typed_array_1.1.8.tgz"; + url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.8.tgz"; + sha1 = "cbaa6585dc7db43318bc5b89523ea384a6f65e79"; }; } { @@ -6440,19 +9282,11 @@ }; } { - name = "is_unc_path___is_unc_path_1.0.0.tgz"; + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; path = fetchurl { - name = "is_unc_path___is_unc_path_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz"; - sha1 = "d731e8898ed090a12c352ad2eaed5095ad322c9d"; - }; - } - { - name = "is_windows___is_windows_1.0.2.tgz"; - path = fetchurl { - name = "is_windows___is_windows_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; - sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; + sha1 = "3f26c76a809593b52bfa2ecb5710ed2779b522a7"; }; } { @@ -6575,6 +9409,14 @@ sha1 = "6158e09f1983ad773813704be80680550eff977b"; }; } + { + name = "js_tokens___js_tokens_4.0.0.tgz"; + path = fetchurl { + name = "js_tokens___js_tokens_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; + sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; + }; + } { name = "js_yaml___js_yaml_3.13.1.tgz"; path = fetchurl { @@ -6623,6 +9465,14 @@ sha1 = "9338802a30d3b6605fbe0613e094008ca8c05a13"; }; } + { + name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz"; + path = fetchurl { + name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"; + sha1 = "7c47805a94319928e05777405dc12e1f7a4ee02d"; + }; + } { name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; path = fetchurl { @@ -6639,14 +9489,6 @@ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; }; } - { - name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; - path = fetchurl { - name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; - sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; - }; - } { name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; path = fetchurl { @@ -6696,11 +9538,11 @@ }; } { - name = "jsxapi___jsxapi_5.0.3.tgz"; + name = "jsxapi___jsxapi_5.1.0.tgz"; path = fetchurl { - name = "jsxapi___jsxapi_5.0.3.tgz"; - url = "https://registry.yarnpkg.com/jsxapi/-/jsxapi-5.0.3.tgz"; - sha1 = "b7ddac030ca0b664d1c0daa02941b7a4d0e481cc"; + name = "jsxapi___jsxapi_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/jsxapi/-/jsxapi-5.1.0.tgz"; + sha1 = "7dc9a806b2f24c159218e508e6883e09adce43e1"; }; } { @@ -6736,11 +9578,19 @@ }; } { - name = "kiloview_ndi___kiloview_ndi_1.0.1.tgz"; + name = "kiloview_ndi___kiloview_ndi_1.0.2.tgz"; path = fetchurl { - name = "kiloview_ndi___kiloview_ndi_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/kiloview-ndi/-/kiloview-ndi-1.0.1.tgz"; - sha1 = "c58312c5fa407aee400b613eb9c9c7b634ce1c66"; + name = "kiloview_ndi___kiloview_ndi_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/kiloview-ndi/-/kiloview-ndi-1.0.2.tgz"; + sha1 = "96dfb1763fefc007d393c067d3065c35de346eea"; + }; + } + { + name = "kind_of___kind_of_6.0.3.tgz"; + path = fetchurl { + name = "kind_of___kind_of_6.0.3.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; + sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd"; }; } { @@ -6783,6 +9633,14 @@ sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; }; } + { + name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; + path = fetchurl { + name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; + url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz"; + sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; + }; + } { name = "linkbox_sdk___linkbox_sdk_1.1.1.tgz"; path = fetchurl { @@ -6807,6 +9665,14 @@ sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e"; }; } + { + name = "locate_path___locate_path_6.0.0.tgz"; + path = fetchurl { + name = "locate_path___locate_path_6.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz"; + sha1 = "55321eb309febbc59c4801d931a72452a681d286"; + }; + } { name = "lodash.pad___lodash.pad_4.5.1.tgz"; path = fetchurl { @@ -6847,6 +9713,14 @@ sha1 = "5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"; }; } + { + name = "log_symbols___log_symbols_4.1.0.tgz"; + path = fetchurl { + name = "log_symbols___log_symbols_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz"; + sha1 = "3fbdbb95b4683ac9fc785111e792e558d4abd503"; + }; + } { name = "loglevel___loglevel_1.7.1.tgz"; path = fetchurl { @@ -6927,6 +9801,22 @@ sha1 = "a5a95197f1980b5790fa0305228242d8ffaa42fc"; }; } + { + name = "map_obj___map_obj_1.0.1.tgz"; + path = fetchurl { + name = "map_obj___map_obj_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz"; + sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; + }; + } + { + name = "map_obj___map_obj_4.3.0.tgz"; + path = fetchurl { + name = "map_obj___map_obj_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz"; + sha1 = "9304f906e93faae70880da102a9f1df0ea8bb05a"; + }; + } { name = "matcher___matcher_3.0.0.tgz"; path = fetchurl { @@ -6967,6 +9857,14 @@ sha1 = "ebe8dd1c3b8bc38c0e7941e9ddd5aebe6b4de83f"; }; } + { + name = "meow___meow_10.1.1.tgz"; + path = fetchurl { + name = "meow___meow_10.1.1.tgz"; + url = "https://registry.yarnpkg.com/meow/-/meow-10.1.1.tgz"; + sha1 = "87fa665f18e727024116d456e725f69033ca6d8f"; + }; + } { name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; path = fetchurl { @@ -6984,19 +9882,19 @@ }; } { - name = "mime_db___mime_db_1.48.0.tgz"; + name = "mime_db___mime_db_1.49.0.tgz"; path = fetchurl { - name = "mime_db___mime_db_1.48.0.tgz"; - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz"; - sha1 = "e35b31045dd7eada3aaad537ed88a33afbef2d1d"; + name = "mime_db___mime_db_1.49.0.tgz"; + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz"; + sha1 = "f3dfde60c99e9cf3bc9701d687778f537001cbed"; }; } { - name = "mime_types___mime_types_2.1.31.tgz"; + name = "mime_types___mime_types_2.1.32.tgz"; path = fetchurl { - name = "mime_types___mime_types_2.1.31.tgz"; - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz"; - sha1 = "a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"; + name = "mime_types___mime_types_2.1.32.tgz"; + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz"; + sha1 = "1d00e89e7de7fe02008db61001d9e02852670fd5"; }; } { @@ -7055,6 +9953,14 @@ sha1 = "2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"; }; } + { + name = "min_indent___min_indent_1.0.1.tgz"; + path = fetchurl { + name = "min_indent___min_indent_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz"; + sha1 = "a63f681673b30571fbe8bc25686ae746eefa9869"; + }; + } { name = "minimatch___minimatch_3.0.4.tgz"; path = fetchurl { @@ -7063,6 +9969,14 @@ sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; }; } + { + name = "minimist_options___minimist_options_4.1.0.tgz"; + path = fetchurl { + name = "minimist_options___minimist_options_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz"; + sha1 = "c0655713c53a8a2ebd77ffa247d342c40f010619"; + }; + } { name = "minimist___minimist_1.2.5.tgz"; path = fetchurl { @@ -7127,6 +10041,14 @@ sha1 = "e648432181d8b99393410212664450a4c1e31912"; }; } + { + name = "mocha___mocha_9.1.3.tgz"; + path = fetchurl { + name = "mocha___mocha_9.1.3.tgz"; + url = "https://registry.yarnpkg.com/mocha/-/mocha-9.1.3.tgz"; + sha1 = "8a623be6b323810493d8c8f6f7667440fa469fdb"; + }; + } { name = "moment___moment_2.29.1.tgz"; path = fetchurl { @@ -7144,11 +10066,11 @@ }; } { - name = "mqtt___mqtt_4.2.6.tgz"; + name = "mqtt___mqtt_4.2.8.tgz"; path = fetchurl { - name = "mqtt___mqtt_4.2.6.tgz"; - url = "https://registry.yarnpkg.com/mqtt/-/mqtt-4.2.6.tgz"; - sha1 = "b655547a9cfb3d86bfb398948b8dbb37e2e3bfd0"; + name = "mqtt___mqtt_4.2.8.tgz"; + url = "https://registry.yarnpkg.com/mqtt/-/mqtt-4.2.8.tgz"; + sha1 = "f0e54b138bcdaef6c55c547b3a4de9cf9074208c"; }; } { @@ -7208,11 +10130,19 @@ }; } { - name = "nan___nan_2.14.2.tgz"; + name = "nan___nan_2.15.0.tgz"; path = fetchurl { - name = "nan___nan_2.14.2.tgz"; - url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz"; - sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19"; + name = "nan___nan_2.15.0.tgz"; + url = "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz"; + sha1 = "3f34a473ff18e15c1b5626b62903b5ad6e665fee"; + }; + } + { + name = "nanoid___nanoid_3.1.25.tgz"; + path = fetchurl { + name = "nanoid___nanoid_3.1.25.tgz"; + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz"; + sha1 = "09ca32747c0e543f0e1814b7d3793477f9c8e152"; }; } { @@ -7247,6 +10177,14 @@ sha1 = "d2841a125bfd74fefb30c0344104369061c3e13a"; }; } + { + name = "needle___needle_3.0.0.tgz"; + path = fetchurl { + name = "needle___needle_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/needle/-/needle-3.0.0.tgz"; + sha1 = "5808f20246d69ffd7ebd42109eb58d1442b98e6e"; + }; + } { name = "negotiator___negotiator_0.6.2.tgz"; path = fetchurl { @@ -7256,11 +10194,11 @@ }; } { - name = "net_snmp___net_snmp_3.5.2.tgz"; + name = "net_snmp___net_snmp_3.5.4.tgz"; path = fetchurl { - name = "net_snmp___net_snmp_3.5.2.tgz"; - url = "https://registry.yarnpkg.com/net-snmp/-/net-snmp-3.5.2.tgz"; - sha1 = "cfd84833eb086fd18ed56a368e1a89dbcd27df19"; + name = "net_snmp___net_snmp_3.5.4.tgz"; + url = "https://registry.yarnpkg.com/net-snmp/-/net-snmp-3.5.4.tgz"; + sha1 = "16145b0d5cd3455445639cc7c52b3c9221f5a065"; }; } { @@ -7288,11 +10226,11 @@ }; } { - name = "node_abi___node_abi_2.30.0.tgz"; + name = "node_abi___node_abi_2.30.1.tgz"; path = fetchurl { - name = "node_abi___node_abi_2.30.0.tgz"; - url = "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.0.tgz"; - sha1 = "8be53bf3e7945a34eea10e0fc9a5982776cf550b"; + name = "node_abi___node_abi_2.30.1.tgz"; + url = "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.1.tgz"; + sha1 = "c437d4b1fe0e285aaf290d45b45d4d7afedac4cf"; }; } { @@ -7336,11 +10274,11 @@ }; } { - name = "node_forge___node_forge_0.9.2.tgz"; + name = "node_forge___node_forge_0.10.0.tgz"; path = fetchurl { - name = "node_forge___node_forge_0.9.2.tgz"; - url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.2.tgz"; - sha1 = "b35a44c28889b2ea55cabf8c79e3563f9676190a"; + name = "node_forge___node_forge_0.10.0.tgz"; + url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz"; + sha1 = "32dea2afb3e9926f02ee5ce8794902691a676bf3"; }; } { @@ -7407,6 +10345,14 @@ sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; }; } + { + name = "normalize_package_data___normalize_package_data_3.0.3.tgz"; + path = fetchurl { + name = "normalize_package_data___normalize_package_data_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz"; + sha1 = "dbcc3e2da59509a0983422884cd172eefdfa525e"; + }; + } { name = "normalize_path___normalize_path_3.0.0.tgz"; path = fetchurl { @@ -7424,11 +10370,11 @@ }; } { - name = "normalize_url___normalize_url_6.0.1.tgz"; + name = "normalize_url___normalize_url_6.1.0.tgz"; path = fetchurl { - name = "normalize_url___normalize_url_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.0.1.tgz"; - sha1 = "a4f27f58cf8c7b287b440b8a8201f42d0b00d256"; + name = "normalize_url___normalize_url_6.1.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz"; + sha1 = "40d0885b535deffe3f3147bec877d05fe4c5668a"; }; } { @@ -7488,11 +10434,11 @@ }; } { - name = "object_inspect___object_inspect_1.10.3.tgz"; + name = "object_inspect___object_inspect_1.11.0.tgz"; path = fetchurl { - name = "object_inspect___object_inspect_1.10.3.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz"; - sha1 = "c2aa7d2d09f50c99375704f7a0adf24c5782d369"; + name = "object_inspect___object_inspect_1.11.0.tgz"; + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz"; + sha1 = "9dceb146cedd4148a0d9e51ab88d34cf509922b1"; }; } { @@ -7504,11 +10450,11 @@ }; } { - name = "object_path___object_path_0.11.5.tgz"; + name = "object_path___object_path_0.11.8.tgz"; path = fetchurl { - name = "object_path___object_path_0.11.5.tgz"; - url = "https://registry.yarnpkg.com/object-path/-/object-path-0.11.5.tgz"; - sha1 = "d4e3cf19601a5140a55a16ad712019a9c50b577a"; + name = "object_path___object_path_0.11.8.tgz"; + url = "https://registry.yarnpkg.com/object-path/-/object-path-0.11.8.tgz"; + sha1 = "ed002c02bbdd0070b78a27455e8ae01fc14d4742"; }; } { @@ -7536,11 +10482,11 @@ }; } { - name = "obs_websocket_js___obs_websocket_js_4.0.2.tgz"; + name = "obs_websocket_js___obs_websocket_js_4.0.3.tgz"; path = fetchurl { - name = "obs_websocket_js___obs_websocket_js_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/obs-websocket-js/-/obs-websocket-js-4.0.2.tgz"; - sha1 = "b0dc6df1141f14878e04f927d12379f9ab234d52"; + name = "obs_websocket_js___obs_websocket_js_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/obs-websocket-js/-/obs-websocket-js-4.0.3.tgz"; + sha1 = "7f1933d591d8d5304733901c845eaa452b5a1280"; }; } { @@ -7575,14 +10521,6 @@ sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; }; } - { - name = "ordered_read_streams___ordered_read_streams_1.0.1.tgz"; - path = fetchurl { - name = "ordered_read_streams___ordered_read_streams_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz"; - sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; - }; - } { name = "os_locale___os_locale_1.4.0.tgz"; path = fetchurl { @@ -7600,11 +10538,11 @@ }; } { - name = "osc___osc_2.4.1.tgz"; + name = "osc___osc_2.4.2.tgz"; path = fetchurl { - name = "osc___osc_2.4.1.tgz"; - url = "https://registry.yarnpkg.com/osc/-/osc-2.4.1.tgz"; - sha1 = "b75f13024190e9b77fbad62391aeb22fc9de8e73"; + name = "osc___osc_2.4.2.tgz"; + url = "https://registry.yarnpkg.com/osc/-/osc-2.4.2.tgz"; + sha1 = "cc21a006b41ca9631ded7a214ba92866f54ced2d"; }; } { @@ -7655,6 +10593,14 @@ sha1 = "3dd33c647a214fdfffd835933eb086da0dc21db1"; }; } + { + name = "p_limit___p_limit_3.1.0.tgz"; + path = fetchurl { + name = "p_limit___p_limit_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz"; + sha1 = "e1daccbe78d0d1388ca18c64fea38e3e57e3706b"; + }; + } { name = "p_locate___p_locate_3.0.0.tgz"; path = fetchurl { @@ -7663,6 +10609,14 @@ sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4"; }; } + { + name = "p_locate___p_locate_5.0.0.tgz"; + path = fetchurl { + name = "p_locate___p_locate_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz"; + sha1 = "83c8315c6785005e3bd021839411c9e110e6d834"; + }; + } { name = "p_map___p_map_4.0.0.tgz"; path = fetchurl { @@ -7719,6 +10673,14 @@ sha1 = "6feedaca35e75725876d0b0e64974697fed145b0"; }; } + { + name = "parse_json___parse_json_5.2.0.tgz"; + path = fetchurl { + name = "parse_json___parse_json_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz"; + sha1 = "c76fc66dee54231c962b22bcc8a72cf2f99753cd"; + }; + } { name = "parseqs___parseqs_0.0.6.tgz"; path = fetchurl { @@ -7743,14 +10705,6 @@ sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4"; }; } - { - name = "path_dirname___path_dirname_1.0.2.tgz"; - path = fetchurl { - name = "path_dirname___path_dirname_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz"; - sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; - }; - } { name = "path_exists___path_exists_3.0.0.tgz"; path = fetchurl { @@ -7759,6 +10713,14 @@ sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; }; } + { + name = "path_exists___path_exists_4.0.0.tgz"; + path = fetchurl { + name = "path_exists___path_exists_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz"; + sha1 = "513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"; + }; + } { name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; path = fetchurl { @@ -7840,11 +10802,11 @@ }; } { - name = "plist___plist_3.0.2.tgz"; + name = "plist___plist_3.0.4.tgz"; path = fetchurl { - name = "plist___plist_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz"; - sha1 = "74bbf011124b90421c22d15779cee60060ba95bc"; + name = "plist___plist_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/plist/-/plist-3.0.4.tgz"; + sha1 = "a62df837e3aed2bb3b735899d510c4f186019cbe"; }; } { @@ -7856,11 +10818,11 @@ }; } { - name = "prebuild_install___prebuild_install_6.1.3.tgz"; + name = "prebuild_install___prebuild_install_6.1.4.tgz"; path = fetchurl { - name = "prebuild_install___prebuild_install_6.1.3.tgz"; - url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.3.tgz"; - sha1 = "8ea1f9d7386a0b30f7ef20247e36f8b2b82825a2"; + name = "prebuild_install___prebuild_install_6.1.4.tgz"; + url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.4.tgz"; + sha1 = "ae3c0142ad611d58570b89af4986088a4937e00f"; }; } { @@ -7888,11 +10850,11 @@ }; } { - name = "prettier___prettier_2.3.1.tgz"; + name = "prettier___prettier_2.3.2.tgz"; path = fetchurl { - name = "prettier___prettier_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/prettier/-/prettier-2.3.1.tgz"; - sha1 = "76903c3f8c4449bc9ac597acefa24dc5ad4cbea6"; + name = "prettier___prettier_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz"; + sha1 = "ef280a05ec253712e486233db5c6f23441e7342d"; }; } { @@ -7975,14 +10937,6 @@ sha1 = "c242224f4a67c21f686839bbdb4ac282b8373d3a"; }; } - { - name = "pump___pump_2.0.1.tgz"; - path = fetchurl { - name = "pump___pump_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz"; - sha1 = "12399add6e4cf7526d973cbc8b5ce2e2908b3909"; - }; - } { name = "pump___pump_3.0.0.tgz"; path = fetchurl { @@ -7991,14 +10945,6 @@ sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64"; }; } - { - name = "pumpify___pumpify_1.5.1.tgz"; - path = fetchurl { - name = "pumpify___pumpify_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz"; - sha1 = "36513be246ab27570b1a374a5ce278bfd74370ce"; - }; - } { name = "punycode___punycode_1.3.2.tgz"; path = fetchurl { @@ -8079,6 +11025,22 @@ sha1 = "366493e6b3e42a3a6885e2e99d18f80fb7a8c932"; }; } + { + name = "qwebchannel___qwebchannel_5.9.0.tgz"; + path = fetchurl { + name = "qwebchannel___qwebchannel_5.9.0.tgz"; + url = "https://registry.yarnpkg.com/qwebchannel/-/qwebchannel-5.9.0.tgz"; + sha1 = "e7354bae6d1a156fd1211ae52a6e808b520e66d4"; + }; + } + { + name = "randombytes___randombytes_2.1.0.tgz"; + path = fetchurl { + name = "randombytes___randombytes_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; + sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a"; + }; + } { name = "range_parser___range_parser_1.2.1.tgz"; path = fetchurl { @@ -8127,6 +11089,22 @@ sha1 = "71536072330bcd62ba814f91458b12add9fc7ade"; }; } + { + name = "read_pkg_up___read_pkg_up_8.0.0.tgz"; + path = fetchurl { + name = "read_pkg_up___read_pkg_up_8.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-8.0.0.tgz"; + sha1 = "72f595b65e66110f43b052dd9af4de6b10534670"; + }; + } + { + name = "read_pkg___read_pkg_6.0.0.tgz"; + path = fetchurl { + name = "read_pkg___read_pkg_6.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-6.0.0.tgz"; + sha1 = "a67a7d6a1c2b0c3cd6aa2ea521f40c458a4a504c"; + }; + } { name = "readable_stream___readable_stream_1.1.14.tgz"; path = fetchurl { @@ -8176,19 +11154,35 @@ }; } { - name = "readdirp___readdirp_3.5.0.tgz"; + name = "readdirp___readdirp_3.6.0.tgz"; path = fetchurl { - name = "readdirp___readdirp_3.5.0.tgz"; - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; - sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"; + name = "readdirp___readdirp_3.6.0.tgz"; + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz"; + sha1 = "74a370bd857116e245b29cc97340cd431a02a6c7"; }; } { - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; + name = "redent___redent_3.0.0.tgz"; path = fetchurl { - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; - sha1 = "cac2dacc8a1ea675feaabaeb8ae833898ae46f55"; + name = "redent___redent_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz"; + sha1 = "e557b7998316bb53c9f1f56fa626352c6963059f"; + }; + } + { + name = "redent___redent_4.0.0.tgz"; + path = fetchurl { + name = "redent___redent_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/redent/-/redent-4.0.0.tgz"; + sha1 = "0c0ba7caabb24257ab3bb7a4fd95dd1d5c5681f9"; + }; + } + { + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; + path = fetchurl { + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; + sha1 = "8925742a98ffd90814988d7566ad30ca3b263b52"; }; } { @@ -8215,14 +11209,6 @@ sha1 = "3361ecfa3ca6c18283380dd0bb9546f390f5ece7"; }; } - { - name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; - path = fetchurl { - name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; - sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; - }; - } { name = "request_promise_core___request_promise_core_1.1.4.tgz"; path = fetchurl { @@ -8272,11 +11258,11 @@ }; } { - name = "resolve_alpn___resolve_alpn_1.1.2.tgz"; + name = "resolve_alpn___resolve_alpn_1.2.1.tgz"; path = fetchurl { - name = "resolve_alpn___resolve_alpn_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.1.2.tgz"; - sha1 = "30b60cfbb0c0b8dc897940fe13fe255afcdd4d28"; + name = "resolve_alpn___resolve_alpn_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz"; + sha1 = "b7adbdac3546aaaec20b45e7d8265927072726f9"; }; } { @@ -8440,11 +11426,19 @@ }; } { - name = "serialport___serialport_9.2.0.tgz"; + name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; path = fetchurl { - name = "serialport___serialport_9.2.0.tgz"; - url = "https://registry.yarnpkg.com/serialport/-/serialport-9.2.0.tgz"; - sha1 = "17a8364979f3c06a54a7bf4e8cbb8ebc91e54511"; + name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; + sha1 = "efae5d88f45d7924141da8b5c3a7a7e663fefeb8"; + }; + } + { + name = "serialport___serialport_9.2.1.tgz"; + path = fetchurl { + name = "serialport___serialport_9.2.1.tgz"; + url = "https://registry.yarnpkg.com/serialport/-/serialport-9.2.1.tgz"; + sha1 = "9da02f6657ee9e2c8bd7642ff6c5c59a6a65d17e"; }; } { @@ -8536,11 +11530,11 @@ }; } { - name = "sift___sift_13.5.4.tgz"; + name = "sift___sift_14.0.2.tgz"; path = fetchurl { - name = "sift___sift_13.5.4.tgz"; - url = "https://registry.yarnpkg.com/sift/-/sift-13.5.4.tgz"; - sha1 = "7b2a67f724c8b2fca121fcfdef4011bb1ea4e3ef"; + name = "sift___sift_14.0.2.tgz"; + url = "https://registry.yarnpkg.com/sift/-/sift-14.0.2.tgz"; + sha1 = "b19ff67923f472dd4db413104a005b96798ccef2"; }; } { @@ -8600,11 +11594,11 @@ }; } { - name = "smart_buffer___smart_buffer_4.1.0.tgz"; + name = "smart_buffer___smart_buffer_4.2.0.tgz"; path = fetchurl { - name = "smart_buffer___smart_buffer_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz"; - sha1 = "91605c25d91652f4661ea69ccf45f1b331ca21ba"; + name = "smart_buffer___smart_buffer_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz"; + sha1 = "6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"; }; } { @@ -8624,11 +11618,11 @@ }; } { - name = "socket.io_adapter___socket.io_adapter_2.3.1.tgz"; + name = "socket.io_adapter___socket.io_adapter_2.3.2.tgz"; path = fetchurl { - name = "socket.io_adapter___socket.io_adapter_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.3.1.tgz"; - sha1 = "a442720cb09a4823cfb81287dda1f9b52d4ccdb2"; + name = "socket.io_adapter___socket.io_adapter_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz"; + sha1 = "039cd7c71a52abad984a6d57da2c0b7ecdd3c289"; }; } { @@ -8640,11 +11634,11 @@ }; } { - name = "socket.io_client___socket.io_client_4.1.2.tgz"; + name = "socket.io_client___socket.io_client_4.2.0.tgz"; path = fetchurl { - name = "socket.io_client___socket.io_client_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.1.2.tgz"; - sha1 = "95ad7113318ea01fba0860237b96d71e1b1fd2eb"; + name = "socket.io_client___socket.io_client_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.2.0.tgz"; + sha1 = "195feed3de40283b1ae3f7d02cf91d3eb2c905c1"; }; } { @@ -8680,19 +11674,19 @@ }; } { - name = "socket.io___socket.io_4.1.2.tgz"; + name = "socket.io___socket.io_4.2.0.tgz"; path = fetchurl { - name = "socket.io___socket.io_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/socket.io/-/socket.io-4.1.2.tgz"; - sha1 = "f90f9002a8d550efe2aa1d320deebb9a45b83233"; + name = "socket.io___socket.io_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/socket.io/-/socket.io-4.2.0.tgz"; + sha1 = "9e1c09d3ea647e24963a2e7ba8ea5c847778e2ed"; }; } { - name = "socks_proxy_agent___socks_proxy_agent_5.0.0.tgz"; + name = "socks_proxy_agent___socks_proxy_agent_5.0.1.tgz"; path = fetchurl { - name = "socks_proxy_agent___socks_proxy_agent_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-5.0.0.tgz"; - sha1 = "7c0f364e7b1cf4a7a437e71253bed72e9004be60"; + name = "socks_proxy_agent___socks_proxy_agent_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz"; + sha1 = "032fb583048a29ebffec2e6a73fca0761f48177e"; }; } { @@ -8727,6 +11721,38 @@ sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; }; } + { + name = "spdx_correct___spdx_correct_3.1.1.tgz"; + path = fetchurl { + name = "spdx_correct___spdx_correct_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz"; + sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"; + }; + } + { + name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; + path = fetchurl { + name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; + sha1 = "3f28ce1a77a00372683eade4a433183527a2163d"; + }; + } + { + name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; + path = fetchurl { + name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; + sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679"; + }; + } + { + name = "spdx_license_ids___spdx_license_ids_3.0.11.tgz"; + path = fetchurl { + name = "spdx_license_ids___spdx_license_ids_3.0.11.tgz"; + url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz"; + sha1 = "50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95"; + }; + } { name = "split2___split2_3.2.2.tgz"; path = fetchurl { @@ -8768,19 +11794,11 @@ }; } { - name = "ssh2_streams___ssh2_streams_0.4.10.tgz"; + name = "ssh2___ssh2_1.4.0.tgz"; path = fetchurl { - name = "ssh2_streams___ssh2_streams_0.4.10.tgz"; - url = "https://registry.yarnpkg.com/ssh2-streams/-/ssh2-streams-0.4.10.tgz"; - sha1 = "48ef7e8a0e39d8f2921c30521d56dacb31d23a34"; - }; - } - { - name = "ssh2___ssh2_0.8.9.tgz"; - path = fetchurl { - name = "ssh2___ssh2_0.8.9.tgz"; - url = "https://registry.yarnpkg.com/ssh2/-/ssh2-0.8.9.tgz"; - sha1 = "54da3a6c4ba3daf0d8477a538a481326091815f3"; + name = "ssh2___ssh2_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/ssh2/-/ssh2-1.4.0.tgz"; + sha1 = "e32e8343394364c922bad915a5a7fecd67d0f5c5"; }; } { @@ -8839,14 +11857,6 @@ sha1 = "d7088281559ab2778424279b0877da3c392d5a3d"; }; } - { - name = "streamsearch___streamsearch_0.1.2.tgz"; - path = fetchurl { - name = "streamsearch___streamsearch_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz"; - sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a"; - }; - } { name = "string_width___string_width_1.0.2.tgz"; path = fetchurl { @@ -8951,6 +11961,22 @@ sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532"; }; } + { + name = "strip_indent___strip_indent_3.0.0.tgz"; + path = fetchurl { + name = "strip_indent___strip_indent_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz"; + sha1 = "c32e1cee940b6b3432c771bc2c54bcce73cd3001"; + }; + } + { + name = "strip_indent___strip_indent_4.0.0.tgz"; + path = fetchurl { + name = "strip_indent___strip_indent_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz"; + sha1 = "b41379433dd06f5eae805e21d631e07ee670d853"; + }; + } { name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; path = fetchurl { @@ -8959,6 +11985,22 @@ sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; }; } + { + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; + path = fetchurl { + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; + sha1 = "31f1281b3832630434831c310c01cccda8cbe006"; + }; + } + { + name = "strnum___strnum_1.0.4.tgz"; + path = fetchurl { + name = "strnum___strnum_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/strnum/-/strnum-1.0.4.tgz"; + sha1 = "e97e36a7d6ba9f93d0d6b496b2ed0678d422832b"; + }; + } { name = "sumchecker___sumchecker_3.0.1.tgz"; path = fetchurl { @@ -8983,6 +12025,14 @@ sha1 = "76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a"; }; } + { + name = "supports_color___supports_color_8.1.1.tgz"; + path = fetchurl { + name = "supports_color___supports_color_8.1.1.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz"; + sha1 = "cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"; + }; + } { name = "supports_color___supports_color_5.5.0.tgz"; path = fetchurl { @@ -9016,11 +12066,11 @@ }; } { - name = "tar___tar_4.4.13.tgz"; + name = "tar___tar_4.4.19.tgz"; path = fetchurl { - name = "tar___tar_4.4.13.tgz"; - url = "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz"; - sha1 = "43b364bc52888d555298637b10d60790254ab525"; + name = "tar___tar_4.4.19.tgz"; + url = "https://registry.yarnpkg.com/tar/-/tar-4.4.19.tgz"; + sha1 = "2e4d7263df26f2b914dee10c825ab132123742f3"; }; } { @@ -9063,22 +12113,6 @@ sha1 = "b5258f48f335ff4f82028762af5bf06213d7611b"; }; } - { - name = "through2_filter___through2_filter_3.0.0.tgz"; - path = fetchurl { - name = "through2_filter___through2_filter_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/through2-filter/-/through2-filter-3.0.0.tgz"; - sha1 = "700e786df2367c2c88cd8aa5be4cf9c1e7831254"; - }; - } - { - name = "through2___through2_2.0.5.tgz"; - path = fetchurl { - name = "through2___through2_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; - sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; - }; - } { name = "through___through_2.3.8.tgz"; path = fetchurl { @@ -9104,11 +12138,11 @@ }; } { - name = "tmi.js___tmi.js_1.8.3.tgz"; + name = "tmi.js___tmi.js_1.8.5.tgz"; path = fetchurl { - name = "tmi.js___tmi.js_1.8.3.tgz"; - url = "https://registry.yarnpkg.com/tmi.js/-/tmi.js-1.8.3.tgz"; - sha1 = "1a4e30c845442505e6f673d0da8740bbd39c4ed6"; + name = "tmi.js___tmi.js_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/tmi.js/-/tmi.js-1.8.5.tgz"; + sha1 = "8298821677599f163af075113f5d1bd51a648087"; }; } { @@ -9127,14 +12161,6 @@ sha1 = "8457fc3037dcf4719c251367a1af6500ee1ccf14"; }; } - { - name = "to_absolute_glob___to_absolute_glob_2.0.2.tgz"; - path = fetchurl { - name = "to_absolute_glob___to_absolute_glob_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz"; - sha1 = "1865f43d9e74b0822db9f145b78cff7d0f7c849b"; - }; - } { name = "to_array___to_array_0.1.4.tgz"; path = fetchurl { @@ -9191,6 +12217,14 @@ sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"; }; } + { + name = "trim_newlines___trim_newlines_4.0.2.tgz"; + path = fetchurl { + name = "trim_newlines___trim_newlines_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz"; + sha1 = "d6aaaf6a0df1b4b536d183879a6b939489808c7c"; + }; + } { name = "truncate_utf8_bytes___truncate_utf8_bytes_1.0.2.tgz"; path = fetchurl { @@ -9200,11 +12234,11 @@ }; } { - name = "ts_md5___ts_md5_1.2.8.tgz"; + name = "ts_md5___ts_md5_1.2.9.tgz"; path = fetchurl { - name = "ts_md5___ts_md5_1.2.8.tgz"; - url = "https://registry.yarnpkg.com/ts-md5/-/ts-md5-1.2.8.tgz"; - sha1 = "919a47277b748db2a49181a346ec90497026cb6c"; + name = "ts_md5___ts_md5_1.2.9.tgz"; + url = "https://registry.yarnpkg.com/ts-md5/-/ts-md5-1.2.9.tgz"; + sha1 = "22c9fd2baafdfdebee1068ff4d2dc215ff51df77"; }; } { @@ -9216,11 +12250,11 @@ }; } { - name = "tslib___tslib_2.3.0.tgz"; + name = "tslib___tslib_2.3.1.tgz"; path = fetchurl { - name = "tslib___tslib_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz"; - sha1 = "803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"; + name = "tslib___tslib_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz"; + sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01"; }; } { @@ -9359,14 +12393,6 @@ sha1 = "085e215625ec3162574dc8859abee78a59b14471"; }; } - { - name = "unc_path_regex___unc_path_regex_0.1.2.tgz"; - path = fetchurl { - name = "unc_path_regex___unc_path_regex_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; - sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; - }; - } { name = "undefsafe___undefsafe_2.0.3.tgz"; path = fetchurl { @@ -9407,14 +12433,6 @@ sha1 = "7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"; }; } - { - name = "unique_stream___unique_stream_2.3.1.tgz"; - path = fetchurl { - name = "unique_stream___unique_stream_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.3.1.tgz"; - sha1 = "c65d110e9a4adf9a6c5948b28053d9a8d04cbeac"; - }; - } { name = "unique_string___unique_string_2.0.0.tgz"; path = fetchurl { @@ -9512,11 +12530,11 @@ }; } { - name = "url_parse___url_parse_1.5.1.tgz"; + name = "url_parse___url_parse_1.5.3.tgz"; path = fetchurl { - name = "url_parse___url_parse_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz"; - sha1 = "d5fa9890af8a5e1f274a2c98376510f6425f6e3b"; + name = "url_parse___url_parse_1.5.3.tgz"; + url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.3.tgz"; + sha1 = "71c1303d38fb6639ade183c2992c8cc0686df862"; }; } { @@ -9536,11 +12554,11 @@ }; } { - name = "urllib___urllib_2.37.2.tgz"; + name = "urllib___urllib_2.37.3.tgz"; path = fetchurl { - name = "urllib___urllib_2.37.2.tgz"; - url = "https://registry.yarnpkg.com/urllib/-/urllib-2.37.2.tgz"; - sha1 = "4799e91a9c92d6741dc6fdd4cb9ff764fbd9b059"; + name = "urllib___urllib_2.37.3.tgz"; + url = "https://registry.yarnpkg.com/urllib/-/urllib-2.37.3.tgz"; + sha1 = "e5044a54947fbe9fe006188bbe73041970334111"; }; } { @@ -9639,6 +12657,14 @@ sha1 = "c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"; }; } + { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + path = fetchurl { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; + sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; + }; + } { name = "vary___vary_1.1.2.tgz"; path = fetchurl { @@ -9704,11 +12730,11 @@ }; } { - name = "which_typed_array___which_typed_array_1.1.4.tgz"; + name = "which_typed_array___which_typed_array_1.1.7.tgz"; path = fetchurl { - name = "which_typed_array___which_typed_array_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz"; - sha1 = "8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff"; + name = "which_typed_array___which_typed_array_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.7.tgz"; + sha1 = "2761799b9a22d4b8660b3c1b40abaa7739691793"; }; } { @@ -9799,6 +12825,14 @@ sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; }; } + { + name = "workerpool___workerpool_6.1.5.tgz"; + path = fetchurl { + name = "workerpool___workerpool_6.1.5.tgz"; + url = "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.5.tgz"; + sha1 = "0f7cf076b6215fd7e1da903ff6f22ddd1886b581"; + }; + } { name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; path = fetchurl { @@ -9840,19 +12874,19 @@ }; } { - name = "ws___ws_7.5.1.tgz"; + name = "ws___ws_7.5.4.tgz"; path = fetchurl { - name = "ws___ws_7.5.1.tgz"; - url = "https://registry.yarnpkg.com/ws/-/ws-7.5.1.tgz"; - sha1 = "44fc000d87edb1d9c53e51fbc69a0ac1f6871d66"; + name = "ws___ws_7.5.4.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-7.5.4.tgz"; + sha1 = "56bfa20b167427e138a7795de68d134fe92e21f9"; }; } { - name = "ws___ws_7.5.3.tgz"; + name = "ws___ws_8.2.1.tgz"; path = fetchurl { - name = "ws___ws_7.5.3.tgz"; - url = "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz"; - sha1 = "160835b63c7d97bfab418fc1b8a9fced2ac01a74"; + name = "ws___ws_8.2.1.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-8.2.1.tgz"; + sha1 = "bdd92b3c56fdb47d2379b5ae534281922cc5bd12"; }; } { @@ -9871,6 +12905,14 @@ sha1 = "4bc8d9984403696225ef83a1573cbbcb4e79db13"; }; } + { + name = "xdg_basedir___xdg_basedir_5.1.0.tgz"; + path = fetchurl { + name = "xdg_basedir___xdg_basedir_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz"; + sha1 = "1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9"; + }; + } { name = "xml_escape___xml_escape_1.1.0.tgz"; path = fetchurl { @@ -9919,14 +12961,6 @@ sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3"; }; } - { - name = "xmldom___xmldom_0.5.0.tgz"; - path = fetchurl { - name = "xmldom___xmldom_0.5.0.tgz"; - url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz"; - sha1 = "193cb96b84aa3486127ea6272c4596354cb4962e"; - }; - } { name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.6.3.tgz"; path = fetchurl { @@ -9935,6 +12969,14 @@ sha1 = "03b713873b01659dfa2c1c5d056065b27ddc2de6"; }; } + { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; + path = fetchurl { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz"; + sha1 = "91360c86b914e67f44dce769180027c0da618c67"; + }; + } { name = "xregexp___xregexp_2.0.0.tgz"; path = fetchurl { @@ -10008,11 +13050,19 @@ }; } { - name = "yargs_parser___yargs_parser_20.2.7.tgz"; + name = "yargs_parser___yargs_parser_20.2.4.tgz"; path = fetchurl { - name = "yargs_parser___yargs_parser_20.2.7.tgz"; - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz"; - sha1 = "61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"; + name = "yargs_parser___yargs_parser_20.2.4.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz"; + sha1 = "b42890f14566796f85ae8e3a25290d205f154a54"; + }; + } + { + name = "yargs_parser___yargs_parser_20.2.9.tgz"; + path = fetchurl { + name = "yargs_parser___yargs_parser_20.2.9.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz"; + sha1 = "2eb7dc3b0289718fc295f362753845c41a0c94ee"; }; } { @@ -10023,6 +13073,14 @@ sha1 = "ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f"; }; } + { + name = "yargs_unparser___yargs_unparser_2.0.0.tgz"; + path = fetchurl { + name = "yargs_unparser___yargs_unparser_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; + sha1 = "f131f9226911ae5d9ad38c432fe809366c2325eb"; + }; + } { name = "yargs___yargs_13.3.2.tgz"; path = fetchurl { @@ -10032,11 +13090,19 @@ }; } { - name = "yargs___yargs_17.0.1.tgz"; + name = "yargs___yargs_16.2.0.tgz"; path = fetchurl { - name = "yargs___yargs_17.0.1.tgz"; - url = "https://registry.yarnpkg.com/yargs/-/yargs-17.0.1.tgz"; - sha1 = "6a1ced4ed5ee0b388010ba9fd67af83b9362e0bb"; + name = "yargs___yargs_16.2.0.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz"; + sha1 = "1c82bf0f6b6a66eafce7ef30e376f49a12477f66"; + }; + } + { + name = "yargs___yargs_17.1.1.tgz"; + path = fetchurl { + name = "yargs___yargs_17.1.1.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-17.1.1.tgz"; + sha1 = "c2a8091564bdb196f7c0a67c1d12e5b85b8067ba"; }; } { @@ -10063,5 +13129,13 @@ sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; }; } + { + name = "yocto_queue___yocto_queue_0.1.0.tgz"; + path = fetchurl { + name = "yocto_queue___yocto_queue_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz"; + sha1 = "0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"; + }; + } ]; }