nixpkgs/pkgs/desktops/mate/mate-desktop/default.nix

31 lines
725 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gnome3, mate, wrapGAppsHook }:
2017-03-03 02:52:29 +00:00
stdenv.mkDerivation rec {
2017-03-28 03:25:49 +01:00
name = "mate-desktop-${version}";
2018-02-14 01:22:51 +00:00
version = "1.20.0";
2017-03-03 02:52:29 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
2018-02-14 01:22:51 +00:00
sha256 = "0y5172sbj6f4dvimf4pmz74b9cfidbpmnwwb9f6vlc6fa0kp5l1n";
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";
homepage = http://mate-desktop.org;
2017-03-28 03:25:49 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
2017-08-31 03:49:46 +01:00
maintainers = [ maintainers.romildo ];
2017-03-03 02:52:29 +00:00
};
}