pacman: fix script generation

Without m4, the bash scripts (makepkg, repo-add, etc.) would be installed as
empty files.
This commit is contained in:
Ben Wolsieffer 2020-01-08 12:19:27 -05:00
parent 3de5266b25
commit 7066dc9fec

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, pkgconfig, perl, libarchive, openssl, zlib, bzip2,
{ stdenv, lib, fetchurl, pkgconfig, m4, perl, libarchive, openssl, zlib, bzip2,
lzma, curl, runtimeShell }:
stdenv.mkDerivation rec {
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig m4 ];
buildInputs = [ curl perl libarchive openssl zlib bzip2 lzma ];
postFixup = ''