fix pythonDocs install path
This commit is contained in:
@@ -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}
|
||||
'';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user