libubox: init at 2017-09-29

This commit is contained in:
Franz Pletz 2017-10-01 21:33:28 +02:00
parent 90858501ba
commit 7ec039bb2b
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, lib, fetchgit, cmake, pkgconfig, json_c }:
stdenv.mkDerivation {
name = "libubox-2017-09-29";
src = fetchgit {
url = "https://git.openwrt.org/project/libubox.git";
rev = "632688e8d6cde32781e4ec685d59afb0938300ad";
sha256 = "1rkwn287k7p802hbd9ap13xxrxsghq6827r86ymqbbcmbcrna13c";
};
cmakeFlags = [ "-DBUILD_LUA=OFF" "-DBUILD_EXAMPLES=OFF" ];
nativeBuildInputs = [ cmake pkgconfig ];
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 ];
};
}

View file

@ -9541,6 +9541,8 @@ with pkgs;
libu2f-server = callPackage ../development/libraries/libu2f-server { };
libubox = callPackage ../development/libraries/libubox { };
libuecc = callPackage ../development/libraries/libuecc { };
libui = callPackage ../development/libraries/libui { };