1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/tools/networking/horst/default.nix

27 lines
713 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}";
version = "5.1";
2015-07-23 00:17:12 +01:00
src = fetchFromGitHub {
owner = "br101";
repo = "horst";
rev = "v${version}";
sha256 = "140pyv6rlsh4c745w4b59pz3hrarr39qq3mz9z1lsd3avc12nx1a";
2015-07-23 00:17:12 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libnl ];
installFlags = [ "DESTDIR=${placeholder "out"}" ];
2015-07-23 00:17:12 +01:00
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;
};
}