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

23 lines
638 B
Nix
Raw Normal View History

2013-05-29 17:15:49 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "babeld-1.8.4";
2013-05-29 17:15:49 +00:00
src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
sha256 = "11wbs1x17lr7jk2578zwy3cdwc6zhxwv97nnp13z14613320s1wq";
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/;
2013-05-29 17:15:49 +00:00
description = "Loop-avoiding distance-vector routing protocol";
license = stdenv.lib.licenses.mit;
2016-02-16 04:12:56 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ];
platforms = with stdenv.lib.platforms; linux;
2013-05-29 17:15:49 +00:00
};
}