1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/interpreters/python/docs/3.3-text.nix

19 lines
509 B
Nix
Raw Normal View History

2013-03-01 23:40:20 -05:00
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl, lib }:
2013-03-01 23:40:20 -05:00
2013-03-02 10:00:50 -05:00
stdenv.mkDerivation rec {
2013-03-01 23:40:20 -05: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/doc/python33
cp -R ./ $out/share/doc/python33/text
2013-03-01 23:40:20 -05:00
'';
meta = {
maintainers = [ lib.maintainers.chaoflow ];
};
2013-03-01 23:40:20 -05:00
}