Open donovanglover opened 1 month ago
Nix derivation in case someone wants to continue working on this:
{
buildGo123Module,
fetchFromGitHub,
pkg-config,
gtk3,
gtk-layer-shell,
}:
buildGo123Module rec {
pname = "i2ywm";
version = "0-unstable-2024-08-30";
src = fetchFromGitHub {
owner = "xplshn";
repo = "wayland-imd";
rev = "a7b1f1392f6fc21d140058216410c37bb8044a1a";
hash = "sha256-WyK9+hZGZmrTidjN0FWf0rV+gyNG6rWUTuPVYFGsR1E=";
};
sourceRoot = "${src.name}/i2ywm";
vendorHash = "sha256-8rmXJjX4JkpEfU6NYaBhT1UydwOi5xC2Cnm9+Gm5+nw=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
gtk3
gtk-layer-shell
];
}
Was trying to run i2ywm on Hyprland with NixOS and ran into the following error:
No idea how to fix but leaving this here in case someone comes across the same issue.