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

33 lines
827 B
Nix
Raw Normal View History

2015-07-23 00:17:12 +01:00
{stdenv, fetchFromGitHub, pkgconfig, ncurses, libnl }:
stdenv.mkDerivation rec {
name = "horst-${version}";
2016-03-21 21:06:13 +00:00
version = "git-2016-03-15";
2015-07-23 00:17:12 +01:00
src = fetchFromGitHub {
owner = "br101";
repo = "horst";
2016-03-21 21:06:13 +00:00
rev = "9d5c2f387607ac1c174b59497557b8985cdb788b";
sha256 = "0a4ixc9xbc818hw7rai24i1y8nqq2aqxqd938ax89ik4pfd2w3l0";
2015-07-23 00:17:12 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libnl ];
installPhase = ''
mkdir -p $out/bin
mv horst $out/bin
mkdir -p $out/man/man1
cp horst.1 $out/man/man1
'';
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;
};
}