rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / owl / default.nix
blob568eeca0afff79cb1f0977897e0be035a87a7aaf
1 { stdenv, lib, fetchFromGitHub, cmake, libev, libnl, libpcap }:
3 stdenv.mkDerivation rec {
4   pname = "owl";
5   version = "unstable-2022-01-30";
7   src = fetchFromGitHub {
8     owner = "seemoo-lab";
9     repo = "owl";
10     rev = "8e4e840b212ae5a09a8a99484be3ab18bad22fa7";
11     sha256 = "sha256-kFk+JFLGWGBu5FPH3qp/Bxa6t04f1kpeHz3H8GNF3fg=";
12     fetchSubmodules = true;
13   };
15   nativeBuildInputs = [ cmake ];
16   buildInputs = [ libev libnl libpcap ];
18   meta = with lib; {
19     description = "An open Apple Wireless Direct Link (AWDL) implementation written in C";
20     homepage = "https://owlink.org/";
21     license = licenses.gpl3Only;
22     maintainers = with maintainers; [ wolfangaukang ];
23     platforms = [ "x86_64-linux" ];
24     mainProgram = "owl";
25   };