nixpkgs/pkgs/development/interpreters/python/docs/2.6-text.nix

16 lines
427 B
Nix
Raw Normal View History

2013-03-02 05:40:20 +01:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl }:
2013-03-02 16:00:50 +01:00
stdenv.mkDerivation rec {
2013-03-02 05:40:20 +01:00
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
2013-03-02 16:00:50 +01:00
cp -R ./ $out/share/docs/${name}
2013-03-02 05:40:20 +01:00
'';
}