mate.engrampa: enable libmagic to detect file type

gstqt5
José Romildo Malaquias 2020-09-18 16:29:34 -03:00
parent ca50ceb268
commit 64916fe077
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gettext, itstool, libxml2, gtk3, mate, hicolor-icon-theme, wrapGAppsHook }:
{ stdenv, fetchurl, pkgconfig, gettext, itstool, libxml2, gtk3, file, mate, hicolor-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "engrampa";
@ -19,12 +19,16 @@ stdenv.mkDerivation rec {
buildInputs = [
libxml2
gtk3
file #libmagic
mate.caja
hicolor-icon-theme
mate.mate-desktop
];
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
configureFlags = [
"--with-cajadir=$$out/lib/caja/extensions-2.0"
"--enable-magic"
];
enableParallelBuilding = true;