lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 23 lines 739 B view raw
1{ lib, stdenv, cmake, fetchgit, libnl, libubox, uci, ubus, json_c, pkg-config }: 2 3stdenv.mkDerivation { 4 pname = "netifd"; 5 version = "unstable-2021-04-03"; 6 7 src = fetchgit { 8 url = "https://git.openwrt.org/project/netifd.git"; 9 rev = "327da9895327bc56b23413ee91a6e6b6e0e4329d"; 10 sha256 = "0jvk2hx8kbkc6d72gh9rwap8ds6qgnmny6306vvzxy68v03xikwv"; 11 }; 12 13 buildInputs = [ libnl libubox uci ubus json_c ]; 14 nativeBuildInputs = [ cmake pkg-config ]; 15 16 meta = with lib; { 17 description = "OpenWrt Network interface configuration daemon"; 18 homepage = "https://git.openwrt.org/?p=project/netifd.git;a=summary"; 19 license = licenses.lgpl21Only; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ ]; 22 }; 23}