From 4f882d8c9fe5847eec7557b3d2d652f8a9061363 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Sat, 31 Jan 2026 09:55:49 +0900 Subject: [PATCH] rumdl: prefer stdenv over stdenvNoCC Co-Authored-By: Nick Cao --- pkgs/by-name/ru/rumdl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ru/rumdl/package.nix b/pkgs/by-name/ru/rumdl/package.nix index 3047e89eb30b..219775f6554d 100644 --- a/pkgs/by-name/ru/rumdl/package.nix +++ b/pkgs/by-name/ru/rumdl/package.nix @@ -4,7 +4,7 @@ rustPlatform, installShellFiles, gitMinimal, - stdenvNoCC, + stdenv, versionCheckHook, nix-update-script, }: @@ -41,7 +41,7 @@ rustPlatform.buildRustPackage (finalAttrs: { "--profile smoke" ]; - postInstall = lib.optionalString (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) '' + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd rumdl \ --bash <("$out/bin/rumdl" completions bash) \ --fish <("$out/bin/rumdl" completions fish) \