From b98761a1721439cea57b92f6123541103fe5ae46 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Wed, 17 Dec 2025 13:42:48 +0300 Subject: [PATCH] chore: fixed build deps --- .github/workflows/publish-release.yml | 4 ++-- package.nix | 1 + src/core/version.hpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 5c42a60..ea2233c 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -49,7 +49,7 @@ jobs: sudo apt-get update sudo apt-get install -y cmake build-essential git \ libglfw3-dev libfreetype6-dev libfontconfig1-dev \ - libx11-dev libxrandr-dev libxi-dev \ + libx11-dev libxrandr-dev libxi-dev libgtk-3-dev \ mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev \ libxinerama-dev libxcursor-dev libxkbcommon-dev @@ -86,7 +86,7 @@ jobs: libX11-devel libXrandr-devel libXi-devel \ mesa-libGL-devel mesa-libGLU-devel \ libXinerama-devel libXcursor-devel \ - wayland-devel wayland-protocols-devel + wayland-devel wayland-protocols-devel gtk3-devel - name: Configure CMake run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DUSE_SYSTEM_GLFW=ON diff --git a/package.nix b/package.nix index 40b05d6..a3a367b 100644 --- a/package.nix +++ b/package.nix @@ -16,6 +16,7 @@ zlib, bzip2, wayland-scanner, + gtk3, semver }: diff --git a/src/core/version.hpp b/src/core/version.hpp index af49ece..94e1563 100644 --- a/src/core/version.hpp +++ b/src/core/version.hpp @@ -6,7 +6,7 @@ namespace clrsync::core { -const std::string GIT_SEMVER = "0.1.4+git.g019b0db"; +const std::string GIT_SEMVER = "0.1.4+git.g92b06a9"; const std::string version_string(); } // namespace clrsync::core