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-02 21:52:29 -05:00
stdenv.mkDerivation rec {
2017-03-27 22:25:49 -04:00
name = "mate-desktop-${version}";
version = "1.20.1";
2017-03-02 21:52:29 -05:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0jxhhf9w6mz8ha6ymgj2alzmiydylg4ngqslkjxx37vvpvms2dyx";
2017-03-02 21:52:29 -05:00
};
2017-08-30 22:49:46 -04:00
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
2017-03-27 22:25:49 -04:00
];
2017-03-02 21:52:29 -05:00
2017-03-27 22:25:49 -04:00
buildInputs = [
gnome3.dconf
gnome3.gtk
];
2017-03-02 21:52:29 -05:00
meta = with stdenv.lib; {
description = "Library with common API for various MATE modules";
homepage = http://mate-desktop.org;
2017-03-27 22:25:49 -04:00
license = licenses.gpl2;
platforms = platforms.linux;
2017-08-30 22:49:46 -04:00
maintainers = [ maintainers.romildo ];
2017-03-02 21:52:29 -05:00
};
}