* Added ClearSilver 0.10.3.

* Added SQLite 3.3.
* Added PySQLite 2.2.2.
* Added Trac 0.9.5. To get you started; a new project environment is
  created by executing:

    $ trac-admin /path/to/trac_project_env initenv

  Running the server can be done by executing:

    $ tracd --port 8000 /path/to/projectenv

  Trac is then available at http://localhost:8000/projectenv. More
  information available at http://www.edgewall.com/trac/.


svn path=/nixpkgs/trunk/; revision=5195
This commit is contained in:
Roy van den Broek
2006-04-22 18:08:37 +00:00
parent 7f239275aa
commit 3c8a7d98b0
8 changed files with 123 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
source $stdenv/setup
mkdir -p $out
mkdir -p $out/site-packages
export PYTHON_SITE=$out/site-packages
configureFlags="--with-python=$python/bin/python --disable-apache --disable-perl --disable-ruby --disable-java --disable-csharp"
genericBuild

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation {
name="clearsilver-0.10.3";
src = fetchurl {
url = "http://www.clearsilver.net/downloads/clearsilver-0.10.3.tar.gz";
md5 = "ff4104b0e58bca1b61d528edbd902769";
};
builder = ./builder.sh;
inherit stdenv python;
}