1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

darwin-[un]installer: Don't reference deprecated stdenv.lib

`stdenv.lib` has been deprecated, and the correct approach is to use
`lib` directly through `pkgs.lib`.
This commit is contained in:
Mario Rodas 2021-02-23 04:20:00 +00:00
parent 5c3146b75d
commit e78f90f795
2 changed files with 2 additions and 2 deletions

View file

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

View file

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