2019-11-30 15:11:47 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, dconf, gtk3, vte, wrapGAppsHook }:
|
2017-03-02 18:58:54 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mate-terminal";
|
2019-04-23 05:50:00 -07:00
|
|
|
version = "1.22.1";
|
2017-03-02 18:58:54 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-04-23 05:50:00 -07:00
|
|
|
sha256 = "08210ry5lrivsgzqpdaxrchhpj0n5s1q0x4pxmwdpnksjpcj11mn";
|
2017-03-02 18:58:54 -08:00
|
|
|
};
|
|
|
|
|
2017-03-27 19:26:24 -07:00
|
|
|
buildInputs = [
|
2017-03-02 18:58:54 -08:00
|
|
|
glib
|
|
|
|
itstool
|
|
|
|
libxml2
|
|
|
|
|
|
|
|
mate.mate-desktop
|
|
|
|
|
2018-12-25 15:15:46 -08:00
|
|
|
vte
|
|
|
|
gtk3
|
2019-11-30 15:11:47 -08:00
|
|
|
dconf
|
2017-03-02 18:58:54 -08:00
|
|
|
];
|
|
|
|
|
2017-03-27 19:26:24 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2017-03-02 18:58:54 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The MATE Terminal Emulator";
|
2019-04-14 16:25:45 -07:00
|
|
|
homepage = https://mate-desktop.org;
|
2017-03-27 19:26:24 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
2017-03-02 18:58:54 -08:00
|
|
|
};
|
|
|
|
}
|