uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue