nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix

43 lines
954 B
Nix
Raw Normal View History

2021-04-02 21:58:16 +02:00
{ lib, stdenv, fetchurl, pkg-config, gettext, glib, itstool, libxml2, mate, dconf, gtk3, vte, pcre2, wrapGAppsHook, mateUpdateScript }:
2017-03-03 03:58:54 +01:00
stdenv.mkDerivation rec {
pname = "mate-terminal";
2020-09-18 17:15:22 +02:00
version = "1.24.1";
2017-03-03 03:58:54 +01: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:22 +02:00
sha256 = "0qmyhxmarwkxad8k1m9q1iwx70zhfp6zc2mh74nv26nj4gr3h3am";
2017-03-03 03:58:54 +01:00
};
2017-03-28 04:26:24 +02:00
buildInputs = [
2017-03-03 03:58:54 +01:00
glib
itstool
libxml2
mate.mate-desktop
vte
gtk3
2019-12-01 00:11:47 +01:00
dconf
2020-09-18 17:15:22 +02:00
pcre2
2017-03-03 03:58:54 +01:00
];
2017-03-28 04:26:24 +02:00
nativeBuildInputs = [
2021-01-17 03:21:50 +01:00
pkg-config
gettext
2017-03-28 04:26:24 +02:00
wrapGAppsHook
];
2017-03-03 03:58:54 +01: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; };
meta = with lib; {
2017-03-03 03:58:54 +01:00
description = "The MATE Terminal Emulator";
2020-02-12 18:51:23 +01:00
homepage = "https://mate-desktop.org";
2021-04-22 15:23:43 +02:00
license = licenses.gpl3Plus;
2017-03-28 04:26:24 +02:00
platforms = platforms.unix;
2020-02-12 19:02:59 +01:00
maintainers = [ maintainers.romildo ];
2017-03-03 03:58:54 +01:00
};
}