From 36188d39b7c3125c5106da1684ad8541947c858f Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 26 Jan 2025 15:56:07 +0100 Subject: [PATCH] add gcc to nix-ld profile helps with pip doing sdist stuff --- profiles/nix-ld.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiles/nix-ld.nix b/profiles/nix-ld.nix index bee8df2..a20322c 100644 --- a/profiles/nix-ld.nix +++ b/profiles/nix-ld.nix @@ -59,4 +59,9 @@ xorg.libxshmfence zlib ]; + + environment.systemPackages = with pkgs; [ + gcc + ]; + }