* Remove a bunch of unused Nix expressions.

svn path=/nixpkgs/trunk/; revision=6716
This commit is contained in:
Eelco Dolstra
2006-10-12 15:43:01 +00:00
parent 85454a47da
commit ef9b025dbe
70 changed files with 65 additions and 726 deletions

View File

@@ -0,0 +1,11 @@
{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;
}