Merge pull request #247907 from sternenseemann/pkg-config-meta-data

Populate meta.pkgConfigModules for misc packages
This commit is contained in:
maralorn 2023-08-08 13:45:39 +02:00 committed by GitHub
commit 4e6868b1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 0 deletions

View File

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
pkgConfigModules = [ "libthai" ];
};
}

View File

@ -119,5 +119,14 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ raskin ] ++ teams.gnome.members;
platforms = platforms.unix;
pkgConfigModules = [
"pango"
"pangocairo"
"pangofc"
"pangoft2"
"pangoot"
"pangoxft"
];
};
}

View File

@ -57,5 +57,9 @@ stdenv.mkDerivation rec {
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ];
pkgConfigModules = [
"libpcre"
"libpcreposix"
];
};
}

View File

@ -41,5 +41,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = [ ];
license = lib.licenses.gpl2Plus;
pkgConfigModules = [ "libselinux" ];
};
}

View File

@ -138,6 +138,13 @@ stdenv.mkDerivation rec {
# https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/README.licensing
license = with licenses; [ gpl2Only gpl2Plus gpl3Plus lgpl21Plus bsd3 bsdOriginalUC publicDomain ];
platforms = platforms.unix;
pkgConfigModules = [
"blkid"
"fdisk"
"mount"
"smartcols"
"uuid"
];
priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages
};
}