nixpkgs/pkgs/desktops/mate/mate-themes/default.nix
R. RyanTM 761e269510 mate.mate-themes: 3.22.15 -> 3.22.16
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-themes/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.22.16 with grep in /nix/store/vjm6m5yyzsrwv51iryqq326w3829dx2c-mate-themes-3.22.16
- directory tree listing: https://gist.github.com/d3a254df8c888718ac16edea0d4dce1d
2018-03-31 02:02:54 -07:00

27 lines
819 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, mate, gnome3, gtk2, gtk_engines,
gtk-engine-murrine, gdk_pixbuf, librsvg }:
stdenv.mkDerivation rec {
name = "mate-themes-${version}";
version = "3.22.16";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/themes/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1k8qp2arjv4vj8kyjhjgyj5h46jy0darlfh48l5h25623z1firdj";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
meta = {
description = "A set of themes from MATE";
homepage = http://mate-desktop.org;
license = stdenv.lib.licenses.lgpl21;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}