summary refs log tree commit diff
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-08-08 14:55:28 +0200
committermaralorn <mail@maralorn.de>2023-08-08 16:00:37 +0200
commit94a6ca907fcf96368e221bfe1737c8337d538fc2 (patch)
tree70beee9017d8a9182fd7f46aa03e7f4d0a5f2156
parentcacb118b7835e318df14bff489ef3ecb73ee614c (diff)
downloadnixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar.gz
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar.bz2
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar.lz
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar.xz
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.tar.zst
nixpkgs-94a6ca907fcf96368e221bfe1737c8337d538fc2.zip
libxkbcommon: add meta.pkgConfigModules annotation
-rw-r--r--pkgs/development/libraries/libxkbcommon/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix
index ed936a9d037..b4683f673fb 100644
--- a/pkgs/development/libraries/libxkbcommon/default.nix
+++ b/pkgs/development/libraries/libxkbcommon/default.nix
@@ -63,5 +63,10 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ primeos ttuegel ];
     mainProgram = "xkbcli";
     platforms = with platforms; unix;
+    pkgConfigModules = [
+      "xkbcommon"
+      "xkbcommon-x11"
+      "xkbregistry"
+    ];
   };
 }