olsrd: fix top-level name and directory naming (#15663)

This commit is contained in:
namore
2016-05-24 13:26:30 +02:00
committed by Franz Pletz
parent ed50c2fae3
commit 5ad882951b
2 changed files with 1 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
name = "olsrd-0.6.6.1";
src = fetchurl {
url = "http://www.olsr.org/releases/0.6/${name}.tar.bz2";
sha256 = "1fphbh9x724r83gxxrd13zv487s4svnr9jdy76h4f36xxb15pnp8";
};
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/;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}