mate-desktop: 1.17.2 -> 1.18.0

This commit is contained in:
romildo 2017-03-27 23:25:49 -03:00
parent 55acc8708b
commit 8844d9b866

View File

@ -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
gnome3.dconf
gnome3.gtk
gnome3.defaultIconTheme
propagatedUserEnvPkgs = [
gnome3.gnome_themes_standard
];
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [
gnome3.dconf
gnome3.gtk
gnome3.defaultIconTheme
];
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;
};
}