9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
25 lines
635 B
Nix
25 lines
635 B
Nix
{ buildGoModule, fetchFromGitHub, lib, stdenv }:
|
|
|
|
buildGoModule rec {
|
|
pname = "bluetuith";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darkhz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9fhgld0jhljvDMsRlU+jXsJla2oNjdsFm8TbmmvcoL4=";
|
|
};
|
|
|
|
vendorHash = "sha256-eSgjIZmD5HL8S1XY0LK2IeWDchjFWBlRq5qriBg7l2U=";
|
|
|
|
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 ];
|
|
};
|
|
}
|