2013-03-01 20:40:20 -08:00
|
|
|
# This file was generated and will be overwritten by ./generate.sh
|
|
|
|
|
2013-03-05 03:28:30 -08:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2013-03-01 20:40:20 -08:00
|
|
|
|
2013-03-02 07:00:50 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2013-03-01 20:40:20 -08:00
|
|
|
name = "python27-docs-text-2.7.3";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-text.tar.bz2;
|
|
|
|
sha256 = "1rxlb3jhh3892y65i45nk1y2lx981fr22a5hmfkp9gvjvdykjnzp";
|
|
|
|
};
|
|
|
|
installPhase = ''
|
2013-03-05 03:33:24 -08:00
|
|
|
mkdir -p $out/share/doc/python27
|
|
|
|
cp -R ./ $out/share/doc/python27/text
|
2013-03-01 20:40:20 -08:00
|
|
|
'';
|
2013-03-02 21:43:31 -08:00
|
|
|
meta = {
|
|
|
|
maintainers = [ lib.maintainers.chaoflow ];
|
|
|
|
};
|
2013-03-01 20:40:20 -08:00
|
|
|
}
|