1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

plymouth: set systemd-tty-ask-password-agent path

This is needed in cross where systemd is not in path.
This commit is contained in:
Matthew Bauer 2020-03-03 23:03:53 -05:00
parent 139fd8b397
commit 3a71e62c56

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxslt, docbook_xsl
, gtk3, udev, systemd
, gtk3, udev, systemd, lib
}:
stdenv.mkDerivation rec {
@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
"--enable-pango"
"--enable-gdm-transition"
"--enable-gtk"
"ac_cv_path_SYSTEMD_ASK_PASSWORD_AGENT=${lib.getBin systemd}/bin/systemd-tty-ask-password-agent"
];
configurePlatforms = [ "host" ];