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

21 lines
522 B
Nix
Raw Normal View History

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