2016-09-05 20:02:57 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gpsd, libcap, libnl }:
|
2015-01-18 01:58:43 +03:00
|
|
|
|
|
|
|
let
|
2018-03-05 17:43:12 +03:00
|
|
|
ver = "2018.0";
|
2015-01-18 01:58:43 +03:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "alfred-${ver}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
|
2018-03-05 17:43:12 +03:00
|
|
|
sha256 = "0mzjgjkmgdrrqa6fbpii9q1xqvg3kvwgq2k2kpdf0vy4xxnypky7";
|
2015-01-18 01:58:43 +03:00
|
|
|
};
|
|
|
|
|
2016-01-07 12:06:07 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-09-05 20:02:57 +03:00
|
|
|
buildInputs = [ gpsd libcap libnl ];
|
2015-01-18 01:58:43 +03:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2017-08-03 00:50:51 +03:00
|
|
|
homepage = https://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
|
2015-01-18 01:58:43 +03:00
|
|
|
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fpletz ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|