nix: add confDir argument

This commit is contained in:
Zero King 2017-05-03 13:04:52 +00:00
parent 5e5d16f425
commit 8bb7328300

View File

@ -3,6 +3,7 @@
, autoreconfHook, autoconf-archive, bison, flex, libxml2, libxslt, docbook5, docbook5_xsl
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
, confDir ? "/etc"
}:
let
@ -43,7 +44,7 @@ let
configureFlags =
[ "--with-store-dir=${storeDir}"
"--localstatedir=${stateDir}"
"--sysconfdir=/etc"
"--sysconfdir=${confDir}"
"--disable-init-state"
"--enable-gc"
]