2022-07-12 11:56:56 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, gettext
|
|
|
|
, itstool
|
|
|
|
, libxml2
|
|
|
|
, gtk3
|
|
|
|
, file
|
|
|
|
, mate
|
|
|
|
, hicolor-icon-theme
|
|
|
|
, wrapGAppsHook
|
|
|
|
, mateUpdateScript
|
|
|
|
}:
|
2017-08-18 12:57:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "engrampa";
|
2023-05-06 07:08:35 +00:00
|
|
|
version = "1.26.1";
|
2017-08-18 12:57:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2023-05-06 07:08:35 +00:00
|
|
|
sha256 = "8CJBB6ek6epjCcnniqX6rIAsTPcqSawoOqnnrh6KbEo=";
|
2017-08-18 12:57:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2020-02-14 14:09:49 +00:00
|
|
|
gettext
|
2017-08-18 12:57:19 +00:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2019-03-09 11:41:12 +00:00
|
|
|
gtk3
|
2020-09-18 19:29:34 +00:00
|
|
|
file #libmagic
|
2017-08-18 12:57:19 +00:00
|
|
|
mate.caja
|
2018-02-25 02:23:58 +00:00
|
|
|
hicolor-icon-theme
|
2017-08-18 12:57:19 +00:00
|
|
|
mate.mate-desktop
|
|
|
|
];
|
|
|
|
|
2020-09-18 19:29:34 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-cajadir=$$out/lib/caja/extensions-2.0"
|
|
|
|
"--enable-magic"
|
|
|
|
];
|
2017-08-18 12:57:19 +00:00
|
|
|
|
2020-02-14 21:52:51 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-09-27 21:39:18 +00:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
2021-04-02 19:58:16 +00:00
|
|
|
|
2021-04-22 13:23:43 +00:00
|
|
|
meta = with lib; {
|
2017-08-18 12:57:19 +00:00
|
|
|
description = "Archive Manager for MATE";
|
2020-02-12 17:51:19 +00:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-04-22 13:23:43 +00:00
|
|
|
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
|
|
|
|
platforms = platforms.unix;
|
2021-09-21 19:45:29 +00:00
|
|
|
maintainers = teams.mate.members;
|
2017-08-18 12:57:19 +00:00
|
|
|
};
|
|
|
|
}
|