nixpkgs/pkgs/development/libraries/sqlite/default.nix
Eelco Dolstra ef9b025dbe * Remove a bunch of unused Nix expressions.
svn path=/nixpkgs/trunk/; revision=6716
2006-10-12 15:43:01 +00:00

12 lines
260 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "sqlite-3.3.6";
src = fetchurl {
url = "http://www.sqlite.org/sqlite-3.3.6.tar.gz";
md5 = "a2cb1fafad5c2587e513dcbd18ace097";
};
configureFlags = "--enable-threadsafe --disable-tcl";
inherit stdenv;
}