mate.engrampa: enable libmagic to detect file type
This commit is contained in:
parent
ca50ceb268
commit
64916fe077
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "engrampa";
|
pname = "engrampa";
|
||||||
|
@ -19,12 +19,16 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libxml2
|
libxml2
|
||||||
gtk3
|
gtk3
|
||||||
|
file #libmagic
|
||||||
mate.caja
|
mate.caja
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
mate.mate-desktop
|
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;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue