at 18.03-beta 18 lines 474 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libdbi-0.9.0"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libdbi/${name}.tar.gz"; 8 sha256 = "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = http://libdbi.sourceforge.net/; 13 description = "DB independent interface to DB"; 14 license = licenses.lgpl21; 15 platforms = platforms.all; 16 maintainers = with maintainers; [ wkennington ]; 17 }; 18}