linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / bgpdump / default.nix
blob18d72daa009f4c1f46b3be1ce6460f9a59821673
1 { lib, stdenv, fetchurl, autoreconfHook, zlib, bzip2 }:
3 stdenv.mkDerivation rec {
4   pname = "bgpdump";
5   version = "1.6.0";
7   src = fetchurl {
8     url = "https://ris.ripe.net/source/bgpdump/libbgpdump-1.6.0.tgz";
9     sha256 = "144369gj35mf63nz4idqwsvgsirw7fybm8kkk07yymrjp8jr3aqk";
10   };
12   nativeBuildInputs = [ autoreconfHook ];
13   buildInputs = [ zlib bzip2 ];
15   meta = {
16     homepage = "https://bitbucket.org/ripencc/bgpdump/";
17     description = "Analyze dump files produced by Zebra/Quagga or MRT";
18     license = lib.licenses.hpnd;
19     maintainers = with lib.maintainers; [ lewo ];
20     platforms = with lib.platforms; linux;
21   };