2017-05-18 12:55:08 +02:00
|
|
|
{ callPackage, texinfo, perl }:
|
2012-09-18 18:38:43 +02:00
|
|
|
|
2017-05-18 12:55:08 +02:00
|
|
|
callPackage ./common.nix {} {
|
2012-09-18 18:38:43 +02:00
|
|
|
name = "glibc-info";
|
|
|
|
|
2015-12-05 08:59:30 +01:00
|
|
|
outputs = [ "out" ];
|
|
|
|
|
2012-09-18 18:38:43 +02:00
|
|
|
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 = ''
|
|
|
|
mkdir -p "$out/share/info"
|
2013-03-12 11:46:09 +01:00
|
|
|
cp -v "manual/"*.info* "$out/share/info"
|
2012-09-18 18:38:43 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta.description = "GNU Info manual of the GNU C Library";
|
|
|
|
}
|