Merge pull request #180921 from smancill/sdnotify-wrapper-platforms

sdnotify-wrapper: mark as Linux-only
This commit is contained in:
Rick van Schijndel 2022-07-10 13:47:25 +02:00 committed by GitHub
commit 047b003c4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};