pacman: use runtimeShell as the scriptlet shell

This commit is contained in:
Joachim Fasting 2018-12-27 21:23:41 +01:00
parent 2436c27541
commit 6208273727
No known key found for this signature in database
GPG key ID: 5C204DF675C90294

View file

@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, perl, libarchive, openssl,
zlib, bzip2, lzma }:
zlib, bzip2, lzma, runtimeShell }:
stdenv.mkDerivation rec {
pname = "pacman";
@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
"--disable-doc"
"--localstatedir=/var"
"--with-scriptlet-shell=${runtimeShell}"
];
nativeBuildInputs = [ autoreconfHook pkgconfig ];