nixpkgs/pkgs/tools/networking/olsrd/default.nix

26 lines
647 B
Nix
Raw Normal View History

2013-05-28 20:37:59 +00:00
{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
pname = "olsrd";
2017-03-02 00:18:37 +00:00
version = "0.9.6.1";
2013-05-28 20:37:59 +00:00
src = fetchurl {
url = "http://www.olsr.org/releases/0.9/${pname}-${version}.tar.bz2";
2017-03-02 00:18:37 +00:00
sha256 = "9cac290e9bff5fc7422110b9ccd972853f10962c962d2f31a63de9c6d1520612";
2013-05-28 20:37:59 +00:00
};
buildInputs = [ bison flex ];
preConfigure = ''
makeFlags="prefix=$out ETCDIR=$out/etc"
'';
meta = {
description = "An adhoc wireless mesh routing daemon";
license = stdenv.lib.licenses.bsd3;
homepage = "http://olsr.org/";
2013-05-28 20:37:59 +00:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}