1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #55279 from KAction/libcdb

tinycdb: init at 0.7.8
This commit is contained in:
Ryan Mulligan 2020-03-10 16:28:46 -07:00 committed by GitHub
commit 5d6cdc6f3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
pname = "tinycdb";
version = "0.78";
outputs = [ "out" "dev" "lib" "man" ];
separateDebugInfo = true;
makeFlags = [ "prefix=$(out)" "staticlib" "sharedlib" "cdb-shared" ];
postInstall = ''
mkdir -p $lib/lib $dev/lib $out/bin
cp libcdb.so* $lib/lib
cp cdb-shared $out/bin/cdb
mv $out/lib/libcdb.a $dev/lib
rmdir $out/lib
'';
src = fetchurl {
url = "http://www.corpit.ru/mjt/tinycdb/${pname}-${version}.tar.gz";
sha256 = "0g6n1rr3lvyqc85g6z44lw9ih58f2k1i3v18yxlqvnla5m1qyrsh";
};
meta = with lib; {
description = "utility to manipulate constant databases (cdb)";
longDescription = ''
tinycdb is a small, fast and reliable utility and subroutine
library for creating and reading constant databases. The database
structure is tuned for fast reading.
'';
homepage = https://www.corpit.ru/mjt/tinycdb.html;
license = licenses.publicDomain;
platforms = platforms.linux;
};
}

View file

@ -14570,6 +14570,8 @@ in
tidyp = callPackage ../development/libraries/tidyp { };
tinycdb = callPackage ../development/libraries/tinycdb { };
tinyxml = tinyxml2;
tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { };