python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / unqlite / default.nix
blobc0e405c8849c94312d60eef69c8977536f978ab1
1 { lib, stdenv
2 , fetchFromGitHub
3 , cmake }:
5 stdenv.mkDerivation rec {
6   pname = "unqlite";
7   version = "1.1.9";
9   src = fetchFromGitHub {
10     owner = "symisc";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "sha256-WLsyGEt7Xe6ZrOGMO7+3TU2sBgDTSmfD1WzD70pcDjo=";
14   };
16   nativeBuildInputs = [ cmake ];
18   meta = with lib; {
19     homepage = "https://unqlite.org/";
20     description = "Self-contained, serverless, zero-conf, transactional NoSQL DB library";
21     longDescription = ''
22       UnQLite is a in-process software library which implements a
23       self-contained, serverless, zero-configuration, transactional NoSQL
24       database engine. UnQLite is a document store database similar to MongoDB,
25       Redis, CouchDB etc. as well a standard Key/Value store similar to
26       BerkeleyDB, LevelDB, etc.
28       UnQLite is an embedded NoSQL (Key/Value store and Document-store) database
29       engine. Unlike most other NoSQL databases, UnQLite does not have a
30       separate server process. UnQLite reads and writes directly to ordinary
31       disk files. A complete database with multiple collections, is contained in
32       a single disk file. The database file format is cross-platform, you can
33       freely copy a database between 32-bit and 64-bit systems or between
34       big-endian and little-endian architectures.
35     '';
36     maintainers = with maintainers; [ AndersonTorres ];
37     license = licenses.bsd2;
38   };