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