Merge master into staging-next
This commit is contained in:
@@ -43,6 +43,9 @@ in {
|
||||
The format is described in
|
||||
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
||||
<manvolnum>7</manvolnum></citerefentry>.
|
||||
|
||||
To disable automatic updates, set to <literal>"never"</literal>
|
||||
and run <command>updatedb</command> manually.
|
||||
'';
|
||||
};
|
||||
|
||||
@@ -192,6 +195,18 @@ in {
|
||||
{ LOCATE_PATH = cfg.output;
|
||||
};
|
||||
|
||||
environment.etc = {
|
||||
# write /etc/updatedb.conf for manual calls to `updatedb`
|
||||
"updatedb.conf" = {
|
||||
text = ''
|
||||
PRUNEFS="${lib.concatStringsSep " " cfg.pruneFS}"
|
||||
PRUNENAMES="${lib.concatStringsSep " " cfg.pruneNames}"
|
||||
PRUNEPATHS="${lib.concatStringsSep " " cfg.prunePaths}"
|
||||
PRUNE_BIND_MOUNTSFR="${lib.boolToString cfg.pruneBindMounts}"
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
warnings = optional (isMLocate && cfg.localuser != null) "mlocate does not support the services.locate.localuser option; updatedb will run as root. (Silence with services.locate.localuser = null.)"
|
||||
++ optional (isFindutils && cfg.pruneNames != []) "findutils locate does not support pruning by directory component"
|
||||
++ optional (isFindutils && cfg.pruneBindMounts) "findutils locate does not support skipping bind mounts";
|
||||
@@ -238,7 +253,7 @@ in {
|
||||
serviceConfig.ReadWritePaths = dirOf cfg.output;
|
||||
};
|
||||
|
||||
systemd.timers.update-locatedb =
|
||||
systemd.timers.update-locatedb = mkIf (cfg.interval != "never")
|
||||
{ description = "Update timer for locate database";
|
||||
partOf = [ "update-locatedb.service" ];
|
||||
wantedBy = [ "timers.target" ];
|
||||
|
||||
@@ -10,8 +10,9 @@
|
||||
, rustPlatform
|
||||
, pkg-config
|
||||
, glib
|
||||
, libadwaita
|
||||
, libhandy
|
||||
, gtk3
|
||||
, gtk4
|
||||
, openssl
|
||||
, alsa-lib
|
||||
, libpulseaudio
|
||||
@@ -20,19 +21,19 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "spot";
|
||||
version = "0.1.14";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xou816";
|
||||
repo = "spot";
|
||||
rev = version;
|
||||
sha256 = "eHhbm1amTx3ngqsP32uDEdrhrBeurMftg5SToTQGX9o=";
|
||||
sha256 = "16pri0in514xzy21bsijyvyyjwa0f6lg4zyizmdcmcdw4glrs11m";
|
||||
};
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit src;
|
||||
name = "${pname}-${version}";
|
||||
hash = "sha256-jY7pWoY9IJi5hHVRS1gQKb+Vmfc+wxHvoAwupOtXXQs=";
|
||||
sha256 = "1fvnidxh4rnkzqg3qjk3zlkp2d41qdamm0bfavk8jrazw8sgih84";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@@ -41,7 +42,7 @@ stdenv.mkDerivation rec {
|
||||
ninja
|
||||
pkg-config
|
||||
python3 # for meson postinstall script
|
||||
gtk3 # for gtk-update-icon-cache
|
||||
gtk4 # for gtk-update-icon-cache
|
||||
glib # for glib-compile-schemas
|
||||
desktop-file-utils
|
||||
rustPlatform.rust.cargo
|
||||
@@ -52,7 +53,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gtk3
|
||||
gtk4
|
||||
libadwaita
|
||||
libhandy
|
||||
openssl
|
||||
alsa-lib
|
||||
@@ -77,6 +79,6 @@ stdenv.mkDerivation rec {
|
||||
description = "Native Spotify client for the GNOME desktop";
|
||||
homepage = "https://github.com/xou816/spot";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
maintainers = with maintainers; [ jtojnar tomfitzhenry ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -7,16 +7,16 @@
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "polkadot";
|
||||
version = "0.9.9-1";
|
||||
version = "0.9.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "paritytech";
|
||||
repo = "polkadot";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-EmnrwBMHb9jpEZAG393yyMaFRRQJ6YYDRvsp+ATT7MY=";
|
||||
sha256 = "1iBA7R63g0UOuCmnFONc9j/7jfcHA54jJ327AL/aPIE=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-WzsaUrqe7F4x+ShqG14kq78MTSWIxIMRa3pdr3RXrwk=";
|
||||
cargoSha256 = "1ysbyv323qmpswbnd2lvisrwnk30l4zvcidh866nrk6b6jqjag42";
|
||||
|
||||
nativeBuildInputs = [ clang ];
|
||||
|
||||
|
||||
@@ -196,11 +196,9 @@ stdenv.mkDerivation {
|
||||
meta = with lib; {
|
||||
description = "Mozilla Firefox, free web browser (binary package)";
|
||||
homepage = "http://www.mozilla.org/firefox/";
|
||||
license = {
|
||||
free = false;
|
||||
url = "http://www.mozilla.org/en-US/foundation/trademarks/policy/";
|
||||
};
|
||||
license = licenses.mpl20;
|
||||
platforms = builtins.attrNames mozillaPlatforms;
|
||||
hydraPlatforms = [];
|
||||
maintainers = with maintainers; [ taku0 lovesegfault ];
|
||||
};
|
||||
}
|
||||
|
||||
+3
-3
@@ -2,7 +2,7 @@
|
||||
"name": "element-desktop",
|
||||
"productName": "Element",
|
||||
"main": "lib/electron-main.js",
|
||||
"version": "1.8.5",
|
||||
"version": "1.9.0",
|
||||
"description": "A feature-rich client for Matrix.org",
|
||||
"author": "Element",
|
||||
"repository": {
|
||||
@@ -57,7 +57,7 @@
|
||||
"allchange": "^1.0.2",
|
||||
"asar": "^2.0.1",
|
||||
"chokidar": "^3.5.2",
|
||||
"electron": "^13.1.9",
|
||||
"electron": "13",
|
||||
"electron-builder": "22.11.4",
|
||||
"electron-builder-squirrel-windows": "22.11.4",
|
||||
"electron-devtools-installer": "^3.1.1",
|
||||
@@ -83,7 +83,7 @@
|
||||
},
|
||||
"build": {
|
||||
"appId": "im.riot.app",
|
||||
"electronVersion": "13.2.2",
|
||||
"electronVersion": "13.4.0",
|
||||
"files": [
|
||||
"package.json",
|
||||
{
|
||||
|
||||
+208
-192
@@ -42,43 +42,43 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_generator___generator_7.15.0.tgz";
|
||||
name = "_babel_generator___generator_7.15.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_generator___generator_7.15.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz";
|
||||
sha1 = "a7d0c172e0d814974bad5aa77ace543b97917f15";
|
||||
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_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_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";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -98,43 +98,43 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_parser___parser_7.15.3.tgz";
|
||||
name = "_babel_parser___parser_7.15.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_parser___parser_7.15.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz";
|
||||
sha1 = "3416d9bea748052cfcb63dbcc27368105b1ed862";
|
||||
name = "_babel_parser___parser_7.15.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.6.tgz";
|
||||
sha1 = "043b9aa3c303c0722e5377fef9197f4cf1796549";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_runtime___runtime_7.15.3.tgz";
|
||||
name = "_babel_runtime___runtime_7.15.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_runtime___runtime_7.15.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.3.tgz";
|
||||
sha1 = "2e1c2880ca118e5b2f9988322bd8a7656a32502b";
|
||||
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.15.0.tgz";
|
||||
name = "_babel_traverse___traverse_7.15.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_traverse___traverse_7.15.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz";
|
||||
sha1 = "4cca838fd1b2a03283c1f38e141f639d60b3fc98";
|
||||
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.15.0.tgz";
|
||||
name = "_babel_types___types_7.15.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_types___types_7.15.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz";
|
||||
sha1 = "61af11f2286c4e9c69ca8deb5f4375a73c72dcbd";
|
||||
name = "_babel_types___types_7.15.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz";
|
||||
sha1 = "99abdc48218b2881c058dd0a7ab05b99c9be758f";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -169,6 +169,14 @@
|
||||
sha1 = "d736d6963d7003b6514e6324bec9c602ac340318";
|
||||
};
|
||||
}
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jimp_bmp___bmp_0.16.1.tgz";
|
||||
path = fetchurl {
|
||||
@@ -457,6 +465,14 @@
|
||||
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";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_npmcli_git___git_2.1.0.tgz";
|
||||
path = fetchurl {
|
||||
@@ -530,27 +546,27 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_graphql___graphql_4.6.4.tgz";
|
||||
name = "_octokit_graphql___graphql_4.8.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_graphql___graphql_4.6.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.6.4.tgz";
|
||||
sha1 = "0c3f5bed440822182e972317122acb65d311a5ed";
|
||||
name = "_octokit_graphql___graphql_4.8.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz";
|
||||
sha1 = "664d9b11c0e12112cbf78e10f49a05959aa22cc3";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_openapi_types___openapi_types_9.7.0.tgz";
|
||||
name = "_octokit_openapi_types___openapi_types_10.2.2.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_openapi_types___openapi_types_9.7.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-9.7.0.tgz";
|
||||
sha1 = "9897cdefd629cd88af67b8dbe2e5fb19c63426b2";
|
||||
name = "_octokit_openapi_types___openapi_types_10.2.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-10.2.2.tgz";
|
||||
sha1 = "6c1c839d7d169feabaf1d2a69c79439c75d979cd";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.15.1.tgz";
|
||||
name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.16.3.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.15.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.15.1.tgz";
|
||||
sha1 = "264189dd3ce881c6c33758824aac05a4002e056a";
|
||||
name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.16.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.3.tgz";
|
||||
sha1 = "6dbf74a12a53e04da6ca731d4c93f20c0b5c6fe9";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -562,11 +578,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.8.0.tgz";
|
||||
name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.10.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.8.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.8.0.tgz";
|
||||
sha1 = "33b342fe41f2603fdf8b958e6652103bb3ea3f3b";
|
||||
name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.10.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.4.tgz";
|
||||
sha1 = "97e85eb7375e30b9bf193894670f9da205e79408";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -586,19 +602,19 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_rest___rest_18.9.1.tgz";
|
||||
name = "_octokit_rest___rest_18.10.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_rest___rest_18.9.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.9.1.tgz";
|
||||
sha1 = "db1d7ac1d7b10e908f7d4b78fe35a392554ccb26";
|
||||
name = "_octokit_rest___rest_18.10.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.10.0.tgz";
|
||||
sha1 = "8a0add9611253e0e31d3ed5b4bc941a3795a7648";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_octokit_types___types_6.25.0.tgz";
|
||||
name = "_octokit_types___types_6.28.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_octokit_types___types_6.25.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/types/-/types-6.25.0.tgz";
|
||||
sha1 = "c8e37e69dbe7ce55ed98ee63f75054e7e808bf1a";
|
||||
name = "_octokit_types___types_6.28.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@octokit/types/-/types-6.28.1.tgz";
|
||||
sha1 = "ab990d1fe952226055e81c7650480e6bacfb877c";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -698,19 +714,19 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_node___node_16.7.1.tgz";
|
||||
name = "_types_node___node_16.9.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_node___node_16.7.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-16.7.1.tgz";
|
||||
sha1 = "c6b9198178da504dfca1fd0be9b2e1002f1586f0";
|
||||
name = "_types_node___node_16.9.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz";
|
||||
sha1 = "0611b37db4246c937feef529ddcc018cf8e35708";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_node___node_14.17.11.tgz";
|
||||
name = "_types_node___node_14.17.16.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_node___node_14.17.11.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.11.tgz";
|
||||
sha1 = "82d266d657aec5ff01ca59f2ffaff1bb43f7bf0f";
|
||||
name = "_types_node___node_14.17.16.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.16.tgz";
|
||||
sha1 = "2b9252bd4fdf0393696190cd9550901dd967c777";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -746,59 +762,59 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.29.3.tgz";
|
||||
name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.3.tgz";
|
||||
sha1 = "95cb8029a8bd8bd9c7f4ab95074a7cb2115adefa";
|
||||
name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.1.tgz";
|
||||
sha1 = "e938603a136f01dcabeece069da5fb2e331d4498";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_experimental_utils___experimental_utils_4.29.3.tgz";
|
||||
name = "_typescript_eslint_experimental_utils___experimental_utils_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_experimental_utils___experimental_utils_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.3.tgz";
|
||||
sha1 = "52e437a689ccdef73e83c5106b34240a706f15e1";
|
||||
name = "_typescript_eslint_experimental_utils___experimental_utils_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.1.tgz";
|
||||
sha1 = "0c900f832f270b88e13e51753647b02d08371ce5";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_parser___parser_4.29.3.tgz";
|
||||
name = "_typescript_eslint_parser___parser_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_parser___parser_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.3.tgz";
|
||||
sha1 = "2ac25535f34c0e98f50c0e6b28c679c2357d45f2";
|
||||
name = "_typescript_eslint_parser___parser_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.31.1.tgz";
|
||||
sha1 = "8f9a2672033e6f6d33b1c0260eebdc0ddf539064";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_scope_manager___scope_manager_4.29.3.tgz";
|
||||
name = "_typescript_eslint_scope_manager___scope_manager_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_scope_manager___scope_manager_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.3.tgz";
|
||||
sha1 = "497dec66f3a22e459f6e306cf14021e40ec86e19";
|
||||
name = "_typescript_eslint_scope_manager___scope_manager_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.31.1.tgz";
|
||||
sha1 = "0c21e8501f608d6a25c842fcf59541ef4f1ab561";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_types___types_4.29.3.tgz";
|
||||
name = "_typescript_eslint_types___types_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_types___types_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.3.tgz";
|
||||
sha1 = "d7980c49aef643d0af8954c9f14f656b7fd16017";
|
||||
name = "_typescript_eslint_types___types_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.31.1.tgz";
|
||||
sha1 = "5f255b695627a13401d2fdba5f7138bc79450d66";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_typescript_estree___typescript_estree_4.29.3.tgz";
|
||||
name = "_typescript_eslint_typescript_estree___typescript_estree_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_typescript_estree___typescript_estree_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.3.tgz";
|
||||
sha1 = "1bafad610015c4ded35c85a70b6222faad598b40";
|
||||
name = "_typescript_eslint_typescript_estree___typescript_estree_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.1.tgz";
|
||||
sha1 = "4a04d5232cf1031232b7124a9c0310b577a62d17";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_typescript_eslint_visitor_keys___visitor_keys_4.29.3.tgz";
|
||||
name = "_typescript_eslint_visitor_keys___visitor_keys_4.31.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_typescript_eslint_visitor_keys___visitor_keys_4.29.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.3.tgz";
|
||||
sha1 = "c691760a00bd86bf8320d2a90a93d86d322f1abf";
|
||||
name = "_typescript_eslint_visitor_keys___visitor_keys_4.31.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.1.tgz";
|
||||
sha1 = "f2e7a14c7f20c4ae07d7fc3c5878c4441a1da9cc";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -866,19 +882,19 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "ajv___ajv_8.6.2.tgz";
|
||||
name = "ajv___ajv_8.6.3.tgz";
|
||||
path = fetchurl {
|
||||
name = "ajv___ajv_8.6.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz";
|
||||
sha1 = "2fb45e0e5fcbc0813326c1c3da535d1881bb0571";
|
||||
name = "ajv___ajv_8.6.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz";
|
||||
sha1 = "11a66527761dc3e9a3845ea775d2d3c0414e8764";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "allchange___allchange_1.0.2.tgz";
|
||||
name = "allchange___allchange_1.0.3.tgz";
|
||||
path = fetchurl {
|
||||
name = "allchange___allchange_1.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/allchange/-/allchange-1.0.2.tgz";
|
||||
sha1 = "86b9190e12b7ede4f230ae763cbd504c48fd907b";
|
||||
name = "allchange___allchange_1.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/allchange/-/allchange-1.0.3.tgz";
|
||||
sha1 = "f8814ddfbcfe39a01bf4570778ee7e6d9ff0ebb3";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -922,11 +938,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "ansi_regex___ansi_regex_5.0.0.tgz";
|
||||
name = "ansi_regex___ansi_regex_5.0.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "ansi_regex___ansi_regex_5.0.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
|
||||
sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
|
||||
name = "ansi_regex___ansi_regex_5.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz";
|
||||
sha1 = "082cb2c89c9fe8659a311a53bd6a4dc5301db304";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1010,11 +1026,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";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1050,11 +1066,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "asar___asar_3.0.3.tgz";
|
||||
name = "asar___asar_3.1.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "asar___asar_3.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/asar/-/asar-3.0.3.tgz";
|
||||
sha1 = "1fef03c2d6d2de0cbad138788e4f7ae03b129c7b";
|
||||
name = "asar___asar_3.1.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/asar/-/asar-3.1.0.tgz";
|
||||
sha1 = "70b0509449fe3daccc63beb4d3c7d2e24d3c6473";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1234,11 +1250,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "boxen___boxen_5.0.1.tgz";
|
||||
name = "boxen___boxen_5.1.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "boxen___boxen_5.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/boxen/-/boxen-5.0.1.tgz";
|
||||
sha1 = "657528bdd3f59a772b8279b831f27ec2c744664b";
|
||||
name = "boxen___boxen_5.1.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/boxen/-/boxen-5.1.1.tgz";
|
||||
sha1 = "4faca6a437885add0bf8d99082e272d480814cd4";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1322,11 +1338,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";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1610,11 +1626,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "core_js___core_js_3.16.3.tgz";
|
||||
name = "core_js___core_js_3.17.3.tgz";
|
||||
path = fetchurl {
|
||||
name = "core_js___core_js_3.16.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.16.3.tgz";
|
||||
sha1 = "1f2d43c51a9ed014cc6c83440af14697ae4b75f2";
|
||||
name = "core_js___core_js_3.17.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.17.3.tgz";
|
||||
sha1 = "8e8bd20e91df9951e903cabe91f9af4a0895bc1e";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1625,6 +1641,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 = "counterpart___counterpart_0.18.6.tgz";
|
||||
path = fetchurl {
|
||||
@@ -1754,11 +1778,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "deep_is___deep_is_0.1.3.tgz";
|
||||
name = "deep_is___deep_is_0.1.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "deep_is___deep_is_0.1.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz";
|
||||
sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
|
||||
name = "deep_is___deep_is_0.1.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz";
|
||||
sha1 = "a6f2dce612fadd2ef1f519b73551f17e85199831";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1946,11 +1970,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "electron_notarize___electron_notarize_1.1.0.tgz";
|
||||
name = "electron_notarize___electron_notarize_1.1.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "electron_notarize___electron_notarize_1.1.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron-notarize/-/electron-notarize-1.1.0.tgz";
|
||||
sha1 = "00ed0182366b97f5593cb5ccdcf1120f1de37179";
|
||||
name = "electron_notarize___electron_notarize_1.1.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron-notarize/-/electron-notarize-1.1.1.tgz";
|
||||
sha1 = "3ed274b36158c1beb1dbef14e7faf5927e028629";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -1978,11 +2002,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "electron___electron_13.2.2.tgz";
|
||||
name = "electron___electron_13.4.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "electron___electron_13.2.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron/-/electron-13.2.2.tgz";
|
||||
sha1 = "332d91891d0db4f9a1d22d4d0bc3b500e59dc051";
|
||||
name = "electron___electron_13.4.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron/-/electron-13.4.0.tgz";
|
||||
sha1 = "f9f9e518d8c6bf23bfa8b69580447eea3ca0f880";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -2346,11 +2370,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "fastq___fastq_1.12.0.tgz";
|
||||
name = "fastq___fastq_1.13.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "fastq___fastq_1.12.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/fastq/-/fastq-1.12.0.tgz";
|
||||
sha1 = "ed7b6ab5d62393fb2cc591c853652a5c318bf794";
|
||||
name = "fastq___fastq_1.13.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz";
|
||||
sha1 = "616760f88a7526bdfc596b7cab8c18938c36b98c";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -3602,11 +3626,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "minipass_fetch___minipass_fetch_1.3.4.tgz";
|
||||
name = "minipass_fetch___minipass_fetch_1.4.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "minipass_fetch___minipass_fetch_1.3.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.3.4.tgz";
|
||||
sha1 = "63f5af868a38746ca7b33b03393ddf8c291244fe";
|
||||
name = "minipass_fetch___minipass_fetch_1.4.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz";
|
||||
sha1 = "d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -3650,11 +3674,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "minipass___minipass_3.1.3.tgz";
|
||||
name = "minipass___minipass_3.1.5.tgz";
|
||||
path = fetchurl {
|
||||
name = "minipass___minipass_3.1.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz";
|
||||
sha1 = "7d42ff1f39635482e15f9cdb53184deebd5815fd";
|
||||
name = "minipass___minipass_3.1.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz";
|
||||
sha1 = "71f6251b0a33a49c01b3cf97ff77eda030dff732";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -3722,11 +3746,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "needle___needle_2.9.0.tgz";
|
||||
name = "needle___needle_2.9.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "needle___needle_2.9.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/needle/-/needle-2.9.0.tgz";
|
||||
sha1 = "c680e401f99b6c3d8d1f315756052edf3dc3bdff";
|
||||
name = "needle___needle_2.9.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/needle/-/needle-2.9.1.tgz";
|
||||
sha1 = "22d1dffbe3490c2b83e301f7709b6736cd8f2684";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -3762,11 +3786,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "node_fetch___node_fetch_2.6.1.tgz";
|
||||
name = "node_fetch___node_fetch_2.6.2.tgz";
|
||||
path = fetchurl {
|
||||
name = "node_fetch___node_fetch_2.6.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz";
|
||||
sha1 = "045bd323631f76ed2e2b55573394416b639a0052";
|
||||
name = "node_fetch___node_fetch_2.6.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.2.tgz";
|
||||
sha1 = "986996818b73785e47b1965cc34eb093a1d464d0";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -4178,11 +4202,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "plist___plist_3.0.3.tgz";
|
||||
name = "plist___plist_3.0.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "plist___plist_3.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/plist/-/plist-3.0.3.tgz";
|
||||
sha1 = "007df34c7be0e2c3dcfcf460d623e6485457857d";
|
||||
name = "plist___plist_3.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/plist/-/plist-3.0.4.tgz";
|
||||
sha1 = "a62df837e3aed2bb3b735899d510c4f186019cbe";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -4666,11 +4690,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "socks_proxy_agent___socks_proxy_agent_6.0.0.tgz";
|
||||
name = "socks_proxy_agent___socks_proxy_agent_6.1.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "socks_proxy_agent___socks_proxy_agent_6.0.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.0.0.tgz";
|
||||
sha1 = "9f8749cdc05976505fa9f9a958b1818d0e60573b";
|
||||
name = "socks_proxy_agent___socks_proxy_agent_6.1.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.1.0.tgz";
|
||||
sha1 = "869cf2d7bd10fea96c7ad3111e81726855e285c3";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -4682,11 +4706,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "source_map_support___source_map_support_0.5.19.tgz";
|
||||
name = "source_map_support___source_map_support_0.5.20.tgz";
|
||||
path = fetchurl {
|
||||
name = "source_map_support___source_map_support_0.5.19.tgz";
|
||||
url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz";
|
||||
sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61";
|
||||
name = "source_map_support___source_map_support_0.5.20.tgz";
|
||||
url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz";
|
||||
sha1 = "12166089f8f5e5e8c56926b377633392dd2cb6c9";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -4890,11 +4914,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "tar___tar_6.1.10.tgz";
|
||||
name = "tar___tar_6.1.11.tgz";
|
||||
path = fetchurl {
|
||||
name = "tar___tar_6.1.10.tgz";
|
||||
url = "https://registry.yarnpkg.com/tar/-/tar-6.1.10.tgz";
|
||||
sha1 = "8a320a74475fba54398fa136cd9883aa8ad11175";
|
||||
name = "tar___tar_6.1.11.tgz";
|
||||
url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz";
|
||||
sha1 = "6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -5130,11 +5154,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "typescript___typescript_4.3.5.tgz";
|
||||
name = "typescript___typescript_4.4.3.tgz";
|
||||
path = fetchurl {
|
||||
name = "typescript___typescript_4.3.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz";
|
||||
sha1 = "4d1c37cc16e893973c45a06886b7113234f119f4";
|
||||
name = "typescript___typescript_4.4.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz";
|
||||
sha1 = "bdc5407caa2b109efd4f82fe130656f977a29324";
|
||||
};
|
||||
}
|
||||
{
|
||||
@@ -5409,14 +5433,6 @@
|
||||
sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "xmldom___xmldom_0.6.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "xmldom___xmldom_0.6.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.6.0.tgz";
|
||||
sha1 = "43a96ecb8beece991cef382c08397d82d4d0c46f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "xtend___xtend_4.0.2.tgz";
|
||||
path = fetchurl {
|
||||
|
||||
@@ -19,12 +19,12 @@
|
||||
|
||||
let
|
||||
executableName = "element-desktop";
|
||||
version = "1.8.5";
|
||||
version = "1.9.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "vector-im";
|
||||
repo = "element-desktop";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-i9PWGEcf+EOn6j++GuYt6xmwYycmW5hE5xhpRMOFBGM=";
|
||||
sha256 = "sha256-vsLu41n3oCSyyPLgASs7jZViu6DPkWmMfSO7414VPO4=";
|
||||
};
|
||||
electron_exec = if stdenv.isDarwin then "${electron}/Applications/Electron.app/Contents/MacOS/Electron" else "${electron}/bin/electron";
|
||||
in
|
||||
|
||||
@@ -12,11 +12,11 @@ let
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "element-web";
|
||||
version = "1.8.5";
|
||||
version = "1.9.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/vector-im/element-web/releases/download/v${version}/element-v${version}.tar.gz";
|
||||
sha256 = "sha256-E3H6iXBRi4mnhu0mu96ly9f8AYOiMFf9zTcpjDmfHy4=";
|
||||
sha256 = "sha256-QMLa1Bgz9feAAR9PKVXAzlRDztJBZnGIG+SsPgwvYRw=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
|
||||
@@ -147,10 +147,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
ln -s $out/share/desktopeditors/DesktopEditors $out/bin/DesktopEditors
|
||||
|
||||
wrapProgram $out/bin/DesktopEditors \
|
||||
--set QT_XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb \
|
||||
--set QTCOMPOSE ${xorg.libX11.out}/share/X11/locale
|
||||
|
||||
substituteInPlace $out/share/applications/onlyoffice-desktopeditors.desktop \
|
||||
--replace "/usr/bin/onlyoffice-desktopeditor" "$out/bin/DesktopEditor"
|
||||
|
||||
@@ -158,7 +154,13 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${runtimeLibs}" )
|
||||
gappsWrapperArgs+=(
|
||||
--prefix LD_LIBRARY_PATH : "${runtimeLibs}" \
|
||||
--set QT_XKB_CONFIG_ROOT "${xkeyboard_config}/share/X11/xkb" \
|
||||
--set QTCOMPOSE "${xorg.libX11.out}/share/X11/locale" \
|
||||
--set QT_QPA_PLATFORM "xcb"
|
||||
# the bundled version of qt does not support wayland
|
||||
)
|
||||
'';
|
||||
|
||||
passthru.updateScript = ./update.sh;
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "stellarium";
|
||||
version = "0.21.1";
|
||||
version = "0.21.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Stellarium";
|
||||
repo = "stellarium";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-dAdB57phD5phl8dQZIHtqtnA2LZqR+JoXTzIBtqBevA=";
|
||||
sha256 = "sha256-bh00o++l3sqELX5kgRhiCcQOLVqvjEyEMcJTnnVPNU8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
, gettext
|
||||
, glib
|
||||
, gtk3
|
||||
, bamf
|
||||
, libwnck
|
||||
, libgee
|
||||
, libgtop
|
||||
@@ -19,13 +18,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "monitor";
|
||||
version = "0.9.5";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stsdc";
|
||||
repo = "monitor";
|
||||
rev = version;
|
||||
sha256 = "sha256-eTsPn2Z1++KsZnnBnZ2s9fKK2HguPw+JqaRRkxQDiAk=";
|
||||
sha256 = "sha256-Gin/1vbQbOAKFrjzDuDTNDQlTGTIlb0NUfIWWXd5tQ4=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
@@ -40,7 +39,6 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
bamf
|
||||
glib
|
||||
gtk3
|
||||
pantheon.granite
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
{ buildGoPackage
|
||||
, Carbon
|
||||
, Cocoa
|
||||
, Kernel
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, mesa_glu
|
||||
, stdenv
|
||||
, xorg
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "aminal";
|
||||
version = "0.9.0";
|
||||
|
||||
goPackagePath = "github.com/liamg/aminal";
|
||||
|
||||
buildInputs =
|
||||
lib.optionals stdenv.isLinux [
|
||||
mesa_glu
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXinerama
|
||||
xorg.libXrandr
|
||||
xorg.libXxf86vm
|
||||
] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "liamg";
|
||||
repo = "aminal";
|
||||
rev = "v${version}";
|
||||
sha256 = "0syv9md7blnl6i19zf8s1xjx5vfz6s755fxyg2ply0qc1pwhsj8n";
|
||||
};
|
||||
|
||||
ldflags = [
|
||||
"-X ${goPackagePath}/version.Version=${version}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Golang terminal emulator from scratch";
|
||||
longDescription = ''
|
||||
Aminal is a modern terminal emulator for Mac/Linux implemented in Golang
|
||||
and utilising OpenGL.
|
||||
|
||||
The project is experimental at the moment, so you probably won't want to
|
||||
rely on Aminal as your main terminal for a while.
|
||||
|
||||
Features:
|
||||
- Unicode support
|
||||
- OpenGL rendering
|
||||
- Customisation options
|
||||
- True colour support
|
||||
- Support for common ANSI escape sequences a la xterm
|
||||
- Scrollback buffer
|
||||
- Clipboard access
|
||||
- Clickable URLs
|
||||
- Multi platform support (Windows coming soon...)
|
||||
- Sixel support
|
||||
- Hints/overlays
|
||||
- Built-in patched fonts for powerline
|
||||
- Retina display support
|
||||
'';
|
||||
homepage = "https://github.com/liamg/aminal";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
@@ -4,13 +4,13 @@
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "git-remote-hg";
|
||||
version = "unstable-2020-06-12";
|
||||
version = "1.0.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mnauw";
|
||||
repo = "git-remote-hg";
|
||||
rev = "28ed63b707919734d230cb13bff7d231dfeee8fc";
|
||||
sha256 = "0dw48vbnk7pp0w6fzgl29mq8fyn52pacbya2w14z9c6jfvh5sha1";
|
||||
rev = "v${version}";
|
||||
sha256 = "1crgq13v2p9wmw1yhckmyzybh8h1nz3839qhqvzh48vxqkailzmn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cppzmq";
|
||||
version = "4.8.0";
|
||||
version = "4.8.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zeromq";
|
||||
repo = "cppzmq";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-4ZyTp0TOKqDbziqBTkeUs3J+f3stFyUVpkzk4Jx6CDc=";
|
||||
sha256 = "sha256-Q09+6dPwdeW3jkGgPNAcHI3FHcYPQ+w61PmV+TkQ+H8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
@@ -14,13 +14,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "notcurses";
|
||||
version = "2.4.1";
|
||||
version = "2.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dankamongmen";
|
||||
repo = "notcurses";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Oyjdmmb+rqPgkwVJw3y4NKGPABmCZFyGFBzBJn6IEHk=";
|
||||
sha256 = "sha256-EtHyxnTH2bVoVnWB9wvmF/nCdecvL1TTiVRaajFVC/0=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
@@ -29,13 +29,17 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Test is currently failing on Hydra, works locally
|
||||
"test_slices"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "asttokens" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/gristlabs/asttokens";
|
||||
description = "Annotate Python AST trees with source text and token information";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,12 +25,12 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flask-appbuilder";
|
||||
version = "3.3.2";
|
||||
version = "3.3.3";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "Flask-AppBuilder";
|
||||
inherit version;
|
||||
sha256 = "1js1nbal020ilqdrmd471zjab9jj6489fxy4583n55bh5fyiac6i";
|
||||
sha256 = "sha256-yjb4dpcQt2se5GT+wodh4UC9LAF4JmYrdX89VIdkk0U=";
|
||||
};
|
||||
|
||||
# See here: https://github.com/dpgaspar/Flask-AppBuilder/commit/7097a7b133f27c78d2b54d2a46e4a4c24478a066.patch
|
||||
@@ -63,8 +63,7 @@ buildPythonPackage rec {
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "apispec[yaml]>=3.3, <4" "apispec[yaml] >=3.3, <5" \
|
||||
--replace "click>=6.7, <8" "click" \
|
||||
--replace "apispec[yaml]>=3.3, <4" "apispec[yaml] >=3.3" \
|
||||
--replace "Flask>=0.12, <2" "Flask" \
|
||||
--replace "Flask-Login>=0.3, <0.5" "Flask-Login >=0.3, <0.6" \
|
||||
--replace "Flask-Babel>=1, <2" "Flask-Babel >=1, <3" \
|
||||
@@ -72,6 +71,7 @@ buildPythonPackage rec {
|
||||
--replace "marshmallow-sqlalchemy>=0.22.0, <0.24.0" "marshmallow-sqlalchemy" \
|
||||
--replace "Flask-JWT-Extended>=3.18, <4" "Flask-JWT-Extended>=4.1.0" \
|
||||
--replace "PyJWT>=1.7.1, <2.0.0" "PyJWT>=2.0.1" \
|
||||
--replace "prison>=0.2.1, <1.0.0" "prison" \
|
||||
--replace "SQLAlchemy<1.4.0" "SQLAlchemy"
|
||||
'';
|
||||
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-websecurityscanner";
|
||||
version = "1.4.1";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-oq7AMZ1so8IR7nn8fIhUr4oOJEJp1FQPxiJIh+1bMLA=";
|
||||
sha256 = "593e73edb31ecb8e079c83c65dca29a593208f81a7506e6ef20aeecf611f2a9d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
|
||||
|
||||
@@ -15,12 +15,12 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "intensity-normalization";
|
||||
version = "2.0.1";
|
||||
version = "2.0.2";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1c6inlhpxarvkniq8j5j2pgl32dmggn14s8c3c0xx15j7cg90413";
|
||||
sha256 = "f963e90671fec51d1b248862a9bcc4639c1d6d3b1dbc1ee34d042cb765d8730a";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jupyterlab";
|
||||
version = "3.1.13";
|
||||
version = "3.1.14";
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "48a6214ba8310d8bdb3eb6bac8eedf449c77d1bbb6f81b586267c158ad00b899";
|
||||
sha256 = "13174cb6076dd5da6f1b85725ccfcc9518d8f98e86b8b644fc89b1dfaeda63a9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ jupyter-packaging ];
|
||||
|
||||
@@ -3,19 +3,22 @@
|
||||
, chardet
|
||||
, fetchFromGitHub
|
||||
, karton-core
|
||||
, python
|
||||
, pytestCheckHook
|
||||
, python_magic
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "karton-classifier";
|
||||
version = "1.1.0";
|
||||
version = "1.2.0";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CERT-Polska";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0s09mzsw546klnvm59wzj9vdwd2hyzgxvapi20k86q3prs9ncds6";
|
||||
sha256 = "sha256-AG2CtNMgXYfbdlOqB1ZdjMT8H67fsSMXTgiFg6K41IQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@@ -30,11 +33,9 @@ buildPythonPackage rec {
|
||||
--replace "python-magic==0.4.18" "python-magic"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
${python.interpreter} -m unittest discover
|
||||
runHook postCheck
|
||||
'';
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "karton.classifier" ];
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PuLP";
|
||||
version = "2.5.0";
|
||||
version = "2.5.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5dc7d76bfb1da06ac048066ced75603340d0d7ba8a7dbfce4040d6f126eda0d5";
|
||||
sha256 = "27c2a87a98ea0e9a08c7c46e6df47d6d4e753ad9991fea2901892425d89c99a6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyparsing amply ];
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
, click
|
||||
, dateparser
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, marshmallow-dataclass
|
||||
, poetry-core
|
||||
, pyjwt
|
||||
@@ -17,7 +16,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "renault-api";
|
||||
version = "0.1.4";
|
||||
version = "0.1.5";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
@@ -26,7 +25,7 @@ buildPythonPackage rec {
|
||||
owner = "hacf-fr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "049kh63yk0r0falqbl5akcwgzqjrkqqhf9y537rrlzc85ihf28b8";
|
||||
sha256 = "sha256-b3oHpERUqeIw0yOxZytQuRE4jVUcahWlMQ+7ZBX0KL8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@@ -48,15 +47,6 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Switch to poetry-core, https://github.com/hacf-fr/renault-api/pull/371
|
||||
(fetchpatch {
|
||||
name = "switch-to-poetry-core.patch";
|
||||
url = "https://github.com/hacf-fr/renault-api/commit/5457a612b9ff9f323e8449cbe9dbce465bd65a79.patch";
|
||||
sha256 = "0ds9m4j2qpv0nyg9p8dk9klnarl8wckwclddgnii6h47qci362yy";
|
||||
})
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "renault_api" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
@@ -29,11 +29,11 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sentry-sdk";
|
||||
version = "1.4.1";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4297555ddc37c7136740e6b547b7d68f5bca0b4832f94ac097e5d531a4c77528";
|
||||
sha256 = "683e2f677d518b6a203785f5a6c27d3a6b48cca8293d43cc7efc7815ea4dada5";
|
||||
};
|
||||
|
||||
checkInputs = [ blinker botocore chalice django flask tornado bottle rq falcon sqlalchemy werkzeug trytond
|
||||
|
||||
@@ -1,22 +1,32 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, nose }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "voluptuous";
|
||||
version = "0.12.1";
|
||||
version = "0.12.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0js4avmhmmys78z376xk1w9305hq5nad8zqrnksgmpc1j90p4db6";
|
||||
sha256 = "sha256-TbGsUHnbkkmCDUnIkctGYKb4yuNQSRIQq850H6v1ZRM=";
|
||||
};
|
||||
|
||||
checkInputs = [ nose ];
|
||||
checkInputs = [
|
||||
nose
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "voluptuous" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Voluptuous is a Python data validation library";
|
||||
description = "Python data validation library";
|
||||
homepage = "http://alecthomas.github.io/voluptuous/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "tfsec";
|
||||
version = "0.58.10";
|
||||
version = "0.58.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aquasecurity";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-VMnc4frDBAkVc9hqUdXAiJ2vNsK9NzkLOUaQWhQQUBU=";
|
||||
sha256 = "sha256-IapWH7bkjrFmdkGHUHROECmfF3su4HtJJ8Ii5a4GSRg=";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/aquasecurity/tfsec";
|
||||
|
||||
+272
-260
File diff suppressed because it is too large
Load Diff
@@ -644,7 +644,7 @@ rust-lang/rust.vim
|
||||
ryanoasis/vim-devicons
|
||||
ryvnf/readline.vim
|
||||
saadparwaiz1/cmp_luasnip
|
||||
saecki/crates.nvim
|
||||
saecki/crates.nvim@main
|
||||
sainnhe/edge
|
||||
sainnhe/gruvbox-material
|
||||
sainnhe/sonokai
|
||||
@@ -868,6 +868,7 @@ w0ng/vim-hybrid
|
||||
wakatime/vim-wakatime
|
||||
wannesm/wmgraphviz.vim
|
||||
wbthomason/packer.nvim
|
||||
weilbith/nvim-code-action-menu@main
|
||||
wellle/targets.vim
|
||||
wellle/tmux-complete.vim
|
||||
wfxr/minimap.vim
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, bash
|
||||
, bison
|
||||
, flex
|
||||
, which
|
||||
@@ -24,7 +25,8 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ bison flex which ];
|
||||
buildInputs = [ perl ]
|
||||
# bash is required for correctly replacing the shebangs in all tools for cross-compilation.
|
||||
buildInputs = [ bash perl ]
|
||||
++ lib.optional sensord rrdtool;
|
||||
|
||||
makeFlags = [
|
||||
|
||||
@@ -177,7 +177,8 @@ in with py.pkgs; buildPythonApplication rec {
|
||||
--replace "cryptography==3.3.2" "cryptography" \
|
||||
--replace "pip>=8.0.3,<20.3" "pip" \
|
||||
--replace "requests==2.25.1" "requests>=2.25.1" \
|
||||
--replace "ruamel.yaml==0.15.100" "ruamel.yaml"
|
||||
--replace "ruamel.yaml==0.15.100" "ruamel.yaml" \
|
||||
--replace "voluptuous==0.12.1" "voluptuous==0.12.2"
|
||||
substituteInPlace tests/test_config.py --replace '"/usr"' '"/build/media"'
|
||||
'';
|
||||
|
||||
|
||||
@@ -16,13 +16,13 @@ let
|
||||
in
|
||||
with python.pkgs; buildPythonApplication rec {
|
||||
pname = "esphome";
|
||||
version = "2021.9.1";
|
||||
version = "2021.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-JWUGOvY34wZSBTZdpuApPjEfBtgPSFKiVk89TUK441I=";
|
||||
sha256 = "sha256-u79Hh1LJMaHm9TeNuMd5IQkJgOMIKDbUwW6KHhTHv2Q=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "viddy";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sachaos";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "18ms4kfv332863vd8b7mmrz39y4b8gvhi6lx9x5385jfzd19w5wx";
|
||||
};
|
||||
|
||||
vendorSha256 = "0789wq4d9cynyadvlwahs4586gc3p78gdpv5wf733lpv1h5rjbv3";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X"
|
||||
"main.version=${version}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A modern watch command";
|
||||
homepage = "https://github.com/sachaos/viddy";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ j-hui ];
|
||||
};
|
||||
}
|
||||
+7
-6
@@ -1,5 +1,5 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, jsonschema
|
||||
, plotly
|
||||
@@ -18,6 +18,7 @@
|
||||
, rich
|
||||
, aiohttp
|
||||
, toml
|
||||
, distro
|
||||
# aiohttp[speedups]
|
||||
, aiodns
|
||||
, brotlipy
|
||||
@@ -25,15 +26,15 @@
|
||||
, pillow
|
||||
, pytestCheckHook
|
||||
}:
|
||||
buildPythonPackage {
|
||||
buildPythonApplication rec {
|
||||
pname = "cve-bin-tool";
|
||||
version = "unstable-2021-04-15";
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "cve-bin-tool";
|
||||
rev = "10cb6fd0baffe35babfde024bc8c70aa58629237";
|
||||
sha256 = "STf0tJBpadBqsbC+MghBai8zahDkrXfLoFRJ+84wvvY=";
|
||||
rev = "v${version}";
|
||||
sha256 = "087w7fsc4vd4sjz8ww6q71b108yhz94ydr76d99rhlmcqsq7fihs";
|
||||
};
|
||||
|
||||
# Wants to open a sqlite database, access the internet, etc
|
||||
@@ -57,7 +58,7 @@ buildPythonPackage {
|
||||
rich
|
||||
aiohttp
|
||||
toml
|
||||
|
||||
distro
|
||||
# aiohttp[speedups]
|
||||
aiodns
|
||||
brotlipy
|
||||
@@ -5,13 +5,13 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kubescape";
|
||||
version = "1.0.85";
|
||||
version = "1.0.88";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "armosec";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "19r7dgr0y1k9qa4llxbgaf69j88vs9h2gx29bwbh6dq17q58sfdl";
|
||||
sha256 = "sha256-ITN/HsXZWH1v23R5TSEd8vq/DkhiCypJM+hg879ZWlc=";
|
||||
};
|
||||
|
||||
vendorSha256 = "18mvv70g65pq1c7nn752j26d0vasx6cl2rqp5g1hg3cb61hjbn0n";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# frozen_string_literal: true
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.0.56"
|
||||
gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.7"
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
GIT
|
||||
remote: https://github.com/rapid7/metasploit-framework
|
||||
revision: d818269c546bd165c29652768cd2058fcb56c4fa
|
||||
ref: refs/tags/6.0.56
|
||||
revision: 6dddd6d372c75acadc183f6a4efdd44e453559b4
|
||||
ref: refs/tags/6.1.7
|
||||
specs:
|
||||
metasploit-framework (6.0.56)
|
||||
actionpack (~> 5.2.2)
|
||||
activerecord (~> 5.2.2)
|
||||
activesupport (~> 5.2.2)
|
||||
metasploit-framework (6.1.7)
|
||||
actionpack (~> 6.0)
|
||||
activerecord (~> 6.0)
|
||||
activesupport (~> 6.0)
|
||||
aws-sdk-ec2
|
||||
aws-sdk-iam
|
||||
aws-sdk-s3
|
||||
@@ -22,17 +22,17 @@ GIT
|
||||
faraday
|
||||
faye-websocket
|
||||
filesize
|
||||
hrr_rb_ssh (= 0.3.0.pre2)
|
||||
hrr_rb_ssh-ed25519
|
||||
http-cookie
|
||||
irb
|
||||
jsobfu
|
||||
json
|
||||
metasm
|
||||
metasploit-concern (~> 3.0.0)
|
||||
metasploit-credential (~> 4.0.0)
|
||||
metasploit-model (~> 3.1.0)
|
||||
metasploit-payloads (= 2.0.50)
|
||||
metasploit_data_models (~> 4.1.0)
|
||||
metasploit-concern
|
||||
metasploit-credential
|
||||
metasploit-model
|
||||
metasploit-payloads (= 2.0.54)
|
||||
metasploit_data_models
|
||||
metasploit_payloads-mettle (= 1.0.10)
|
||||
mqtt
|
||||
msgpack
|
||||
@@ -47,7 +47,7 @@ GIT
|
||||
openvas-omp
|
||||
packetfu
|
||||
patch_finder
|
||||
pcaprub
|
||||
pcaprub (= 0.12.4)
|
||||
pdf-reader
|
||||
pg
|
||||
puma
|
||||
@@ -88,6 +88,7 @@ GIT
|
||||
unix-crypt
|
||||
warden
|
||||
windows_error
|
||||
winrm
|
||||
xdr
|
||||
xmlrpc
|
||||
zeitwerk
|
||||
@@ -96,57 +97,56 @@ GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
Ascii85 (1.1.0)
|
||||
actionpack (5.2.6)
|
||||
actionview (= 5.2.6)
|
||||
activesupport (= 5.2.6)
|
||||
rack (~> 2.0, >= 2.0.8)
|
||||
actionpack (6.1.4.1)
|
||||
actionview (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
rack (~> 2.0, >= 2.0.9)
|
||||
rack-test (>= 0.6.3)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
||||
actionview (5.2.6)
|
||||
activesupport (= 5.2.6)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||
actionview (6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
builder (~> 3.1)
|
||||
erubi (~> 1.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
||||
activemodel (5.2.6)
|
||||
activesupport (= 5.2.6)
|
||||
activerecord (5.2.6)
|
||||
activemodel (= 5.2.6)
|
||||
activesupport (= 5.2.6)
|
||||
arel (>= 9.0)
|
||||
activesupport (5.2.6)
|
||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||
activemodel (6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
activerecord (6.1.4.1)
|
||||
activemodel (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
activesupport (6.1.4.1)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 0.7, < 2)
|
||||
minitest (~> 5.1)
|
||||
tzinfo (~> 1.1)
|
||||
i18n (>= 1.6, < 2)
|
||||
minitest (>= 5.1)
|
||||
tzinfo (~> 2.0)
|
||||
zeitwerk (~> 2.3)
|
||||
addressable (2.8.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
afm (0.2.2)
|
||||
arel (9.0.0)
|
||||
arel-helpers (2.12.0)
|
||||
arel-helpers (2.12.1)
|
||||
activerecord (>= 3.1.0, < 7)
|
||||
aws-eventstream (1.1.1)
|
||||
aws-partitions (1.484.0)
|
||||
aws-sdk-core (3.119.0)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.506.0)
|
||||
aws-sdk-core (3.121.1)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.239.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
jmespath (~> 1.0)
|
||||
aws-sdk-ec2 (1.254.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-ec2 (1.265.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-iam (1.59.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-iam (1.61.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-kms (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-kms (1.48.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-s3 (1.98.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-s3 (1.103.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sigv4 (1.2.4)
|
||||
aws-sigv4 (~> 1.4)
|
||||
aws-sigv4 (1.4.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
bcrypt (3.1.16)
|
||||
bcrypt_pbkdf (1.1.0)
|
||||
@@ -156,7 +156,7 @@ GEM
|
||||
concurrent-ruby (1.0.5)
|
||||
cookiejar (0.3.3)
|
||||
crass (1.0.6)
|
||||
daemons (1.4.0)
|
||||
daemons (1.4.1)
|
||||
dnsruby (1.61.7)
|
||||
simpleidn (~> 0.1)
|
||||
domain_name (0.5.20190701)
|
||||
@@ -172,9 +172,9 @@ GEM
|
||||
eventmachine (>= 1.0.0.beta.4)
|
||||
erubi (1.10.0)
|
||||
eventmachine (1.2.7)
|
||||
faker (2.18.0)
|
||||
faker (2.19.0)
|
||||
i18n (>= 1.6, < 2)
|
||||
faraday (1.6.0)
|
||||
faraday (1.8.0)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
faraday-excon (~> 1.1)
|
||||
@@ -196,13 +196,21 @@ GEM
|
||||
faye-websocket (0.11.1)
|
||||
eventmachine (>= 0.12.0)
|
||||
websocket-driver (>= 0.5.1)
|
||||
ffi (1.15.4)
|
||||
filesize (0.2.0)
|
||||
gssapi (1.3.1)
|
||||
ffi (>= 1.0.1)
|
||||
gyoku (1.3.1)
|
||||
builder (>= 2.1.2)
|
||||
hashery (2.1.2)
|
||||
hrr_rb_ssh (0.3.0.pre2)
|
||||
hrr_rb_ssh (0.4.2)
|
||||
hrr_rb_ssh-ed25519 (0.4.2)
|
||||
ed25519 (~> 1.2)
|
||||
hrr_rb_ssh (>= 0.4)
|
||||
http-cookie (1.0.4)
|
||||
domain_name (~> 0.5)
|
||||
http_parser.rb (0.7.0)
|
||||
http_parser.rb (0.8.0)
|
||||
httpclient (2.8.3)
|
||||
i18n (1.8.10)
|
||||
concurrent-ruby (~> 1.0)
|
||||
io-console (0.5.9)
|
||||
@@ -212,37 +220,41 @@ GEM
|
||||
jsobfu (0.4.2)
|
||||
rkelly-remix
|
||||
json (2.5.1)
|
||||
loofah (2.11.0)
|
||||
little-plugger (1.1.4)
|
||||
logging (2.3.0)
|
||||
little-plugger (~> 1.1)
|
||||
multi_json (~> 1.14)
|
||||
loofah (2.12.0)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
metasm (1.0.5)
|
||||
metasploit-concern (3.0.2)
|
||||
activemodel (~> 5.2.2)
|
||||
activesupport (~> 5.2.2)
|
||||
railties (~> 5.2.2)
|
||||
metasploit-credential (4.0.5)
|
||||
metasploit-concern (4.0.3)
|
||||
activemodel (~> 6.0)
|
||||
activesupport (~> 6.0)
|
||||
railties (~> 6.0)
|
||||
metasploit-credential (5.0.4)
|
||||
metasploit-concern
|
||||
metasploit-model
|
||||
metasploit_data_models (>= 3.0.0)
|
||||
metasploit_data_models (>= 5.0.0)
|
||||
net-ssh
|
||||
pg
|
||||
railties
|
||||
rex-socket
|
||||
rubyntlm
|
||||
rubyzip
|
||||
metasploit-model (3.1.4)
|
||||
activemodel (~> 5.2.2)
|
||||
activesupport (~> 5.2.2)
|
||||
railties (~> 5.2.2)
|
||||
metasploit-payloads (2.0.50)
|
||||
metasploit_data_models (4.1.4)
|
||||
activerecord (~> 5.2.2)
|
||||
activesupport (~> 5.2.2)
|
||||
metasploit-model (4.0.3)
|
||||
activemodel (~> 6.0)
|
||||
activesupport (~> 6.0)
|
||||
railties (~> 6.0)
|
||||
metasploit-payloads (2.0.54)
|
||||
metasploit_data_models (5.0.4)
|
||||
activerecord (~> 6.0)
|
||||
activesupport (~> 6.0)
|
||||
arel-helpers
|
||||
metasploit-concern
|
||||
metasploit-model (>= 3.1)
|
||||
pg
|
||||
railties (~> 5.2.2)
|
||||
railties (~> 6.0)
|
||||
recog (~> 2.0)
|
||||
webrick
|
||||
metasploit_payloads-mettle (1.0.10)
|
||||
@@ -251,6 +263,7 @@ GEM
|
||||
minitest (5.14.4)
|
||||
mqtt (0.5.0)
|
||||
msgpack (1.4.2)
|
||||
multi_json (1.15.0)
|
||||
multipart-post (2.1.1)
|
||||
mustermann (1.1.1)
|
||||
ruby2_keywords (~> 0.0.1)
|
||||
@@ -260,9 +273,10 @@ GEM
|
||||
network_interface (0.0.2)
|
||||
nexpose (7.3.0)
|
||||
nio4r (2.5.8)
|
||||
nokogiri (1.12.2)
|
||||
nokogiri (1.12.4)
|
||||
mini_portile2 (~> 2.6.1)
|
||||
racc (~> 1.4)
|
||||
nori (2.6.0)
|
||||
octokit (4.21.0)
|
||||
faraday (>= 0.9)
|
||||
sawyer (~> 0.8.0, >= 0.5.3)
|
||||
@@ -272,7 +286,7 @@ GEM
|
||||
packetfu (1.1.13)
|
||||
pcaprub
|
||||
patch_finder (1.0.2)
|
||||
pcaprub (0.13.0)
|
||||
pcaprub (0.12.4)
|
||||
pdf-reader (2.5.0)
|
||||
Ascii85 (~> 1.0)
|
||||
afm (~> 0.2.1)
|
||||
@@ -281,7 +295,7 @@ GEM
|
||||
ttfunk
|
||||
pg (1.2.3)
|
||||
public_suffix (4.0.6)
|
||||
puma (5.4.0)
|
||||
puma (5.5.0)
|
||||
nio4r (~> 2.0)
|
||||
racc (1.5.2)
|
||||
rack (2.2.3)
|
||||
@@ -292,14 +306,14 @@ GEM
|
||||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.3.0)
|
||||
rails-html-sanitizer (1.4.2)
|
||||
loofah (~> 2.3)
|
||||
railties (5.2.6)
|
||||
actionpack (= 5.2.6)
|
||||
activesupport (= 5.2.6)
|
||||
railties (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
method_source
|
||||
rake (>= 0.8.7)
|
||||
thor (>= 0.19.0, < 2.0)
|
||||
rake (>= 0.13)
|
||||
thor (~> 1.0)
|
||||
rake (13.0.6)
|
||||
rb-readline (0.5.5)
|
||||
recog (2.3.21)
|
||||
@@ -309,18 +323,18 @@ GEM
|
||||
io-console (~> 0.5)
|
||||
rex-arch (0.1.14)
|
||||
rex-text
|
||||
rex-bin_tools (0.1.7)
|
||||
rex-bin_tools (0.1.8)
|
||||
metasm
|
||||
rex-arch
|
||||
rex-core
|
||||
rex-struct2
|
||||
rex-text
|
||||
rex-core (0.1.17)
|
||||
rex-encoder (0.1.5)
|
||||
rex-encoder (0.1.6)
|
||||
metasm
|
||||
rex-arch
|
||||
rex-text
|
||||
rex-exploitation (0.1.27)
|
||||
rex-exploitation (0.1.28)
|
||||
jsobfu
|
||||
metasm
|
||||
rex-arch
|
||||
@@ -334,25 +348,25 @@ GEM
|
||||
rex-arch
|
||||
rex-ole (0.1.7)
|
||||
rex-text
|
||||
rex-powershell (0.1.92)
|
||||
rex-powershell (0.1.93)
|
||||
rex-random_identifier
|
||||
rex-text
|
||||
ruby-rc4
|
||||
rex-random_identifier (0.1.7)
|
||||
rex-random_identifier (0.1.8)
|
||||
rex-text
|
||||
rex-registry (0.1.4)
|
||||
rex-rop_builder (0.1.4)
|
||||
metasm
|
||||
rex-core
|
||||
rex-text
|
||||
rex-socket (0.1.32)
|
||||
rex-socket (0.1.33)
|
||||
rex-core
|
||||
rex-sslscan (0.1.6)
|
||||
rex-core
|
||||
rex-socket
|
||||
rex-text
|
||||
rex-struct2 (0.1.3)
|
||||
rex-text (0.2.35)
|
||||
rex-text (0.2.37)
|
||||
rex-zip (0.1.4)
|
||||
rex-text
|
||||
rexml (3.2.5)
|
||||
@@ -360,7 +374,7 @@ GEM
|
||||
ruby-macho (2.5.1)
|
||||
ruby-rc4 (0.1.5)
|
||||
ruby2_keywords (0.0.5)
|
||||
ruby_smb (2.0.10)
|
||||
ruby_smb (2.0.11)
|
||||
bindata
|
||||
openssl-ccm
|
||||
openssl-cmac
|
||||
@@ -386,16 +400,15 @@ GEM
|
||||
eventmachine (~> 1.0, >= 1.0.4)
|
||||
rack (>= 1, < 3)
|
||||
thor (1.1.0)
|
||||
thread_safe (0.3.6)
|
||||
tilt (2.0.10)
|
||||
ttfunk (1.7.0)
|
||||
tzinfo (1.2.9)
|
||||
thread_safe (~> 0.1)
|
||||
tzinfo-data (1.2021.1)
|
||||
tzinfo (2.0.4)
|
||||
concurrent-ruby (~> 1.0)
|
||||
tzinfo-data (1.2021.2)
|
||||
tzinfo (>= 1.0.0)
|
||||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.7.7)
|
||||
unf_ext (0.0.8)
|
||||
unix-crypt (1.3.0)
|
||||
warden (1.2.9)
|
||||
rack (>= 2.0.9)
|
||||
@@ -404,6 +417,15 @@ GEM
|
||||
websocket-extensions (>= 0.1.0)
|
||||
websocket-extensions (0.1.5)
|
||||
windows_error (0.1.2)
|
||||
winrm (2.3.6)
|
||||
builder (>= 2.1.2)
|
||||
erubi (~> 1.8)
|
||||
gssapi (~> 1.2)
|
||||
gyoku (~> 1.0)
|
||||
httpclient (~> 2.2, >= 2.2.0.2)
|
||||
logging (>= 1.6.1, < 3.0)
|
||||
nori (~> 2.0)
|
||||
rubyntlm (~> 0.6.0, >= 0.6.3)
|
||||
xdr (3.0.2)
|
||||
activemodel (>= 4.2, < 7.0)
|
||||
activesupport (>= 4.2, < 7.0)
|
||||
@@ -418,4 +440,4 @@ DEPENDENCIES
|
||||
metasploit-framework!
|
||||
|
||||
BUNDLED WITH
|
||||
2.2.20
|
||||
2.2.24
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, makeWrapper
|
||||
, ruby
|
||||
, bundlerEnv
|
||||
}:
|
||||
|
||||
let
|
||||
env = bundlerEnv {
|
||||
@@ -8,13 +14,13 @@ let
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "metasploit-framework";
|
||||
version = "6.0.56";
|
||||
version = "6.1.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rapid7";
|
||||
repo = "metasploit-framework";
|
||||
rev = version;
|
||||
sha256 = "sha256-FQxxQ4Lsoktl/Ld+nvBNHCTsZ3PFDQ4GEMrh/CMZrZ0=";
|
||||
sha256 = "sha256-UzWNQnDo/o296GGd+C1ImHccOMAXfE55dJDB9hw9B8s=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
@@ -4,50 +4,50 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0b2xl458f2ygnjbvv0hacc8bk9qxbx64m2g7vw6f9y7k8q85930y";
|
||||
sha256 = "0xgysqnibjsy6kdz10x2xb3kwa6lssiqhh0zggrbgs31ypwhlpia";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
actionview = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "06f8212kplqhap9jpi49dvqlhwkfxxxm9nh8al6qjvl7mfh9qbzg";
|
||||
sha256 = "1yf4ic5kl324rs0raralpwx24s6hvvdzxfhinafylf8f3x7jj23z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
activemodel = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1r28kcnzr8dm6idirndd8pvbmg5c678ijxk845g84ykq1l69czs6";
|
||||
sha256 = "16ixam4lni8b5lgx0whnax0imzh1dh10fy5r9pxs52n83yz5nbq3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
activerecord = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "05qqnichgxml6z3d1dpgjy2fi62dppnqxgg37hr9a35hwhn05fzc";
|
||||
sha256 = "1ccgvlj767ybps3pxlaa4iw77n7wbriw2sr8754id3ngjfap08ja";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
activesupport = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1vybx4cj42hr6m8cdwbrqq2idh98zms8c11kr399xjczhl9ywjbj";
|
||||
sha256 = "19gx1jcq46x9d1pi1w8xq0bgvvfw239y4lalr8asm291gj3q3ds4";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
addressable = {
|
||||
groups = ["default"];
|
||||
@@ -69,25 +69,15 @@
|
||||
};
|
||||
version = "0.2.2";
|
||||
};
|
||||
arel = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1jk7wlmkr61f6g36w9s2sn46nmdg6wn2jfssrhbhirv5x9n95nk0";
|
||||
type = "gem";
|
||||
};
|
||||
version = "9.0.0";
|
||||
};
|
||||
arel-helpers = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "12wgkhajfsm3fgk43zf7xyxrx7q2kc4ggq459p1az6p0b9jscarx";
|
||||
sha256 = "1733g96xxmmgjxambhnr98aj2yq401vgg0afyf46ayzgablij4cb";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.12.0";
|
||||
version = "2.12.1";
|
||||
};
|
||||
Ascii85 = {
|
||||
groups = ["default"];
|
||||
@@ -104,80 +94,80 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3";
|
||||
sha256 = "1pyis1nvnbjxk12a43xvgj2gv0mvp4cnkc1gzw0v1018r61399gz";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.1.1";
|
||||
version = "1.2.0";
|
||||
};
|
||||
aws-partitions = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "012hf08bmzmk2sjynrgzfg0ssa26fkvjm47ixjnmb9byrqmh3mwr";
|
||||
sha256 = "1gfp7hqflr5gd3xfvcrwdmx4zzmhr6511bflwkfvrs5rn6n5dacs";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.484.0";
|
||||
version = "1.506.0";
|
||||
};
|
||||
aws-sdk-core = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1azyn5hj41q1r9wcr0k12xb9j3v1v9ikyxnzjpizhsla44lg3270";
|
||||
sha256 = "0njlpd4w008whz7bd7rrqs3k1m6xbm33hblzwh67pnk1frabv4q6";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.119.0";
|
||||
version = "3.121.1";
|
||||
};
|
||||
aws-sdk-ec2 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1i06ml61fr7qlxfbi98dg4lg40skjj5abfpz60jx7ml5dma13qma";
|
||||
sha256 = "1ymrwsc1caf9rfl5613w1xpckzx7v9l4y20dpmzzq72ih0y6lijn";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.254.0";
|
||||
version = "1.265.0";
|
||||
};
|
||||
aws-sdk-iam = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "16am0mpagfzi5n6gsnd4yyiwy8ni312b3kxswq0jvr3wh8ab0r5h";
|
||||
sha256 = "1m5cc26kkh83f6c05y2a07nfz3dsdvkdf7jfrjkrhlkmdq9hha0m";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.59.0";
|
||||
version = "1.61.0";
|
||||
};
|
||||
aws-sdk-kms = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0h70lz5pblw0sy82j6kv4q4d8h2rb1p6v650kaq8lh6iyjc6il9a";
|
||||
sha256 = "0aa7n3bad4h8sipzb31inc0q2r5k2nviaihmhqdv7mqnpylvcgia";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.46.0";
|
||||
version = "1.48.0";
|
||||
};
|
||||
aws-sdk-s3 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0799n1j8cxcn79k5zhy8vcpbh4q8vyi1fxqqs20sxh7yhyhrybw9";
|
||||
sha256 = "1xsa6nsdflwkm2wzmsr6kiy4am44f9f9459lbkrwxlcl166g05jq";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.98.0";
|
||||
version = "1.103.0";
|
||||
};
|
||||
aws-sigv4 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0cb9hsg0x9v4yk6sxif8968sg646qphmsjaqy9z8p7y3my5bkrf0";
|
||||
sha256 = "1wh1y79v0s4zgby2m79bnifk65hwf5pvk2yyrxzn2jkjjq8f8fqa";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.2.4";
|
||||
version = "1.4.0";
|
||||
};
|
||||
bcrypt = {
|
||||
groups = ["default"];
|
||||
@@ -264,10 +254,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1fki1aipqafqlg8xy25ykk0ql1dciy9kk6lcp5gzgkh9ccmaxzf3";
|
||||
sha256 = "07cszb0zl8mqmwhc8a2yfg36vi6lbgrp4pa5bvmryrpcz9v6viwg";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.4.0";
|
||||
version = "1.4.1";
|
||||
};
|
||||
dnsruby = {
|
||||
groups = ["default"];
|
||||
@@ -344,20 +334,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1hwir9b9zy0asy0vap7zfqv75lbws4a1pmh74lhqd2rndv32vfc5";
|
||||
sha256 = "0hb9wfxyb4ss2vl2mrj1zgdk7dh4yaxghq22gbx62yxj5yb9w4zw";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.18.0";
|
||||
version = "2.19.0";
|
||||
};
|
||||
faraday = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0xmi0yl9sniicvyh2k437dicvvzkryrc1ckr8dic84a98bbl32gy";
|
||||
sha256 = "0afhlqgby2cizcwgh7h2sq5f77q01axjbdl25bsvfwsry9n7gyyi";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.6.0";
|
||||
version = "1.8.0";
|
||||
};
|
||||
faraday-em_http = {
|
||||
groups = ["default"];
|
||||
@@ -449,6 +439,16 @@
|
||||
};
|
||||
version = "0.11.1";
|
||||
};
|
||||
ffi = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0ssxcywmb3flxsjdg13is6k01807zgzasdhj4j48dm7ac59cmksn";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.15.4";
|
||||
};
|
||||
filesize = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
@@ -459,6 +459,26 @@
|
||||
};
|
||||
version = "0.2.0";
|
||||
};
|
||||
gssapi = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1qdfhj12aq8v0y961v4xv96a1y2z80h3xhvzrs9vsfgf884g6765";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.3.1";
|
||||
};
|
||||
gyoku = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1wn0sl14396g5lyvp8sjmcb1hw9rbyi89gxng91r7w4df4jwiidh";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.3.1";
|
||||
};
|
||||
hashery = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
@@ -474,10 +494,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "066dj9sw5p8aa54vqc1bw7a8nfpf5rggrjyxqw2ccyxp10964qkz";
|
||||
sha256 = "1dr6mv98ll0crdn2wm2yy9ywh130iljcsvnnvs6639k19qbfk7qf";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.3.0.pre2";
|
||||
version = "0.4.2";
|
||||
};
|
||||
hrr_rb_ssh-ed25519 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1mfsvjcjmm63fwjf3zqkmg3cf55vx34vmvix0wj0ba4h9dzjq7p8";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.4.2";
|
||||
};
|
||||
http-cookie = {
|
||||
groups = ["default"];
|
||||
@@ -494,10 +524,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1xha614fi6l04wryqjj1xmpalzlmhb6lb9qmlh8mmliycdhvcshp";
|
||||
sha256 = "1gj4fmls0mf52dlr928gaq0c0cb0m3aqa9kaa6l0ikl2zbqk42as";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.7.0";
|
||||
version = "0.8.0";
|
||||
};
|
||||
httpclient = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.8.3";
|
||||
};
|
||||
i18n = {
|
||||
groups = ["default"];
|
||||
@@ -559,15 +599,35 @@
|
||||
};
|
||||
version = "2.5.1";
|
||||
};
|
||||
little-plugger = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.1.4";
|
||||
};
|
||||
logging = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0pkmhcxi8lp74bq5gz9lxrvaiv5w0745kk7s4bw2b1x07qqri0n9";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.3.0";
|
||||
};
|
||||
loofah = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0pwik3x5fa92g6hbv4imz3n46nlkzgj69pkgql22ppmcr36knk6m";
|
||||
sha256 = "1nqcya57x2n58y1dify60i0dpla40n4yir928khp4nj5jrn9mgmw";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.11.0";
|
||||
version = "2.12.0";
|
||||
};
|
||||
metasm = {
|
||||
groups = ["default"];
|
||||
@@ -584,62 +644,62 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0zbcnhji80cyj19jkdp8wpi1msg9xfm0lacpm8ggm8fca56234zv";
|
||||
sha256 = "0lmvwja6v7s12g0fq9mp2d3sgashl526apfjqk5fchqvnfqw4gsb";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.0.2";
|
||||
version = "4.0.3";
|
||||
};
|
||||
metasploit-credential = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0wflb4r5mz2g29bzjpwc004h6vca9kd0z02v27wc378jgg6q0gna";
|
||||
sha256 = "1czh3a3bi54l5i7j9jw4p0arf8i3y8pm08w2f995x02rk4f7x5wf";
|
||||
type = "gem";
|
||||
};
|
||||
version = "4.0.5";
|
||||
version = "5.0.4";
|
||||
};
|
||||
metasploit-framework = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
fetchSubmodules = false;
|
||||
rev = "d818269c546bd165c29652768cd2058fcb56c4fa";
|
||||
sha256 = "17dd34izrqfa2030w3f5fdkyq90w9pq9wzmpzijlp8pch91p230m";
|
||||
rev = "6dddd6d372c75acadc183f6a4efdd44e453559b4";
|
||||
sha256 = "1jq77lfgdhchfiwlwz0pq0w1qxwq90nzi7b1x2yqvzp8f118sdak";
|
||||
type = "git";
|
||||
url = "https://github.com/rapid7/metasploit-framework";
|
||||
};
|
||||
version = "6.0.56";
|
||||
version = "6.1.7";
|
||||
};
|
||||
metasploit-model = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "10ndgv4c30rq211f5lyngfcp87lxzgc9h8a7jx40wih43dj6faxq";
|
||||
sha256 = "13zg6jw8vbspq95s4dpcbjxnjiacy21il7y8l2dq3rd04mickryy";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.1.4";
|
||||
version = "4.0.3";
|
||||
};
|
||||
metasploit-payloads = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1wn6whvisps6fxd5fqbf6rr6znc3miqn8dwk3x8a6aycffphc75j";
|
||||
sha256 = "0javwkzhfngjdhz8rn566gli3a0jd1ns6hajim1nwwwiaici2bdc";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.0.50";
|
||||
version = "2.0.54";
|
||||
};
|
||||
metasploit_data_models = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1gzfvfqs9mf50dcnirc1944a25920s1swjd9g97d1x340651xmmr";
|
||||
sha256 = "12hnkrkgx89dskfr8ywpxk51y0nqnnj37qjz856f45z7ymx1nzip";
|
||||
type = "gem";
|
||||
};
|
||||
version = "4.1.4";
|
||||
version = "5.0.4";
|
||||
};
|
||||
metasploit_payloads-mettle = {
|
||||
groups = ["default"];
|
||||
@@ -701,6 +761,16 @@
|
||||
};
|
||||
version = "1.4.2";
|
||||
};
|
||||
multi_json = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.15.0";
|
||||
};
|
||||
multipart-post = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
@@ -782,14 +852,25 @@
|
||||
version = "2.5.8";
|
||||
};
|
||||
nokogiri = {
|
||||
dependencies = ["mini_portile2" "racc"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1iav4jrklvm8938bxhby0khs36mdndhvwia4hc85zxcb0yl1k8ll";
|
||||
sha256 = "1sad16idsxayhaaswc3bksii1ydiqyzikl7y0ng35cn7w4g1dv3z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.12.2";
|
||||
version = "1.12.4";
|
||||
};
|
||||
nori = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.6.0";
|
||||
};
|
||||
octokit = {
|
||||
groups = ["default"];
|
||||
@@ -856,10 +937,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0h4iarqdych6v4jm5s0ywkc01qspadz8sf6qn7pkqmszq4iqv67q";
|
||||
sha256 = "0pl4lqy7308185pfv0197n8b4v20fhd0zb3wlpz284rk8ssclkvz";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.13.0";
|
||||
version = "0.12.4";
|
||||
};
|
||||
pdf-reader = {
|
||||
groups = ["default"];
|
||||
@@ -896,10 +977,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0bz9y1hxfyv73yb26nvs2kcw08gxi7nxkfc94j82hgx2sifcnv3x";
|
||||
sha256 = "0ahk9a2a05985m0037gqlpha5vdkvmwhyk8v1shkbnwkkm30k0mq";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.4.0";
|
||||
version = "5.5.0";
|
||||
};
|
||||
racc = {
|
||||
groups = ["default"];
|
||||
@@ -956,20 +1037,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1icpqmxbppl4ynzmn6dx7wdil5hhq6fz707m9ya6d86c7ys8sd4f";
|
||||
sha256 = "09qrfi3pgllxb08r024lln9k0qzxs57v0slsj8616xf9c0cwnwbk";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.3.0";
|
||||
version = "1.4.2";
|
||||
};
|
||||
railties = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0rs97fxv13hgpbmyhk8ag8qzgkh25css0797h90k9w1vg9djl84k";
|
||||
sha256 = "1kwpm068cqys34p2g0j3l1g0cd5f3kxnsay5v7lmbd0sgarac0vy";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.2.6";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
rake = {
|
||||
groups = ["default"];
|
||||
@@ -1036,10 +1117,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "16w219ashxrgrgb5via9k45h7whrib77rmwy0f7akqf409pzjdp7";
|
||||
sha256 = "0p5r2h0zaixdjhp9k0jq0vgsvbhifx2jh3p9pr2w80qda1hkgqgj";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.7";
|
||||
version = "0.1.8";
|
||||
};
|
||||
rex-core = {
|
||||
groups = ["default"];
|
||||
@@ -1056,20 +1137,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0lnrlii8d3r35927wp42bpdzh37dx3jqgdxk6lk5d6xvz6h14kp7";
|
||||
sha256 = "15c2yqrvn3hxf6gn4cqrz2l65rdh68gbk2a7lwdq43nchfjnsnvg";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.5";
|
||||
version = "0.1.6";
|
||||
};
|
||||
rex-exploitation = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1b10rcrw52nj2aswsn0kwv0s601rbn077k0r6n5lblip6fbrqz9i";
|
||||
sha256 = "08v5nam0xp6f8qi3nyqzh97sz07hy59w82y213jz919mrgpb70vc";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.27";
|
||||
version = "0.1.28";
|
||||
};
|
||||
rex-java = {
|
||||
groups = ["default"];
|
||||
@@ -1116,20 +1197,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "02gpfw43r0pkzp7jj3n0lwn4lgbgkgadrn4p33x7b0xh1dalzgj1";
|
||||
sha256 = "1qpf4na2c57bypyxna7pqll8ym643cydh347v5zvlxknripjhjyz";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.92";
|
||||
version = "0.1.93";
|
||||
};
|
||||
rex-random_identifier = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1zaqndyy04c4fn021ibh05xim3wr7l2i71713amz6pvhgs2939r3";
|
||||
sha256 = "1zy8zkkv530iqzsc7apx4hq9ij30h5628slkmc80aqzva9z0fm0d";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.7";
|
||||
version = "0.1.8";
|
||||
};
|
||||
rex-registry = {
|
||||
groups = ["default"];
|
||||
@@ -1156,10 +1237,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "03cvgmg0wswqcr70mhc6802vvgcg62f7vkbj0i7sskgy3cl9lryx";
|
||||
sha256 = "1kl221lsf1dk62vsf6fsgcx54crav0wgqsb9rwjxl7gfd7kmyz04";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.1.32";
|
||||
version = "0.1.33";
|
||||
};
|
||||
rex-sslscan = {
|
||||
groups = ["default"];
|
||||
@@ -1186,10 +1267,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0idgw5z813h5dp82n07g5ldpyfnk7mhvnzl87d9fpy6invixnnbq";
|
||||
sha256 = "0xzym86blrah88qyi1m9f7pc53m6ssmr4d1znc8izbh90z38y51y";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.2.35";
|
||||
version = "0.2.37";
|
||||
};
|
||||
rex-zip = {
|
||||
groups = ["default"];
|
||||
@@ -1256,10 +1337,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1h8p6ksfr9xhpj9p38b4mjj76zm4d0dg06hhp00ii9hh7vy6mryd";
|
||||
sha256 = "06szny4dcbwlcq2fki1fbrghsbk2dgwy3zyl9y8zjkf334yjb57k";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.0.10";
|
||||
version = "2.0.11";
|
||||
};
|
||||
rubyntlm = {
|
||||
groups = ["default"];
|
||||
@@ -1361,16 +1442,6 @@
|
||||
};
|
||||
version = "1.1.0";
|
||||
};
|
||||
thread_safe = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.3.6";
|
||||
};
|
||||
tilt = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
@@ -1396,20 +1467,20 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0zwqqh6138s8b321fwvfbywxy00lw1azw4ql3zr0xh1aqxf8cnvj";
|
||||
sha256 = "10qp5x7f9hvlc0psv9gsfbxg4a7s0485wsbq1kljkxq94in91l4z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.2.9";
|
||||
version = "2.0.4";
|
||||
};
|
||||
tzinfo-data = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0ik16lnsyr2739jzwl4r5sz8q639lqw8f9s68iszwhm2pcq8p4w2";
|
||||
sha256 = "1a0d3smxpdn6i5vjc616wnva8c9nvh8mvsjyvwcxlsj1qsih2l21";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.2021.1";
|
||||
version = "1.2021.2";
|
||||
};
|
||||
unf = {
|
||||
groups = ["default"];
|
||||
@@ -1426,10 +1497,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0wc47r23h063l8ysws8sy24gzh74mks81cak3lkzlrw4qkqb3sg4";
|
||||
sha256 = "0jmbimpnpjdzz8hlrppgl9spm99qh3qzbx0b81k3gkgwba8nk3yd";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.0.7.7";
|
||||
version = "0.0.8";
|
||||
};
|
||||
unix-crypt = {
|
||||
groups = ["default"];
|
||||
@@ -1491,6 +1562,16 @@
|
||||
};
|
||||
version = "0.1.2";
|
||||
};
|
||||
winrm = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0nxf6a47d1xf1nvi7rbfbzjyyjhz0iakrnrsr2hj6y24a381sd8i";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.3.6";
|
||||
};
|
||||
xdr = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (6.1.4)
|
||||
activesupport (6.1.4.1)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
minitest (>= 5.1)
|
||||
tzinfo (~> 2.0)
|
||||
zeitwerk (~> 2.3)
|
||||
addressable (2.7.0)
|
||||
addressable (2.8.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
cms_scanner (0.13.5)
|
||||
cms_scanner (0.13.6)
|
||||
ethon (~> 0.14.0)
|
||||
get_process_mem (~> 0.2.5)
|
||||
nokogiri (~> 1.11.4)
|
||||
opt_parse_validator (~> 1.9.4)
|
||||
nokogiri (>= 1.11.4, < 1.13.0)
|
||||
opt_parse_validator (~> 1.9.5)
|
||||
public_suffix (~> 4.0.3)
|
||||
ruby-progressbar (>= 1.10, < 1.12)
|
||||
sys-proctable (~> 1.2.2)
|
||||
@@ -23,19 +23,17 @@ GEM
|
||||
concurrent-ruby (1.1.9)
|
||||
ethon (0.14.0)
|
||||
ffi (>= 1.15.0)
|
||||
ffi (1.15.3)
|
||||
ffi (1.15.4)
|
||||
get_process_mem (0.2.7)
|
||||
ffi (~> 1.0)
|
||||
i18n (1.8.10)
|
||||
concurrent-ruby (~> 1.0)
|
||||
mini_portile2 (2.5.3)
|
||||
minitest (5.14.4)
|
||||
nokogiri (1.11.7)
|
||||
mini_portile2 (~> 2.5.0)
|
||||
nokogiri (1.12.4-x86_64-linux)
|
||||
racc (~> 1.4)
|
||||
opt_parse_validator (1.9.4)
|
||||
opt_parse_validator (1.9.5)
|
||||
activesupport (>= 5.2, < 6.2.0)
|
||||
addressable (>= 2.5, < 2.8)
|
||||
addressable (>= 2.5, < 2.9)
|
||||
public_suffix (4.0.6)
|
||||
racc (1.5.2)
|
||||
ruby-progressbar (1.11.0)
|
||||
@@ -46,18 +44,18 @@ GEM
|
||||
tzinfo (2.0.4)
|
||||
concurrent-ruby (~> 1.0)
|
||||
webrick (1.7.0)
|
||||
wpscan (3.8.18)
|
||||
cms_scanner (~> 0.13.5)
|
||||
wpscan (3.8.19)
|
||||
cms_scanner (~> 0.13.6)
|
||||
xmlrpc (0.3.2)
|
||||
webrick
|
||||
yajl-ruby (1.4.1)
|
||||
zeitwerk (2.4.2)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
wpscan
|
||||
|
||||
BUNDLED WITH
|
||||
2.1.4
|
||||
2.2.24
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
{ bundlerApp, lib, makeWrapper, curl }:
|
||||
{ lib
|
||||
, bundlerApp
|
||||
, makeWrapper
|
||||
, curl
|
||||
}:
|
||||
|
||||
bundlerApp {
|
||||
pname = "wpscan";
|
||||
gemdir = ./.;
|
||||
exes = [ "wpscan" ];
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
wrapProgram "$out/bin/wpscan" \
|
||||
--prefix PATH : ${lib.makeBinPath [ curl ]}
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0kqgywy4cj3h5142dh7pl0xx5nybp25jn0ykk0znziivzks68xdk";
|
||||
sha256 = "19gx1jcq46x9d1pi1w8xq0bgvvfw239y4lalr8asm291gj3q3ds4";
|
||||
type = "gem";
|
||||
};
|
||||
version = "6.1.4";
|
||||
version = "6.1.4.1";
|
||||
};
|
||||
addressable = {
|
||||
dependencies = ["public_suffix"];
|
||||
@@ -16,10 +16,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1fvchp2rhp2rmigx7qglf69xvjqvzq7x0g49naliw29r2bz656sy";
|
||||
sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.7.0";
|
||||
version = "2.8.0";
|
||||
};
|
||||
cms_scanner = {
|
||||
dependencies = ["ethon" "get_process_mem" "nokogiri" "opt_parse_validator" "public_suffix" "ruby-progressbar" "sys-proctable" "typhoeus" "xmlrpc" "yajl-ruby"];
|
||||
@@ -27,10 +27,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "15qh28drxkyv294l1qcpsghfa875p71q0vkmmv5l6fbmpapmllrk";
|
||||
sha256 = "1kpp3598xs79irb9g2wkcxjwlszj37sb7lp3xmvf6s5s40p0ccwf";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.13.5";
|
||||
version = "0.13.6";
|
||||
};
|
||||
concurrent-ruby = {
|
||||
groups = ["default"];
|
||||
@@ -58,10 +58,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1wgvaclp4h9y8zkrgz8p2hqkrgr4j7kz0366mik0970w532cbmcq";
|
||||
sha256 = "0ssxcywmb3flxsjdg13is6k01807zgzasdhj4j48dm7ac59cmksn";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.15.3";
|
||||
version = "1.15.4";
|
||||
};
|
||||
get_process_mem = {
|
||||
dependencies = ["ffi"];
|
||||
@@ -85,16 +85,6 @@
|
||||
};
|
||||
version = "1.8.10";
|
||||
};
|
||||
mini_portile2 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1ad0mli9rc0f17zw4ibp24dbj1y39zkykijsjmnzl4gwpg5s0j6k";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.5.3";
|
||||
};
|
||||
minitest = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
@@ -105,16 +95,26 @@
|
||||
};
|
||||
version = "5.14.4";
|
||||
};
|
||||
mini_portile2 = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1lvxm91hi0pabnkkg47wh1siv56s6slm2mdq1idfm86dyfidfprq";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.6.1";
|
||||
};
|
||||
nokogiri = {
|
||||
dependencies = ["mini_portile2" "racc"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1vrn31385ix5k9b0yalnlzv360isv6dincbcvi8psllnwz4sjxj9";
|
||||
sha256 = "1sad16idsxayhaaswc3bksii1ydiqyzikl7y0ng35cn7w4g1dv3z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.11.7";
|
||||
version = "1.12.4";
|
||||
};
|
||||
opt_parse_validator = {
|
||||
dependencies = ["activesupport" "addressable"];
|
||||
@@ -122,10 +122,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1n297vrxq7r1fsh0x8yf1nhgdawmcl0sq04l468gwrd4y754rjyx";
|
||||
sha256 = "1jzmn3h9sr7bhjj1fdfvh4yzvqx7d3vsbwbqrf718dh427ifqs9c";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.9.4";
|
||||
version = "1.9.5";
|
||||
};
|
||||
public_suffix = {
|
||||
groups = ["default"];
|
||||
@@ -206,10 +206,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "01ig3fbxxm0gnvqkzmsc4zcipijprrw5xs84rnwp50w0crww842c";
|
||||
sha256 = "0gv5ym8sxr9901z55d0dakc7af954rp2asnd1a68arjvfyj96sq3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.8.18";
|
||||
version = "3.8.19";
|
||||
};
|
||||
xmlrpc = {
|
||||
dependencies = ["webrick"];
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stress-ng";
|
||||
version = "0.13.01";
|
||||
version = "0.13.03";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-839znk0VNDNgpHmAtn3Isqa/PU0+9yfVXi3Zmgtk+eo=";
|
||||
sha256 = "sha256-PmDWBeN42GqFkaMNblV77XCdgqWxlhY3gALNj/ADeos=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
||||
@@ -10,16 +10,16 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "hck";
|
||||
version = "0.6.5";
|
||||
version = "0.6.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sstadick";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+gBxZCBJmwe92DhfVorkfXsjpjkgm7JO/p/SHta9ly8=";
|
||||
sha256 = "sha256-DUFJZEtJM5Sv41zJvSZ8KsNWFzlictM2T1wS7VxPL04=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-lAKMaUrXjplh5YhMZuLhTNDQBzDPHCfFrELHicwgi6U=";
|
||||
cargoSha256 = "sha256-kubQL+p7J2koPDOje5wMxKDeCY4yi0kupfHsJCKYf44=";
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
|
||||
@@ -50,6 +50,7 @@ mapAliases ({
|
||||
alsaTools = alsa-tools; # added 2021-06-10
|
||||
alsaUtils = alsa-utils; # added 2021-06-10
|
||||
amazon-glacier-cmd-interface = throw "amazon-glacier-cmd-interface has been removed due to it being unmaintained."; # added 2020-10-30
|
||||
aminal = throw "aminal was renamed to darktile."; # added 2021-09-28
|
||||
ammonite-repl = ammonite; # added 2017-05-02
|
||||
amsn = throw "amsn has been removed due to being unmaintained."; # added 2020-12-09
|
||||
antimicro = throw "antimicro has been removed as it was broken, see antimicroX instead."; # added 2020-08-06
|
||||
|
||||
@@ -971,10 +971,6 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL;
|
||||
};
|
||||
|
||||
aminal = callPackage ../applications/terminal-emulators/aminal {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa Kernel;
|
||||
};
|
||||
|
||||
archi = callPackage ../tools/misc/archi { };
|
||||
|
||||
contour = libsForQt5.callPackage ../applications/terminal-emulators/contour { };
|
||||
@@ -4205,6 +4201,8 @@ with pkgs;
|
||||
|
||||
cwebbin = callPackage ../development/tools/misc/cwebbin { };
|
||||
|
||||
cve-bin-tool = python3Packages.callPackage ../tools/security/cve-bin-tool { };
|
||||
|
||||
cvs-fast-export = callPackage ../applications/version-management/cvs-fast-export { };
|
||||
|
||||
dadadodo = callPackage ../tools/text/dadadodo { };
|
||||
@@ -32336,6 +32334,8 @@ with pkgs;
|
||||
|
||||
vice = callPackage ../misc/emulators/vice { };
|
||||
|
||||
viddy = callPackage ../tools/misc/viddy { };
|
||||
|
||||
ViennaRNA = callPackage ../applications/science/molecular-dynamics/viennarna { };
|
||||
|
||||
viewnior = callPackage ../applications/graphics/viewnior { };
|
||||
|
||||
@@ -1782,8 +1782,6 @@ in {
|
||||
|
||||
curve25519-donna = callPackage ../development/python-modules/curve25519-donna { };
|
||||
|
||||
cve-bin-tool = callPackage ../development/python-modules/cve-bin-tool { };
|
||||
|
||||
cvxopt = callPackage ../development/python-modules/cvxopt { };
|
||||
|
||||
cvxpy = callPackage ../development/python-modules/cvxpy { };
|
||||
|
||||
@@ -1886,10 +1886,10 @@
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1q71y7pdihz26m3n2fnm2hd7wllmnxgxk6vcbbh27rqa14q5x5yi";
|
||||
sha256 = "1sad16idsxayhaaswc3bksii1ydiqyzikl7y0ng35cn7w4g1dv3z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.12.3";
|
||||
version = "1.12.4";
|
||||
};
|
||||
octokit = {
|
||||
dependencies = ["faraday" "sawyer"];
|
||||
|
||||
Reference in New Issue
Block a user