lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
32b2f804 16d8dec6

+58 -50
+2 -2
pkgs/data/icons/papirus-icon-theme/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "papirus-icon-theme"; 5 - version = "20210601"; 5 + version = "20210701"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "PapirusDevelopmentTeam"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-AX51udzIv/DO0n8ba2Gm6Leikep6x4tgUuRUdPX/Cds="; 11 + sha256 = "sha256-eqSZBcypwnNX92SGG17MWlnsVzk0jOTdjtEaWMbQsMs="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ gtk3 ];
+3
pkgs/development/compilers/llvm/12/clang/default.nix
··· 17 17 mv clang-* clang 18 18 sourceRoot=$PWD/clang 19 19 unpackFile ${clang-tools-extra_src} 20 + mv clang-tools-extra-* $sourceRoot/tools/extra 21 + substituteInPlace $sourceRoot/tools/extra/clangd/quality/CompletionModel.cmake \ 22 + --replace ' ''${CMAKE_SOURCE_DIR}/../clang-tools-extra' ' ''${CMAKE_SOURCE_DIR}/tools/extra' 20 23 ''; 21 24 22 25 nativeBuildInputs = [ cmake python3 ]
+2 -2
pkgs/development/tools/analysis/tfsec/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "tfsec"; 5 - version = "0.39.16"; 5 + version = "0.40.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tfsec"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-5We3Nk/AU5dj37vG4pvqzvNztK01PAPadQV/CgHZe8w="; 11 + sha256 = "1cdxpmlfh76k491ldzv2flxs2wikrryr63h0zw8f6yvhkpbqf4cc"; 12 12 }; 13 13 14 14 goPackagePath = "github.com/tfsec/tfsec";
+2 -2
pkgs/development/tools/continuous-integration/jenkins/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "jenkins"; 6 - version = "2.289.1"; 6 + version = "2.289.2"; 7 7 8 8 src = fetchurl { 9 9 url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war"; 10 - sha256 = "1wkm1y2bj245b9i51vhns9qfxc6xm44hg60vhgmswndcy5pwrybh"; 10 + sha256 = "0413ymfrb00ifxl8ww8nn8y4k07jhgsaxaw2h0qnfh9s6yxifpbf"; 11 11 }; 12 12 13 13 buildCommand = ''
+2 -2
pkgs/servers/monitoring/grafana/plugins/doitintl-bigquery-datasource/default.nix
··· 2 2 3 3 grafanaPlugin rec { 4 4 pname = "doitintl-bigquery-datasource"; 5 - version = "2.0.1"; 6 - zipHash = "sha256-tZyvER/rxL+mo2tgxFvwSIAmjFm/AnZ0RgvmD1YAE2U="; 5 + version = "2.0.2"; 6 + zipHash = "sha256-GE6DNuQ5WtS/2VmXbQBeRdVKDbLlLirWXW51i0RF6Cc="; 7 7 meta = with lib; { 8 8 description = "BigQuery DataSource for Grafana"; 9 9 license = licenses.mit;
+2 -2
pkgs/servers/monitoring/grafana/plugins/grafana-polystat-panel/default.nix
··· 2 2 3 3 grafanaPlugin rec { 4 4 pname = "grafana-polystat-panel"; 5 - version = "1.2.3"; 6 - zipHash = "sha256-Eu3dTPfJxAWwqqGT6l4El4MqviBbzERarU30OXU+eEM="; 5 + version = "1.2.5"; 6 + zipHash = "sha256-U9vNfK4ofNzwL7MVe43tGY85gI56Jt1eb7TrCkeNrOQ="; 7 7 meta = with lib; { 8 8 description = "Hexagonal multi-stat panel for Grafana"; 9 9 license = licenses.asl20;
+38 -33
pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, which, ninja, pkg-config, protobuf 2 2 , ibus, gtk2, zinnia, qt5, libxcb, tegaki-zinnia-japanese, python3Packages }: 3 3 4 - let 5 - japanese_usage_dictionary = fetchFromGitHub { 6 - owner = "hiroyuki-komatsu"; 7 - repo = "japanese-usage-dictionary"; 8 - rev = "e5b3425575734c323e1d947009dd74709437b684"; 9 - sha256 = "0pyrpz9c8nxccwpgyr36w314mi8h132cis8ijvlqmmhqxwsi30hm"; 10 - }; 11 - in stdenv.mkDerivation rec { 12 - name = "ibus-mozc-${version}"; 13 - version = "2.23.4206.102"; 4 + stdenv.mkDerivation rec { 5 + pname = "ibus-mozc"; 6 + version = "2.26.4423.100"; 14 7 15 - meta = with lib; { 16 - isIbusEngine = true; 17 - description = "Japanese input method from Google"; 18 - homepage = "https://github.com/google/mozc"; 19 - license = licenses.free; 20 - platforms = platforms.linux; 21 - maintainers = with maintainers; [ gebner ericsagnes ]; 8 + src = fetchFromGitHub { 9 + owner = "google"; 10 + repo = "mozc"; 11 + rev = "7654223979067e3c5ae52ea238d43880c5508f85"; 12 + sha256 = "aZVuhj4I9ZCsVR9dOplOd9zinYMgYw5SF5wG3IxBTO0="; 13 + fetchSubmodules = true; 22 14 }; 23 15 24 - nativeBuildInputs = [ which ninja python3Packages.python python3Packages.six 25 - python3Packages.gyp pkg-config qt5.wrapQtAppsHook ]; 16 + nativeBuildInputs = [ 17 + which ninja python3Packages.python python3Packages.six 18 + python3Packages.gyp pkg-config qt5.wrapQtAppsHook 19 + ]; 20 + 26 21 buildInputs = [ protobuf ibus gtk2 zinnia qt5.qtbase libxcb ]; 27 22 28 - src = fetchFromGitHub { 29 - owner = "google"; 30 - repo = "mozc"; 31 - rev = "91cc1e19ef34aeb12888b697fefa52907f1a834d"; 32 - sha256 = "1fyy9g1pnaq6s5nkf56aqmp5mgyibbmp1ylc64fqc6g1plg90zk2"; 33 - fetchSubmodules = true; 34 - }; 35 - 36 - postUnpack = '' 37 - rm -rf $sourceRoot/src/third_party/japanese_usage_dictionary/ 38 - ln -s ${japanese_usage_dictionary} $sourceRoot/src/third_party/japanese_usage_dictionary 39 - '' + lib.optionalString stdenv.isLinux '' 23 + postUnpack = lib.optionalString stdenv.isLinux '' 40 24 sed -i 's/-lc++/-lstdc++/g' $sourceRoot/src/gyp/common.gypi 41 25 ''; 42 26 43 27 configurePhase = '' 28 + runHook preConfigure 29 + 44 30 export GYP_DEFINES="document_dir=$out/share/doc/mozc use_libzinnia=1 use_libprotobuf=1 ibus_mozc_path=$out/lib/ibus-mozc/ibus-engine-mozc zinnia_model_file=${tegaki-zinnia-japanese}/share/tegaki/models/zinnia/handwriting-ja.model" 45 31 cd src && python build_mozc.py gyp --gypdir=${python3Packages.gyp}/bin --server_dir=$out/lib/mozc 32 + 33 + runHook postConfigure 46 34 ''; 47 35 48 36 buildPhase = '' 37 + runHook preBuild 38 + 49 39 PYTHONPATH="$PWD:$PYTHONPATH" python build_mozc.py build -c Release \ 50 40 unix/ibus/ibus.gyp:ibus_mozc \ 51 41 unix/emacs/emacs.gyp:mozc_emacs_helper \ 52 42 server/server.gyp:mozc_server \ 53 43 gui/gui.gyp:mozc_tool \ 54 44 renderer/renderer.gyp:mozc_renderer 45 + 46 + runHook postBuild 55 47 ''; 56 48 57 49 installPhase = '' 50 + runHook preInstall 51 + 58 52 install -d $out/share/licenses/mozc 59 53 head -n 29 server/mozc_server.cc > $out/share/licenses/mozc/LICENSE 60 - install -m 644 data/installer/*.html $out/share/licenses/mozc/ 54 + install -m 644 data/installer/*.html $out/share/licenses/mozc/ 61 55 62 56 install -D -m 755 out_linux/Release/mozc_server $out/lib/mozc/mozc_server 63 57 install -m 755 out_linux/Release/mozc_tool $out/lib/mozc/mozc_tool 64 58 wrapQtApp $out/lib/mozc/mozc_tool 65 59 66 60 install -d $out/share/doc/mozc 67 - install -m 644 data/installer/*.html $out/share/doc/mozc/ 61 + install -m 644 data/installer/*.html $out/share/doc/mozc/ 68 62 69 63 install -D -m 755 out_linux/Release/ibus_mozc $out/lib/ibus-mozc/ibus-engine-mozc 70 64 install -D -m 644 out_linux/Release/gen/unix/ibus/mozc.xml $out/share/ibus/component/mozc.xml ··· 79 73 install -m 644 data/images/unix/ui-alpha_half.png $out/share/ibus-mozc/alpha_half.png 80 74 install -m 644 data/images/unix/ui-alpha_full.png $out/share/ibus-mozc/alpha_full.png 81 75 install -D -m 755 out_linux/Release/mozc_renderer $out/lib/mozc/mozc_renderer 76 + 77 + runHook postInstall 82 78 ''; 79 + 80 + meta = with lib; { 81 + isIbusEngine = true; 82 + description = "Japanese input method from Google"; 83 + homepage = "https://github.com/google/mozc"; 84 + license = licenses.free; 85 + platforms = platforms.linux; 86 + maintainers = with maintainers; [ gebner ericsagnes ]; 87 + }; 83 88 }
+2 -2
pkgs/tools/networking/amass/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "amass"; 8 - version = "3.11.2"; 8 + version = "3.13.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "OWASP"; ··· 14 14 sha256 = "sha256-3J4yT7GTuVzkxMb+fCD3S9u0XBHa4Y0W+BnkDJ4PhWI="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-8GzzihKhrf71lLKgb2i3NnmSctvKb95V5pOGoWAgclk="; 17 + vendorSha256 = "0nbj41ha31lkwraxwvyavdr94y9nnxl6z85jjkszxbd12a5g6v7h"; 18 18 19 19 outputs = [ "out" "wordlists" ]; 20 20
+3 -3
pkgs/tools/security/age/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "age"; 5 - version = "1.0.0-rc.1"; 6 - vendorSha256 = "1qx6pkhq00y0lsi6f82g8hxxh65zk1c0ls91ap6hdlj7ch79bhl2"; 5 + version = "1.0.0-rc.3"; 6 + vendorSha256 = "sha256-sXUbfxhPmJXO+KgV/dmWmsyV49Pb6CoJLbt50yVgEvI="; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "FiloSottile"; 10 10 repo = "age"; 11 11 rev = "v${version}"; 12 - sha256 = "1n25wip4qnd3v9ial1apc2ybx10b9z6lwz7flyss6kvj3x5g9jd1"; 12 + sha256 = "sha256-YXdCTK9/eMvcHWg7gQQiPlLWYx2OjbOJDDNdSYO09HU="; 13 13 }; 14 14 15 15 meta = with lib; {
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2021-07-02"; 5 + version = "2021-07-03"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-p6D0FM52SF4fnWXa/zpewr+lNWC4hZWc0yAQYnioUdQ="; 11 + sha256 = "sha256-q+p4OnDs7T4bfCgKg4KBRwNyutULSItFATBE/ECG8N4="; 12 12 }; 13 13 14 14 installPhase = ''