···5566buildGoModule rec {
77 pname = "trivy";
88- version = "0.35.0";
88+ version = "0.36.0";
991010 src = fetchFromGitHub {
1111 owner = "aquasecurity";
1212 repo = pname;
1313 rev = "v${version}";
1414- sha256 = "sha256-0lEKXCQ7os6hyqEuugNI8ogZiqJZq58VGafEKrcmV3I=";
1414+ sha256 = "sha256-5yAfF/iRAbCJFXEcdhg7vqiMTpw7NNixFaQU93uSv6I=";
1515 };
1616 # hash missmatch on across linux and darwin
1717 proxyVendor = true;
1818- vendorSha256 = "sha256-cl6EShtXhe72fbKIMbma9pEGLPBVSNZMiHWi94BbkMM=";
1818+ vendorSha256 = "sha256-9oG6xJ0D6SulN6ErC/F5Ycmly4wp+GCF8lftu+xoagE=";
19192020 excludedPackages = "misc";
2121
-20
pkgs/tools/networking/cadaver/configure.patch
···11---- a/configure.orig
22-+++ b/configure
33-@@ -9595,7 +9595,7 @@ fi
44- $as_echo "$ne_cv_lib_neon" >&6; }
55- if test "$ne_cv_lib_neon" = "yes"; then
66- ne_cv_lib_neonver=no
77-- for v in 27 28 29; do
88-+ for v in 27 28 29 30 31; do
99- case $ne_libver in
1010- 0.$v.*) ne_cv_lib_neonver=yes ;;
1111- esac
1212-@@ -10328,7 +10328,7 @@ fi
1313- $as_echo "$ne_cv_lib_neon" >&6; }
1414- if test "$ne_cv_lib_neon" = "yes"; then
1515- ne_cv_lib_neonver=no
1616-- for v in 27 28 29; do
1717-+ for v in 27 28 29 30 31; do
1818- case $ne_libver in
1919- 0.$v.*) ne_cv_lib_neonver=yes ;;
2020- esac
···8484 buildPackages.binutils = nativePlatforms;
8585 mpg123 = nativePlatforms;
8686 };
8787+8888+ # Enabled-but-unsupported platforms for which nix is known to build.
8989+ # We provide Hydra-built `nixStatic` for these platforms. This
9090+ # allows users to bootstrap their own system without either (a)
9191+ # trusting binaries from a non-Hydra source or (b) having to fight
9292+ # with their host distribution's versions of nix's numerous
9393+ # build dependencies.
9494+ nixCrossStatic = {
9595+ nixStatic = nativePlatforms;
9696+ };
9797+8798in
889989100{
···226237 # attribute, so there is no way to detect this -- we must add it
227238 # as a special case.
228239 (builtins.removeAttrs tools ["bootstrapTools"]);
240240+241241+ # Cross-built nixStatic for platforms for enabled-but-unsupported platforms
242242+ mips64el-nixCrossStatic = mapTestOnCross lib.systems.examples.mips64el-linux-gnuabi64 nixCrossStatic;
243243+ powerpc64le-nixCrossStatic = mapTestOnCross lib.systems.examples.powernv nixCrossStatic;
229244}