nixpkgs/pkgs/development/libraries/sqlite/default.nix
Eelco Dolstra a697127fcd * SQLite updated to 3.6.22. Use the amalgamation tarball since it now
installs the pkg-config files that other packages expect.  This also
  makes the dependency on tcl unnecessary.

svn path=/nixpkgs/trunk/; revision=19765
2010-02-02 15:49:48 +00:00

18 lines
462 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "sqlite-3.6.22";
src = fetchurl {
url = "http://www.sqlite.org/sqlite-amalgamation-3.6.22.tar.gz";
sha256 = "1k5qyl0v2y4fpkh7vvxvb0irpnl71g0ffhfc3ksm40mrhcdq9qk8";
};
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1";
meta = {
homepage = http://www.sqlite.org/;
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
};
}