File tree Expand file tree Collapse file tree
pkgs/development/tcl-modules/by-name/tc/tcl-lmdb Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments