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

39 lines
811 B
Nix
Raw Normal View History

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