From 4995a873a796c54cc49e5dca9e1d20350eceec7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sat, 4 Jun 2022 21:51:26 +0200 Subject: [PATCH] yubikey-agent: 0.1.5 -> unstable-2022-03-17 `yubikey-agent` is updated to a newer commit. It hasn't received an official release in a while which is why the update is to an "unstable" version. Closes https://github.com/NixOS/nixpkgs/issues/145392 Co-authored-by: teutat3s <10206665+teutat3s@users.noreply.github.com> Co-authored-by: hensoko --- pkgs/tools/security/yubikey-agent/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/yubikey-agent/default.nix b/pkgs/tools/security/yubikey-agent/default.nix index eca528f1c90..c4a9dfd5b0f 100644 --- a/pkgs/tools/security/yubikey-agent/default.nix +++ b/pkgs/tools/security/yubikey-agent/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "yubikey-agent"; - version = "0.1.5"; + version = "unstable-2022-03-17"; src = fetchFromGitHub { owner = "FiloSottile"; - repo = pname; - rev = "v${version}"; - sha256 = "14s61jgcmpqh70jz0krrai8xg0xqhwmillxkij50vbsagpxjssk6"; + repo = "yubikey-agent"; + rev = "205a7ef2554625c7494038600d963123d6311873"; + sha256 = "sha256-wJpN63KY5scmez6yYFsIr3JLEUB+YSl/XvoatIIeRI0="; }; buildInputs = @@ -21,7 +21,7 @@ buildGoModule rec { substituteInPlace main.go --replace 'notify-send' ${libnotify}/bin/notify-send ''; - vendorSha256 = "1v4ccn7ysh8ax1nkf1v9fcgsdnz6zjyh6j6ivyljyfvma1lmcrmk"; + vendorSha256 = "sha256-SnjbkDPVjAnCbM2nLqBsuaPZwOmvDTKiUbi/93BlWVQ="; doCheck = false;