nixpkgs/pkgs/data/documentation/std-man-pages/default.nix
Vladimír Čunát c979012631 man-only packages: fixup after stdenv changes
Thanks to @avnik for notification.
The stdenv now auto-removes developer-only documentation
unless explicitly indicated, which wasn't a good fit for these packages.
2016-01-28 13:55:37 +01:00

24 lines
473 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "std-man-pages-4.4.0";
src = fetchurl {
url = mirror://gcc/libstdc++/doxygen/libstdc++-man.4.4.0.tar.bz2;
sha256 = "0153py77ll759jacq41dp2z2ksr08pdcfic0rwjd6pr84dk89y9v";
};
outputDocdev = "out";
installPhase = ''
mkdir -p $out/share/man
cp -R * $out/share/man
'';
meta = {
description = "C++ STD manual pages";
homepage = http://gcc.gnu.org/;
license = "GPL/LGPL";
};
}