Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 17 lines 421 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 }; 17}