diff --git a/pkgs/applications/misc/rxvt_unicode/wrapper.nix b/pkgs/applications/misc/rxvt_unicode/wrapper.nix index de37327fbea..cd3f6fd19b8 100644 --- a/pkgs/applications/misc/rxvt_unicode/wrapper.nix +++ b/pkgs/applications/misc/rxvt_unicode/wrapper.nix @@ -1,15 +1,12 @@ { stdenv, symlinkJoin, rxvt_unicode, makeWrapper, plugins }: let - rxvt = rxvt_unicode.override { - perlSupport = true; - }; - rxvt_name = builtins.parseDrvName rxvt.name; + rxvt_name = builtins.parseDrvName rxvt_unicode.name; in symlinkJoin { name = "${rxvt_name.name}-with-plugins-${rxvt_name.version}"; - paths = [ rxvt ] ++ plugins; + paths = [ rxvt_unicode ] ++ plugins; buildInputs = [ makeWrapper ];