summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/docs/2.6-pdf-a4.nix
blob: c3da7e1dc119e51e90c3b3b95cee28a561c33af2 (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 rec {
  name = "python26-docs-pdf-a4-2.6.8";
  src = fetchurl {
    url = http://docs.python.org/ftp/python/doc/2.6.8/python-2.6.8-docs-pdf-a4.tar.bz2;
    sha256 = "07k8n9zhd59s1yn8ahsizkaqnv969p0f2c2acxgxrxhhyy842pp8";
  };
  installPhase = ''
    mkdir -p $out/share/docs
    cp -R ./ $out/share/docs/${name}
  '';
}