diff --git a/modules/shell.nix b/modules/shell.nix index 43d54e6f..c8fa4462 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -63,6 +63,7 @@ zbar phraze lychee + bluetui ventoy taskwarrior3 nixpkgs-review diff --git a/packages/bluetui.nix b/packages/bluetui.nix deleted file mode 100644 index 4d96d24f..00000000 --- a/packages/bluetui.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, - pkg-config, - dbus, -}: - -rustPlatform.buildRustPackage rec { - pname = "bluetui"; - version = "0.5.1"; - - src = fetchFromGitHub { - owner = "pythops"; - repo = "bluetui"; - rev = "v${version}"; - hash = "sha256-9svPIZzKuI4XBlxBsKucGLdX2dkfAy9ERT5oj8Su9TM="; - }; - - cargoHash = "sha256-w6rrZQNu5kLKEWSXFa/vSqwm76zWZug/ZqztMDY7buE="; - - nativeBuildInputs = [ - pkg-config - ]; - - buildInputs = [ - dbus - ]; - - meta = { - description = "TUI for managing bluetooth on Linux"; - homepage = "https://github.com/pythops/bluetui"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ donovanglover ]; - mainProgram = "bluetui"; - platforms = lib.platforms.linux; - }; -}