2017-03-28 03:25:49 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gnome3, wrapGAppsHook }:
|
2017-03-03 02:52:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-28 03:25:49 +01:00
|
|
|
name = "mate-desktop-${version}";
|
|
|
|
version = "${major-ver}.${minor-ver}";
|
|
|
|
major-ver = "1.18";
|
|
|
|
minor-ver = "0";
|
2017-03-03 02:52:29 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-03-28 03:25:49 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
|
|
|
sha256 = "12iv2y4dan962fs7vkkxbjkp77pbvjnwfa43ggr0zkdsc3ydjbbg";
|
2017-03-03 02:52:29 +00:00
|
|
|
};
|
|
|
|
|
2017-08-31 03:49:46 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
2017-03-28 03:25:49 +01:00
|
|
|
];
|
2017-03-03 02:52:29 +00:00
|
|
|
|
2017-03-28 03:25:49 +01:00
|
|
|
buildInputs = [
|
|
|
|
gnome3.dconf
|
|
|
|
gnome3.gtk
|
|
|
|
];
|
2017-03-03 02:52:29 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library with common API for various MATE modules";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://mate-desktop.org;
|
2017-03-28 03:25:49 +01:00
|
|
|
license = licenses.gpl2;
|
2017-09-22 15:24:29 +01:00
|
|
|
platforms = platforms.linux;
|
2017-08-31 03:49:46 +01:00
|
|
|
maintainers = [ maintainers.romildo ];
|
2017-03-03 02:52:29 +00:00
|
|
|
};
|
|
|
|
}
|