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

29 lines
846 B
Nix
Raw Normal View History

2016-09-05 17:02:57 +00:00
{ stdenv, fetchurl, pkgconfig, gpsd, libcap, libnl }:
2015-01-17 22:58:43 +00:00
let
2019-12-23 03:06:52 +00:00
ver = "2019.5";
2015-01-17 22:58:43 +00:00
in
stdenv.mkDerivation rec {
name = "alfred-${ver}";
src = fetchurl {
url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
2019-12-23 03:06:52 +00:00
sha256 = "09npizg89ks1wm19l5xz0pq1ljpsbwy030xnprqnd0p53976wywa";
2015-01-17 22:58:43 +00:00
};
2016-01-07 09:06:07 +00:00
nativeBuildInputs = [ pkgconfig ];
2016-09-05 17:02:57 +00:00
buildInputs = [ gpsd libcap libnl ];
2015-01-17 22:58:43 +00:00
preBuild = ''
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
'';
meta = {
homepage = https://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
2015-01-17 22:58:43 +00:00
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;
};
}