nixpkgs/pkgs/os-specific/linux/batman-adv/batctl.nix

29 lines
803 B
Nix
Raw Normal View History

2016-01-07 09:06:07 +00:00
{ stdenv, fetchurl, pkgconfig, libnl }:
2013-05-28 22:02:22 +01:00
let
ver = "2019.2";
2013-05-28 22:02:22 +01:00
in
stdenv.mkDerivation rec {
name = "batctl-${ver}";
src = fetchurl {
url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
sha256 = "18qfz209pyksklcnrgvw6hm30iw7dng0rxi2njqxhk3xzw464rgv";
2013-05-28 22:02:22 +01:00
};
2016-01-07 09:06:07 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl ];
2013-05-28 22:02:22 +01:00
preBuild = ''
2016-01-07 09:06:07 +00:00
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
2013-05-28 22:02:22 +01:00
'';
meta = {
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";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ fpletz ];
2013-05-28 22:02:22 +01:00
platforms = with stdenv.lib.platforms; linux;
};
}