urxvt-config-reload/default.nix

25 lines
600 B
Nix
Raw Normal View History

2020-02-22 12:22:36 +01:00
{ stdenv, perlPackages }:
stdenv.mkDerivation rec {
pname = "urxvt-config-reload";
version = "1.0";
src = ./src;
passthru.perlPackages = with perlPackages;
[ AnyEvent LinuxFD SubExporter
DataOptList ParamsUtil SubInstall
];
installPhase = ''
install -D -m644 "$src"/* -t "$out/lib/urxvt/perl"
'';
meta = with stdenv.lib; {
description = "A urxvt plugin that reloads the configuration on SIGUSR1";
homepage = "https://maxwell.ydns.eu/git/rnhmjoj/urxvt-config-reload";
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.unix;
};
}