nixpkgs/pkgs/tools/networking/babeld/default.nix

22 lines
583 B
Nix
Raw Normal View History

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