Merge pull request #73249 from c0bw3b/pkg/bgpdump
bgpdump: 2017-09-29 -> 1.6.0
This commit is contained in:
commit
27670961f5
1 changed files with 8 additions and 7 deletions
|
@ -1,18 +1,19 @@
|
||||||
{ stdenv, fetchzip, autoreconfHook, zlib, bzip2 }:
|
{ stdenv, fetchurl, autoreconfHook, zlib, bzip2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "bgpdump-2017-09-29";
|
pname = "bgpdump";
|
||||||
|
version = "1.6.0";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchurl {
|
||||||
url = "https://bitbucket.org/ripencc/bgpdump/get/94a0e724b335.zip";
|
url = "https://ris.ripe.net/source/bgpdump/libbgpdump-1.6.0.tgz";
|
||||||
sha256 = "09g9vz2zc4nyzl669w1j7fxw21ifja6dxbp0xbqh6n7w3gpx2g88";
|
sha256 = "144369gj35mf63nz4idqwsvgsirw7fybm8kkk07yymrjp8jr3aqk";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ zlib bzip2 ];
|
buildInputs = [ zlib bzip2 ];
|
||||||
|
|
||||||
meta = {
|
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'';
|
description = ''Analyze dump files produced by Zebra/Quagga or MRT'';
|
||||||
license = stdenv.lib.licenses.hpnd;
|
license = stdenv.lib.licenses.hpnd;
|
||||||
maintainers = with stdenv.lib.maintainers; [ lewo ];
|
maintainers = with stdenv.lib.maintainers; [ lewo ];
|
||||||
|
|
Loading…
Reference in a new issue