3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/mate-terminal/default.nix

39 lines
921 B
Nix
Raw Normal View History

2021-08-06 20:08:20 +01:00
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, libxml2, mate-desktop, dconf, vte, pcre2, wrapGAppsHook, mateUpdateScript }:
2017-03-03 02:58:54 +00:00
stdenv.mkDerivation rec {
pname = "mate-terminal";
2021-08-06 20:08:20 +01:00
version = "1.26.0";
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";
2021-08-06 20:08:20 +01:00
sha256 = "08mgxbviik2dwwnbclp0518wlag2fhcr6c2yadgcbhwiq4aff9vp";
2017-03-03 02:58:54 +00:00
};
2017-03-28 03:26:24 +01:00
nativeBuildInputs = [
gettext
2021-08-06 20:08:20 +01:00
itstool
pkg-config
2017-03-28 03:26:24 +01:00
wrapGAppsHook
];
2017-03-03 02:58:54 +00:00
2021-08-06 20:08:20 +01:00
buildInputs = [
dconf
libxml2
mate-desktop
pcre2
vte
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2021-04-02 20:58:16 +01:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with lib; {
2021-08-06 20:08:20 +01:00
description = "MATE desktop terminal emulator";
2020-02-12 17:51:23 +00:00
homepage = "https://mate-desktop.org";
2021-04-22 14:23:43 +01:00
license = licenses.gpl3Plus;
2017-03-28 03:26:24 +01:00
platforms = platforms.unix;
2020-02-12 18:02:59 +00:00
maintainers = [ maintainers.romildo ];
2017-03-03 02:58:54 +00:00
};
}