revert removed deps

This commit is contained in:
2025-12-18 23:33:04 +03:00
parent c68ca3dabe
commit 0288773ccb
4 changed files with 10 additions and 5 deletions

View File

@@ -19,6 +19,8 @@ elseif(APPLE)
option(USE_SYSTEM_GLFW ON) option(USE_SYSTEM_GLFW ON)
find_package(Freetype REQUIRED) find_package(Freetype REQUIRED)
find_package(ZLIB REQUIRED) find_package(ZLIB REQUIRED)
find_package(BZip2 REQUIRED)
find_package(PNG REQUIRED)
find_package(PkgConfig QUIET) find_package(PkgConfig QUIET)
if(PkgConfig_FOUND) if(PkgConfig_FOUND)
@@ -29,7 +31,8 @@ else()
find_package(PkgConfig REQUIRED) find_package(PkgConfig REQUIRED)
find_package(Fontconfig REQUIRED) find_package(Fontconfig REQUIRED)
find_package(ZLIB REQUIRED) find_package(ZLIB REQUIRED)
find_package(BZip2 REQUIRED)
find_package(PNG REQUIRED)
pkg_check_modules(HARFBUZZ harfbuzz) pkg_check_modules(HARFBUZZ harfbuzz)
pkg_check_modules(WAYLAND_CLIENT wayland-client) pkg_check_modules(WAYLAND_CLIENT wayland-client)
pkg_check_modules(WAYLAND_EGL wayland-egl) pkg_check_modules(WAYLAND_EGL wayland-egl)

6
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1764950072, "lastModified": 1765779637,
"narHash": "sha256-BmPWzogsG2GsXZtlT+MTcAWeDK5hkbGRZTeZNW42fwA=", "narHash": "sha256-KJ2wa/BLSrTqDjbfyNx70ov/HdgNBCBBSQP3BIzKnv4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f61125a668a320878494449750330ca58b78c557", "rev": "1306659b587dc277866c7b69eb97e5f07864d8c4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -15,6 +15,7 @@
wayland, wayland,
libxkbcommon, libxkbcommon,
zlib, zlib,
bzip2,
wayland-scanner, wayland-scanner,
gtk3, gtk3,
glib, glib,
@@ -70,6 +71,7 @@ stdenv.mkDerivation rec {
wayland-protocols wayland-protocols
libxkbcommon libxkbcommon
zlib zlib
bzip2
gtk3 gtk3
gsettings-desktop-schemas gsettings-desktop-schemas
glib glib

View File

@@ -6,7 +6,7 @@
namespace clrsync::core namespace clrsync::core
{ {
const std::string GIT_SEMVER = "0.1.6+git.g292a748"; const std::string GIT_SEMVER = "0.1.6+git.gc68ca3d";
const std::string version_string(); const std::string version_string();
} // namespace clrsync::core } // namespace clrsync::core