nixpkgs/pkgs/development/libraries/glibc/info.nix

24 lines
545 B
Nix
Raw Normal View History

{ callPackage, texinfo, perl }:
2012-09-18 16:38:43 +00:00
callPackage ./common.nix {} {
2012-09-18 16:38:43 +00:00
name = "glibc-info";
outputs = [ "out" ];
2012-09-18 16:38:43 +00: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"
cp -v "manual/"*.info* "$out/share/info"
2012-09-18 16:38:43 +00:00
'';
meta.description = "GNU Info manual of the GNU C Library";
}