24 lines
697 B
Nix
24 lines
697 B
Nix
{ stdenv, fetchurl, autoreconfHook, mate, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-icon-theme-faenza-${version}";
|
|
version = "1.20.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ mate.mate-icon-theme hicolor-icon-theme ];
|
|
|
|
meta = {
|
|
description = "Faenza icon theme from MATE";
|
|
homepage = http://mate-desktop.org;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|