fix pythondocs (missing lib, doc instead of docs)

This commit is contained in:
Florian Friesdorf
2013-03-05 12:28:30 +01:00
parent ad31fcad52
commit 2e21e4fadc
28 changed files with 103 additions and 103 deletions

View File

@@ -1,6 +1,6 @@
# This file was generated and will be overwritten by ./generate.sh
{ stdenv, fetchurl }:
{ stdenv, fetchurl, lib }:
stdenv.mkDerivation rec {
name = "python30-docs-text-3.0.1";
@@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "12qlh9ywbnw50wk5siq7lmhr935dd16q3vjbii6gfv0g80b1byzx";
};
installPhase = ''
mkdir -p $out/share/docs
cp -R ./ $out/share/docs/${name}
mkdir -p $out/share/doc
cp -R ./ $out/share/doc/${name}
'';
meta = {
maintainers = [ lib.maintainers.chaoflow ];