3c8a7d98b0
* 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
14 lines
361 B
Nix
14 lines
361 B
Nix
{stdenv, fetchurl, python, clearsilver, subversion, sqlite, pysqlite, makeWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "trac-0.9.5";
|
|
src = fetchurl {
|
|
url = "http://ftp.edgewall.com/pub/trac/trac-0.9.5.tar.gz";
|
|
md5 = "3b7d708eaf905cc6ba2b6b10a09a8cf4";
|
|
};
|
|
builder = ./builder.sh;
|
|
inherit stdenv python subversion clearsilver sqlite pysqlite makeWrapper;
|
|
}
|
|
|
|
|