Package Details: wayprompt 0.1.2-2

Git Clone URL: https://aur.archlinux.org/wayprompt.git (read-only, click to copy)
Package Base: wayprompt
Description: Multi-purpose (password-)prompt tool for Wayland (pinentry)
Upstream URL: https://git.sr.ht/~leon_plickat/wayprompt
Licenses: GPL-3.0-only
Submitter: freswa
Maintainer: vitaliikuzhdin
Last Packager: vitaliikuzhdin
Votes: 4
Popularity: 0.037321
First Submitted: 2024-02-04 20:22 (UTC)
Last Updated: 2025-11-10 10:45 (UTC)

Latest Comments

leonplickat commented on 2025-11-10 14:24 (UTC)

Hi, thank you for your efforts, but I myself am not interested in co-maintaining the AUR package :)

vitaliikuzhdin commented on 2025-11-09 00:52 (UTC)

You can depend on a versioned zig0.* package to fix the build error.

freswa commented on 2025-09-14 09:00 (UTC)

The fetch still works with zig 0.14. We do that in all our repo packages. But this upstream hasn't adapted to zig 0.14 yet, so we still depend on outdated libs which lead to this error. Not much I can do about it, but feel free to bug upstream about 0.14 compatibility :)

alerque commented on 2025-09-13 21:49 (UTC)

The zig dependencies being fetched in prepare (both here and in the VCS package variant) are out of date and don't with with current Zip compiler versions.

Durag commented on 2025-06-24 23:52 (UTC) (edited on 2025-06-24 23:54 (UTC) by Durag)

I get the following error when trying to build:

error: name must be a valid bare zig identifier (hint: switch from string to enum literal) .name = "zig-pixman"

Must have been a problem with the zig version, too. Repository version is 0.14.1 at the moment.

Tristero commented on 2024-05-18 23:38 (UTC)

Thanks for your immediate answer!

freswa commented on 2024-05-17 14:29 (UTC)

@Tristero The problem is the zig version. The code is compatible only with zig 0.11, but 0.12 is the current version in the official repos.

Tristero commented on 2024-05-17 14:21 (UTC)

Additionally got this:


/home/user/build/local-aur/wayprompt/src/wayprompt/deps/zig-wayland/build.zig:87:32: error: no field or member function named 'exec' in 'Build'
            const pc_output = b.exec(&.{ "pkg-config", "--variable=pkgdatadir", "wayland-scanner" });
                              ~^~~~~
/usr/lib/zig/std/Build.zig:1:1: note: struct declared here
const std = @import("std.zig");

Tristero commented on 2024-05-17 14:19 (UTC)

Could not successfully finish build:


home/user/build/local-aur/wayprompt/src/wayprompt/build.zig:25:40: error: no field named 'source_file' in struct 'Build.Module.CreateOptions'
    const wayland = b.createModule(.{ .source_file = scanner.result });
                                       ^~~~~~~~~~~
/usr/lib/zig/std/Build/Module.zig:139:27: note: struct declared here
pub const CreateOptions = struct {
                          ^~~~~~

Any suggestions are highly appreciated.