nixVersions.nix_2_26: Apply nix#12557 use correct stdenv

See https://github.com/NixOS/nix/pull/12557
This commit is contained in:
Robert Hensing
2025-03-11 12:36:33 +01:00
committed by Jörg Thalheim
parent 7be664a75c
commit e4d9c996fb
2 changed files with 9 additions and 2 deletions
@@ -30,7 +30,6 @@ let
officialRelease
pkgs
src
stdenv
;
};
};
@@ -2,7 +2,6 @@
lib,
pkgs,
src,
stdenv,
officialRelease,
}:
@@ -12,6 +11,15 @@ let
inherit (scope)
callPackage
;
inherit
(scope.callPackage (
{ stdenv }:
{
inherit stdenv;
}
) { })
stdenv
;
inherit (pkgs.buildPackages)
meson
ninja