lol

Merge pull request #163239 from r-ryantm/auto-update/arping

arping: 2.22 -> 2.23

authored by

Fabian Affolter and committed by
GitHub
5ed9194b 7c555185

+19 -8
+19 -8
pkgs/tools/networking/arping/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, libnet, libpcap }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , libnet 6 + , libpcap 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 - version = "2.22"; 5 10 pname = "arping"; 6 - 7 - buildInputs = [ libnet libpcap ]; 11 + version = "2.23"; 8 12 9 13 src = fetchFromGitHub { 10 14 owner = "ThomasHabets"; 11 15 repo = pname; 12 16 rev = "${pname}-${version}"; 13 - sha256 = "sha256-yFSLhhyz6i7xyJR8Ax8FnHFGNe/HE40YirkkeefBqC4="; 17 + hash = "sha256-Yn0EFb23VJvcVluQhwGHg9cdnZ8LKlBEds7cq8Irftc="; 14 18 }; 15 19 16 - nativeBuildInputs = [ autoreconfHook ]; 20 + nativeBuildInputs = [ 21 + autoreconfHook 22 + ]; 23 + 24 + buildInputs = [ 25 + libnet 26 + libpcap 27 + ]; 17 28 18 29 meta = with lib; { 19 30 description = "Broadcasts a who-has ARP packet on the network and prints answers"; 20 31 homepage = "https://github.com/ThomasHabets/arping"; 21 - license = with licenses; [ gpl2 ]; 22 - maintainers = [ maintainers.michalrus ]; 32 + license = with licenses; [ gpl2Plus ]; 33 + maintainers = with maintainers; [ michalrus ]; 23 34 platforms = platforms.unix; 24 35 }; 25 36 }