From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atuin.qyliss.net (localhost [IPv6:::1]) by atuin.qyliss.net (Postfix) with ESMTP id B108ED2BB; Tue, 23 Sep 2025 16:35:38 +0000 (UTC) Received: by atuin.qyliss.net (Postfix, from userid 993) id 1F051D28E; Tue, 23 Sep 2025 16:35:35 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-26) on atuin.qyliss.net X-Spam-Level: X-Spam-Status: No, score=-0.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DMARC_PASS,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE autolearn=unavailable autolearn_force=no version=4.0.1 Received: from mail.cyberchaos.dev (mail.cyberchaos.dev [195.39.247.168]) by atuin.qyliss.net (Postfix) with ESMTPS id 62445D282 for ; Tue, 23 Sep 2025 16:35:33 +0000 (UTC) From: Yureka Lilian DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cyberchaos.dev; s=mail; t=1758645332; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2y0puFu1z8/nTPjTJn3/Y5/8dyxIGN4fU4ejnfs/0ac=; b=BJZ6QYu3EolRUTmoGR9/RtM6L2GZr7Kds70ilbaUQYkZ8HqrUuOaWw4tc/vkb26DsvCF89 UG/l5WMnoApjrSfFQlqyC9OAIP+XiwroY2d2ZSvQRTnXuf/YnheSnl+pAYSCO51NOrGK4+ iexSUE83NTqYniJkgQveUtrHKloltAY= To: devel@spectrum-os.org Subject: [PATCH v5 3/4] vm/sys/net: build against pkgsMusl Date: Tue, 23 Sep 2025 18:35:11 +0200 Message-ID: <20250923163519.48306-4-yureka@cyberchaos.dev> In-Reply-To: <20250923163519.48306-1-yureka@cyberchaos.dev> References: <20250923163519.48306-1-yureka@cyberchaos.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: UIEEJOAZMCPUTVLWYMQ4LUXLVJNHPWTG X-Message-ID-Hash: UIEEJOAZMCPUTVLWYMQ4LUXLVJNHPWTG X-MailFrom: yureka@cyberchaos.dev X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-devel.spectrum-os.org-0; header-match-devel.spectrum-os.org-1; header-match-devel.spectrum-os.org-2; header-match-devel.spectrum-os.org-3; header-match-devel.spectrum-os.org-4; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Yureka Lilian , Alyssa Ross X-Mailman-Version: 3.3.9 Precedence: list List-Id: Patches and low-level development discussion Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Some of the following changes do not work with pkgsStatic, specifically it is difficult to link libbpf statically[1]. [1] https://lists.fedorahosted.org/archives/list/elfutils-devel@lists.fedorahosted.org/thread/CMDG6FPJGD4UWNQOFKZPCKUSZ4NSM7D5/ Signed-off-by: Yureka Lilian Reviewed-by: Alyssa Ross --- vm/sys/net/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/sys/net/default.nix b/vm/sys/net/default.nix index 1a36b16..2953c3a 100644 --- a/vm/sys/net/default.nix +++ b/vm/sys/net/default.nix @@ -1,8 +1,8 @@ # SPDX-License-Identifier: MIT # SPDX-FileCopyrightText: 2021-2023 Alyssa Ross -import ../../../lib/call-package.nix ({ lseek, src, terminfo, pkgsStatic }: -pkgsStatic.callPackage ( +import ../../../lib/call-package.nix ({ lseek, src, terminfo, pkgsMusl }: +pkgsMusl.callPackage ( { lib, stdenvNoCC, nixos, runCommand, writeClosure , erofs-utils, jq, s6-rc, util-linux, xorg -- 2.51.0