2006-12-10 23:24:42 +01:00
|
|
|
{stdenv, fetchurl, python, sqlite, substitute}:
|
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 {
|
|
|
|
url = "http://initd.org/pub/software/pysqlite/releases/2.2/2.2.2/pysqlite-2.2.2.tar.gz";
|
|
|
|
md5 = "3260547d3f11c85613b2de8ed529a4fc";
|
|
|
|
};
|
|
|
|
builder = ./builder.sh;
|
2006-04-22 20:08:37 +02:00
|
|
|
|
2006-12-10 23:24:42 +01:00
|
|
|
inherit stdenv python sqlite substitute;
|
2006-04-22 20:08:37 +02:00
|
|
|
}
|