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

21 lines
504 B
Nix
Raw Normal View History

2013-05-29 17:15:49 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-07-04 17:45:07 +00:00
name = "babeld-1.5.0";
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-07-04 17:45:07 +00:00
sha256 = "0lpm1zras74b71y01fxndrcvfjzb1ny2hh62pjw6idaqpyrp797s";
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 = "MIT";
};
}