3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix

24 lines
697 B
Nix
Raw Normal View History

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 {
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
};
nativeBuildInputs = [ autoreconfHook ];
2016-05-30 19:30:37 +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";
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 ];
};
}