sddm: ignore config file modification time

Properly fixes #10211, wherein the config file was not being loaded
because it was considered too old. However, the modification time was
being compared against an uninitialized value; the semantics of the
uninitialized timestamp probably changed between Qt 5.4 and 5.5.
This commit is contained in:
Thomas Tuegel
2015-10-06 22:54:33 -05:00
parent c7d0f8b3b5
commit 6a80bb95f7
2 changed files with 18 additions and 0 deletions
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
sha256 = "09amr61srvl52nvxlqqgs9fzn33pc2gjv5hc83gxx43x6q2j19gg";
};
patches = [ ./sddm-ignore-config-mtime.patch ];
nativeBuildInputs = [ cmake pkgconfig qttools ];
buildInputs = [ libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd ];