bluetuith: init at 0.0.3

This commit is contained in:
Mr Hedgehog 2022-07-13 11:16:23 -04:00
parent 070314b62d
commit 84e684b7ec
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ buildGoModule, fetchFromGitHub, lib, stdenv }:
buildGoModule rec {
pname = "bluetuith";
version = "0.0.3";
src = fetchFromGitHub {
owner = "darkhz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-7JqpF9iga6RO+/r2JK0N9gjieVRUNkHhGNsfVFfKfRY=";
};
vendorSha256 = "sha256-MsVrhEG2DOFJAXvt5rvfctGUbb3hQsBJ7cjOSzWA+bc=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "TUI-based bluetooth connection manager";
homepage = "https://github.com/darkhz/bluetuith";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ thehedgeh0g ];
};
}

View file

@ -4701,6 +4701,8 @@ with pkgs;
blueman = callPackage ../tools/bluetooth/blueman { };
bluetuith = callPackage ../tools/bluetooth/bluetuith { };
bmrsa = callPackage ../tools/security/bmrsa/11.nix { };
bogofilter = callPackage ../tools/misc/bogofilter { };