Merge pull request #283970 from teutat3s/nextcloud-only-on-linux

nextcloud, nextcloud-notify_push: set platforms to linux
This commit is contained in:
Maximilian Bosch
2024-01-27 08:38:49 +01:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ let
homepage = "https://nextcloud.com";
maintainers = with maintainers; [ schneefux bachp globin ma27 ];
license = licenses.agpl3Plus;
platforms = with platforms; unix;
platforms = platforms.linux;
knownVulnerabilities = extraVulnerabilities
++ (optional eol "Nextcloud version ${version} is EOL");
};
+2
View File
@@ -36,9 +36,11 @@ rustPlatform.buildRustPackage rec {
};
meta = with lib; {
changelog = "https://github.com/nextcloud/notify_push/releases/tag/v${version}";
description = "Update notifications for nextcloud clients";
homepage = "https://github.com/nextcloud/notify_push";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = teams.helsinki-systems.members;
};
}