Adding babeld.

This commit is contained in:
Lluís Batlle i Rossell 2013-05-29 19:15:49 +02:00
parent 08f8371a50
commit 21cb347f20
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "babeld-1.4.1";
src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
sha256 = "0ykyvg9kkbv5pnkivcv9ncdcsb8bp3gfxv8swpq9jc7bh9aa2ckp";
};
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";
license = "MIT";
};
}

View File

@ -479,6 +479,8 @@ let
azureus = callPackage ../tools/networking/p2p/azureus { };
babeld = callPackage ../tools/networking/babeld { };
banner = callPackage ../games/banner {};
barcode = callPackage ../tools/graphics/barcode {};