mate-desktop: init at 1.17.2

This commit is contained in:
Clemens Manert 2017-03-03 03:52:29 +01:00 committed by Franz Pletz
parent 13ed7e6631
commit 5641769ff0
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 34 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{ callPackage, pkgs }:
rec {
mate-common = callPackage ./mate-common { };
mate-desktop = callPackage ./mate-desktop { };
mate-icon-theme = callPackage ./mate-icon-theme { };
mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { };
mate-themes = callPackage ./mate-themes { };

View file

@ -0,0 +1,33 @@
{ stdenv, fetchurl, pkgs, pkgconfig, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-desktop-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.17";
minor-ver = "2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1l7aih9hvmnmddwjwyafhz87drd5vdkmjr41m7f24bn5k7abl90g";
};
propagatedUserEnvPkgs = [ pkgs.gnome3.gnome_themes_standard ];
buildInputs = with pkgs; [
intltool
pkgconfig
gnome3.dconf
gnome3.gtk
gnome3.defaultIconTheme
];
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
meta = with stdenv.lib; {
description = "Library with common API for various MATE modules";
homepage = "http://mate-desktop.org";
license = licenses.gpl2;
platforms = platforms.unix;
};
}