2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libnl }:
|
2013-05-28 22:02:22 +01:00
|
|
|
|
2020-01-01 19:26:23 +00:00
|
|
|
let cfg = import ./version.nix; in
|
|
|
|
|
2013-05-28 22:02:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-01 19:26:23 +00:00
|
|
|
pname = "batctl";
|
|
|
|
inherit (cfg) version;
|
2013-05-28 22:02:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-01 19:26:23 +00:00
|
|
|
url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${version}/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = cfg.sha256.${pname};
|
2013-05-28 22:02:22 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-01-07 09:06:07 +00:00
|
|
|
buildInputs = [ libnl ];
|
|
|
|
|
2013-05-28 22:02:22 +01:00
|
|
|
preBuild = ''
|
2021-01-19 06:50:56 +00:00
|
|
|
makeFlags="PREFIX=$out PKG_CONFIG=${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config"
|
2013-05-28 22:02:22 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki";
|
2013-05-28 22:02:22 +01:00
|
|
|
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, control tool";
|
2021-01-15 14:45:37 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2013-05-28 22:02:22 +01:00
|
|
|
};
|
|
|
|
}
|