mate-utils: init at 1.18.3

authored by

José Romildo Malaquias and committed by
Tuomas Tynkkynen
a513a6cf 07b36241

+39
+2
pkgs/desktops/mate/default.nix
··· 38 38 mate-terminal = callPackage ./mate-terminal { }; 39 39 mate-themes = callPackage ./mate-themes { }; 40 40 mate-user-guide = callPackage ./mate-user-guide { }; 41 + mate-utils = callPackage ./mate-utils { }; 41 42 pluma = callPackage ./pluma { }; 42 43 43 44 basePackages = [ ··· 74 75 mate-system-monitor 75 76 mate-terminal 76 77 mate-user-guide 78 + mate-utils 77 79 pluma 78 80 ]; 79 81
+37
pkgs/desktops/mate/mate-utils/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra_gtk3, mate-panel, hicolor_icon_theme, wrapGAppsHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "mate-utils-${version}"; 5 + version = "${major-ver}.${minor-ver}"; 6 + major-ver = "1.18"; 7 + minor-ver = "3"; 8 + 9 + src = fetchurl { 10 + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; 11 + sha256 = "1nw8rcq3x67v73cmy44zz6r2ikz46wsx834qzkbq4i2ac96kdkfz"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + pkgconfig 16 + intltool 17 + itstool 18 + wrapGAppsHook 19 + ]; 20 + 21 + buildInputs = [ 22 + gtk3 23 + libgtop 24 + libcanberra_gtk3 25 + libxml2 26 + mate-panel 27 + hicolor_icon_theme 28 + ]; 29 + 30 + meta = with stdenv.lib; { 31 + description = "Utilities for the MATE desktop"; 32 + homepage = http://mate-desktop.org; 33 + license = with licenses; [ gpl2Plus lgpl2Plus ]; 34 + platforms = platforms.unix; 35 + maintainers = [ maintainers.romildo ]; 36 + }; 37 + }