blob: 7d3619d768ad1db6099c10840428b774867f3f2c (
plain)
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
26
27
28
29
30
|
{
callPackage,
texinfo,
perl,
}:
callPackage ./common.nix { } {
pname = "glibc-info";
outputs = [ "out" ];
configureFlags = [ "--enable-add-ons" ];
extraNativeBuildInputs = [
texinfo
perl
];
buildFlags = [ "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";
}
|