owl: init at unstable-2022-01-30

+27
+25
pkgs/tools/networking/owl/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, libev, libnl, libpcap }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "owl"; 5 + version = "unstable-2022-01-30"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "seemoo-lab"; 9 + repo = "owl"; 10 + rev = "8e4e840b212ae5a09a8a99484be3ab18bad22fa7"; 11 + sha256 = "sha256-kFk+JFLGWGBu5FPH3qp/Bxa6t04f1kpeHz3H8GNF3fg="; 12 + fetchSubmodules = true; 13 + }; 14 + 15 + nativeBuildInputs = [ cmake ]; 16 + buildInputs = [ libev libnl libpcap ]; 17 + 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 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 544 544 545 545 graph-easy = callPackage ../tools/graphics/graph-easy { }; 546 546 547 + owl = callPackage ../tools/networking/owl { }; 548 + 547 549 packer = callPackage ../development/tools/packer { }; 548 550 549 551 packr = callPackage ../development/libraries/packr { };