Files
nixpkgs/pkgs/by-name/ol/olsrd/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

47 lines
1000 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
bison,
flex,
}:
stdenv.mkDerivation rec {
pname = "olsrd";
version = "0.9.8";
src = fetchFromGitHub {
owner = "OLSR";
repo = "olsrd";
rev = "v${version}";
sha256 = "1xk355dm5pfjil1j4m724vkdnc178lv6hi6s1g0xgpd59avbx90j";
};
patches = [
# remove if there's ever an upstream release that incorporates
# https://github.com/OLSR/olsrd/pull/87
(fetchpatch {
url = "https://raw.githubusercontent.com/openwrt-routing/packages/b3897386771890ba1b15f672c2fed58630beedef/olsrd/patches/011-bison.patch";
sha256 = "04cl4b8dpr1yjs7wa94jcszmkdzpnrn719a5m9nhm7lvfrn1rzd0";
})
];
buildInputs = [
bison
flex
];
preConfigure = ''
makeFlags="prefix=$out ETCDIR=$out/etc"
'';
meta = {
description = "Adhoc wireless mesh routing daemon";
license = lib.licenses.bsd3;
homepage = "http://olsr.org/";
maintainers = [ ];
platforms = with lib.platforms; linux;
};
}