Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / glibc / info.nix
blobd643d8a6ba09ff1bb8720756c884e8dbf6788038
1 { callPackage, texinfo, perl }:
3 callPackage ./common.nix {} {
4   pname = "glibc-info";
6   outputs = [ "out" ];
8   configureFlags = [ "--enable-add-ons" ];
10   extraNativeBuildInputs = [ texinfo perl ];
12   makeFlags = [ "info" ];
14   # I don't know why the info is not generated in 'build'
15   # Somehow building the info still does not work, because the final
16   # libc.info hasn't a Top node.
17   installPhase = ''
18     mkdir -p "$out/share/info"
19     cp -v "manual/"*.info* "$out/share/info"
20   '';
22   meta.description = "GNU Info manual of the GNU C Library";