2006-04-22 20:08:37 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-06-17 11:39:38 +02:00
|
|
|
name = "sqlite-3.5.9";
|
|
|
|
|
|
|
|
# Note: don't use the "amalgamation" source release, since it
|
|
|
|
# doesn't install sqlite3.pc.
|
2007-03-21 20:25:58 +01:00
|
|
|
src = fetchurl {
|
2008-06-17 11:39:38 +02:00
|
|
|
url = http://www.sqlite.org/sqlite-3.5.9.tar.gz;
|
|
|
|
sha256 = "0731zj0fnivhfc74wc3yh0p9gn7fpjgy3g79haarciqkdf8k3lvx";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.sqlite.org/;
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2007-03-21 20:25:58 +01:00
|
|
|
};
|
2006-04-22 20:08:37 +02:00
|
|
|
}
|