evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ow / owl / package.nix
blob3a4a05df341b8686d412b15cb0997302f5b0be24
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     hash = "sha256-kFk+JFLGWGBu5FPH3qp/Bxa6t04f1kpeHz3H8GNF3fg=";
12     fetchSubmodules = true;
13   };
15   nativeBuildInputs = [ cmake ];
16   buildInputs = [ libev libnl libpcap ];
18   meta = with lib; {
19     description = "Open Apple Wireless Direct Link (AWDL) implementation written in C";
20     homepage = "https://owlink.org/";
21     license = licenses.gpl3Only;
22     maintainers = [ ];
23     platforms = [ "x86_64-linux" ];
24     mainProgram = "owl";
25   };