linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / horst / default.nix
blob194365130bf39140dc93b722b164278fd2661faf
1 {lib, stdenv, fetchFromGitHub, pkg-config, ncurses, libnl }:
3 stdenv.mkDerivation rec {
4   pname = "horst";
5   version = "5.1";
7   src = fetchFromGitHub {
8     owner = "br101";
9     repo = "horst";
10     rev = "v${version}";
11     sha256 = "140pyv6rlsh4c745w4b59pz3hrarr39qq3mz9z1lsd3avc12nx1a";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ ncurses libnl ];
17   installFlags = [ "DESTDIR=${placeholder "out"}" ];
19   meta = with lib; {
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;
25   };