nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at python-updates 26 lines 581 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 sqlite, 6}: 7 8stdenv.mkDerivation (finalAttrs: { 9 version = "3.4.1"; 10 pname = "libzdb"; 11 12 src = fetchurl { 13 url = "https://www.tildeslash.com/libzdb/dist/libzdb-${finalAttrs.version}.tar.gz"; 14 sha256 = "sha256-W0Yz/CoWiA93YZf0BF9i7421Bi9jAw+iIQEdS4XXNss="; 15 }; 16 17 buildInputs = [ sqlite ]; 18 19 meta = { 20 homepage = "http://www.tildeslash.com/libzdb/"; 21 description = "Small, easy to use Open Source Database Connection Pool Library"; 22 license = lib.licenses.gpl3; 23 platforms = lib.platforms.linux; 24 maintainers = [ ]; 25 }; 26})