* Remove a bunch of unused Nix expressions.
svn path=/nixpkgs/trunk/; revision=6716
This commit is contained in:
11
pkgs/development/libraries/sqlite/default.nix
Normal file
11
pkgs/development/libraries/sqlite/default.nix
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user