sssd: add meta.pkgConfigModules, passthru.tests.pkg-config

This commit is contained in:
Anthony Roussel 2024-04-12 10:17:08 +02:00
parent a4bb614ff7
commit d9f3cf1353
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 7 additions and 0 deletions

View File

@ -110,6 +110,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru = {
tests = {
inherit (nixosTests) sssd sssd-ldap;
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "sssd --version";
@ -125,5 +126,11 @@ stdenv.mkDerivation (finalAttrs: {
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ illustris ];
pkgConfigModules = [
"ipa_hbac"
"sss_certmap"
"sss_idmap"
"sss_nss_idmap"
];
};
})