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