summary refs log tree commit diff
path: root/pkgs/desktops/mate/mate-desktop
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-03-27 23:25:49 -0300
committerromildo <malaquias@gmail.com>2017-03-27 23:25:49 -0300
commit8844d9b8667a01392cc421e77ae8353a886dc1f3 (patch)
tree4b83c1d413271946b0103acb746835e883dbc56f /pkgs/desktops/mate/mate-desktop
parent55acc8708b920cd6d827b95660425b03f362d71d (diff)
downloadnixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar.gz
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar.bz2
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar.lz
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar.xz
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.tar.zst
nixpkgs-8844d9b8667a01392cc421e77ae8353a886dc1f3.zip
mate-desktop: 1.17.2 -> 1.18.0
Diffstat (limited to 'pkgs/desktops/mate/mate-desktop')
-rw-r--r--pkgs/desktops/mate/mate-desktop/default.nix41
1 files changed, 22 insertions, 19 deletions
diff --git a/pkgs/desktops/mate/mate-desktop/default.nix b/pkgs/desktops/mate/mate-desktop/default.nix
index fcb66c9ad79..2afd700d933 100644
--- a/pkgs/desktops/mate/mate-desktop/default.nix
+++ b/pkgs/desktops/mate/mate-desktop/default.nix
@@ -1,33 +1,36 @@
-{ stdenv, fetchurl, pkgs, pkgconfig, wrapGAppsHook }:
+{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
-  name      = "mate-desktop-${version}";
-  version   = "${major-ver}.${minor-ver}";
-  major-ver = "1.17";
-  minor-ver = "2";
+  name = "mate-desktop-${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 = "1l7aih9hvmnmddwjwyafhz87drd5vdkmjr41m7f24bn5k7abl90g";
+    url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+    sha256 = "12iv2y4dan962fs7vkkxbjkp77pbvjnwfa43ggr0zkdsc3ydjbbg";
   };
 
-  propagatedUserEnvPkgs = [ pkgs.gnome3.gnome_themes_standard ];
-
-  buildInputs = with pkgs; [
-      intltool
-      pkgconfig
+  propagatedUserEnvPkgs = [
+    gnome3.gnome_themes_standard
+  ];
 
-      gnome3.dconf
-      gnome3.gtk
-      gnome3.defaultIconTheme
+  buildInputs = [
+    gnome3.dconf
+    gnome3.gtk
+    gnome3.defaultIconTheme
   ];
 
-  nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+    wrapGAppsHook
+  ];
 
   meta = with stdenv.lib; {
     description = "Library with common API for various MATE modules";
-    homepage    = "http://mate-desktop.org";
-    license     = licenses.gpl2;
-    platforms   = platforms.unix;
+    homepage = "http://mate-desktop.org";
+    license = licenses.gpl2;
+    platforms = platforms.unix;
   };
 }