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

39 lines
933 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gettext, itstool, libxml2, gtk3, mate, hicolor-icon-theme, wrapGAppsHook }:
2017-08-18 14:57:19 +02:00
stdenv.mkDerivation rec {
pname = "engrampa";
2020-02-12 18:51:19 +01:00
version = "1.24.0";
2017-08-18 14:57:19 +02:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-02-12 18:51:19 +01:00
sha256 = "13cak3qgrzqj74x9jq1sf155793v2bqqz4mk4i04g9f9xn3g85fl";
2017-08-18 14:57:19 +02:00
};
nativeBuildInputs = [
pkgconfig
gettext
2017-08-18 14:57:19 +02:00
itstool
wrapGAppsHook
];
buildInputs = [
libxml2
gtk3
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" ];
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";
2017-08-18 14:57:19 +02:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}