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