babeld: update from 1.5.0 to 1.5.1

This commit is contained in:
Mateusz Kowalczyk 2014-09-30 10:27:56 +01:00
parent f78171792c
commit 74ec0b53e1

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "babeld-1.5.0"; name = "babeld-1.5.1";
src = fetchurl { src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz"; url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
sha256 = "0lpm1zras74b71y01fxndrcvfjzb1ny2hh62pjw6idaqpyrp797s"; sha256 = "1ch9nn2jmmpyq6c7106lzd3cfnxq4ychjx0pvwn960kssn2cgakk";
}; };
preBuild = '' preBuild = ''
@ -16,5 +16,6 @@ stdenv.mkDerivation rec {
homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/babel/"; homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/babel/";
description = "Loop-avoiding distance-vector routing protocol"; description = "Loop-avoiding distance-vector routing protocol";
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
}; };
} }