nixpkgs/pkgs/development/libraries/glibc/info.nix
Artturin 0f9ee45a6d glibc: enable strictDeps
verified by building and diffing 'glibc' and 'glibcInfo'
2022-05-22 16:40:40 +03:00

24 lines
557 B
Nix

{ callPackage, texinfo, perl }:
callPackage ./common.nix {} {
pname = "glibc-info";
outputs = [ "out" ];
configureFlags = [ "--enable-add-ons" ];
extraNativeBuildInputs = [ 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"
'';
meta.description = "GNU Info manual of the GNU C Library";
}