2006-12-27 19:14:57 +01:00
|
|
|
{stdenv, fetchurl, python, sqlite}:
|
2006-04-22 20:08:37 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-12-10 23:24:42 +01:00
|
|
|
name = "pysqlite-2.2.2";
|
|
|
|
src = fetchurl {
|
2007-09-11 12:15:07 +02:00
|
|
|
url = http://initd.org/pub/software/pysqlite/releases/2.2/2.2.2/pysqlite-2.2.2.tar.gz;
|
2006-12-10 23:24:42 +01:00
|
|
|
md5 = "3260547d3f11c85613b2de8ed529a4fc";
|
|
|
|
};
|
|
|
|
builder = ./builder.sh;
|
2006-04-22 20:08:37 +02:00
|
|
|
|
2006-12-27 19:14:57 +01:00
|
|
|
inherit stdenv python sqlite;
|
2006-04-22 20:08:37 +02:00
|
|
|
}
|