2016-05-30 19:30:37 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, mate, hicolor_icon_theme }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-icon-theme-faenza-${version}";
|
2018-02-14 01:22:51 +00:00
|
|
|
version = "1.20.0";
|
2016-05-30 19:30:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-02-14 01:22:51 +00:00
|
|
|
sha256 = "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna";
|
2016-05-30 19:30:37 +01:00
|
|
|
};
|
|
|
|
|
2016-06-12 18:36:58 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2016-05-30 19:30:37 +01:00
|
|
|
|
2016-06-12 18:36:58 +01:00
|
|
|
buildInputs = [ mate.mate-icon-theme hicolor_icon_theme ];
|
2016-05-30 19:30:37 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Faenza icon theme from MATE";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://mate-desktop.org;
|
2016-05-30 19:30:37 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|