summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-15 14:50:52 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-19 20:38:58 -0300
commit7d840844189fdadaad2afc0eec99b49e0e04df17 (patch)
tree3c807a557bac3f529041e224a0d8c4582b279a89 /pkgs
parentda4b533366c4328cebf443c55541588be472e5fb (diff)
downloadnixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar.gz
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar.bz2
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar.lz
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar.xz
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.tar.zst
nixpkgs-7d840844189fdadaad2afc0eec99b49e0e04df17.zip
xfce.xfce4-notes-plugin: 1.7.7 -> 1.8.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix29
1 files changed, 21 insertions, 8 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix
index 1b7e66936fa..d6910d367a6 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, xfconf, gtk2, libunique, xfce }:
+{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, xfconf, gtk2, libunique, xfce }:
 
 let
   category = "panel-plugins";
@@ -6,16 +6,29 @@ in
 
 stdenv.mkDerivation rec {
   pname  = "xfce4-notes-plugin";
-  version = "1.7.7";
+  version = "1.8.1";
 
   src = fetchurl {
     url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
-    sha256 = "05sjbwgch1j93m3r23ksbjnpfk11sf7xjmbb9pm5vl3snc2s3fm7";
+    sha256 = "1cjlvvcsigyh40xa26b2vc5zylgss0nlaw72sablzhii2kkw7907";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel xfconf gtk2 libunique ];
-  
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+  ];
+
+  buildInputs = [
+    libxfce4util
+    libxfce4ui
+    xfce4-panel
+    xfconf
+    gtk2
+    libunique
+  ];
+
+  hardeningDisable = [ "format" ];
+
   passthru.updateScript = xfce.updateScript {
     inherit pname version;
     attrPath = "xfce.${pname}";
@@ -23,10 +36,10 @@ stdenv.mkDerivation rec {
   };
 
   meta = with stdenv.lib; {
-    homepage = "https://goodies.xfce.org/projects/panel-plugins/${pname}";
+    homepage = "https://docs.xfce.org/panel-plugins/xfce4-notes-plugin";
     description = "Sticky notes plugin for Xfce panel";
+    license = licenses.gpl2Plus;
     platforms = platforms.linux;
     maintainers = [ maintainers.AndersonTorres ];
-    broken = true;
   };
 }