about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRick van Schijndel <Mindavi@users.noreply.github.com>2022-07-10 13:47:25 +0200
committerGitHub <noreply@github.com>2022-07-10 13:47:25 +0200
commit047b003c4e9b05d03ba359e00b917b1cf1aa7237 (patch)
treefeb28165aecbaed79bc97488674a1538438983fd /pkgs
parentbf56ffe7a2232b90657b7da9eea6226ca7b870bf (diff)
parent8211c55ec20824602f43a1c8aeba9dd7d413e6c3 (diff)
Merge pull request #180921 from smancill/sdnotify-wrapper-platforms
sdnotify-wrapper: mark as Linux-only
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/sdnotify-wrapper/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/sdnotify-wrapper/default.nix b/pkgs/os-specific/linux/sdnotify-wrapper/default.nix
index c6122910922f6..b4b6a7f42a7e4 100644
--- a/pkgs/os-specific/linux/sdnotify-wrapper/default.nix
+++ b/pkgs/os-specific/linux/sdnotify-wrapper/default.nix
@@ -12,10 +12,9 @@ in runCommandCC "sdnotify-wrapper" {
    outputs = [ "bin" "doc" "out" ];
 
    meta = {
-     broken = stdenv.isDarwin;
      homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c";
      description = "Use systemd sd_notify without having to link against libsystemd";
-     platforms = lib.platforms.all;
+     platforms = lib.platforms.linux;
      license = lib.licenses.isc;
      maintainers = with lib.maintainers; [ Profpatsch ];
    };