tree: Replace stdenv with stdenvNoCC for some packages (#461051)

This commit is contained in:
Pol Dellaiera
2025-11-15 21:35:34 +00:00
committed by GitHub
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
lib,
stdenv,
stdenvNoCC,
fetchurl,
gitUpdater,
nixosTests,
}:
stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "gerrit";
version = "3.12.3";
+3 -3
View File
@@ -1,6 +1,6 @@
{
lib,
stdenv,
stdenvNoCC,
fetchurl,
common-updater-scripts,
coreutils,
@@ -16,7 +16,7 @@
curl,
}:
stdenv.mkDerivation (finalAttrs: {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "jenkins";
version = "2.528.1";
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
tests = { inherit (nixosTests) jenkins jenkins-cli; };
updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
#!${stdenvNoCC.shell}
set -o errexit
PATH=${
lib.makeBinPath [
+2 -2
View File
@@ -1,6 +1,6 @@
{
lib,
stdenv,
stdenvNoCC,
fetchurl,
bundlerEnv,
ruby_3_3,
@@ -25,7 +25,7 @@ let
];
};
in
stdenv.mkDerivation (finalAttrs: {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "redmine";
inherit version;