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

lmdb: 0.9.24 -> 0.9.25

Change to official repo. The Github read-only mirror is abandoned.
This commit is contained in:
Jesper Geertsen Jonsson 2020-06-13 20:07:34 +02:00
parent 7602241fbd
commit 021570aaf0

View file

@ -1,14 +1,13 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
pname = "lmdb";
version = "0.9.24";
version = "0.9.25";
src = fetchFromGitHub {
owner = "LMDB";
repo = "lmdb";
src = fetchgit {
url = "https://git.openldap.org/openldap/openldap.git";
rev = "LMDB_${version}";
sha256 = "088q6m8fvr12w43s461h7cvpg5hj8csaqj6n9pci150dz7bk5lxm";
sha256 = "0i60zlca8r6fib23gdgl4c80gxpx24772ggpvz94yr7zaai4k11w";
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";