mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #287874 from D3vil0p3r/patch-13
spooftooph: init at 0.5.2
This commit is contained in:
commit
1392fa7fbf
1 changed files with 36 additions and 0 deletions
36
pkgs/by-name/sp/spooftooph/package.nix
Normal file
36
pkgs/by-name/sp/spooftooph/package.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue