udpreplay: 1.0.0 -> 1.1.0

This commit is contained in:
R. Ryantm 2023-04-07 03:27:26 +00:00
parent 957b2f016d
commit 9fc1b4dbfb

View file

@ -1,14 +1,14 @@
{ stdenv, cmake, libpcap, fetchFromGitHub, lib }: { stdenv, cmake, libpcap, fetchFromGitHub, lib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "updreplay"; pname = "updreplay";
version = "1.0.0"; version = "1.1.0";
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ libpcap ]; buildInputs = [ libpcap ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rigtorp"; owner = "rigtorp";
repo = "udpreplay"; repo = "udpreplay";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-8cp1RyVBnq3vx2LPkAx7ktmdLo0bSq9UWlbb/DrJxpc="; hash = "sha256-kF9a3pjQbFKf25NKyK7uSq0AAO6JK7QeChLhm9Z3wEA=";
}; };
meta = with lib; { meta = with lib; {