Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
813 B
Nix
38 lines
813 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
bluez,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "spooftooph";
|
|
version = "0.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/spooftooph/spooftooph-${finalAttrs.version}/spooftooph-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-JH5+fHpe83NJV9AR5MXKnrwaTqz4s2BGAcczbddVNHw=";
|
|
};
|
|
|
|
buildInputs = [
|
|
bluez
|
|
ncurses
|
|
];
|
|
|
|
makeFlags = [ "BIN=$(out)/bin" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sourceforge.net/projects/spooftooph";
|
|
description = "Automate spoofing or clone Bluetooth device Name, Class, and Address";
|
|
mainProgram = "spooftooph";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ d3vil0p3r ];
|
|
};
|
|
})
|