biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / olsrd / default.nix
blob5f8985b66cba7724e8d4fce35cde378add9f53f5
1 { lib, stdenv, fetchFromGitHub, fetchpatch, bison, flex }:
3 stdenv.mkDerivation rec {
4   pname = "olsrd";
5   version = "0.9.8";
7   src = fetchFromGitHub {
8     owner = "OLSR";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1xk355dm5pfjil1j4m724vkdnc178lv6hi6s1g0xgpd59avbx90j";
12   };
14   patches = [
15     # remove if there's ever an upstream release that incorporates
16     # https://github.com/OLSR/olsrd/pull/87
17     (fetchpatch {
18       url = "https://raw.githubusercontent.com/openwrt-routing/packages/b3897386771890ba1b15f672c2fed58630beedef/olsrd/patches/011-bison.patch";
19       sha256 = "04cl4b8dpr1yjs7wa94jcszmkdzpnrn719a5m9nhm7lvfrn1rzd0";
20     })
21   ];
23   buildInputs = [ bison flex ];
25   preConfigure = ''
26     makeFlags="prefix=$out ETCDIR=$out/etc"
27   '';
29   meta = {
30     description = "Adhoc wireless mesh routing daemon";
31     license = lib.licenses.bsd3;
32     homepage = "http://olsr.org/";
33     maintainers = [ ];
34     platforms = with lib.platforms; linux;
35   };