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

39 lines
1,002 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 12:40:36 +00:00
stdenv.mkDerivation rec {
pname = "mate-sensors-applet";
version = "1.22.1";
2018-01-04 12:40:36 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0rv19jxxviqqwk2wlhxlm98jsxa26scvs7ilp2i6plhn3ap2alq3";
2018-01-04 12:40:36 +00: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 12:40:36 +00: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 ];
};
}