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