netifd: init at unstable-2020-01-18

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

View file

@ -0,0 +1,28 @@
{ runCommand, stdenv, cmake, fetchgit, libnl, libubox, uci, ubus, json_c }:
stdenv.mkDerivation {
pname = "netifd";
version = "unstable-2020-01-18";
src = fetchgit {
url = "https://git.openwrt.org/project/netifd.git";
rev = "1321c1bd8fe921986c4eb39c3783ddd827b79543";
sha256 = "178pckyf1cydi6zzr4bmhksv8vyaks91zv9lqqd2z5nkmccl6vf3";
};
buildInputs = [ libnl libubox uci ubus json_c ];
nativeBuildInputs = [ cmake ];
preBuild = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE \
-I$(echo "${stdenv.lib.getDev libnl}"/include/libnl*/)"
'';
meta = with stdenv.lib; {
description = "OpenWrt Network interface configuration daemon";
homepage = "https://git.openwrt.org/?p=project/netifd.git;a=summary";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ petabyteboy ];
};
}

View file

@ -4252,6 +4252,8 @@ in
netmask = callPackage ../tools/networking/netmask {};
netifd = callPackage ../tools/networking/netifd {};
ipscan = callPackage ../tools/security/ipscan { };
ipv6calc = callPackage ../tools/networking/ipv6calc {};