From cba85d7d9990a8e185e34b034c5774c35c7b027b Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Sat, 27 Jul 2024 12:59:31 +0200 Subject: [PATCH] esdm: 1.1.0 -> 1.1.1 Changes: - fix: properly use the mutex absolute time argument, timedlock handling and mutex destruction in the ESDM RPC client lib - fix: race condition in worker thread execution Changelog: https://github.com/smuellerDD/esdm/blob/63ff656a765d805805b1b4201382c4ccb8665090/CHANGES.md Signed-off-by: Markus Theil --- pkgs/os-specific/linux/esdm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/esdm/default.nix b/pkgs/os-specific/linux/esdm/default.nix index 95fdd9648f23..f49f25ece6cf 100644 --- a/pkgs/os-specific/linux/esdm/default.nix +++ b/pkgs/os-specific/linux/esdm/default.nix @@ -59,13 +59,13 @@ assert cryptoBackend == "openssl" || cryptoBackend == "botan" || cryptoBackend = stdenv.mkDerivation rec { pname = "esdm"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitHub { owner = "smuellerDD"; repo = "esdm"; rev = "v${version}"; - sha256 = "sha256-UH6ws/hfHdcmbLETyZ0b4wDm8nHPdLsot3ZhIljpUlw="; + hash = "sha256-Z8cIjNI+Qi6O2e72vbEefbCCXyIA+lcEMDzWJReGrUs="; }; nativeBuildInputs = [ meson pkg-config ninja ];