mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
packaging: Use correct stdenv for x86_64-darwin
This commit is contained in:
parent
d433a2242e
commit
0772c2e3ab
2 changed files with 9 additions and 2 deletions
|
@ -154,7 +154,6 @@
|
||||||
f = import ./packaging/components.nix {
|
f = import ./packaging/components.nix {
|
||||||
inherit (final) lib;
|
inherit (final) lib;
|
||||||
inherit officialRelease;
|
inherit officialRelease;
|
||||||
inherit stdenv;
|
|
||||||
pkgs = final;
|
pkgs = final;
|
||||||
src = self;
|
src = self;
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
src,
|
src,
|
||||||
stdenv,
|
|
||||||
officialRelease,
|
officialRelease,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -12,6 +11,15 @@ let
|
||||||
inherit (scope)
|
inherit (scope)
|
||||||
callPackage
|
callPackage
|
||||||
;
|
;
|
||||||
|
inherit
|
||||||
|
(scope.callPackage (
|
||||||
|
{ stdenv }:
|
||||||
|
{
|
||||||
|
inherit stdenv;
|
||||||
|
}
|
||||||
|
) { })
|
||||||
|
stdenv
|
||||||
|
;
|
||||||
inherit (pkgs.buildPackages)
|
inherit (pkgs.buildPackages)
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue