* 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
12 lines
246 B
Nix
12 lines
246 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sqlite-3.3.5";
|
|
src = fetchurl {
|
|
url = "http://www.sqlite.org/sqlite-3.3.5.tar.gz";
|
|
md5 = "dd2a7b6f2a07a4403a0b5e17e8ed5b88";
|
|
};
|
|
configureFlags = "--enable-threadsafe";
|
|
inherit stdenv;
|
|
}
|