Looks to be incompatible with the PaX constification plugin:
> /tmp/nix-build-batman-adv-2016.2-4.7.2.drv-0/batman-adv-2016.2/net/batman-adv/soft-interface.c:1065:22:
error: constified variable 'batadv_link_ops' placed into writable
section ".data..read_mostly"
struct rtnl_link_ops batadv_link_ops __read_mostly = {
https://hydra.nixos.org/build/39312033/log/raw
30 lines
960 B
Nix
30 lines
960 B
Nix
{ stdenv, fetchurl, kernel }:
|
|
|
|
#assert stdenv.lib.versionOlder kernel.version "3.17";
|
|
|
|
let base = "batman-adv-2016.2"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${base}-${kernel.version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.open-mesh.org/batman/releases/${base}/${base}.tar.gz";
|
|
sha256 = "0pj6jans75pxw9arp1747kmmk72zbc2vgkf2a0w565pj98x1nlk1";
|
|
};
|
|
|
|
preBuild = ''
|
|
makeFlags="KERNELPATH=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
sed -i -e "s,INSTALL_MOD_DIR=,INSTALL_MOD_PATH=$out INSTALL_MOD_DIR=," \
|
|
-e /depmod/d Makefile
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
|
|
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ viric fpletz ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
broken = (kernel.features.grsecurity or false);
|
|
};
|
|
}
|