mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
38 lines
782 B
Nix
38 lines
782 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
bluez,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bluesnarfer";
|
|
version = "0.1";
|
|
|
|
src = fetchzip {
|
|
url = "http://www.alighieri.org/tools/bluesnarfer.tar.gz";
|
|
stripRoot = false;
|
|
hash = "sha256-HGdrJZohKIsOkLETBdHz80w6vxmG25aMEWXrQlpMgRw=";
|
|
};
|
|
|
|
sourceRoot = finalAttrs.src.name + "/bluesnarfer";
|
|
|
|
buildInputs = [ bluez ];
|
|
|
|
strictDeps = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 bluesnarfer $out/bin/bluesnarfer
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Bluetooth bluesnarfing utility";
|
|
homepage = "http://www.alighieri.org/project.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|