3
0
Fork 0
forked from mirrors/nixpkgs

AARGH! actually take the *source* file and not the precompiled binary :(

svn path=/nixpkgs/trunk/; revision=5880
This commit is contained in:
Armijn Hemel 2006-07-22 22:53:15 +00:00
parent e082ae1151
commit 2c9ccc300e

View file

@ -3,8 +3,8 @@
stdenv.mkDerivation {
name = "sqlite-3.3.6";
src = fetchurl {
url = "http://www.sqlite.org/sqlite3-3.3.6.bin.gz";
md5 = "7e0b5e1bf989419c662c7955fdf47ab3";
url = "http://www.sqlite.org/sqlite-3.3.6.tar.gz;
md5 = "a2cb1fafad5c2587e513dcbd18ace097";
};
configureFlags = "--enable-threadsafe";
inherit stdenv;