From 6a6bed8f9bd18ba8a616343cdc743875efef5cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Tue, 21 Mar 2023 16:26:34 +1100 Subject: [PATCH] pop-launcher: mark linux-only Based on: ``` Compiling async-pidfd v0.1.4 error: pidfd only works on Linux --> /private/tmp/nix-build-pop-launcher-1.2.1.drv-0/pop-launcher-1.2.1-vendor.tar.gz/async-pidfd/src/lib.rs:106:1 | 106 | compile_error!("pidfd only works on Linux"); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` --- pkgs/applications/misc/pop-launcher/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/pop-launcher/default.nix b/pkgs/applications/misc/pop-launcher/default.nix index ca4a1742e1e..24bcd9ab89e 100644 --- a/pkgs/applications/misc/pop-launcher/default.nix +++ b/pkgs/applications/misc/pop-launcher/default.nix @@ -54,6 +54,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Modular IPC-based desktop launcher service"; homepage = "https://github.com/pop-os/launcher"; + platforms = platforms.linux; license = licenses.mpl20; maintainers = with maintainers; [ samhug ]; };