summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-28 10:07:10 -0500
committerGitHub <noreply@github.com>2023-11-28 10:07:10 -0500
commitc9407db9a76531319e97fa50d35e9a02a6d47721 (patch)
treecc52fadf0b912765a9268c1f6c3cc53648f37ff1
parentMerge pull request #269234 from NixOS/backport-269160-to-release-23.11 (diff)
parentnextcloud-notify_push: 0.6.3 -> 0.6.5 (diff)
downloadnixpkgs-c9407db9a76531319e97fa50d35e9a02a6d47721.tar.gz
Merge pull request #269605 from NixOS/backport-266496-to-release-23.11
[Backport release-23.11] nextcloud-notify_push: 0.6.3 -> 0.6.5
-rw-r--r--pkgs/servers/nextcloud/notify_push.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/nextcloud/notify_push.nix b/pkgs/servers/nextcloud/notify_push.nix
index 78a121a2e155..51be1e026adf 100644
--- a/pkgs/servers/nextcloud/notify_push.nix
+++ b/pkgs/servers/nextcloud/notify_push.nix
@@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec {
pname = "notify_push";
- version = "0.6.3";
+ version = "0.6.5";
src = fetchFromGitHub {
owner = "nextcloud";
repo = pname;
rev = "v${version}";
- hash = "sha256-5Vd8fD0nB2POtxDFNVtkJfVEe+O8tjnwlwYosDJjIDA=";
+ hash = "sha256-go41ZIUBj1nj8rDI/c4Pk5cnDbM8Y2+bCZIab4XdhUY=";
};
- cargoHash = "sha256-TF4rL7KXsbfYiEOfkKRyr3PCvyocq6tg90OZURZh8f8=";
+ cargoHash = "sha256-EuYwPQo2TucAaQw63pESkJGAtyuMhk3JT6mBg6E84Xs=";
passthru = rec {
test_client = rustPlatform.buildRustPackage {
@@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
buildAndTestSubdir = "test_client";
- cargoHash = "sha256-ES0LBKirOUqXOtA9O2KouA+NWisIMoe8XhmnTC8w1cg=";
+ cargoHash = "sha256-m4FHCrVGAmGIrgnMMleiTRgYGYh+b7EIH1ORE0tiBkY=";
};
tests = {
inherit (nixosTests.nextcloud) with-postgresql-and-redis26;