2013-05-29 21:15:49 +04:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-30 13:27:56 +04:00
|
|
|
name = "babeld-1.5.1";
|
2013-05-29 21:15:49 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
|
2014-09-30 13:27:56 +04:00
|
|
|
sha256 = "1ch9nn2jmmpyq6c7106lzd3cfnxq4ychjx0pvwn960kssn2cgakk";
|
2013-05-29 21:15:49 +04: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 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2014-09-30 13:27:56 +04:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2013-05-29 21:15:49 +04:00
|
|
|
};
|
|
|
|
}
|