summary refs log tree commit diff
path: root/pkgs/tools/networking/redfang/default.nix
blob: a4ba12b29489d8d4323fcacca132471dc3d42427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, stdenv, fetchFromGitLab, fetchpatch, bluez }:

stdenv.mkDerivation rec {
  pname = "redfang";
  version = "2.5";

  src = fetchFromGitLab {
    group = "kalilinux";
    owner = "packages";
    repo = pname;
    rev = "upstream/${version}";
    sha256 = "sha256-dF9QmBckyHAZ+JbLr0jTmp0eMu947unJqjrTMsJAfIE=";
  };

  patches = [
    # make install rule
    (fetchpatch {
      url = "https://gitlab.com/kalilinux/packages/redfang/-/merge_requests/1.diff";
      sha256 = "sha256-oxIrUAucxsBL4+u9zNNe2XXoAd088AEAHcRB/AN7B1M=";
    })
  ];

  installFlags = [ "DESTDIR=$(out)" ];

  env.NIX_CFLAGS_COMPILE = "-Wno-format-security";

  buildInputs = [ bluez ];

  meta = with lib; {
    description = "A small proof-of-concept application to find non discoverable bluetooth devices";
    homepage = "https://gitlab.com/kalilinux/packages/redfang";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ moni ];
  };
}