summary refs log blame commit diff
path: root/pkgs/development/libraries/libubox/default.nix
blob: 9261d1b81bacdfefd4549582565039fab4e94180 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                     

                     
                    
                                  


                                                        

                                                                    



                                                            
                                           









                                                                          
{ stdenv, lib, fetchgit, cmake, pkg-config, json_c }:

stdenv.mkDerivation {
  pname = "libubox";
  version = "unstable-2021-03-09";

  src = fetchgit {
    url = "https://git.openwrt.org/project/libubox.git";
    rev = "551d75b5662cccd0466b990d58136bdf799a804d";
    sha256 = "05cnjjqjv9nvrs1d8pg4xxxf27jryiv6xk8plmdpmm7r2wkvwn3r";
  };

  cmakeFlags = [ "-DBUILD_LUA=OFF" "-DBUILD_EXAMPLES=OFF" ];

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ json_c ];

  meta = with lib; {
    description = "C utility functions for OpenWrt";
    homepage = "https://git.openwrt.org/?p=project/libubox.git;a=summary";
    license = licenses.isc;
    platforms = platforms.all;
    maintainers = with maintainers; [ fpletz ];
  };
}