7e29dcf3cc
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 - /nix/store/7vd417z6awqq3wyqjg3wzyq3868qfh5f-babeld-1.8.2/bin/babeld passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 1 of 1 passed binary check by having the new version present in output. - found 1.8.2 with grep in /nix/store/7vd417z6awqq3wyqjg3wzyq3868qfh5f-babeld-1.8.2 - directory tree listing: https://gist.github.com/560ddce597cdbadf44146673690eeba5 - du listing: https://gist.github.com/b9dcee589270b1bf6e38fcdac5771b9c
23 lines
638 B
Nix
23 lines
638 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "babeld-1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
|
|
sha256 = "1p751zb7h75f8w7jz37432dj610f432jnj37lxhmav9q6aqyrv87";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|