summary refs log blame commit diff
path: root/pkgs/os-specific/linux/batman-adv/batctl.nix
blob: fdb6ea3695e864ceecae48af5e8862825e51e3d4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       

   
                 




                         
                                                                                             
                                                                    

    


                                    
               
                                                                  


          
                                                                       
                                                                                                     
                                       
                                                          


                                                 
{ stdenv, fetchurl, pkgconfig, libnl }:

let
  ver = "2018.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 = "1rljx2jlh3wlk6l9p068mhbqpdr5p5qnwm0336ay1316x0zjvqr4";
  };

  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;
  };
}