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