summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-05-16 05:23:27 -0700
committerRobert Schütz <github@dotlambda.de>2023-05-18 01:29:50 -0700
commit3caff70464e9c6900620f4a8c0f6dbeb019f8ce3 (patch)
tree559c49a05541142e8949cb5ad488bcfc060bfe3e /pkgs/servers
parentcac01149e7756870b5408acc117017c03cba7755 (diff)
nextcloud-notify_push: 0.6.2 -> 0.6.3
Diff: https://github.com/nextcloud/notify_push/compare/v0.6.2...v0.6.3
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/nextcloud/notify_push.nix20
1 files changed, 14 insertions, 6 deletions
diff --git a/pkgs/servers/nextcloud/notify_push.nix b/pkgs/servers/nextcloud/notify_push.nix
index 63bce5c025724..78a121a2e1559 100644
--- a/pkgs/servers/nextcloud/notify_push.nix
+++ b/pkgs/servers/nextcloud/notify_push.nix
@@ -1,26 +1,34 @@
-{ lib, fetchFromGitHub, rustPlatform }:
+{ lib
+, fetchFromGitHub
+, nixosTests
+, rustPlatform
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "notify_push";
-  version = "0.6.2";
+  version = "0.6.3";
 
   src = fetchFromGitHub {
     owner = "nextcloud";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-YCIXpCNKqdCSvq7CSPSwoPc2gpCnnda8S7I4FzpezMc=";
+    hash = "sha256-5Vd8fD0nB2POtxDFNVtkJfVEe+O8tjnwlwYosDJjIDA=";
   };
 
-  cargoHash = "sha256-l6gMz/iJeLl+RLjOiR9U1m6V/rK+RWM84bQiz4jCFtY=";
+  cargoHash = "sha256-TF4rL7KXsbfYiEOfkKRyr3PCvyocq6tg90OZURZh8f8=";
 
-  passthru = {
+  passthru = rec {
     test_client = rustPlatform.buildRustPackage {
       pname = "${pname}-test_client";
       inherit src version;
 
       buildAndTestSubdir = "test_client";
 
-      cargoHash = "sha256-4jQvlxU3S3twTpiLab8BXC6ZSPSWN6ftK3GzfKnjHSE=";
+      cargoHash = "sha256-ES0LBKirOUqXOtA9O2KouA+NWisIMoe8XhmnTC8w1cg=";
+    };
+    tests = {
+      inherit (nixosTests.nextcloud) with-postgresql-and-redis26;
+      inherit test_client;
     };
   };