From 84e684b7ece0e5f2a94367d1bce581d779c5ac9b Mon Sep 17 00:00:00 2001 From: Mr Hedgehog Date: Wed, 13 Jul 2022 11:16:23 -0400 Subject: bluetuith: init at 0.0.3 --- pkgs/tools/bluetooth/bluetuith/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/tools/bluetooth/bluetuith/default.nix (limited to 'pkgs/tools/bluetooth') diff --git a/pkgs/tools/bluetooth/bluetuith/default.nix b/pkgs/tools/bluetooth/bluetuith/default.nix new file mode 100644 index 00000000000..9687b1da1e8 --- /dev/null +++ b/pkgs/tools/bluetooth/bluetuith/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1