mako: wrap with wrapGAppsHook

mako wasn't finding the librsvg library and its gdk-pixbuf loader, the
SVG icon support was broken for a long time.
This commit is contained in:
Vika 2020-04-11 06:00:18 +03:00
parent 9b0d2f3fd1
commit c6eabc0033
No known key found for this signature in database
GPG key ID: 4F62CD07CE64796A

View file

@ -1,6 +1,7 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc
, systemd, pango, cairo, gdk-pixbuf
, wayland, wayland-protocols }:
, wayland, wayland-protocols
, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "mako";
@ -13,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "0hwvibpnrximb628w9dsfjpi30b5jy7nfkm4d94z5vhp78p43vxh";
};
nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols ];
nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols wrapGAppsHook ];
buildInputs = [ systemd pango cairo gdk-pixbuf wayland ];
mesonFlags = [ "-Dzsh-completions=true" ];