summary refs log tree commit diff
path: root/pkgs/tools/networking/oonf-olsrd2/default.nix
blob: bc7cbe8d491da6fccf5bcb1015b64a53ed16d5da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
  pname = "oonf-olsrd2";
  version = "0.15.1";

  src = fetchFromGitHub {
    owner = "OLSR";
    repo = "OONF";
    rev = "v${version}";
    hash = "sha256-7EH2K7gaBGD95WFlG6RRhKEWJm91Xv2GOHYQjZWuzl0=";
  };

  # Workaround build failure on -fno-common toolchains like upstream
  # gcc-10. Otherwise build fails as:
  #   ld: CMakeFiles/oonf_dlep_proxy.dir/router/dlep_router_session.c.o:(.bss+0x0):
  #     multiple definition of `LOG_DLEP_ROUTER'; CMakeFiles/oonf_dlep_proxy.dir/router/dlep_router.c.o:(.bss+0x0): first defined here
  # Can be removed once release with https://github.com/OLSR/OONF/pull/40 is out.
  env.NIX_CFLAGS_COMPILE = "-fcommon";

  cmakeFlags = [
    "-DOONF_NO_WERROR=yes"
  ];

  nativeBuildInputs = [
    cmake
  ];

  meta = with lib; {
    description = "An adhoc wireless mesh routing daemon";
    license = licenses.bsd3;
    homepage = "http://olsr.org/";
    maintainers = with maintainers; [ mkg20001 ];
    platforms = platforms.linux;
  };
}