doc/lib-functions: preserve libsets order

This commit is contained in:
Naïm Favier 2022-12-12 12:21:59 +01:00
parent e1bb8f1e74
commit ce952286ca
No known key found for this signature in database
GPG key ID: 95AFCE8211908325
3 changed files with 16 additions and 16 deletions

View file

@ -16,7 +16,7 @@ let
subsetname = subsetname;
functions = libDefPos toplib.${subsetname};
})
(builtins.attrNames libsets);
(builtins.map (x: x.name) libsets);
nixpkgsLib = pkgs.lib;