darwin.binutils.bintools: propagate man pages from cctools
This commit is contained in:
parent
c450617f99
commit
125c469d3e
1 changed files with 8 additions and 7 deletions
|
@ -16,7 +16,7 @@ in
|
|||
stdenv.mkDerivation {
|
||||
pname = "${targetPrefix}cctools-binutils-darwin";
|
||||
inherit (cctools) version;
|
||||
outputs = [ "out" "info" "man" ];
|
||||
outputs = [ "out" "man" ];
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin $out/include
|
||||
|
||||
|
@ -42,12 +42,13 @@ stdenv.mkDerivation {
|
|||
|
||||
ln -s ${cctools}/libexec $out/libexec
|
||||
|
||||
mkdir -p "$info/nix-support" "$man/nix-support"
|
||||
printWords ${binutils-unwrapped.info} \
|
||||
>> $info/nix-support/propagated-build-inputs
|
||||
# FIXME: cctools missing man pages
|
||||
printWords ${binutils-unwrapped.man} \
|
||||
>> $man/nix-support/propagated-build-inputs
|
||||
mkdir -p "$man"/share/man/man{1,5}
|
||||
for i in ${builtins.concatStringsSep " " cmds}; do
|
||||
for path in "${cctools.man}"/share/man/man?/$i.*; do
|
||||
dest_path="$man''${path#${cctools.man}}"
|
||||
ln -sv "$path" "$dest_path"
|
||||
done
|
||||
done
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue