redfang: init at 2.5
This commit is contained in:
parent
0e6c55f5d1
commit
9c885c9091
35
pkgs/tools/networking/redfang/default.nix
Normal file
35
pkgs/tools/networking/redfang/default.nix
Normal file
@ -0,0 +1,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)" ];
|
||||
|
||||
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; [ fortuneteller2k ];
|
||||
};
|
||||
}
|
@ -872,6 +872,8 @@ in
|
||||
|
||||
quich = callPackage ../tools/misc/quich { } ;
|
||||
|
||||
redfang = callPackage ../tools/networking/redfang { };
|
||||
|
||||
tfk8s = callPackage ../tools/misc/tfk8s { };
|
||||
|
||||
tnat64 = callPackage ../tools/networking/tnat64 { };
|
||||
|
Loading…
Reference in New Issue
Block a user