2013-05-29 18:15:49 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-02 18:10:15 +00:00
|
|
|
name = "babeld-1.8.0";
|
2013-05-29 18:15:49 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
|
2017-02-02 18:10:15 +00:00
|
|
|
sha256 = "0v2jkav2sb0rpx3fmi5chhii08lc92pxf306nyha2amq9wib3a0i";
|
2013-05-29 18:15:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlags="PREFIX=$out ETCDIR=$out/etc"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/babel/";
|
|
|
|
description = "Loop-avoiding distance-vector routing protocol";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2016-02-16 04:12:56 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2013-05-29 18:15:49 +01:00
|
|
|
};
|
|
|
|
}
|