Skip to content

Commit 85793c2

Browse files
authored
tclPackages.tcl-lmdb: init at 0.5.0 (#403399)
2 parents 1afdc51 + a0768b2 commit 85793c2

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

  • pkgs/development/tcl-modules/by-name/tc/tcl-lmdb
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
lib,
3+
mkTclDerivation,
4+
fetchFromGitHub,
5+
lmdb,
6+
}:
7+
8+
mkTclDerivation rec {
9+
pname = "tcl-lmdb";
10+
version = "0.5.0";
11+
12+
src = fetchFromGitHub {
13+
owner = "ray2501";
14+
repo = "tcl-lmdb";
15+
rev = version;
16+
hash = "sha256-HrR8VQ9cE9jkESqvKkLnYbZLErUVxau2z8xcFImH9lc=";
17+
};
18+
19+
configureFlags = [
20+
"--with-system-lmdb=yes"
21+
];
22+
23+
buildInputs = [
24+
lmdb
25+
];
26+
27+
meta = {
28+
description = "The Tcl interface to the Lightning Memory-Mapped Database";
29+
homepage = "https://github.com/ray2501/tcl-lmdb";
30+
changelog = "https://github.com/ray2501/tcl-lmdb/blob/master/ChangeLog";
31+
license = lib.licenses.bsd2;
32+
maintainers = with lib.maintainers; [ fgaz ];
33+
platforms = lib.platforms.all;
34+
};
35+
}

0 commit comments

Comments
 (0)