about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-11-26 16:19:42 -0500
committerGitHub <noreply@github.com>2023-11-26 16:19:42 -0500
commit131f3876fa7033acd8f166e04668678a703509bc (patch)
treeb94ca77140aec1f39f99312a03a7f63703e0d1aa /pkgs
parent5631ea37394bb38556cbb2b4142cd28ba49ff2d9 (diff)
parent82d499ac9e5d592d4af11168d4d94eab298cc5ab (diff)
Merge pull request #270057 from xrelkd/update/clipcat
clipcat: 0.6.2 -> 0.7.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/clipcat/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/clipcat/default.nix b/pkgs/applications/misc/clipcat/default.nix
index 1870c92e47f87..bf2e89cf89a3c 100644
--- a/pkgs/applications/misc/clipcat/default.nix
+++ b/pkgs/applications/misc/clipcat/default.nix
@@ -8,16 +8,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "clipcat";
-  version = "0.6.2";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner = "xrelkd";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-sofP+zyyakB4w1R3wS/FNDTOWwNeDJyB5CBtR3yZsmE=";
+    hash = "sha256-MEyKUSEGVELk00TtKdfEgfzc3zwBllYrIjtC4NVbmRo=";
   };
 
-  cargoHash = "sha256-aOXAjxmk5uqBOw/l1CW/LbeBucr7p4iudbVY6d7yEjg=";
+  cargoHash = "sha256-LiTZfkp0uuKgfl4uaxNEJAn7UlrHHaWh/ivaJxYhULY=";
 
   nativeBuildInputs = [
     protobuf
@@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec {
   # cargo-nextest help us retry the failed test cases
   NEXTEST_RETRIES = 5;
 
-  # Some test cases need to interactive with X11, we use xvfb-run here
+  # Some test cases interact with X11, we use xvfb-run here
   checkPhase = ''
     xvfb-run --auto-servernum cargo nextest run --release --workspace --no-fail-fast --no-capture
   '';