at v206 509 B view raw
1# This file was generated and will be overwritten by ./generate.sh 2 3{ stdenv, fetchurl, lib }: 4 5stdenv.mkDerivation rec { 6 name = "python27-docs-text-2.7.3"; 7 src = fetchurl { 8 url = http://docs.python.org/ftp/python/doc/2.7.3/python-2.7.3-docs-text.tar.bz2; 9 sha256 = "1rxlb3jhh3892y65i45nk1y2lx981fr22a5hmfkp9gvjvdykjnzp"; 10 }; 11 installPhase = '' 12 mkdir -p $out/share/doc/python27 13 cp -R ./ $out/share/doc/python27/text 14 ''; 15 meta = { 16 maintainers = [ lib.maintainers.chaoflow ]; 17 }; 18}