summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/lmdb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/lmdb/default.nix')
-rw-r--r--pkgs/development/libraries/lmdb/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/libraries/lmdb/default.nix b/pkgs/development/libraries/lmdb/default.nix
index 229e82c323aa..d1a68cc66c60 100644
--- a/pkgs/development/libraries/lmdb/default.nix
+++ b/pkgs/development/libraries/lmdb/default.nix
@@ -1,13 +1,15 @@
-{ lib, stdenv, fetchgit }:
+{ lib, stdenv, fetchFromGitLab }:
stdenv.mkDerivation rec {
pname = "lmdb";
- version = "0.9.28";
+ version = "0.9.29";
- src = fetchgit {
- url = "https://git.openldap.org/openldap/openldap.git";
+ src = fetchFromGitLab {
+ domain = "git.openldap.org";
+ owner = "openldap";
+ repo = "openldap";
rev = "LMDB_${version}";
- sha256 = "012a8bs49cswsnzw7k4piis5b6dn4by85w7a7mai9i04xcjyy9as";
+ sha256 = "19zq5s1amrv1fhw1aszcn2w2xjrk080l6jj5hc9f46yiqf98jjg3";
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
@@ -52,7 +54,7 @@ stdenv.mkDerivation rec {
offering the persistence of standard disk-based databases, and is only
limited to the size of the virtual address space.
'';
- homepage = "http://symas.com/mdb/";
+ homepage = "https://symas.com/lmdb/";
maintainers = with maintainers; [ jb55 vcunat ];
license = licenses.openldap;
platforms = platforms.all;