mate-desktop: init at 1.17.2
This commit is contained in:
parent
13ed7e6631
commit
5641769ff0
2 changed files with 34 additions and 0 deletions
|
@ -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 { };
|
||||
|
|
33
pkgs/desktops/mate/mate-desktop/default.nix
Normal file
33
pkgs/desktops/mate/mate-desktop/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue