Merge pull request #67274 from dtzWill/update/arping-2.20

arping: 2.19 -> 2.20
This commit is contained in:
Marek Mahut 2019-08-22 22:53:14 +02:00 committed by GitHub
commit a35ea3cc0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libnet, libpcap }: { stdenv, fetchFromGitHub, autoreconfHook, libnet, libpcap }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2.19"; version = "2.20";
name = "arping-${version}"; pname = "arping";
buildInputs = [ libnet libpcap ]; buildInputs = [ libnet libpcap ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ThomasHabets"; owner = "ThomasHabets";
repo = "arping"; repo = pname;
rev = "arping-${version}"; rev = "${pname}-${version}";
sha256 = "10gpil6ic17x8v628vhz9s98rnw1k8ci2xs56i52pr103irirczw"; sha256 = "0gmyip552k6mq7013cvy5yc4akn2rz28s3g4x4vdq35vnxf66cyk";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];