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

29 lines
844 B
Nix
Raw Normal View History

2016-09-05 20:02:57 +03:00
{ stdenv, fetchurl, pkgconfig, gpsd, libcap, libnl }:
2015-01-18 01:58:43 +03:00
let
2017-06-02 01:36:55 +03:00
ver = "2017.1";
2015-01-18 01:58:43 +03:00
in
stdenv.mkDerivation rec {
name = "alfred-${ver}";
src = fetchurl {
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
2017-06-02 01:36:55 +03:00
sha256 = "1c6zq8j0nb1wm9zzlzc2bn8a500pvqbn2vv9hrv6nvq7il2silzq";
2015-01-18 01:58:43 +03:00
};
2016-01-07 12:06:07 +03:00
nativeBuildInputs = [ pkgconfig ];
2016-09-05 20:02:57 +03:00
buildInputs = [ gpsd libcap libnl ];
2015-01-18 01:58:43 +03: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;
};
}