linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / glibc / info.nix
blob5cb004cc870dbf651184c3271bd5c2803eb3372e
1 { callPackage, texinfo, perl }:
3 callPackage ./common.nix {} {
4   name = "glibc-info";
6   outputs = [ "out" ];
8   configureFlags = [ "--enable-add-ons" ];
10   buildInputs = [ texinfo perl ];
12   buildPhase = "make 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";