* Sync with the trunk once more.
* Turn on everything in Hydra. svn path=/nixpkgs/branches/stdenv-updates/; revision=14806
This commit is contained in:
21
pkgs/data/documentation/std-man-pages/default.nix
Normal file
21
pkgs/data/documentation/std-man-pages/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "std-man-pages-4.2.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gcc/libstdc++/doxygen/libstdc++-man-4.2.2.tar.bz2;
|
||||
sha256 = "1572a5hlrj50gk03aardlrhhila0yjlvhqszl424297ga4g95mk2";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/share/man
|
||||
cp -R * $out/share/man
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "C++ STD manual pages";
|
||||
homepage = http://gcc.gnu.org/;
|
||||
license = "GPL/LGPL";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user