ubus: init at unstable-04-09-2024
Some checks failed
build liminix / build_vm_qemu_mips (push) Failing after 28s

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2024-09-04 15:53:26 +02:00
parent eb083bee20
commit 4287a05182
2 changed files with 27 additions and 0 deletions

View file

@ -111,6 +111,7 @@ in {
systemconfig = callPackage ./systemconfig {};
tufted = callPackage ./tufted {};
libubox = callPackage ./libubox {};
ubus = callPackage ./ubus {};
uevent-watch = callPackage ./uevent-watch {};
usb-modeswitch = callPackage ./usb-modeswitch {};
writeAshScript = callPackage ./write-ash-script {};

26
pkgs/ubus/default.nix Normal file
View file

@ -0,0 +1,26 @@
{ stdenv, lib, fetchFromGitHub, cmake, libubox, json_c }:
stdenv.mkDerivation {
pname = "ubus";
version = "unstable-04-09-2024";
src = fetchFromGitHub {
owner = "openwrt";
repo = "ubus";
rev = "65bb027054def3b94a977229fd6ad62ddd32345b";
hash = "sha256-n82Ub0IiuvWbnlDCoN+0hjo/1PbplEbc56kuOYMrHxQ=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
libubox
json_c
];
cmakeFlags = [
"-DBUILD_LUA=off"
"-DBUILD_EXAMPLES=off"
];
}