pacman: fix script generation
Without m4, the bash scripts (makepkg, repo-add, etc.) would be installed as empty files.
This commit is contained in:
parent
3de5266b25
commit
7066dc9fec
@ -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 }:
|
lzma, curl, runtimeShell }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
|
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig m4 ];
|
||||||
buildInputs = [ curl perl libarchive openssl zlib bzip2 lzma ];
|
buildInputs = [ curl perl libarchive openssl zlib bzip2 lzma ];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user