1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

packaging: Use correct stdenv for x86_64-darwin

This commit is contained in:
Robert Hensing 2025-02-24 16:44:12 +01:00
parent d433a2242e
commit 0772c2e3ab
2 changed files with 9 additions and 2 deletions

View file

@ -154,7 +154,6 @@
f = import ./packaging/components.nix {
inherit (final) lib;
inherit officialRelease;
inherit stdenv;
pkgs = final;
src = self;
};

View file

@ -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