From 3bfe1e232e5302a497681a2a2b7327c665853322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 31 Dec 2024 14:02:55 +0800 Subject: [PATCH] gnu: xfce4-netload-plugin: Update to 1.4.2. * gnu/packages/xfce.scm (xfce4-netload-plugin): Update to 1.4.2. [source]: Switch to git-fetch. [native-inputs]: Add xfce4-dev-tools. [home-page]: Set to docs.xfce.org. Change-Id: Ife87b33390b2cc91b3250d1616924a32d24894e7 --- gnu/packages/xfce.scm | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index a9ed14ff884447aa925502282577987d8ef18d9f..7347ee3ab015bbcb891c60080798d4275fa56653 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -2003,24 +2003,24 @@ mounted or when unmounting fails.") (define-public xfce4-netload-plugin (package - (name "xfce4-netload-plugin") - (version "1.4.1") - (source (origin - (method url-fetch) - (uri (string-append "https://archive.xfce.org/src/panel-plugins/" - "xfce4-netload-plugin/" - (version-major+minor version) - "/xfce4-netload-plugin-" version ".tar.bz2")) - (sha256 - (base32 - "0kmlrh29gn6yby8l1lgxp4211pjn3mrd2z0jzd5mh61fslx3mb4z")))) + (name "xfce4-netload-plugin") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://gitlab.xfce.org/panel-plugins/" + name)) + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ck3mdwhj7pzrb1xhynyp4550x27bvlja9z50as30mi070vn92l3")))) (build-system gnu-build-system) (native-inputs - (list intltool pkg-config)) + (list xfce4-dev-tools)) (inputs (list libxfce4ui xfce4-panel)) - (home-page - "https://goodies.xfce.org/projects/panel-plugins/xfce4-netload-plugin") + (home-page "https://docs.xfce.org/panel-plugins/xfce4-netload-plugin/") (synopsis "Netload plugin for the Xfce Panel") (description "This plugin displays the current load of the network interfaces of your choice in the panel.")