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 = "python26-docs-text-2.6.8"; 7 src = fetchurl { 8 url = http://docs.python.org/ftp/python/doc/2.6.8/python-2.6.8-docs-text.tar.bz2; 9 sha256 = "05wsdh6ilgkclgak09fq7fsx5kflkmqq8dyxi2rpydx289cw3a8c"; 10 }; 11 installPhase = '' 12 mkdir -p $out/share/doc/python26 13 cp -R ./ $out/share/doc/python26/text 14 ''; 15 meta = { 16 maintainers = [ lib.maintainers.chaoflow ]; 17 }; 18}