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
13 lines
326 B
Nix
13 lines
326 B
Nix
{stdenv, fetchurl, python, sqlite, substituter}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pysqlite-2.2.2";
|
|
src = fetchurl {
|
|
url = "http://initd.org/pub/software/pysqlite/releases/2.2/2.2.2/pysqlite-2.2.2.tar.gz";
|
|
md5 = "3260547d3f11c85613b2de8ed529a4fc";
|
|
};
|
|
builder = ./builder.sh;
|
|
|
|
inherit stdenv python sqlite substituter;
|
|
}
|