1 { stdenv, lib, fetchgit, cmake, pkg-config, json_c, with_lua ? false, lua5_1, with_ustream_ssl ? false, ustream-ssl }:
5 version = "unstable-2023-05-23";
8 url = "https://git.openwrt.org/project/libubox.git";
9 rev = "75a3b870cace1171faf57bd55e5a9a2f1564f757";
10 hash = "sha256-QhJ09i7IWP6rbxrYuhisVsCr82Ou/JAZMEdkaLhZp1o=";
13 cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" (if with_lua then "-DLUAPATH=${placeholder "out"}/lib/lua" else "-DBUILD_LUA=OFF") ];
15 nativeBuildInputs = [ cmake pkg-config ];
16 buildInputs = [ json_c ] ++ lib.optional with_lua lua5_1 ++ lib.optional with_ustream_ssl ustream-ssl;
18 postInstall = lib.optionalString with_ustream_ssl ''
19 for fin in $(find ${ustream-ssl} -type f); do
20 fout="''${fin/"${ustream-ssl}"/"''${out}"}"
26 description = "C utility functions for OpenWrt";
27 homepage = "https://git.openwrt.org/?p=project/libubox.git;a=summary";
28 license = licenses.isc;
29 maintainers = with maintainers; [ fpletz ];
31 platforms = platforms.all;