mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
uci: init at unstable-2020-01-27
This commit is contained in:
parent
020e93b394
commit
6ad91bb5ca
25
pkgs/development/libraries/uci/default.nix
Normal file
25
pkgs/development/libraries/uci/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user