mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, itstool
|
|
, libxml2
|
|
, caja
|
|
, gtk3
|
|
, hicolor-icon-theme
|
|
, json-glib
|
|
, mate-desktop
|
|
, wrapGAppsHook3
|
|
, mateUpdateScript
|
|
# can be defaulted to true once switch to meson
|
|
, withMagic ? stdenv.buildPlatform.canExecute stdenv.hostPlatform, file
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "engrampa";
|
|
version = "1.28.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-Hpl3wjdFv4hDo38xUXHZr5eBSglxrqw9d08BdlCsCe8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
libxml2 # for xmllint
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
caja
|
|
gtk3
|
|
hicolor-icon-theme
|
|
json-glib
|
|
mate-desktop
|
|
] ++ lib.optionals withMagic [
|
|
file
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-cajadir=$$out/lib/caja/extensions-2.0"
|
|
] ++ lib.optionals withMagic [
|
|
"--enable-magic"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "Archive Manager for MATE";
|
|
mainProgram = "engrampa";
|
|
homepage = "https://mate-desktop.org";
|
|
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|