shared-mime-info: strictdeps (#128803)

This commit is contained in:
arcnmx
2021-07-04 03:50:36 +02:00
committed by GitHub
parent 4dfa39c625
commit 6cc62b1843
+3 -3
View File
@@ -39,16 +39,16 @@ stdenv.mkDerivation rec {
pkg-config
gettext
itstool
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
libxml2
shared-mime-info
];
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) shared-mime-info;
buildInputs = [
libxml2
glib
];
strictDeps = true;
mesonFlags = [
"-Dupdate-mimedb=true"
];