1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/mate/mate-themes/default.nix
R. RyanTM 0c101bf626 mate.mate-themes: 3.22.16 -> 3.22.17 (#41541)
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

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 3.22.17 with grep in /nix/store/vnrs1vjrq1jjqff5872k2vyqnf5bj5iw-mate-themes-3.22.17
- directory tree listing: https://gist.github.com/7496d09132d21dac1574730a34586a9d
- du listing: https://gist.github.com/fae90128247da010e9abf4c845ceb824
2018-06-09 00:50:51 +02: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.17";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/themes/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1bf1swyrr5dkfsp1ihc0svr5nnwv22zxjwgmf6zhxl638ng9f41h";
};
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 ];
};
}