nixpkgs/pkgs/tools/networking/horst/default.nix
2021-01-16 23:49:59 -08:00

27 lines
705 B
Nix

{lib, stdenv, fetchFromGitHub, pkg-config, ncurses, libnl }:
stdenv.mkDerivation rec {
pname = "horst";
version = "5.1";
src = fetchFromGitHub {
owner = "br101";
repo = "horst";
rev = "v${version}";
sha256 = "140pyv6rlsh4c745w4b59pz3hrarr39qq3mz9z1lsd3avc12nx1a";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses libnl ];
installFlags = [ "DESTDIR=${placeholder "out"}" ];
meta = with lib; {
description = "Small and lightweight IEEE802.11 wireless LAN analyzer with a text interface";
homepage = "http://br1.einfach.org/tech/horst/";
maintainers = [ maintainers.fpletz ];
license = licenses.gpl3;
platforms = platforms.linux;
};
}