mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #136058 from erdnaxe/baobab
gnome.baobab: use strictDeps
This commit is contained in:
commit
edfb501393
1 changed files with 12 additions and 7 deletions
|
@ -27,25 +27,30 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
desktop-file-utils
|
||||
gettext
|
||||
glib
|
||||
itstool
|
||||
libxml2
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
vala
|
||||
gettext
|
||||
itstool
|
||||
libxml2
|
||||
desktop-file-utils
|
||||
wrapGAppsHook
|
||||
python3
|
||||
vala
|
||||
wrapGAppsHook
|
||||
# Prevents “error: Package `libhandy-1' not found in specified Vala API
|
||||
# directories or GObject-Introspection GIR directories”, even though it
|
||||
# should only be a runtime dependency.
|
||||
libhandy
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
libhandy
|
||||
glib
|
||||
gnome.adwaita-icon-theme
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
doCheck = true;
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue