nixpkgs/pkgs/tools/networking/babeld/default.nix
R. RyanTM 8b5744de44 babeld: 1.8.0 -> 1.8.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/babeld/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/j81blmvh73cbd6ymkg6z25gb9nx2ilks-babeld-1.8.1/bin/babeld -V’ and found version 1.8.1
- found 1.8.1 with grep in /nix/store/j81blmvh73cbd6ymkg6z25gb9nx2ilks-babeld-1.8.1
- directory tree listing: https://gist.github.com/9ced26cbfac7f25e450f058f63c0f209
2018-04-11 07:21:31 -07:00

23 lines
638 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "babeld-1.8.1";
src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
sha256 = "1gq6q1zly40ngs9wl3qa3yjvyb6zbqck82fp3n6w2bi9ymrrq94w";
};
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;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ];
platforms = with stdenv.lib.platforms; linux;
};
}