about summary refs log tree commit diff
path: root/pkgs/desktops/mate/mate-sensors-applet/default.nix
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-01-04 10:40:36 -0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-01-09 02:40:04 +0200
commit002fcfca351539442a997216e047a6f938f5efe9 (patch)
tree59b0353988aca7d85e29db95fea318abe7c84f79 /pkgs/desktops/mate/mate-sensors-applet/default.nix
parentea3582ab1687947bace400a11450735df5110d61 (diff)
downloadnixlib-002fcfca351539442a997216e047a6f938f5efe9.tar
nixlib-002fcfca351539442a997216e047a6f938f5efe9.tar.gz
nixlib-002fcfca351539442a997216e047a6f938f5efe9.tar.bz2
nixlib-002fcfca351539442a997216e047a6f938f5efe9.tar.lz
nixlib-002fcfca351539442a997216e047a6f938f5efe9.tar.xz
nixlib-002fcfca351539442a997216e047a6f938f5efe9.tar.zst
nixlib-002fcfca351539442a997216e047a6f938f5efe9.zip
mate-sensors-applet: init at 1.18.3
Diffstat (limited to 'pkgs/desktops/mate/mate-sensors-applet/default.nix')
-rw-r--r--pkgs/desktops/mate/mate-sensors-applet/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/desktops/mate/mate-sensors-applet/default.nix b/pkgs/desktops/mate/mate-sensors-applet/default.nix
new file mode 100644
index 000000000000..ed98ffaa645b
--- /dev/null
+++ b/pkgs/desktops/mate/mate-sensors-applet/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libxslt, libatasmart, libnotify, dbus_glib, lm_sensors, mate-panel, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  name = "mate-sensors-applet-${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 = "1nm68rhp73kgvs7wwsgs5zbvq3lzaanl5s5nnn28saiknjbz1mcx";
+  };
+
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+    itstool
+    wrapGAppsHook
+  ];
+
+  # maybe add nvidia-settings later on
+  buildInputs = [
+    gtk3
+    libxml2
+    libxslt
+    libatasmart
+    libnotify
+    dbus_glib
+    lm_sensors
+    mate-panel
+    hicolor_icon_theme
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/mate-desktop/mate-sensors-applet;
+    description = "MATE panel applet for hardware sensors";
+    license = with licenses; [ gpl2Plus ];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.romildo ];
+  };
+}