1f2189861c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/batctl/versions
29 lines
803 B
Nix
29 lines
803 B
Nix
{ stdenv, fetchurl, pkgconfig, libnl }:
|
|
|
|
let
|
|
ver = "2019.3";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "batctl-${ver}";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
|
|
sha256 = "0307a01n72kg7vcm60mi8jna6bydiin2cr3ylrixra1596hkzn9b";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libnl ];
|
|
|
|
preBuild = ''
|
|
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://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;
|
|
maintainers = with stdenv.lib.maintainers; [ fpletz ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|