lol
1{ stdenv, fetchurl, pkgconfig, gpsd }:
2
3let
4 ver = "2014.4.0";
5in
6stdenv.mkDerivation rec {
7 name = "alfred-${ver}";
8
9 src = fetchurl {
10 url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
11 sha256 = "99e6c64e7069b0b7cb861369d5c198bfc7d74d41509b8edd8a17ba78e7c8d034";
12 };
13
14 buildInputs = [ pkgconfig gpsd ];
15
16 preBuild = ''
17 makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
18 '';
19
20 meta = {
21 homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
22 description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool";
23 license = stdenv.lib.licenses.gpl2;
24 maintainers = with stdenv.lib.maintainers; [ fpletz ];
25 platforms = with stdenv.lib.platforms; linux;
26 };
27}