tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
owl: init at unstable-2022-01-30
P. R. d. O
3 years ago
31e40104
d66e1ac8
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
networking
owl
default.nix
top-level
all-packages.nix
+25
pkgs/tools/networking/owl/default.nix
···
1
1
+
{ stdenv, lib, fetchFromGitHub, cmake, libev, libnl, libpcap }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "owl";
5
5
+
version = "unstable-2022-01-30";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "seemoo-lab";
9
9
+
repo = "owl";
10
10
+
rev = "8e4e840b212ae5a09a8a99484be3ab18bad22fa7";
11
11
+
sha256 = "sha256-kFk+JFLGWGBu5FPH3qp/Bxa6t04f1kpeHz3H8GNF3fg=";
12
12
+
fetchSubmodules = true;
13
13
+
};
14
14
+
15
15
+
nativeBuildInputs = [ cmake ];
16
16
+
buildInputs = [ libev libnl libpcap ];
17
17
+
18
18
+
meta = with lib; {
19
19
+
description = "An open Apple Wireless Direct Link (AWDL) implementation written in C";
20
20
+
homepage = "https://owlink.org/";
21
21
+
license = licenses.gpl3Only;
22
22
+
maintainers = with maintainers; [ wolfangaukang ];
23
23
+
platforms = [ "x86_64-linux" ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
544
544
545
545
graph-easy = callPackage ../tools/graphics/graph-easy { };
546
546
547
547
+
owl = callPackage ../tools/networking/owl { };
548
548
+
547
549
packer = callPackage ../development/tools/packer { };
548
550
549
551
packr = callPackage ../development/libraries/packr { };