Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
806 B
Nix
36 lines
806 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
wmctrl,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "urxvt-perl";
|
|
version = "unstable-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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Perl extensions for the rxvt-unicode terminal emulator";
|
|
homepage = "https://github.com/effigies/urxvt-perl";
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|