8 stdenv.mkDerivation (finalAttrs: {
12 src = fetchFromGitHub {
15 rev = finalAttrs.version;
16 hash = "sha256-FkOsdOHPE75bSkKw3cdaech6jAv0f/RJ9tgRVzPSAdA=";
17 fetchSubmodules = true;
26 "--with-tcl=${tcl}/lib"
27 "--libdir=${placeholder "out"}/lib"
28 "--includedir=${placeholder "out"}/include"
29 "--datarootdir=${placeholder "out"}/share"
33 homepage = "https://github.com/RubyLane/rl_json";
34 description = "Tcl extension for fast json manipulation";
35 license = lib.licenses.tcltk;
37 Extends Tcl with a json value type and a command to manipulate json values
38 directly. Similar in spirit to how the dict command manipulates dictionary
39 values, and comparable in speed.
41 maintainers = with lib.maintainers; [ fgaz ];
42 platforms = tcl.meta.platforms;
43 # From version 0.15.1: 'endian.h' file not found
44 broken = stdenv.hostPlatform.isDarwin;