summary refs log tree commit diff
path: root/pkgs/development/tools/qc
diff options
context:
space:
mode:
authorPatrizio Bekerle <patrizio@bekerle.com>2023-09-19 08:30:52 +0200
committerPatrizio Bekerle <patrizio@bekerle.com>2023-09-19 08:31:21 +0200
commit802456973b5bd0cb4a77ce6ff08445d17abfca44 (patch)
tree8c3ad85598059ee4f76e571bd81a2d49ce486834 /pkgs/development/tools/qc
parent5c516a45c2af7d0cd9df70b9e07c759c6762f8df (diff)
qc: 0.5.0 -> 0.5.1
Diffstat (limited to 'pkgs/development/tools/qc')
-rw-r--r--pkgs/development/tools/qc/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/qc/default.nix b/pkgs/development/tools/qc/default.nix
index 9be03518e5b61..786ab73758a80 100644
--- a/pkgs/development/tools/qc/default.nix
+++ b/pkgs/development/tools/qc/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "qc";
-  version = "0.5.0";
+  version = "0.5.1";
 
   src = fetchFromGitHub {
     owner = "qownnotes";
     repo = "qc";
     rev = "v${version}";
-    hash = "sha256-lNS2wrjG70gi6mpIYMvuusuAJL3LkAVh8za+KnBTioc=";
+    hash = "sha256-SrvcRF2yRGGPTk835ykG+NH9WPoc/bXO5tSj43Q7T3g=";
   };
 
   vendorHash = "sha256-7t5rQliLm6pMUHhtev/kNrQ7AOvmA/rR93SwNQhov6o=";
@@ -17,6 +17,7 @@ buildGoModule rec {
     "-s" "-w" "-X=github.com/qownnotes/qc/cmd.version=${version}"
   ];
 
+  # There are no automated tests
   doCheck = false;
 
   subPackages = [ "." ];