5 stdenv.mkDerivation rec {
9 src = fetchFromGitHub {
13 sha256 = "sha256-WLsyGEt7Xe6ZrOGMO7+3TU2sBgDTSmfD1WzD70pcDjo=";
16 nativeBuildInputs = [ cmake ];
19 homepage = "https://unqlite.org/";
20 description = "Self-contained, serverless, zero-conf, transactional NoSQL DB library";
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.
36 maintainers = with maintainers; [ AndersonTorres ];
37 license = licenses.bsd2;