2010-07-29 19:55:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2007-12-01 16:20:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-11 21:13:39 +00:00
|
|
|
name = "libdbi-0.9.0";
|
2010-07-29 19:55:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libdbi/${name}.tar.gz";
|
2015-03-11 21:13:39 +00:00
|
|
|
sha256 = "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys";
|
2010-07-29 19:55:16 +01:00
|
|
|
};
|
|
|
|
|
2015-03-11 21:13:39 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://libdbi.sourceforge.net/;
|
2010-07-29 19:55:16 +01:00
|
|
|
description = "DB independent interface to DB";
|
2015-03-11 21:13:39 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2010-07-29 19:55:16 +01:00
|
|
|
};
|
2007-12-01 16:20:23 +00:00
|
|
|
}
|