nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

lib/attrsets: add getMan function

rnhmjoj 98607927 32e827b8

+2 -1
+1
lib/attrsets.nix
··· 469 469 getBin = getOutput "bin"; 470 470 getLib = getOutput "lib"; 471 471 getDev = getOutput "dev"; 472 + getMan = getOutput "man"; 472 473 473 474 /* Pick the outputs of packages to place in buildInputs */ 474 475 chooseDevOutputs = drvs: builtins.map getDev drvs;
+1 -1
lib/default.nix
··· 77 77 genAttrs isDerivation toDerivation optionalAttrs 78 78 zipAttrsWithNames zipAttrsWith zipAttrs recursiveUpdateUntil 79 79 recursiveUpdate matchAttrs overrideExisting getOutput getBin 80 - getLib getDev chooseDevOutputs zipWithNames zip 80 + getLib getDev getMan chooseDevOutputs zipWithNames zip 81 81 recurseIntoAttrs dontRecurseIntoAttrs; 82 82 inherit (lists) singleton forEach foldr fold foldl foldl' imap0 imap1 83 83 concatMap flatten remove findSingle findFirst any all count