11255ef03c
Also updates my information and contact info. I no longer use The Hedgehog as my github username or online presence username, so this fixes that. It also matches my github username, so it should be easier for others to mention me if needed.
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bluetuith";
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darkhz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JwPTFMimGDZnESx6l72cK545rzyDWWTBU66t9bU49w0=";
|
|
};
|
|
|
|
vendorHash = "sha256-A0hUenuji3bfJghLRM2mvFbusrHm+tQ+LeRGzIETpbs=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/darkhz/bluetuith/cmd.Version=${version}@nixpkgs"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "TUI-based bluetooth connection manager";
|
|
longDescription = ''
|
|
Bluetuith can transfer files via OBEX, perform authenticated pairing,
|
|
and (dis)connect different bluetooth devices. It interacts with bluetooth
|
|
adapters and can toogle their power and discovery state. Bluetuith can also
|
|
manage Bluetooth-based networking/tethering (PANU/DUN) and remote control
|
|
devices. The TUI has mouse support.
|
|
'';
|
|
homepage = "https://github.com/darkhz/bluetuith";
|
|
changelog = "https://github.com/darkhz/bluetuith/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
mainProgram = "bluetuith";
|
|
maintainers = with maintainers; [ pyrox0 katexochen ];
|
|
};
|
|
}
|