summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite/default.nix
blob: 087372a6617bce0747dbe8e8c8b4c46140f04d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "sqlite-3.5.9";

  # Note: don't use the "amalgamation" source release, since it
  # doesn't install sqlite3.pc.
  src = fetchurl {
    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";
  };
}