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

37 lines
763 B
Nix
Raw Normal View History

2017-03-28 02:26:24 +00:00
{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, gnome3, wrapGAppsHook }:
2017-03-03 02:58:54 +00:00
stdenv.mkDerivation rec {
2017-03-28 02:26:24 +00:00
name = "mate-terminal-${version}";
2018-02-14 01:22:51 +00:00
version = "1.20.0";
2017-03-03 02:58:54 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
2018-02-14 01:22:51 +00:00
sha256 = "03366hs7mxazn6m6y53ppkb1din4jywljg0lx8zw101qg6car0az";
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
gnome3.vte
gnome3.gtk
gnome3.dconf
];
2017-03-28 02:26:24 +00:00
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
2017-03-03 02:58:54 +00:00
meta = with stdenv.lib; {
description = "The MATE Terminal Emulator";
homepage = http://mate-desktop.org;
2017-03-28 02:26:24 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
2017-03-03 02:58:54 +00:00
};
}