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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
916 B
Nix
Raw Normal View History

2021-08-06 21:08:20 +02:00
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, libxml2, mate-desktop, dconf, vte, pcre2, wrapGAppsHook, mateUpdateScript }:
2017-03-03 03:58:54 +01:00
stdenv.mkDerivation rec {
pname = "mate-terminal";
2021-08-06 21:08:20 +02:00
version = "1.26.0";
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";
2021-08-06 21:08:20 +02:00
sha256 = "08mgxbviik2dwwnbclp0518wlag2fhcr6c2yadgcbhwiq4aff9vp";
2017-03-03 03:58:54 +01:00
};
2017-03-28 04:26:24 +02:00
nativeBuildInputs = [
gettext
2021-08-06 21:08:20 +02:00
itstool
pkg-config
2017-03-28 04:26:24 +02:00
wrapGAppsHook
];
2017-03-03 03:58:54 +01:00
2021-08-06 21:08:20 +02:00
buildInputs = [
dconf
libxml2
mate-desktop
pcre2
vte
];
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; {
2021-08-06 21:08:20 +02:00
description = "MATE desktop 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;
maintainers = teams.mate.members;
2017-03-03 03:58:54 +01:00
};
}