megatools: use wrapGAppsNoGuiHook

The gui packages pulled in by wrapGAppsHook aren't needed as it's a cli tool.
This commit is contained in:
zowoq 2021-01-03 13:46:14 +10:00
parent 2f5037444e
commit 244503020c

View file

@ -1,5 +1,5 @@
{ stdenv, fetchgit, autoreconfHook, pkg-config, glib, fuse, curl, glib-networking
, asciidoc, libxml2, docbook_xsl, docbook_xml_dtd_45, libxslt, wrapGAppsHook }:
, asciidoc, libxml2, docbook_xsl, docbook_xml_dtd_45, libxslt, wrapGAppsNoGuiHook }:
stdenv.mkDerivation rec {
pname = "megatools";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
autoreconfHook pkg-config wrapGAppsHook asciidoc libxml2
autoreconfHook pkg-config wrapGAppsNoGuiHook asciidoc libxml2
docbook_xsl docbook_xml_dtd_45 libxslt
];
buildInputs = [ glib glib-networking curl ]