Files
nixpkgs/pkgs/development/libraries/libzdb/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
553 B
Nix

{lib, stdenv, fetchurl, sqlite}:
stdenv.mkDerivation rec
{
version = "3.2.3";
pname = "libzdb";
src = fetchurl
{
url = "https://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
sha256 = "sha256-oZV4Jvq3clSE/Ft0eApqfQ2Lf14uVNJuEGs5ngqGvrA=";
};
buildInputs = [ sqlite ];
meta =
{
homepage = "http://www.tildeslash.com/libzdb/";
description = "Small, easy to use Open Source Database Connection Pool Library";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = [ ];
};
}