Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 24 lines 553 B view raw
1{lib, stdenv, fetchurl, sqlite}: 2 3stdenv.mkDerivation rec 4{ 5 version = "3.2.3"; 6 pname = "libzdb"; 7 8 src = fetchurl 9 { 10 url = "https://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz"; 11 sha256 = "sha256-oZV4Jvq3clSE/Ft0eApqfQ2Lf14uVNJuEGs5ngqGvrA="; 12 }; 13 14 buildInputs = [ sqlite ]; 15 16 meta = 17 { 18 homepage = "http://www.tildeslash.com/libzdb/"; 19 description = "Small, easy to use Open Source Database Connection Pool Library"; 20 license = lib.licenses.gpl3; 21 platforms = lib.platforms.linux; 22 maintainers = [ ]; 23 }; 24}