about summary refs log tree commit diff
path: root/pkgs/desktops/mate
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-03-27 23:26:24 -0300
committerromildo <malaquias@gmail.com>2017-03-27 23:26:24 -0300
commitd9672293c2681ee867cc9288b68b91c4fa2efc05 (patch)
tree364f3e8b9f35a9703c4c84ce60006bf28574d259 /pkgs/desktops/mate
parent8844d9b8667a01392cc421e77ae8353a886dc1f3 (diff)
downloadnixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar.gz
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar.bz2
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar.lz
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar.xz
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.tar.zst
nixlib-d9672293c2681ee867cc9288b68b91c4fa2efc05.zip
mate-terminal: 1.17.0 -> 1.18.0
Diffstat (limited to 'pkgs/desktops/mate')
-rw-r--r--pkgs/desktops/mate/mate-terminal/default.nix28
1 files changed, 15 insertions, 13 deletions
diff --git a/pkgs/desktops/mate/mate-terminal/default.nix b/pkgs/desktops/mate/mate-terminal/default.nix
index dd380f39477a..fd907c562806 100644
--- a/pkgs/desktops/mate/mate-terminal/default.nix
+++ b/pkgs/desktops/mate/mate-terminal/default.nix
@@ -1,19 +1,17 @@
-{ stdenv, fetchurl, pkgs, pkgconfig, wrapGAppsHook }:
+{ stdenv, fetchurl, pkgconfig, intltool, glib, itstool, libxml2, mate, gnome3, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
-  name      = "mate-terminal-${version}";
-  version   = "${major-ver}.${minor-ver}";
-  major-ver = "1.17";
+  name = "mate-terminal-${version}";
+  version = "${major-ver}.${minor-ver}";
+  major-ver = "1.18";
   minor-ver = "0";
 
   src = fetchurl {
-    url    = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
-    sha256 = "0sbncykjf0ifj87rwpdw2ln0wavykiki4zqsw60vch7agh49fw0f";
+    url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+    sha256 = "07z8g8zkc8k6d7xqdlg18cjnwg7zzv5hbgwma5y9mh8zx9xsqz92";
   };
 
-  buildInputs = with pkgs; [
-     intltool
-     pkgconfig
+  buildInputs = [
      glib
      itstool
      libxml2
@@ -25,12 +23,16 @@ stdenv.mkDerivation rec {
      gnome3.dconf
   ];
 
-  nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+    wrapGAppsHook
+  ];
 
   meta = with stdenv.lib; {
     description = "The MATE Terminal Emulator";
-    homepage    = "http://mate-desktop.org";
-    license     = licenses.gpl3;
-    platforms   = platforms.unix;
+    homepage = "http://mate-desktop.org";
+    license = licenses.gpl3;
+    platforms = platforms.unix;
   };
 }