From 6d0534b319ed8169806e97d31ba0a276fa3b6b10 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Wed, 29 Apr 2026 16:14:59 +0200 Subject: [PATCH] wUse stdenvNoCC where appropriate Which at present means in all packages. --- packages/journalctl-last-invocation/package.nix | 4 ++-- packages/nix-store-fuzzy-find/package.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/journalctl-last-invocation/package.nix b/packages/journalctl-last-invocation/package.nix index 22cf1f9..6b3a73e 100644 --- a/packages/journalctl-last-invocation/package.nix +++ b/packages/journalctl-last-invocation/package.nix @@ -1,7 +1,7 @@ -{ pkgs, stdenv }: +{ pkgs, stdenvNoCC }: with pkgs; -with stdenv; +with stdenvNoCC; mkDerivation { pname = "journalctl-last-invocation"; diff --git a/packages/nix-store-fuzzy-find/package.nix b/packages/nix-store-fuzzy-find/package.nix index c7dff8c..ede3c0e 100644 --- a/packages/nix-store-fuzzy-find/package.nix +++ b/packages/nix-store-fuzzy-find/package.nix @@ -1,7 +1,7 @@ -{ pkgs, stdenv }: +{ pkgs, stdenvNoCC }: with pkgs; -with stdenv; +with stdenvNoCC; mkDerivation { pname = "nix-store-fuzzy-find";