mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
[Backport release-25.05] supersonic-wayland: drop darwin as supported platform (#427347)
This commit is contained in:
@@ -16,8 +16,6 @@
|
||||
waylandSupport ? false,
|
||||
}:
|
||||
|
||||
assert waylandSupport -> stdenv.hostPlatform.isLinux;
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "supersonic" + lib.optionalString waylandSupport "-wayland";
|
||||
version = "0.15.2";
|
||||
@@ -97,7 +95,7 @@ buildGoModule rec {
|
||||
mainProgram = "supersonic" + lib.optionalString waylandSupport "-wayland";
|
||||
description = "A lightweight cross-platform desktop client for Subsonic music servers";
|
||||
homepage = "https://github.com/dweymouth/supersonic";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
platforms = platforms.linux ++ lib.optionals (!waylandSupport) platforms.darwin;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [
|
||||
zane
|
||||
|
||||
Reference in New Issue
Block a user