summaryrefslogtreecommitdiffstats
path: root/pkgs/test/default.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2023-01-25 17:09:33 +0100
committerRobert Hensing <robert@roberthensing.nl>2023-01-29 09:51:55 +0100
commita010129bf87c2afcb2f60db410cc535fef299f8c (patch)
tree1c23ffd68ab8df289bec50669e9d4ef6cc3922da /pkgs/test/default.nix
parent90fdbf5f394f3bb7d49992702157df7d93056055 (diff)
pkg-configPackages -> defaultPkgConfigPackages
This better reflects the purpose of the package set, while leaving room for a fancier, more complete implementation of the concept, with a nicer name.
Diffstat (limited to 'pkgs/test/default.nix')
-rw-r--r--pkgs/test/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/test/default.nix b/pkgs/test/default.nix
index 82134b051d4e..72b22f7f6865 100644
--- a/pkgs/test/default.nix
+++ b/pkgs/test/default.nix
@@ -51,9 +51,9 @@ with pkgs;
php = recurseIntoAttrs (callPackages ./php {});
- pkg-configPackages =
+ defaultPkgConfigPackages =
let
- # pkg-configPackages test needs a Nixpkgs with allowUnsupportedPlatform
+ # defaultPkgConfigPackages test needs a Nixpkgs with allowUnsupportedPlatform
# in order to filter out the unsupported packages without throwing any errors
# tryEval would be too fragile, masking different problems as if they're
# unsupported platform problems.