nixpkgs/pkgs/desktops/mate/engrampa/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-02 21:58:16 +02:00
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, libxml2, gtk3, file, mate, hicolor-icon-theme, wrapGAppsHook, mateUpdateScript }:
2017-08-18 14:57:19 +02:00
stdenv.mkDerivation rec {
pname = "engrampa";
2021-08-10 20:07:55 +02:00
version = "1.26.0";
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";
2021-08-10 20:07:55 +02:00
sha256 = "1qsy0ynhj1v0kyn3g3yf62g31rwxmpglfh9xh0w5lc9j5k1b5kcp";
2017-08-18 14:57:19 +02:00
};
nativeBuildInputs = [
2021-01-17 03:21:50 +01:00
pkg-config
gettext
2017-08-18 14:57:19 +02:00
itstool
wrapGAppsHook
];
buildInputs = [
libxml2
gtk3
file #libmagic
2017-08-18 14:57:19 +02:00
mate.caja
hicolor-icon-theme
2017-08-18 14:57:19 +02:00
mate.mate-desktop
];
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;
2021-04-02 21:58:16 +02:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
2021-04-22 15:23:43 +02:00
meta = with lib; {
2017-08-18 14:57:19 +02:00
description = "Archive Manager for MATE";
2020-02-12 18:51:19 +01:00
homepage = "https://mate-desktop.org";
2021-04-22 15:23:43 +02:00
license = with licenses; [ gpl2Plus lgpl2Plus fdl11Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-08-18 14:57:19 +02:00
};
}