summary refs log tree commit diff
path: root/pkgs/data/documentation/std-man-pages/default.nix
blob: a2f9f005eb93358a2baf240eee23b0374cee756f (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, lib, fetchurl }:

stdenv.mkDerivation {
  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 = with lib; {
    description = "GCC C++ STD manual pages";
    homepage = "https://gcc.gnu.org/";
    license = with licenses; [ fdl12Plus ];
    platforms = platforms.unix;
  };
}