Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

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