bgpdump: 2017-09-29 -> 1.6.0

This commit is contained in:
Renaud 2019-11-11 22:17:43 +01:00 committed by GitHub
parent 556a169f14
commit b5b7bd6ebb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,19 @@
{ stdenv, fetchzip, autoreconfHook, zlib, bzip2 }:
{ stdenv, fetchurl, autoreconfHook, zlib, bzip2 }:
stdenv.mkDerivation {
name = "bgpdump-2017-09-29";
stdenv.mkDerivation rec {
pname = "bgpdump";
version = "1.6.0";
src = fetchzip {
url = "https://bitbucket.org/ripencc/bgpdump/get/94a0e724b335.zip";
sha256 = "09g9vz2zc4nyzl669w1j7fxw21ifja6dxbp0xbqh6n7w3gpx2g88";
src = fetchurl {
url = "https://ris.ripe.net/source/bgpdump/libbgpdump-1.6.0.tgz";
sha256 = "144369gj35mf63nz4idqwsvgsirw7fybm8kkk07yymrjp8jr3aqk";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib bzip2 ];
meta = {
homepage = https://bitbucket.org/ripencc/bgpdump/wiki/Home;
homepage = https://bitbucket.org/ripencc/bgpdump/;
description = ''Analyze dump files produced by Zebra/Quagga or MRT'';
license = stdenv.lib.licenses.hpnd;
maintainers = with stdenv.lib.maintainers; [ lewo ];