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

43 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-02 19:58:16 +00:00
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gtk3, libxml2, libxslt, libatasmart, libnotify, lm_sensors, mate, hicolor-icon-theme, wrapGAppsHook, mateUpdateScript }:
2018-01-04 12:40:36 +00:00
stdenv.mkDerivation rec {
pname = "mate-sensors-applet";
version = "1.24.1";
2018-01-04 12:40:36 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1nb4fy3mcymv7pmnc0czpxgp1sqvs533jwnqv1b5cqby415ljb16";
2018-01-04 12:40:36 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
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
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2021-04-02 19:58:16 +00:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with 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 ];
};
}