Package Details: hyprland-git 0.44.0.r46.0baf166d-1

Git Clone URL: https://aur.archlinux.org/hyprland-git.git (read-only, click to copy)
Package Base: hyprland-git
Description: Hyprland is an independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks.
Upstream URL: https://github.com/hyprwm/Hyprland
Licenses: BSD-3-Clause
Conflicts: hyprland
Provides: hyprland
Submitter: hertog
Maintainer: Vaxry (zjeffer, alba4k)
Last Packager: alba4k
Votes: 94
Popularity: 8.13
First Submitted: 2022-04-12 20:26 (UTC)
Last Updated: 2024-10-17 15:07 (UTC)

Required by (57)

Sources (2)

Pinned Comments

zjeffer commented on 2024-07-17 16:50 (UTC) (edited on 2024-07-17 16:52 (UTC) by zjeffer)

Tips & tricks, common issues

using ccache/sccache

Precompiled headers (PCH) was enabled by default, this would most likely invalidate the compiler cache if any of the upstream header files change. To disable PCH, add the meson build option -Db_pch=false to build().

build() {
  ...
  meson setup build \
    -D b_pch=false
  ...
}

Build with specific pull requests

Use pick_mr <pull request number> at the end of prepare() to merge pull requests locally. For example, to merge https://github.com/hyprwm/Hyprland/pull/6268, use

prepare() {
    ...

    pick_mr 6268
}

Enable legacy renderer

In the build() function, add -D legacy_renderer=true to meson setup

Compilation errors

If you encounter compilation errors, try the following first:

  • If errors are raised by generated source files under protocols/, such as protocols/linux-dmabuf-v1.hpp, then rebuild or install hyprwayland-scanner-git;
  • Compile with makepkg --cleanbuild.

Symbol not declared

Errors like

  • <symbol> was not declared in this scope
  • <symbol> has not been declared

are usually caused by missing headers. Please consider reporting this upstream or creating a pull request if it has not already been done.

Latest Comments

« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 20 .. 30 Next › Last »

dickby commented on 2023-12-12 17:31 (UTC)

This seems to produce a debug build.

killown commented on 2023-12-11 14:55 (UTC)

/usr/include/src is not updating, I need to remove this src before update the package

Kage-Yami commented on 2023-12-10 10:41 (UTC) (edited on 2023-12-10 10:41 (UTC) by Kage-Yami)

When I read the project page, I saw something about headers-only being optional... whatever that means; I'm not familiar with C/C++.

Thanks for the update!

<deleted-account> commented on 2023-12-10 06:49 (UTC)

I thought tomlplusplus was a head-only library.

Kage-Yami commented on 2023-12-10 06:42 (UTC) (edited on 2023-12-10 06:44 (UTC) by Kage-Yami)

tomlplusplus should be a normal depends, not a makedepends; for example, hyprpm list (the native plugin manager) expects it to be available; otherwise:

❯ hyprpm list
hyprpm: error while loading shared libraries: libtomlplusplus.so.3: cannot open shared object file: No such file or directory

kotv commented on 2023-12-07 13:43 (UTC)

Agree with MikeWalrus, after last hyprland commit tomlplusplus is needed otherwise hyprland fail to compile

MikeWalrus commented on 2023-12-07 13:18 (UTC)

Please add tomlplusplus to depends.

sinasina commented on 2023-12-05 07:58 (UTC) (edited on 2023-12-05 07:58 (UTC) by sinasina)

I deleted & reinstalled. Now it's up to date:

hyprctl version Hyprland, built from branch main at commit 3bb9c7c5cf4f2ee30bf821501499f2308d616f94 dirty (props: bump ver to 0.33.0). Tag: v0.33.0

Let's hope whatever problem I've had will not prevent me from updating anymore..

sinasina commented on 2023-12-05 05:35 (UTC)

@h3ss

I tried that yesterday shortly after -thanks to you- I realized I have a problem. It did not do anything. (same for -Sc )

h3ss commented on 2023-12-04 20:14 (UTC)

@sinasina Try running paru or yay with --gendb ;) That should initialize the DB used for tracking commits in -git packages.