about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2021-11-07 09:55:52 -0800
committerGitHub <noreply@github.com>2021-11-07 09:55:52 -0800
commit51ac8edff381b07fa5b9e7edc7d700331ef5d121 (patch)
tree66dfca781d3041fb6c9a1c97baa19253dd1e7bea /pkgs
parentea5437f80c60bb7a8c5ca258dd443aa96c5e763f (diff)
parent6d6fe2447e8766c3e6efbdedf32a54446809b888 (diff)
Merge pull request #144995 from SuperSandro2000/zydis
zydis: fix upgrade
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/zydis/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/zydis/default.nix b/pkgs/development/libraries/zydis/default.nix
index 9e6a8ba83e05c..20f403eb86667 100644
--- a/pkgs/development/libraries/zydis/default.nix
+++ b/pkgs/development/libraries/zydis/default.nix
@@ -7,9 +7,9 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner = "zyantific";
     repo = "zydis";
-    rev = "bfee99f49274a0eec3ffea16ede3a5bda9cda88f";
-    sha256 = "sha256-y+zPeQyHBLQpJv5pHSAvpIy3mafi9pbj/6BZPwa7VHQ=";
+    rev = "v${version}";
     fetchSubmodules = true;
+    sha256 = "sha256-1XGELwMuFlIt6Z3+kfD6VAgDZOwhhCSG42dkYh7WLf8=";
   };
 
   nativeBuildInputs = [ cmake ];