1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00
nixpkgs/pkgs/os-specific/linux/batman-adv/batctl.nix

29 lines
807 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
2017-07-31 09:49:21 +01:00
ver = "2017.2";
2013-05-28 22:02:22 +01:00
in
stdenv.mkDerivation rec {
name = "batctl-${ver}";
src = fetchurl {
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
2017-07-31 09:49:21 +01:00
sha256 = "0v2k9ylmk8i85p69dh6gh134f081gm1clq1vnhn6x4831n8x0q64";
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 = http://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;
2016-01-23 14:21:13 +00:00
maintainers = with stdenv.lib.maintainers; [ viric fpletz ];
2013-05-28 22:02:22 +01:00
platforms = with stdenv.lib.platforms; linux;
};
}