* Revived RPM. Damn, RPM is nasty to build.

svn path=/nixpkgs/trunk/; revision=8407
This commit is contained in:
Eelco Dolstra
2007-03-21 19:25:58 +00:00
parent 778d516e41
commit 505c169238
13 changed files with 76 additions and 108 deletions

View File

@@ -1,11 +1,10 @@
{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;
name = "sqlite-3.3.13";
src = fetchurl {
url = http://www.sqlite.org/sqlite-3.3.13.tar.gz;
sha256 = "0p32asxkb38g6mbb2p7hdk09bnrrqn67dgnvgqx7pvwi5vcl80ck";
};
configureFlags = "--enable-threadsafe --disable-tcl";
}