mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 08:59:42 +00:00
shared-mime-info: strictdeps (#128803)
This commit is contained in:
parent
4dfa39c625
commit
6cc62b1843
|
@ -39,16 +39,16 @@ stdenv.mkDerivation rec {
|
||||||
pkg-config
|
pkg-config
|
||||||
gettext
|
gettext
|
||||||
itstool
|
itstool
|
||||||
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
||||||
libxml2
|
libxml2
|
||||||
shared-mime-info
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) shared-mime-info;
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libxml2
|
libxml2
|
||||||
glib
|
glib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dupdate-mimedb=true"
|
"-Dupdate-mimedb=true"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue