3
0
Fork 0
forked from mirrors/nixpkgs

* Added sqlite, a "zero administration" database; I like the sound of

that ;-)

svn path=/nixpkgs/trunk/; revision=2377
This commit is contained in:
Eelco Dolstra 2005-03-11 10:55:21 +00:00
parent 83ec45304d
commit 83f69ce406
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "sqlite-2.8.16";
src = fetchurl {
url = http://www.sqlite.org/sqlite-2.8.16.tar.gz;
md5 = "9c79b461ff30240a6f9d70dd67f8faea";
};
}

View file

@ -614,6 +614,10 @@ rec {
inherit fetchurl stdenv;
};
sqlite = (import ../development/libraries/sqlite) {
inherit fetchurl stdenv;
};
popt = (import ../development/libraries/popt) {
inherit fetchurl stdenv gettext;
};
@ -1133,8 +1137,10 @@ rec {
/*
fspot = (import ../applications/graphics/f-spot) {
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono;
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
libexif libjpeg sqlite;
inherit (gnome) libgnome libgnomeui;
gtksharp = gtksharp1;
};
*/