nixpkgs/pkgs/data/documentation/std-man-pages/default.nix
Eelco Dolstra 5f8a330d40 outputDocdev -> outputDevdoc
For consistency with the devdoc output.
2016-09-20 17:44:48 +02:00

25 lines
516 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";
};
outputDevdoc = "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";
platforms = stdenv.lib.platforms.unix;
};
}