Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libubox / default.nix
bloba1fe567af8b198d02d341f7b36e0114c59e04ef1
1 { stdenv, lib, fetchgit, cmake, pkg-config, json_c, with_lua ? false, lua5_1, with_ustream_ssl ? false, ustream-ssl }:
3 stdenv.mkDerivation {
4   pname = "libubox";
5   version = "unstable-2023-05-23";
7   src = fetchgit {
8     url = "https://git.openwrt.org/project/libubox.git";
9     rev = "75a3b870cace1171faf57bd55e5a9a2f1564f757";
10     hash = "sha256-QhJ09i7IWP6rbxrYuhisVsCr82Ou/JAZMEdkaLhZp1o=";
11   };
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}"}"
21       ln -s "$fin" "$fout"
22     done
23   '';
25   meta = with lib; {
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 ];
30     mainProgram = "jshn";
31     platforms = platforms.all;
32   };