Merge pull request #302596 from 06kellyjac/semgrep_update

semgrep: 1.66.2 -> 1.67.0

authored by Mario Rodas and committed by GitHub 40e86901 ef62fadd

+12 -7
+11 -7
pkgs/tools/security/semgrep/common.nix
··· 1 1 { lib }: 2 2 3 3 rec { 4 - version = "1.66.2"; 4 + version = "1.67.0"; 5 5 6 - srcHash = "sha256-xonZzZsAkAPMVINGEA10CvQ1diYgHBowNsR2pk4tYr8="; 6 + srcHash = "sha256-B+2DgwU+yhU337yZh518Z2Tq0Wbun8WEXX9IpC0Ut/c="; 7 7 8 8 # submodule dependencies 9 9 # these are fetched so we: ··· 13 13 "cli/src/semgrep/semgrep_interfaces" = { 14 14 owner = "semgrep"; 15 15 repo = "semgrep-interfaces"; 16 - rev = "215a54782174de84f97188632b4a37e35ba0f827"; 17 - hash = "sha256-Q8E5LkC/NV0wvt9ZwhkoPGjPlDavVHHMnX0sVNK3dAM="; 16 + rev = "3ee41bc436308a7c12b66247cfcb60df0aeff8ea"; 17 + hash = "sha256-rlhArVSNJr4AgZw/TOOMPgpBOfHWsAm77YgrRdCjIzI="; 18 18 }; 19 19 }; 20 20 ··· 25 25 core = { 26 26 x86_64-linux = { 27 27 platform = "any"; 28 - hash = "sha256-f/RcuJyd8y2bMclMxZ1BdNTVixhjLz0UxSKGZm+H8yI="; 28 + hash = "sha256-iv02L/dvcfI/9XubC+EOeqMaVwdXh0sqLv02j1fn1aM="; 29 + }; 30 + aarch64-linux = { 31 + platform = "musllinux_1_0_aarch64.manylinux2014_aarch64"; 32 + hash = "sha256-wFuEcgCuciAOR8MNCxHW8TCoji97g7dXUf06M0T9MWg="; 29 33 }; 30 34 x86_64-darwin = { 31 35 platform = "macosx_10_14_x86_64"; 32 - hash = "sha256-4H9PT41lPydMFl51O2CgeMQiTE66fZ8RP26CVT7Y7Ok="; 36 + hash = "sha256-wMkOZFvR6HBBTvu8mXRDF2s0Mqp/LkhVH2I+2sIIa94="; 33 37 }; 34 38 aarch64-darwin = { 35 39 platform = "macosx_11_0_arm64"; 36 - hash = "sha256-WxQ0ohojzhWmPo208xN98F5GwbNzQuxCjSwP7h3rBGA="; 40 + hash = "sha256-AKNc9SxXbKb6WdFlE6aqzFDdtMGzl+3LhXTbNvFSHYQ="; 37 41 }; 38 42 }; 39 43
+1
pkgs/tools/security/semgrep/update.sh
··· 95 95 } 96 96 97 97 update_core_platform "x86_64-linux" 98 + update_core_platform "aarch64-linux" 98 99 update_core_platform "x86_64-darwin" 99 100 update_core_platform "aarch64-darwin" 100 101