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

39 lines
809 B
Nix
Raw Normal View History

2017-03-28 05:26:24 +03:00
{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, gnome3, wrapGAppsHook }:
2017-03-03 05:58:54 +03:00
stdenv.mkDerivation rec {
2017-03-28 05:26:24 +03:00
name = "mate-terminal-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
2017-08-06 16:36:42 +03:00
minor-ver = "1";
2017-03-03 05:58:54 +03:00
src = fetchurl {
2017-03-28 05:26:24 +03:00
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
2017-08-06 16:36:42 +03:00
sha256 = "1zihm609d2d9cw53ry385whshjl1dnkifpk41g1ddm9f58hv4da1";
2017-03-03 05:58:54 +03:00
};
2017-03-28 05:26:24 +03:00
buildInputs = [
2017-03-03 05:58:54 +03:00
glib
itstool
libxml2
mate.mate-desktop
gnome3.vte
gnome3.gtk
gnome3.dconf
];
2017-03-28 05:26:24 +03:00
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
2017-03-03 05:58:54 +03:00
meta = with stdenv.lib; {
description = "The MATE Terminal Emulator";
homepage = http://mate-desktop.org;
2017-03-28 05:26:24 +03:00
license = licenses.gpl3;
platforms = platforms.unix;
2017-03-03 05:58:54 +03:00
};
}