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
This commit is contained in:
ivanbrennan 2020-02-13 23:34:45 -05:00
parent 92176bc7c3
commit 0e69b50b60
No known key found for this signature in database
GPG Key ID: 79C3C47DC652EA54

View File

@ -2,21 +2,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "urxvt-perls"; pname = "urxvt-perls";
version = "2.2"; version = "2.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "muennich"; owner = "muennich";
repo = "urxvt-perls"; repo = "urxvt-perls";
rev = version; rev = version;
sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; sha256 = "0xvwfw7965ghhd9g6rl6y6fgpd444l46rjqmlgg0rfjypbh6c0p1";
}; };
installPhase = '' installPhase = ''
mkdir -p $out/lib/urxvt/perl mkdir -p $out/lib/urxvt/perl
cp clipboard \ cp keyboard-select $out/lib/urxvt/perl
keyboard-select \
url-select \
$out/lib/urxvt/perl
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {