Twisted: Attempt to generate the plug-in cache.

svn path=/nixpkgs/trunk/; revision=19782
This commit is contained in:
Ludovic Courtès 2010-02-03 13:37:49 +00:00
parent 715c59b281
commit 167d42970d

View File

@ -242,6 +242,8 @@ rec {
propagatedBuildInputs = [ twisted ];
postInstall = "twistd --help > /dev/null";
meta = {
description = "Nevow, a web application construction kit for Python";
@ -549,6 +551,12 @@ rec {
propagatedBuildInputs = [ pkgs.ZopeInterface ];
# Generate Twisted's plug-in cache. Twited users must do it as well. See
# http://twistedmatrix.com/documents/current/core/howto/plugin.html#auto3
# and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477103 for
# details.
postInstall = "$out/bin/twistd --help > /dev/null";
meta = {
homepage = http://twistedmatrix.com/;