mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
Merge pull request #299 from marsam/do-not-use-stdenv.lib
darwin-[un]installer: Don't reference deprecated stdenv.lib
This commit is contained in:
commit
682aff8164
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ let
|
|||
filter = name: _type: name != toString ./default.nix;
|
||||
};
|
||||
|
||||
nixPath = stdenv.lib.concatStringsSep ":" [
|
||||
nixPath = pkgs.lib.concatStringsSep ":" [
|
||||
"darwin-config=${configuration}/configuration.nix"
|
||||
"darwin=${nix-darwin}"
|
||||
"nixpkgs=${pkgs.path}"
|
||||
|
|
|
@ -7,7 +7,7 @@ let
|
|||
filter = name: _type: name != toString ./default.nix;
|
||||
};
|
||||
|
||||
nixPath = stdenv.lib.concatStringsSep ":" [
|
||||
nixPath = pkgs.lib.concatStringsSep ":" [
|
||||
"darwin-config=${configuration}/configuration.nix"
|
||||
"darwin=${nix-darwin}"
|
||||
"nixpkgs=${pkgs.path}"
|
||||
|
|
Loading…
Reference in a new issue