nixpkgs/pkgs/tools/networking/horst/default.nix
Will Dietz 30a9386444
horst: 5.0 -> 5.1, cleanup a bit
5.1 from back in 2017, unrelated to kernel number these days :).
2019-05-15 17:08:29 -05:00

27 lines
713 B
Nix

{stdenv, fetchFromGitHub, pkgconfig, ncurses, libnl }:
stdenv.mkDerivation rec {
name = "horst-${version}";
version = "5.1";
src = fetchFromGitHub {
owner = "br101";
repo = "horst";
rev = "v${version}";
sha256 = "140pyv6rlsh4c745w4b59pz3hrarr39qq3mz9z1lsd3avc12nx1a";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libnl ];
installFlags = [ "DESTDIR=${placeholder "out"}" ];
meta = with stdenv.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;
};
}