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

41 lines
860 B
Nix
Raw Normal View History

2021-01-17 02:21:50 +00:00
{ lib, stdenv, fetchurl, pkg-config, gettext, glib, itstool, libxml2, mate, dconf, gtk3, vte, pcre2, wrapGAppsHook }:
2017-03-03 02:58:54 +00:00
stdenv.mkDerivation rec {
pname = "mate-terminal";
2020-09-18 15:15:22 +00:00
version = "1.24.1";
2017-03-03 02:58:54 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-09-18 15:15:22 +00:00
sha256 = "0qmyhxmarwkxad8k1m9q1iwx70zhfp6zc2mh74nv26nj4gr3h3am";
2017-03-03 02:58:54 +00:00
};
2017-03-28 02:26:24 +00:00
buildInputs = [
2017-03-03 02:58:54 +00:00
glib
itstool
libxml2
mate.mate-desktop
vte
gtk3
2019-11-30 23:11:47 +00:00
dconf
2020-09-18 15:15:22 +00:00
pcre2
2017-03-03 02:58:54 +00:00
];
2017-03-28 02:26:24 +00:00
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2017-03-28 02:26:24 +00:00
wrapGAppsHook
];
2017-03-03 02:58:54 +00:00
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
meta = with lib; {
2017-03-03 02:58:54 +00:00
description = "The MATE Terminal Emulator";
2020-02-12 17:51:23 +00:00
homepage = "https://mate-desktop.org";
2017-03-28 02:26:24 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
2020-02-12 18:02:59 +00:00
maintainers = [ maintainers.romildo ];
2017-03-03 02:58:54 +00:00
};
}