nixpkgs-suyu/pkgs/desktops/mate/mate-icon-theme/default.nix

26 lines
746 B
Nix
Raw Normal View History

2016-05-28 19:43:21 +02:00
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, hicolor_icon_theme }:
2013-08-27 15:01:24 +02:00
2016-05-28 19:43:21 +02:00
stdenv.mkDerivation rec {
name = "mate-icon-theme-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.14";
minor-ver = "0";
2013-08-27 15:01:24 +02:00
src = fetchurl {
2016-05-28 19:43:21 +02:00
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1d8y4vlna8higz05mc01srrgspxmzw04vh3hyzcd9ms603njpfqm";
2013-08-27 15:01:24 +02:00
};
2016-05-28 19:43:21 +02:00
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
buildInputs = [ hicolor_icon_theme ];
2013-08-27 15:01:24 +02:00
meta = {
description = "Icon themes from MATE";
homepage = "http://mate-desktop.org";
2016-05-28 19:43:21 +02:00
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
2013-08-27 15:01:24 +02:00
};
}