nixpkgs/pkgs/development/interpreters/python/cpython/docs/2.7-html.nix

19 lines
509 B
Nix
Raw Normal View History

2013-03-02 04:40:20 +00:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-02 04:40:20 +00:00
2013-03-02 15:00:50 +00:00
stdenv.mkDerivation rec {
2013-03-02 04:40:20 +00:00
name = "python27-docs-html-2.7.3";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-html.tar.bz2;
sha256 = "1hg92n0mzl9w6j33b2h0bf2vy6fsxnpxfdc3qw760vcm0y00155j";
};
installPhase = ''
mkdir -p $out/share/doc/python27
cp -R ./ $out/share/doc/python27/html
2013-03-02 04:40:20 +00:00
'';
meta = {
maintainers = [ lib.maintainers.chaoflow ];
};
2013-03-02 04:40:20 +00:00
}