nixpkgs/pkgs/development/interpreters/python/docs/3.1-html.nix

19 lines
509 B
Nix
Raw Normal View History

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