1 { stdenv, lib, fetchFromGitHub, cmake, libev, libnl, libpcap }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2022-01-30";
7 src = fetchFromGitHub {
10 rev = "8e4e840b212ae5a09a8a99484be3ab18bad22fa7";
11 hash = "sha256-kFk+JFLGWGBu5FPH3qp/Bxa6t04f1kpeHz3H8GNF3fg=";
12 fetchSubmodules = true;
15 nativeBuildInputs = [ cmake ];
16 buildInputs = [ libev libnl libpcap ];
19 description = "Open Apple Wireless Direct Link (AWDL) implementation written in C";
20 homepage = "https://owlink.org/";
21 license = licenses.gpl3Only;
23 platforms = [ "x86_64-linux" ];