mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #126371 from fortuneteller2k/redfang
redfang: init at 2.5
This commit is contained in:
commit
b506f1d575
2 changed files with 37 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -874,6 +874,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 a new issue