summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-16 01:01:34 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-19 20:38:59 -0300
commit21fb9c538e1344f221fa2275280f456f83646811 (patch)
tree7bac189498bb22ff4783d50bfe2dbb3010e05ac6
parent11188c1746f41efe06fee5bc53f656020345f6e5 (diff)
downloadnixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar.gz
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar.bz2
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar.lz
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar.xz
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.tar.zst
nixpkgs-21fb9c538e1344f221fa2275280f456f83646811.zip
xfce.xfce4-mailwatch-plugin: remove broken status
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix27
1 files changed, 19 insertions, 8 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
index b63224f8708..3d60d8b18f9 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui,
-  xfconf, gtk2, exo, gnutls, libgcrypt, xfce }:
+  gtk2, exo, gnutls, libgcrypt, xfce }:
 
 let
   category = "panel-plugins";
@@ -14,10 +14,21 @@ stdenv.mkDerivation rec {
     sha256 = "1bfw3smwivr9mzdyq768biqrl4aq94zqi3xjzq6kqnd8561cqjk2";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel
-    xfconf gtk2 exo gnutls libgcrypt ];
-  
+  nativeBuildInputs = [
+    intltool
+    pkgconfig
+  ];
+
+  buildInputs = [
+    libxfce4util
+    libxfce4ui
+    xfce4-panel
+    gtk2
+    exo # needs exo with gtk2 support
+    gnutls
+    libgcrypt
+  ];
+
   passthru.updateScript = xfce.updateScript {
     inherit pname version;
     attrPath = "xfce.${pname}";
@@ -25,10 +36,10 @@ stdenv.mkDerivation rec {
   };
 
   meta = with stdenv.lib; {
-    homepage = "https://goodies.xfce.org/projects/panel-plugins/${pname}";
-    description = "Mailwatch plugin for Xfce panel";
+    homepage = "https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin";
+    description = "Mail watcher plugin for Xfce panel";
+    license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = [ ];
-    broken = true;
   };
 }