Fabian Affolter 2024-04-22 10:29:51 +02:00
parent db176ef1d6
commit d0302a298c

View File

@ -1,24 +1,24 @@
{ stdenv { lib
, lib , stdenv
, fetchFromGitHub
, cmake , cmake
, cmocka , cmocka
, libdict , fetchFromGitHub
, ncurses
, jansson , jansson
, openssl , libdict
, libpcap , libpcap
, ncurses
, openssl
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "bngblaster"; pname = "bngblaster";
version = "0.8.44"; version = "0.8.47";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rtbrick"; owner = "rtbrick";
repo = "bngblaster"; repo = "bngblaster";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-kKzrXw6HQ2917RBArj2BxixXXH0mIvC4IeEU2JY4F9s="; hash = "sha256-ad2vVBXN5hUCaFnq4WYc7UTKvyLg4HY+l+PGlc5ylmw=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -43,9 +43,9 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true; doCheck = true;
meta = with lib; { meta = with lib; {
description = "Network tester for access and routing protocols";
homepage = "https://github.com/rtbrick/bngblaster/"; homepage = "https://github.com/rtbrick/bngblaster/";
changelog = "https://github.com/rtbrick/bngblaster/releases/tag/${finalAttrs.version}"; changelog = "https://github.com/rtbrick/bngblaster/releases/tag/${finalAttrs.version}";
description = "network tester for access and routing protocols";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = teams.wdz.members; maintainers = teams.wdz.members;
badPlatforms = platforms.darwin; badPlatforms = platforms.darwin;