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