2013-08-27 15:02:46 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-04-29 10:52:46 +02:00
|
|
|
name = "mate-themes-1.6.3";
|
2013-08-27 15:02:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-04-29 10:52:46 +02:00
|
|
|
url = "http://pub.mate-desktop.org/releases/1.6/mate-themes-1.6.3.tar.xz";
|
|
|
|
sha256 = "1wakr9z3byw1yvnbaxg8cpfhp1bp1fmnaz742738m0fx6bzznj9i";
|
2013-08-27 15:02:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig intltool iconnamingutils gtk2 ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A set of themes from MATE";
|
|
|
|
homepage = "http://mate-desktop.org";
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
|
|
|
};
|
|
|
|
}
|