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