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