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