From 6ade1c7f60efc5542ab82df39b39ec15c4722ddd Mon Sep 17 00:00:00 2001 From: corite Date: Mon, 5 Aug 2024 15:40:47 +0200 Subject: [PATCH 1/2] qcal: update 0.9.1 -> 0.9.2 --- pkgs/tools/networking/qcal/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/qcal/default.nix b/pkgs/tools/networking/qcal/default.nix index 31e800394954..60335e5fd7f6 100644 --- a/pkgs/tools/networking/qcal/default.nix +++ b/pkgs/tools/networking/qcal/default.nix @@ -5,14 +5,14 @@ buildGoModule rec { pname = "qcal"; - version = "0.9.1"; + version = "0.9.2"; src = fetchFromSourcehut { owner = "~psic4t"; repo = "qcal"; rev = version; - hash = "sha256-Rj806cKCFxWB8X4EiKvyZ5/xACw+VVbo9hv8AJiB0S4="; + hash = "sha256-azUN4oYbD0fBZav4ogh/mELV9+IW6aAV7Oom8Wq6sYI="; }; - vendorHash = "sha256-ntpSj3Ze7n1sMIMojaESi4tQtx+mrA0aiv3+MQetjZI="; + vendorHash = "sha256-W9g2JzShvm2hJ+fcdwsoD3B6iUU55ufN6FTTl6qK6Oo="; # Replace "config-sample.json" in error message with the absolute path # to that config file in the nix store From 0d043a2918181b38433884e1bd30ef15858c4c6d Mon Sep 17 00:00:00 2001 From: corite Date: Mon, 5 Aug 2024 15:46:07 +0200 Subject: [PATCH 2/2] qcal: don't use deprecated substituteInPlace option --- pkgs/tools/networking/qcal/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/qcal/default.nix b/pkgs/tools/networking/qcal/default.nix index 60335e5fd7f6..12543a42dacb 100644 --- a/pkgs/tools/networking/qcal/default.nix +++ b/pkgs/tools/networking/qcal/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { # to that config file in the nix store preBuild = '' substituteInPlace helpers.go \ - --replace " config-sample.json " " $out/share/qcal/config-sample.json " + --replace-fail " config-sample.json " " $out/share/qcal/config-sample.json " ''; postInstall = ''