summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/docs/2.6-text.nix
blob: 6ced3597eeb8203c7eb6842dfdf25f1162dce19e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file was generated and will be overwritten by ./generate.sh

{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "python26-docs-text-2.6.8";
  src = fetchurl {
    url = http://docs.python.org/ftp/python/doc/2.6.8/python-2.6.8-docs-text.tar.bz2;
    sha256 = "05wsdh6ilgkclgak09fq7fsx5kflkmqq8dyxi2rpydx289cw3a8c";
  };
  installPhase = ''
    mkdir -p $out/share/docs
    cp -R ./ $out/share/docs/
  '';
}