2021-01-15 14:21:58 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, gettext, itstool, libxml2, gtk3, file, mate, hicolor-icon-theme, wrapGAppsHook }:
|
2017-08-18 14:57:19 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "engrampa";
|
2020-09-18 17:15:19 +02:00
|
|
|
version = "1.24.1";
|
2017-08-18 14:57:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-09-18 17:15:19 +02:00
|
|
|
sha256 = "0akjnz85qkpiqgj1ccn41rzbfid4l3r3nsm4s9s779ilzd7f097y";
|
2017-08-18 14:57:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-08-18 14:57:19 +02:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2019-03-09 12:41:12 +01:00
|
|
|
gtk3
|
2020-09-18 21:29:34 +02:00
|
|
|
file #libmagic
|
2017-08-18 14:57:19 +02:00
|
|
|
mate.caja
|
2018-02-25 03:23:58 +01:00
|
|
|
hicolor-icon-theme
|
2017-08-18 14:57:19 +02:00
|
|
|
mate.mate-desktop
|
|
|
|
];
|
|
|
|
|
2020-09-18 21:29:34 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-cajadir=$$out/lib/caja/extensions-2.0"
|
|
|
|
"--enable-magic"
|
|
|
|
];
|
2017-08-18 14:57:19 +02:00
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-08-18 14:57:19 +02:00
|
|
|
meta = {
|
|
|
|
description = "Archive Manager for MATE";
|
2020-02-12 18:51:19 +01:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.romildo ];
|
2017-08-18 14:57:19 +02:00
|
|
|
};
|
|
|
|
}
|