lol

libdbi: 0.8.3-1 -> 0.9.0

+7 -5
+7 -5
pkgs/development/libraries/libdbi/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libdbi-0.8.3"; 4 + name = "libdbi-0.9.0"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://sourceforge/libdbi/${name}.tar.gz"; 8 - sha256 = "1qx5d5ikx65k73ir9rf557ri6j99ihsnjqqyznqsf7dvprb1ir3j"; 8 + sha256 = "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys"; 9 9 }; 10 10 11 - configureFlags = "--disable-docs"; 12 - 13 - meta = { 11 + meta = with stdenv.lib; { 12 + homepage = http://libdbi.sourceforge.net/; 14 13 description = "DB independent interface to DB"; 14 + license = licenses.lgpl21; 15 + platforms = platforms.all; 16 + maintainers = with maintainers; [ wkennington ]; 15 17 }; 16 18 }