summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-15 14:50:53 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-19 20:38:59 -0300
commit360be696ad17762c03457458c5ce86fec00efbf5 (patch)
treedd4c3413414e2cc7ad78d2a1ffb1efd914d43991
parent37be87b61ffe462d21d1b6f32e29bf5f079376b1 (diff)
downloadnixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar.gz
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar.bz2
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar.lz
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar.xz
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.tar.zst
nixpkgs-360be696ad17762c03457458c5ce86fec00efbf5.zip
xfce.xfce4-timer-plugin: 1.6.0 -> 1.7.0
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix26
1 files changed, 16 insertions, 10 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
index ae08fd3aeae..00b497c918d 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
@@ -1,5 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel
-, libxfce4ui, xfconf, gtk2, hicolor-icon-theme, xfce }:
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, gtk3, hicolor-icon-theme, xfce }:
 
 let
   category = "panel-plugins";
@@ -7,17 +6,25 @@ in
 
 stdenv.mkDerivation rec {
   pname  = "xfce4-timer-plugin";
-  version = "1.6.0";
+  version = "1.7.0";
 
   src = fetchurl {
     url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
-    sha256 = "0z46gyw3ihcd1jf0m5z1dsc790xv1cpi8mk1dagj3i4v14gx5mrr";
+    sha256 = "16vypwwjwfk7nn4n16rfgn0z78jqrmbgxmc1r46269lrwd1m6kif";
   };
 
-  buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel xfconf
-    gtk2 hicolor-icon-theme ];
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+  ];
 
-  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [
+    libxfce4util
+    libxfce4ui
+    xfce4-panel
+    gtk3
+    hicolor-icon-theme
+  ];
 
   hardeningDisable = [ "format" ];
   
@@ -28,11 +35,10 @@ stdenv.mkDerivation rec {
   };
 
   meta = with stdenv.lib; {
-    homepage = "https://goodies.xfce.org/projects/panel-plugins/${pname}";
-    description = "A simple XFCE panel plugin that lets the user run an alarm at a specified time or at the end of a specified countdown period";
+    homepage = "https://docs.xfce.org/panel-plugins/xfce4-timer-plugin";
+    description = "Simple countdown and alarm plugin for the Xfce panel";
     platforms = platforms.linux;
     license = licenses.gpl2;
     maintainers = [ ];
-    broken = true;
   };
 }