2013-03-02 05:40:20 +01:00
|
|
|
# This file was generated and will be overwritten by ./generate.sh
|
|
|
|
|
2013-03-05 12:28:30 +01:00
|
|
|
{ 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 = "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 12:28:30 +01:00
|
|
|
mkdir -p $out/share/doc
|
|
|
|
cp -R ./ $out/share/doc/${name}
|
2013-03-02 05:40:20 +01:00
|
|
|
'';
|
2013-03-03 06:43:31 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = [ lib.maintainers.chaoflow ];
|
|
|
|
};
|
2013-03-02 05:40:20 +01:00
|
|
|
}
|