Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
555 B
Nix
23 lines
555 B
Nix
{ callPackage, texinfo, perl }:
|
|
|
|
callPackage ./common.nix {} {
|
|
pname = "glibc-info";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
configureFlags = [ "--enable-add-ons" ];
|
|
|
|
extraNativeBuildInputs = [ texinfo perl ];
|
|
|
|
makeFlags = [ "info" ];
|
|
|
|
# I don't know why the info is not generated in 'build'
|
|
# Somehow building the info still does not work, because the final
|
|
# libc.info hasn't a Top node.
|
|
installPhase = ''
|
|
mkdir -p "$out/share/info"
|
|
cp -v "manual/"*.info* "$out/share/info"
|
|
'';
|
|
|
|
meta.description = "GNU Info manual of the GNU C Library";
|
|
}
|