1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01: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
'';
meta = {
meta = with stdenv.lib; {
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;
platforms = stdenv.lib.platforms.linux;
homepage = http://www.mavetju.org/unix/dhcpdump-man.php;
platforms = platforms.linux;
license = licenses.bsd2;
};
}