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

39 lines
1,003 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gettext, itstool, gtk3, libxml2, libxslt, libatasmart, libnotify, lm_sensors, mate, hicolor-icon-theme, wrapGAppsHook }:
2018-01-04 12:40:36 +00:00
stdenv.mkDerivation rec {
pname = "mate-sensors-applet";
version = "1.24.0";
2018-01-04 12:40:36 +00:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1izjgzj3xb93arim8w891x8as85phdmlhdnr2yc8ixg7xpblsq2s";
2018-01-04 12:40:36 +00:00
};
nativeBuildInputs = [
pkgconfig
gettext
2018-01-04 12:40:36 +00:00
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 12:40:36 +00:00
];
meta = with stdenv.lib; {
homepage = "https://github.com/mate-desktop/mate-sensors-applet";
2018-01-04 12:40:36 +00:00
description = "MATE panel applet for hardware sensors";
license = with licenses; [ gpl2Plus ];
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}