Merge pull request #62085 from michaelpj/fix/fprintd-sysconfdir

fprintd: set sysconfdir
This commit is contained in:
Silvan Mosberger 2019-05-27 18:05:35 +02:00 committed by GitHub
commit 254cccd22d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool ];
configureFlags = [ "--with-systemdsystemunitdir=$(out)/lib/systemd/system" "--localstatedir=/var" ];
configureFlags = [
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"--localstatedir=/var"
"--sysconfdir=${placeholder "out"}/etc"
];
meta = with stdenv.lib; {
homepage = https://fprint.freedesktop.org/;