29 lines
808 B
Nix
29 lines
808 B
Nix
{ stdenv, fetchurl, pkgconfig, libnl }:
|
|
|
|
let
|
|
ver = "2017.3";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "batctl-${ver}";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
|
|
sha256 = "1a48kc2v8cb1757pxlli96qf3d7x7k3qw04rjadfs0iy09sz1ir9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libnl ];
|
|
|
|
preBuild = ''
|
|
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://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, control tool";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ viric fpletz ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|