fix pythonDocs install path

This commit is contained in:
Florian Friesdorf
2013-03-02 16:00:50 +01:00
parent b6452df939
commit 06e4059f80
25 changed files with 50 additions and 50 deletions

View File

@@ -2,7 +2,7 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "python30-docs-text-3.0.1";
src = fetchurl {
url = http://docs.python.org/ftp/python/doc/3.0.1/python-3.0.1-docs-text.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}
'';
}