Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / uclient / default.nix
blob63a31c2bfbe9b63cbde0356c449b3d8057bea8de
1 { stdenv, lib, fetchgit, cmake, pkg-config, libubox }:
3 stdenv.mkDerivation {
4   pname = "uclient";
5   version = "unstable-2023-04-13";
7   src = fetchgit {
8     url = "https://git.openwrt.org/project/uclient.git";
9     rev = "007d945467499f43656b141171d31f5643b83a6c";
10     hash = "sha256-A47dyVc2MtOL6aImZ0b3SMWH2vzjfAXzRAOF4nfH6S0=";
11   };
13   nativeBuildInputs = [ cmake pkg-config ];
14   buidInputs = [ libubox ];
16   preConfigure = ''
17     sed -e 's|ubox_include_dir libubox/ustream-ssl.h|ubox_include_dir libubox/ustream-ssl.h HINTS ${libubox}/include|g' \
18         -e 's|ubox_library NAMES ubox|ubox_library NAMES ubox HINTS ${libubox}/lib|g' \
19         -i CMakeLists.txt
20   '';
22   meta = with lib; {
23     description = "Tiny OpenWrt fork of libnl";
24     homepage = "https://git.openwrt.org/?p=project/uclient.git;a=summary";
25     license = licenses.isc;
26     maintainers = with maintainers; [ mkg20001 ];
27     mainProgram = "uclient-fetch";
28     platforms = platforms.all;
29   };