1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00

dhcpdump: add license, update homepage

This commit is contained in:
Markus Kowalewski 2018-09-10 21:20:19 +02:00
parent 4dcdb693af
commit 0f6134f8ad
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -17,9 +17,10 @@ stdenv.mkDerivation rec {
cp dhcpdump $out/bin cp dhcpdump $out/bin
''; '';
meta = { meta = with stdenv.lib; {
description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses";
homepage = https://packages.ubuntu.com/ru/lucid/dhcpdump; homepage = http://www.mavetju.org/unix/dhcpdump-man.php;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.bsd2;
}; };
} }