summary refs log tree commit diff
path: root/pkgs/desktops/mate/mate-utils
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-01-03 19:18:22 -0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-01-09 02:40:04 +0200
commita513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042 (patch)
treec6882360eaec00d358f1778c42d49cc8b91ee593 /pkgs/desktops/mate/mate-utils
parent07b362419f5084c6bc86186a2cea04d7d2645e0c (diff)
downloadnixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar.gz
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar.bz2
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar.lz
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar.xz
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.tar.zst
nixpkgs-a513a6cf4e49006c28bdd4cb33c7ff2f9ceb8042.zip
mate-utils: init at 1.18.3
Diffstat (limited to 'pkgs/desktops/mate/mate-utils')
-rw-r--r--pkgs/desktops/mate/mate-utils/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/desktops/mate/mate-utils/default.nix b/pkgs/desktops/mate/mate-utils/default.nix
new file mode 100644
index 00000000000..281fef42e61
--- /dev/null
+++ b/pkgs/desktops/mate/mate-utils/default.nix
@@ -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 ];
+  };
+}