python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / netifd / default.nix
blob315d58403825215dc18d3c5a5baa587f0777131d
1 { lib, stdenv, cmake, fetchgit, libnl, libubox, uci, ubus, json_c, pkg-config }:
3 stdenv.mkDerivation {
4   pname = "netifd";
5   version = "unstable-2021-04-03";
7   src = fetchgit {
8     url = "https://git.openwrt.org/project/netifd.git";
9     rev = "327da9895327bc56b23413ee91a6e6b6e0e4329d";
10     sha256 = "0jvk2hx8kbkc6d72gh9rwap8ds6qgnmny6306vvzxy68v03xikwv";
11   };
13   buildInputs = [ libnl libubox uci ubus json_c ];
14   nativeBuildInputs = [ cmake pkg-config ];
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   };