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

stdenv.mkDerivation rec {
  pname = "std-man-pages";
  version = "4.4.0";

  src = fetchurl {
    url = "mirror://gcc/libstdc++/doxygen/libstdc++-man.${version}.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;
  };
}