about summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc-2.10/info.nix
blob: 926598b376030b54e79528234f476f91803071d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, texinfo, perl }:

let build = import ./common.nix;
in
  build {
    name = "glibc-info";

    inherit fetchurl stdenv;

    configureFlags = [ "--enable-add-ons" ];

    buildInputs = [ texinfo perl ];

    buildPhase = "make 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 = ''
      ensureDir "$out/share/info"
      cp -v "../$sourceRoot/manual/"*.info* "$out/share/info"
    '';

    meta.description = "GNU Info manual of the GNU C Library";
  }