mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
Merge pull request #247907 from sternenseemann/pkg-config-meta-data
Populate meta.pkgConfigModules for misc packages
This commit is contained in:
commit
4e6868b1aa
@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ ];
|
||||
pkgConfigModules = [ "libthai" ];
|
||||
};
|
||||
}
|
||||
|
@ -119,5 +119,14 @@ stdenv.mkDerivation rec {
|
||||
|
||||
maintainers = with maintainers; [ raskin ] ++ teams.gnome.members;
|
||||
platforms = platforms.unix;
|
||||
|
||||
pkgConfigModules = [
|
||||
"pango"
|
||||
"pangocairo"
|
||||
"pangofc"
|
||||
"pangoft2"
|
||||
"pangoot"
|
||||
"pangoxft"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -57,5 +57,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
pkgConfigModules = [
|
||||
"libpcre"
|
||||
"libpcreposix"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -41,5 +41,6 @@ stdenv.mkDerivation rec {
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
pkgConfigModules = [ "libselinux" ];
|
||||
};
|
||||
}
|
||||
|
@ -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
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user