From b526bf0389bc312a09f5fc0fa76c0caaffa8f9c1 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Tue, 23 Apr 2019 19:25:13 -0700 Subject: [PATCH] rxvt_unicode: fix build --- pkgs/applications/misc/rxvt_unicode/wrapper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rxvt_unicode/wrapper.nix b/pkgs/applications/misc/rxvt_unicode/wrapper.nix index a7b25e112a9..fd0860b3aae 100644 --- a/pkgs/applications/misc/rxvt_unicode/wrapper.nix +++ b/pkgs/applications/misc/rxvt_unicode/wrapper.nix @@ -12,10 +12,10 @@ in symlinkJoin { postBuild = '' wrapProgram $out/bin/urxvt \ - --set PERL5LIB : "${perlPackages.makePerlPath perlDeps}" \ + --prefix PERL5LIB : "${perlPackages.makePerlPath perlDeps}" \ --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" wrapProgram $out/bin/urxvtd \ - --set PERL5LIB : "${perlPackages.makePerlPath perlDeps}" \ + --prefix PERL5LIB : "${perlPackages.makePerlPath perlDeps}" \ --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" '';