forked from mirrors/nixpkgs
moreutils: unbreak 'ts -r'
Fix this: $ ts -r Can't locate Date/Parse.pm in @INC [...]
This commit is contained in:
parent
3613654a1f
commit
a90062d46f
|
@ -23,7 +23,10 @@ stdenv.mkDerivation rec {
|
|||
buildFlags = "CC=cc";
|
||||
installFlags = "PREFIX=$(out)";
|
||||
|
||||
postInstall = "wrapProgram $out/bin/chronic --prefix PERL5LIB : $PERL5LIB";
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/chronic --prefix PERL5LIB : $PERL5LIB
|
||||
wrapProgram $out/bin/ts --prefix PERL5LIB : $PERL5LIB
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young";
|
||||
|
|
Loading…
Reference in a new issue