1 {lib, stdenv, fetchFromGitHub, pkg-config, ncurses, libnl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "140pyv6rlsh4c745w4b59pz3hrarr39qq3mz9z1lsd3avc12nx1a";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ ncurses libnl ];
17 installFlags = [ "DESTDIR=${placeholder "out"}" ];
20 description = "Small and lightweight IEEE802.11 wireless LAN analyzer with a text interface";
21 homepage = "http://br1.einfach.org/tech/horst/";
22 maintainers = [ maintainers.fpletz ];
23 license = licenses.gpl3;
24 platforms = platforms.linux;