depot/third_party/nixpkgs/pkgs/data/documentation/std-man-pages/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
545 B
Nix

{ 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;
};
}