about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorivanbrennan <ivan.brennan@gmail.com>2020-02-13 23:34:45 -0500
committerivanbrennan <ivan.brennan@gmail.com>2020-02-13 23:34:45 -0500
commit0e69b50b60147d4a5c867c16772e814e44838643 (patch)
tree9f21d1060c13a715c0a01a418793d682e752735d /pkgs/applications/misc
parent92176bc7c3d3bb063fd2d4a8077e615c444f9398 (diff)
downloadnixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar.gz
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar.bz2
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar.lz
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar.xz
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.tar.zst
nixlib-0e69b50b60147d4a5c867c16772e814e44838643.zip
rxvt-unicode-plugins.perls: 2.2 -> 2.3
This upgrade brings a new option to the keyboard-select plugin:

  URxvt.keyboard-select.clipboard: If true, copy to clipboard too

and removes the now deprecated clipboard and url-select plugins. The
reasons for deprecating these two plugins are described at:
https://github.com/muennich/urxvt-perls/blob/master/deprecated/README.md
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/rxvt-unicode-plugins/urxvt-perls/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-perls/default.nix b/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-perls/default.nix
index b976388ae2c4..4081fea76c96 100644
--- a/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-perls/default.nix
+++ b/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-perls/default.nix
@@ -2,21 +2,18 @@
 
 stdenv.mkDerivation rec {
   pname = "urxvt-perls";
-  version = "2.2";
+  version = "2.3";
 
   src = fetchFromGitHub {
     owner = "muennich";
     repo = "urxvt-perls";
     rev = version;
-    sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz";
+    sha256 = "0xvwfw7965ghhd9g6rl6y6fgpd444l46rjqmlgg0rfjypbh6c0p1";
   };
 
   installPhase = ''
     mkdir -p $out/lib/urxvt/perl
-    cp clipboard \
-       keyboard-select \
-       url-select \
-    $out/lib/urxvt/perl
+    cp keyboard-select $out/lib/urxvt/perl
   '';
 
   meta = with stdenv.lib; {