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 {
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; {