summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorDariqq <dariqq@posteo.net>2025-08-09 12:55:45 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-10 17:33:15 +0100
commitbcc1881485769d1ed5dee743d493201fe481552c (patch)
treea95e90fad40f3a756f0810e7640751ab5db825be /gnu/packages/cpp.scm
parent3fe0b451c6c66fa0ae5ebb66ace677c0169e46b8 (diff)
gnu: Remove PKG_CONFIG_EXECUTABLE configure-flags.
* gnu/packages/bioinformatics.scm (vcflib): Remove setting PKG_CONFIG_EXECUTABLE flag. * gnu/packages/cpp.scm (hyprlang): same. * gnu/packages/cpp.scm (hyprutils): same. * gnu/packages/debian.scm (apt-cacher-ng): Same * gnu/packages/linux.scm (rdma-core): Same. * gnu/packages/radio.scm (libiio): Same. * gnu/packages/security-token.scm (libfido2): Same. * gnu/packages/version-control.scm (libgit2-1.9,libgit2-1.7): Same * gnu/packages/vulkan.scm (vulcan-loader): Same. Change-Id: I12cb5fb7f1a93fa01766b37a32777a269d4c089c Signed-off-by: Greg Hogan <code@greghogan.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm24
1 files changed, 1 insertions, 23 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 625aeea4447..8be5aef9cb5 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1050,17 +1050,6 @@ utilities used across the hypr* ecosystem.")
(base32
"06wiizy73f0x6zj1ar878gm1w9zam1gmgjw0ybixj3qag0gxqv34"))))
(build-system cmake-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'fix-cross-compilation
- (lambda _
- (substitute* "CMakeLists.txt"
- (("find_package.PkgConfig" all)
- (string-append
- "set(PKG_CONFIG_EXECUTABLE " #$(pkg-config-for-target) ")\n"
- all))))))))
(native-inputs (list gcc-15 pkg-config))
(inputs (list hyprutils))
(home-page "https://wiki.hypr.land/Hypr-Ecosystem/hyprlang/")
@@ -1084,18 +1073,7 @@ language used in Hyprland.")
(base32
"1ymiqzncppdik8lw3ad7xaqig6c7bjcy7crcwbq3rjfk2hrc8rmc"))))
(build-system cmake-build-system)
- (arguments
- (list
- #:tests? #f ; No tests in Release build type
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'fix-cross-compilation
- (lambda _
- (substitute* "CMakeLists.txt"
- (("find_package.PkgConfig" all)
- (string-append
- "set(PKG_CONFIG_EXECUTABLE " #$(pkg-config-for-target) ")\n"
- all))))))))
+ (arguments (list #:tests? #f)) ; No tests in Release build type
(native-inputs (list gcc-15 pkg-config))
(inputs (list pixman))
(home-page "https://github.com/hyprwm/hyprutils")