uci: init at unstable-2020-01-27

This commit is contained in:
Milan Pässler 2020-02-12 02:02:19 +01:00
parent 020e93b394
commit 6ad91bb5ca
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, cmake, fetchgit, pkgconfig, libubox }:
stdenv.mkDerivation {
pname = "uci";
version = "unstable-2020-01-27";
src = fetchgit {
url = "https://git.openwrt.org/project/uci.git";
rev = "e8d83732f9eb571dce71aa915ff38a072579610b";
sha256 = "1si8dh8zzw4j6m7387qciw2akfvl7c4779s8q5ns2ys6dn4sz6by";
};
hardeningDisable = [ "all" ];
cmakeFlags = [ "-D BUILD_LUA:BOOL=OFF" ];
buildInputs = [ libubox ];
nativeBuildInputs = [ cmake pkgconfig ];
meta = with stdenv.lib; {
description = "OpenWrt Unified Configuration Interface";
homepage = "https://git.openwrt.org/?p=project/uci.git;a=summary";
license = licenses.lgpl21;
platforms = platforms.all;
maintainers = with maintainers; [ petabyteboy ];
};
}

View File

@ -11106,6 +11106,8 @@ in
ubus = callPackage ../development/libraries/ubus { };
uci = callPackage ../development/libraries/uci { };
uri = callPackage ../development/libraries/uri { };
cppcms = callPackage ../development/libraries/cppcms { };