fix pythonDocs install path

This commit is contained in:
Florian Friesdorf
2013-03-02 16:01:42 +01:00
parent b6452df939
commit 06e4059f80
25 changed files with 50 additions and 50 deletions
@@ -2,7 +2,7 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "python32-docs-html-3.2.3";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/3.2.3/python-3.2.3-docs-html.tar.bz2;
@@ -10,6 +10,6 @@ stdenv.mkDerivation {
};
installPhase = ''
mkdir -p $out/share/docs
cp -R ./ $out/share/docs/
cp -R ./ $out/share/docs/${name}
'';
}