aboutsummaryrefslogtreecommitdiff
path: root/pkgs/desktops/xfce
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-15 14:50:54 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-19 20:38:59 -0300
commited93bfb64c5048b4d15692e0d6005d75daafd5b4 (patch)
tree45c6a57ba1d8a740fa71f75de36bd4379bc3134b /pkgs/desktops/xfce
parent68569ee02e9a849f3d1ae4c1212988a5de80ee74 (diff)
xfce.xfce4-weather-plugin: 0.8.10 -> 0.10.1
Diffstat (limited to 'pkgs/desktops/xfce')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin.nix25
1 files changed, 18 insertions, 7 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin.nix
index f32efb01edd1..cff2ef251ad4 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-weather-plugin.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk2, libxml2, libsoup, upower,
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsoup, upower,
libxfce4ui, libxfce4util, xfce4-panel, hicolor-icon-theme, xfce }:
let
@@ -7,17 +7,28 @@ in
stdenv.mkDerivation rec {
pname = "xfce4-weather-plugin";
- version = "0.8.10";
+ version = "0.10.1";
src = fetchurl {
url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
- sha256 = "1f7ac2zr5s5w6krdpgsq252wxhhmcblia3j783132ilh8k246vgf";
+ sha256 = "12bs2rfmmy021087i10vxibdbbvd5vld0vk3h5hymhpz7rgszcmg";
};
- nativeBuildInputs = [ pkgconfig intltool ];
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ ];
- buildInputs = [ gtk2 libxml2 libsoup upower libxfce4ui libxfce4util
- xfce4-panel hicolor-icon-theme ];
+ buildInputs = [
+ gtk3
+ libxml2
+ libsoup
+ upower
+ libxfce4ui
+ libxfce4util
+ xfce4-panel
+ hicolor-icon-theme
+ ];
enableParallelBuilding = true;
@@ -28,7 +39,7 @@ stdenv.mkDerivation rec {
};
meta = with stdenv.lib; {
- homepage = "https://goodies.xfce.org/projects/panel-plugins/${pname}";
+ homepage = "https://docs.xfce.org/panel-plugins/xfce4-weather-plugin";
description = "Weather plugin for the Xfce desktop environment";
license = licenses.gpl2Plus;
platforms = platforms.unix;