25 lines
746 B
Nix
25 lines
746 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, hicolor_icon_theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-icon-theme-${version}";
|
|
version = "${major-ver}.${minor-ver}";
|
|
major-ver = "1.15";
|
|
minor-ver = "0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
|
sha256 = "1jpz3ihmyhyiyqlqz798xgzl3qa31ghymw3yrw6abd7ww0nkwiq9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
|
|
|
|
buildInputs = [ hicolor_icon_theme ];
|
|
|
|
meta = {
|
|
description = "Icon themes from MATE";
|
|
homepage = "http://mate-desktop.org";
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|