From 0953adefbafae025ca66b2001dec9a532cdeeb8a Mon Sep 17 00:00:00 2001 From: teutat3s <10206665+teutat3s@users.noreply.github.com> Date: Mon, 27 May 2024 15:59:33 +0200 Subject: [PATCH] nextcloud-notify_push: build with rustPackages_1_76 Minimum rustc version is 1.74 since notify_push version 0.6.10 https://github.com/nextcloud/notify_push/commit/9a8d0be4f004d54a4761aa056ab1b4579f388fc0 --- pkgs/servers/nextcloud/notify_push.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/nextcloud/notify_push.nix b/pkgs/servers/nextcloud/notify_push.nix index 00db852c89fe..758f0ec25a77 100644 --- a/pkgs/servers/nextcloud/notify_push.nix +++ b/pkgs/servers/nextcloud/notify_push.nix @@ -1,10 +1,10 @@ { lib , fetchFromGitHub , nixosTests -, rustPlatform +, rustPackages_1_76 }: -rustPlatform.buildRustPackage rec { +rustPackages_1_76.rustPlatform.buildRustPackage rec { pname = "notify_push"; version = "0.6.11"; @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-fGbRmrOEbs9nGZhcu1w7qOIwYMaTohaUFb7dilPuTHc="; passthru = rec { - test_client = rustPlatform.buildRustPackage { + test_client = rustPackages_1_76.rustPlatform.buildRustPackage { pname = "${pname}-test_client"; inherit src version;