summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-01-12 17:29:07 +0000
committerAlyssa Ross <hi@alyssa.is>2023-01-13 13:22:11 +0000
commit9f87711f0ddedc8291090b244fbfdd3848a0fde7 (patch)
tree4962f7aa2e21f3c1c6d1d20a30423ae71315d495
parent3f1cbe1d81c2d9b6bb0707557875e3d7aa3726d7 (diff)
seatd: broaden platforms
From the homepage: > Currently supports Linux and FreeBSD, and has experimental NetBSD support.
-rw-r--r--pkgs/applications/misc/seatd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/seatd/default.nix b/pkgs/applications/misc/seatd/default.nix
index 22a1b9e74b78..8c10219903db 100644
--- a/pkgs/applications/misc/seatd/default.nix
+++ b/pkgs/applications/misc/seatd/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
changelog = "https://git.sr.ht/~kennylevinsen/seatd/refs/${version}";
homepage = "https://sr.ht/~kennylevinsen/seatd/";
license = licenses.mit;
- platforms = platforms.linux;
+ platforms = with platforms; freebsd ++ linux ++ netbsd;
maintainers = with maintainers; [ emantor ];
};
}