mate-utils: init at 1.18.3

This commit is contained in:
José Romildo Malaquias 2018-01-03 19:18:22 -02:00 committed by Tuomas Tynkkynen
parent 07b362419f
commit a513a6cf4e
2 changed files with 39 additions and 0 deletions

View file

@ -38,6 +38,7 @@ let
mate-terminal = callPackage ./mate-terminal { };
mate-themes = callPackage ./mate-themes { };
mate-user-guide = callPackage ./mate-user-guide { };
mate-utils = callPackage ./mate-utils { };
pluma = callPackage ./pluma { };
basePackages = [
@ -74,6 +75,7 @@ let
mate-system-monitor
mate-terminal
mate-user-guide
mate-utils
pluma
];

View file

@ -0,0 +1,37 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra_gtk3, mate-panel, hicolor_icon_theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-utils-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "3";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1nw8rcq3x67v73cmy44zz6r2ikz46wsx834qzkbq4i2ac96kdkfz";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
libgtop
libcanberra_gtk3
libxml2
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 ];
};
}