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.

41 lines
998 B
Nix
Raw Normal View History

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