My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/networking/babeld/default.nix

24 lines
666 B

11 years ago
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "babeld";
version = "1.9.1";
11 years ago
src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${pname}-${version}.tar.gz";
sha256 = "1d503igqv9s5pgrhvxp1czjy2xfsjhagyyh2iny7g4cjvl0kq6qy";
11 years ago
};
preBuild = ''
makeFlags="PREFIX=$out ETCDIR=$out/etc"
'';
meta = {
homepage = http://www.pps.univ-paris-diderot.fr/~jch/software/babel/;
11 years ago
description = "Loop-avoiding distance-vector routing protocol";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ];
platforms = with stdenv.lib.platforms; linux;
11 years ago
};
}