urxvt-config-reload/default.nix

23 lines
564 B
Nix
Raw Permalink Normal View History

2021-05-21 10:43:08 +02:00
{ lib, stdenv, perlPackages }:
2020-02-22 12:22:36 +01:00
stdenv.mkDerivation rec {
pname = "urxvt-config-reload";
version = "1.0";
src = ./src;
passthru.perlPackages = with perlPackages;
2021-06-04 11:07:58 +02:00
[ LinuxFD ] ++ LinuxFD.requiredPerlModules;
2020-02-22 12:22:36 +01:00
installPhase = ''
install -D -m644 "$src"/* -t "$out/lib/urxvt/perl"
'';
2021-05-21 10:43:08 +02:00
meta = with lib; {
2020-02-22 12:22:36 +01:00
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;
};
}