diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bootloaders.scm | 6 | ||||
-rw-r--r-- | gnu/packages/mate.scm | 54 |
2 files changed, 55 insertions, 5 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 55b6ef7099..dbce7075e3 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -1493,11 +1493,7 @@ Documentation} for more information (for example by running @samp{info (make-u-boot-rockchip-package "firefly" 'rk3399)) (define-public u-boot-rock-4c-plus-rk3399 - (let ((base (make-u-boot-rockchip-package - "rock-4c-plus" 'rk3399 - '("CONFIG_USB=y")))) - (package - (inherit base)))) + (make-u-boot-rockchip-package "rock-4c-plus" 'rk3399)) (define-public u-boot-rockpro64-rk3399 (let ((base (make-u-boot-rockchip-package diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 4169de539a..5b6ea6d21b 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -595,6 +595,59 @@ Interactive Weather Information Network (IWIN). @end enumerate\n") (license (list license:gpl2+ license:lgpl2.0+ license:gpl3+)))) +(define-public mate-sensors-applet + (package + (name "mate-sensors-applet") + (version "1.28.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://mate/" + (version-major+minor version) + "/" + "mate-sensors-applet-" + version + ".tar.xz")) + (sha256 + (base32 "10as64102wbgmi8ak3ya2zyvc3dpx24rfg18323fp3xgh9k3crfl")))) + (build-system glib-or-gtk-build-system) + (arguments + (list + #:configure-flags + #~(list "--enable-in-process"))) + (native-inputs (list pkg-config + intltool + itstool + yelp-tools + gettext-minimal + gobject-introspection)) + (inputs (list at-spi2-core + dbus + dbus-glib + glib + gtk+ + libnotify + lm-sensors + libx11 + libxml2 + libxslt + libatasmart + libwnck + mate-desktop + mate-menus + mate-panel + pango + polkit ;either polkit or setuid + upower + wireless-tools)) + (home-page "https://mate-desktop.org/") + (synopsis "MATE panel applet for hardware monitoring") + (description + "MATE Sensors Applet displays readings from hardware sensors in the MATE +panel, these include CPU temperature, fan speeds and voltage reading under +GNU plus Linux distributions.") + (license license:gpl2+))) + (define-public mate-media (package (name "mate-media") @@ -1707,6 +1760,7 @@ menu specification.") mate-control-center mate-media mate-applets + mate-sensors-applet mate-user-guide mate-calc mate-backgrounds |