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

Populate meta.pkgConfigModules for misc packages

authored by maralorn and committed by GitHub 4e6868b1 065a7ed4

+22
+1
pkgs/development/libraries/libthai/default.nix
··· 27 27 license = licenses.lgpl21Plus; 28 28 platforms = platforms.unix; 29 29 maintainers = with maintainers; [ ]; 30 + pkgConfigModules = [ "libthai" ]; 30 31 }; 31 32 }
+9
pkgs/development/libraries/pango/default.nix
··· 119 119 120 120 maintainers = with maintainers; [ raskin ] ++ teams.gnome.members; 121 121 platforms = platforms.unix; 122 + 123 + pkgConfigModules = [ 124 + "pango" 125 + "pangocairo" 126 + "pangofc" 127 + "pangoft2" 128 + "pangoot" 129 + "pangoxft" 130 + ]; 122 131 }; 123 132 }
+4
pkgs/development/libraries/pcre/default.nix
··· 57 57 58 58 platforms = lib.platforms.all; 59 59 maintainers = with lib.maintainers; [ ]; 60 + pkgConfigModules = [ 61 + "libpcre" 62 + "libpcreposix" 63 + ]; 60 64 }; 61 65 }
+1
pkgs/os-specific/linux/libsepol/default.nix
··· 41 41 platforms = platforms.linux; 42 42 maintainers = [ ]; 43 43 license = lib.licenses.gpl2Plus; 44 + pkgConfigModules = [ "libselinux" ]; 44 45 }; 45 46 }
+7
pkgs/os-specific/linux/util-linux/default.nix
··· 138 138 # https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/README.licensing 139 139 license = with licenses; [ gpl2Only gpl2Plus gpl3Plus lgpl21Plus bsd3 bsdOriginalUC publicDomain ]; 140 140 platforms = platforms.unix; 141 + pkgConfigModules = [ 142 + "blkid" 143 + "fdisk" 144 + "mount" 145 + "smartcols" 146 + "uuid" 147 + ]; 141 148 priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages 142 149 }; 143 150 }