nixpkgs/pkgs/desktops/mate/mate-utils/default.nix
R. RyanTM 8583433612 mate.mate-utils: 1.20.0 -> 1.20.1 (#42695)
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-utils/versions.

These checks were done:

- built on NixOS
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-disk-usage-analyzer passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-dictionary passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-screenshot passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-panel-screenshot-wrapped passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-panel-screenshot passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-search-tool passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/mate-system-log passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-disk-usage-analyzer-wrapped passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-dictionary-wrapped passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-screenshot-wrapped passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-search-tool-wrapped passed the binary check.
- /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1/bin/.mate-system-log-wrapped passed the binary check.
- 12 of 12 passed binary check by having a zero exit code.
- 0 of 12 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/xx88yq519ih1if2vx7r8bdcx9qgi51sv-mate-utils-1.20.1
- directory tree listing: https://gist.github.com/8cb9202f30b7105e2012297242f111b8
- du listing: https://gist.github.com/17fa7b867be34487fd7b5dac2e2b6924
2018-07-05 00:20:34 +02:00

36 lines
868 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra-gtk3, mate, hicolor-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-utils-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1kr0612h6r2gj3yg4ccyzr844lh640cd4wdj3gl8qzqikjx0n7ka";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
libgtop
libcanberra-gtk3
libxml2
mate.mate-panel
hicolor-icon-theme
];
meta = with stdenv.lib; {
description = "Utilities for the MATE desktop";
homepage = http://mate-desktop.org;
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}