Merge pull request #215272 from trofi/vifm-help
vifm: fix `:help` by pulling in `perl` to build depends
This commit is contained in:
commit
8cef0411a6
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, makeWrapper
|
||||
, perl # used to generate help tags
|
||||
, pkg-config
|
||||
, ncurses, libX11
|
||||
, util-linux, file, which, groff
|
||||
|
@ -17,9 +18,14 @@ in stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-j+KBPr3Mz+ma7OArBdYqIJkVJdRrDM+67Dr2FMZlVog=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||
nativeBuildInputs = [ perl pkg-config makeWrapper ];
|
||||
buildInputs = [ ncurses libX11 util-linux file which groff ];
|
||||
|
||||
postPatch = ''
|
||||
# Avoid '#!/usr/bin/env perl' reverences to build help.
|
||||
patchShebangs --build src/helpztags
|
||||
'';
|
||||
|
||||
postFixup = let
|
||||
path = lib.makeBinPath
|
||||
[ udisks2
|
||||
|
|
Loading…
Reference in a new issue