Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 22 lines 457 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "libdbi"; 9 version = "0.9.0"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/libdbi/${pname}-${version}.tar.gz"; 13 sha256 = "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys"; 14 }; 15 16 meta = with lib; { 17 homepage = "https://libdbi.sourceforge.net/"; 18 description = "DB independent interface to DB"; 19 license = licenses.lgpl21; 20 platforms = platforms.all; 21 }; 22}