Package Details: voxtype 0.7.3-2

Git Clone URL: https://aur.archlinux.org/voxtype.git (read-only, click to copy)
Package Base: voxtype
Description: Push-to-talk voice-to-text for Linux (optimized for Wayland, works on X11)
Upstream URL: https://voxtype.io
Licenses: MIT
Submitter: peteonrails
Maintainer: peteonrails
Last Packager: peteonrails
Votes: 12
Popularity: 1.81
First Submitted: 2025-11-28 17:08 (UTC)
Last Updated: 2026-05-19 19:28 (UTC)

Dependencies (30)

Required by (1)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

graysky commented on 2026-03-19 19:06 (UTC)

@peteonrails - check out voxtype-cuda which I just updated. the error was a clang v22 problem

graysky commented on 2026-03-19 18:18 (UTC)

@peteonrails - It does not. Building in a clean chroot:

   Compiling inotify v0.10.2
   Compiling ureq v2.12.1
error[E0080]: attempt to compute `1_usize - 216_usize`, which would overflow
   --> target/release/build/whisper-rs-sys-3d6a12992b702ce4/out/bindings.rs:375:26
    |
375 |     ["Size of _IO_FILE"][::std::mem::size_of::<_IO_FILE>() - 216usize];
    |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `_` failed here

error[E0080]: attempt to compute `1_usize - 296_usize`, which would overflow
    --> target/release/build/whisper-rs-sys-3d6a12992b702ce4/out/bindings.rs:4914:37
     |
4914 |     ["Size of whisper_full_params"][::std::mem::size_of::<whisper_full_params>() - 296usize];
     |                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `_` failed here

For more information about this error, try `rustc --explain E0080`.
error: could not compile `whisper-rs-sys` (lib) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...

suDisdain commented on 2026-03-18 22:26 (UTC)

The package is currently failing to build for some folks right now it seems of because of a dependency error, upstream has an issue here: https://github.com/peteonrails/voxtype/issues/262

peteonrails commented on 2026-03-18 02:24 (UTC)

@graysky Does the updated package build for you?

graysky commented on 2026-03-14 06:19 (UTC)

Issue was I had [testing] enabled. You do need a few tweaks:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,11 +11,14 @@ depends=(
     'curl'
     'gcc-libs'
     'glibc'
+    'vulkan-headers'
+    'vulkan-icd-loader'
 )
 makedepends=(
     'cargo'
     'clang'
     'cmake'
+    'git'
     'pkgconf'
     'shaderc'
     'vulkan-headers'
@@ -49,6 +52,8 @@ prepare() {
     export CARGO_HOME="${CARGO_HOME:-$HOME/.cargo}"
     export RUSTUP_HOME="${RUSTUP_HOME:-$HOME/.rustup}"
     export RUSTUP_TOOLCHAIN=stable
+    export CC=clang
+    export CXX=clang++

     cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
 }

peteonrails commented on 2026-03-14 04:07 (UTC)

@graysky I’m away from my build workstation until Monday - will dig in as soon as I can.