nixpkgs/pkgs/tools/networking/horst/default.nix

27 lines
705 B
Nix
Raw Normal View History

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