summary refs log tree commit diff
path: root/pkgs/data/documentation/std-man-pages/default.nix
blob: 04683ceddb3ff985d0d5a9ba72f8f6c10e24ceae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{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;
  };
}