2015-10-13 05:08:46 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2014-10-17 04:50:36 -07:00
|
|
|
|
2015-10-13 05:08:46 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "urxvt-perls";
|
2020-02-13 20:34:45 -08:00
|
|
|
version = "2.3";
|
2014-10-17 04:50:36 -07:00
|
|
|
|
2015-10-13 05:08:46 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "muennich";
|
|
|
|
repo = "urxvt-perls";
|
|
|
|
rev = version;
|
2020-02-13 20:34:45 -08:00
|
|
|
sha256 = "0xvwfw7965ghhd9g6rl6y6fgpd444l46rjqmlgg0rfjypbh6c0p1";
|
2014-10-17 04:50:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/urxvt/perl
|
2020-02-13 20:34:45 -08:00
|
|
|
cp keyboard-select $out/lib/urxvt/perl
|
2020-02-13 20:44:30 -08:00
|
|
|
cp deprecated/clipboard \
|
|
|
|
deprecated/url-select \
|
|
|
|
$out/lib/urxvt/perl
|
2014-10-17 04:50:36 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Perl extensions for the rxvt-unicode terminal emulator";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/muennich/urxvt-perls";
|
2014-10-17 04:50:36 -07:00
|
|
|
license = licenses.gpl2;
|
2015-05-14 10:09:10 -07:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; unix;
|
2014-10-17 04:50:36 -07:00
|
|
|
};
|
2015-03-28 18:57:12 -07:00
|
|
|
}
|