about summary refs log tree commit diff
path: root/pkgs/tools/security/semgrep
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2022-07-27 09:45:53 +0100
committer06kellyjac <dev@j-k.io>2022-07-27 09:45:53 +0100
commit0bf6e21b38fbdefe1e7961afc5f627324507ff42 (patch)
tree2660244faa0355ade3ed5d6d3e804090910d5305 /pkgs/tools/security/semgrep
parent7be5582c20eee8b903654fc000f67ea7b515e501 (diff)
semgrep: 0.103.0 -> 0.106.0
Diffstat (limited to 'pkgs/tools/security/semgrep')
-rw-r--r--pkgs/tools/security/semgrep/common.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/security/semgrep/common.nix b/pkgs/tools/security/semgrep/common.nix
index 0a99ed9840638..bd1bf690e5ffc 100644
--- a/pkgs/tools/security/semgrep/common.nix
+++ b/pkgs/tools/security/semgrep/common.nix
@@ -1,13 +1,13 @@
 { lib, fetchFromGitHub, fetchzip }:
 
 rec {
-  version = "0.103.0";
+  version = "0.106.0";
 
   src = fetchFromGitHub {
     owner = "returntocorp";
     repo = "semgrep";
     rev = "v${version}";
-    sha256 = "sha256-vk6GBgLsXRLAVu60xW4WWWhhi4b1WLceTxh/TeISIUg=";
+    sha256 = "sha256-/L8w8imvfjO3ICe0FBhfVrTivK58/9Y+j9Hc71tlpjA=";
   };
 
   # submodule dependencies
@@ -17,22 +17,22 @@ rec {
   langsSrc = fetchFromGitHub {
     owner = "returntocorp";
     repo = "semgrep-langs";
-    rev = "78e518dad1ce2a7c76854c944245434bd8426439";
-    sha256 = "sha256-t9F/OzzT6FI9G4Fxz0lUjz6TVrJlenusQNJnFpiKaQs=";
+    rev = "98e4aacb0d58539b50a642a28d916a5d749e2a42";
+    sha256 = "sha256-7w+8vLmzqBjbeV+a4Br7kLQ2bJv3aZJw8cB0R9d/D+E=";
   };
 
   interfacesSrc = fetchFromGitHub {
     owner = "returntocorp";
     repo = "semgrep-interfaces";
-    rev = "a64a45034ea428ecbe9da6bd849a4f1cfd23cdd2";
-    sha256 = "sha256-eatuyA5xyfZVHCmHvZIzQK2c5eEWUEZd9LumJQtk8+s=";
+    rev = "8bc79b2bca62c051e46a33fb65751357a71b87b6";
+    sha256 = "sha256-k/rsTGYqHnw/4bsmeg7pQ/ckNglvuA0yhuz+OayXCdw=";
   };
 
   # fetch pre-built semgrep-core since the ocaml build is complex and relies on
   # the opam package manager at some point
   coreRelease = fetchzip {
     url = "https://github.com/returntocorp/semgrep/releases/download/v${version}/semgrep-v${version}-ubuntu-16.04.tgz";
-    sha256 = "sha256-L3NbiVYmgJim7H4W1cr75WOItSiHT1YIkUEefuaCYlY=";
+    sha256 = "sha256-ARf776uOJkCBGsJI8ul3IDWI24vFQxs2jlGEA6uXG+o=";
   };
 
   meta = with lib; {