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 18:52:29 -08:00
stdenv.mkDerivation rec {
2017-03-27 19:25:49 -07:00
name = "mate-desktop-${version}";
version = "1.20.3";
2017-03-02 18:52:29 -08:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
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";
homepage = http://mate-desktop.org;
2017-03-27 19:25:49 -07:00
license = licenses.gpl2;
platforms = platforms.linux;
2017-08-30 19:49:46 -07:00
maintainers = [ maintainers.romildo ];
2017-03-02 18:52:29 -08:00
};
}