nixpkgs/pkgs/desktops/mate/mate-sensors-applet/default.nix
2018-03-18 12:02:39 -03:00

40 lines
1,010 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libxslt, libatasmart, libnotify, dbus-glib, lm_sensors, mate, hicolor-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-sensors-applet-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0lnr3jjq30zw1i2rv5n69dhsa3x39lc91xcgbj4vyj1rxj9ff05x";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
# maybe add nvidia-settings later on
buildInputs = [
gtk3
libxml2
libxslt
libatasmart
libnotify
dbus-glib
lm_sensors
mate.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 ];
};
}