about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2022-05-18 14:59:39 +0000
committerAaron Jheng <wentworth@outlook.com>2022-05-18 14:59:39 +0000
commit0ce4fec78597d266f0d56fbc02586d8f694d0fc3 (patch)
tree6687a9e077957c06fa0abe36358be0d6f62353e4 /pkgs/servers/sql
parent73588a5c738e5a2bac700f31490c5023e41a0059 (diff)
mysql: 8.0.28 -> 8.0.29
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/mysql/8.0.x.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/servers/sql/mysql/8.0.x.nix b/pkgs/servers/sql/mysql/8.0.x.nix
index f897e018d6930..f7611d253e5bb 100644
--- a/pkgs/servers/sql/mysql/8.0.x.nix
+++ b/pkgs/servers/sql/mysql/8.0.x.nix
@@ -6,11 +6,11 @@
 let
 self = stdenv.mkDerivation rec {
   pname = "mysql";
-  version = "8.0.28";
+  version = "8.0.29";
 
   src = fetchurl {
     url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz";
-    sha256 = "sha256-2Gk2nrbeTyuy2407Mbe3OWjjVuX/xDVPS5ZlirHkiyI=";
+    sha256 = "sha256-USFw+m94ppTW8Y0ZfpmdJxbuaNxUHXZE3ZIqNmNAcmY=";
   };
 
   nativeBuildInputs = [ bison cmake pkg-config ]
@@ -20,8 +20,6 @@ self = stdenv.mkDerivation rec {
   postPatch = ''
     substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool
     substituteInPlace cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool
-    substituteInPlace cmake/fido2.cmake \
-    --replace ''$\{MY_PKG_CONFIG_EXECUTABLE\} "${pkg-config}/bin/pkg-config"
   '';
 
   buildInputs = [