core/pkgs/by-name/gl/glibc/info.nix

31 lines
573 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
callPackage,
texinfo,
perl,
}:
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
callPackage ./common.nix { } {
2024-05-02 00:46:19 +00:00
pname = "glibc-info";
outputs = [ "out" ];
configureFlags = [ "--enable-add-ons" ];
2024-06-30 08:16:52 +00:00
extraNativeBuildInputs = [
texinfo
perl
];
2024-05-02 00:46:19 +00:00
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";
}