mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
7306386eb3
This commit causes glibc/info.nix to use the standard builder's `buildPhase` so things like `preBuild`, `postBuild`, `enableParallelBuilding`, etc work correctly.
24 lines
555 B
Nix
24 lines
555 B
Nix
{ callPackage, texinfo, perl }:
|
|
|
|
callPackage ./common.nix {} {
|
|
pname = "glibc-info";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
configureFlags = [ "--enable-add-ons" ];
|
|
|
|
extraNativeBuildInputs = [ texinfo perl ];
|
|
|
|
makeFlags = [ "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";
|
|
}
|