nixpkgs-suyu/pkgs/desktops/mate/mate-sensors-applet/default.nix

39 lines
985 B
Nix
Raw Normal View History

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