1
0
Fork 0
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:
Daiderd Jordan 2021-03-22 19:20:40 +01:00 committed by GitHub
commit 682aff8164
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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}"