summaryrefslogtreecommitdiff
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
parentMerge pull request #249259 from ConnorBaker/feat/torch-use-cuda-redist (diff)
downloadnixpkgs-802456973b5bd0cb4a77ce6ff08445d17abfca44.tar.gz
qc: 0.5.0 -> 0.5.1
-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 9be03518e5b6..786ab73758a8 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 = [ "." ];