kmod: enable strictDeps

gtk-doc is already behind withDevdoc so gtk-doc in buildInputs works

perhaps an improvement would be to apply https://git.yoctoproject.org/poky/plain/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch
This commit is contained in:
Artturin 2023-02-25 22:54:20 +02:00
parent 07064726bf
commit 7f8c707312

View File

@ -26,12 +26,15 @@ in stdenv.mkDerivation rec {
outputs = [ "out" "dev" "lib" ] ++ lib.optional withDevdoc "devdoc";
strictDeps = true;
nativeBuildInputs = [
autoconf automake docbook_xsl libtool libxslt pkg-config
docbook_xml_dtd_42 # for the man pages
] ++ lib.optionals withDevdoc [ docbook_xml_dtd_43 gtk-doc ];
buildInputs = [ xz zstd ];
buildInputs = [ xz zstd ]
# gtk-doc is looked for with pkg-config
++ lib.optionals withDevdoc [ gtk-doc ];
preConfigure = ''
./autogen.sh