2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, wmctrl }:
|
2015-07-05 04:10:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "urxvt-perl-2015-01-16";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "effigies";
|
|
|
|
repo = "urxvt-perl";
|
|
|
|
rev = "c3beb9ff09a7139591416c61f8e9458c8a23bea5";
|
|
|
|
sha256 = "1w1p8ng7bwq5hnaprjl1zf073y5l3hdsj7sz7cll6isjswcm6r0s";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
substituteInPlace fullscreen \
|
|
|
|
--replace "wmctrl" "${wmctrl}/bin/wmctrl"
|
|
|
|
|
|
|
|
mkdir -p $out/lib/urxvt/perl
|
|
|
|
cp fullscreen $out/lib/urxvt/perl
|
|
|
|
cp newterm $out/lib/urxvt/perl
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-07-05 04:10:31 +00:00
|
|
|
description = "Perl extensions for the rxvt-unicode terminal emulator";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/effigies/urxvt-perl";
|
2015-07-05 04:10:31 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2015-07-05 04:10:31 +00:00
|
|
|
};
|
|
|
|
}
|