aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/rxvt_unicode
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2019-04-23 19:25:13 -0700
committerarcnmx <arcnmx@users.noreply.github.com>2019-04-23 19:25:13 -0700
commitb526bf0389bc312a09f5fc0fa76c0caaffa8f9c1 (patch)
tree78f776b6136a341f1282a6961b821778fedc551b /pkgs/applications/misc/rxvt_unicode
parent6088a4793f2a83921b197a9185034934fcd96d02 (diff)
rxvt_unicode: fix build
Diffstat (limited to 'pkgs/applications/misc/rxvt_unicode')
-rw-r--r--pkgs/applications/misc/rxvt_unicode/wrapper.nix4
1 files 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"
'';