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

16 lines
427 B
Nix
Raw Normal View History

2013-03-02 04:40:20 +00:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl }:
2013-03-02 15:00:50 +00:00
stdenv.mkDerivation rec {
2013-03-02 04:40:20 +00:00
name = "python33-docs-text-3.3.0";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/3.3.0/python-3.3.0-docs-text.tar.bz2;
sha256 = "10vk2fixg1aglqmsf89kn98rlirrbhnrk1285vzfbynf2iavxw0n";
};
installPhase = ''
mkdir -p $out/share/docs
2013-03-02 15:00:50 +00:00
cp -R ./ $out/share/docs/${name}
2013-03-02 04:40:20 +00:00
'';
}