e9b71faf3d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mate-sensors-applet/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.20.2 with grep in /nix/store/57vzc483bg7wbf8kx7xacsfyd2pa7d81-mate-sensors-applet-1.20.2 - directory tree listing: https://gist.github.com/b87e08ecd1269611cfc12caee03ec0a8 - du listing: https://gist.github.com/7ea36f0bc246d7aa8601097266a844c2
40 lines
1010 B
Nix
40 lines
1010 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.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0khxzwjjf2gp9ma6ji0ynvvqlw6hhr8j4gff9klkrn60xbg5h16b";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|