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

29 lines
831 B
Nix
Raw Normal View History

2016-01-07 01:06:07 -08:00
{ stdenv, fetchurl, pkgconfig, gpsd, libcap }:
2015-01-17 14:58:43 -08:00
let
2016-07-10 19:04:03 -07:00
ver = "2016.2";
2015-01-17 14:58:43 -08:00
in
stdenv.mkDerivation rec {
name = "alfred-${ver}";
src = fetchurl {
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
2016-07-10 19:04:03 -07:00
sha256 = "19025arn926lhn54ss4gmmdss9z4a3yxk4ja5kyv17mi5i4yg7j6";
2015-01-17 14:58:43 -08:00
};
2016-01-07 01:06:07 -08:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gpsd libcap ];
2015-01-17 14:58:43 -08:00
preBuild = ''
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
'';
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, information distribution tool";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ fpletz ];
platforms = with stdenv.lib.platforms; linux;
};
}