385e5ac847
Bumps to the latest stable version while fixing CVE-2018-14345 [1]. Changelog [2]: - Support theme supplied avatars - Compile against Qt 5.11 - Fix platform detection for HighDPI - On close, switch VT to a running session if applicable - Better ConsoleKit support - Fix authentication when non-default hidden option ReuseSession=true is used (CVE-2018-14345) - Hide sessions with NoDisplay=true - Honor PAM's ambient supplemental groups - Cleanup socket destruction - Don't quit on SIGHUP - Updated translations [1] https://nvd.nist.gov/vuln/detail/CVE-2018-14345 [2] https://github.com/sddm/sddm/releases/tag/v0.18.0
67 lines
1.8 KiB
Nix
67 lines
1.8 KiB
Nix
{ mkDerivation, lib, fetchFromGitHub
|
|
, cmake, extra-cmake-modules, pkgconfig, libxcb, libpthreadstubs
|
|
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd
|
|
}:
|
|
|
|
let
|
|
version = "0.18.0";
|
|
|
|
in mkDerivation rec {
|
|
name = "sddm-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sddm";
|
|
repo = "sddm";
|
|
rev = "v${version}";
|
|
sha256 = "16xnm02iqgy4hydzd6my0widq981glbazbhxnihhclgsaczh8mfq";
|
|
};
|
|
|
|
patches = [
|
|
./sddm-ignore-config-mtime.patch
|
|
];
|
|
|
|
postPatch =
|
|
# Fix missing include for gettimeofday()
|
|
''
|
|
sed -e '1i#include <sys/time.h>' -i src/helper/HelperApp.cpp
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qttools ];
|
|
|
|
buildInputs = [
|
|
libxcb libpthreadstubs libXdmcp libXau pam qtbase qtdeclarative systemd
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCONFIG_FILE=/etc/sddm.conf"
|
|
# Set UID_MIN and UID_MAX so that the build script won't try
|
|
# to read them from /etc/login.defs (fails in chroot).
|
|
# The values come from NixOS; they may not be appropriate
|
|
# for running SDDM outside NixOS, but that configuration is
|
|
# not supported anyway.
|
|
"-DUID_MIN=1000"
|
|
"-DUID_MAX=29999"
|
|
];
|
|
|
|
preConfigure = ''
|
|
export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/$qtQmlPrefix -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
|
|
'';
|
|
|
|
postInstall = ''
|
|
# remove empty scripts
|
|
rm "$out/share/sddm/scripts/Xsetup" "$out/share/sddm/scripts/Xstop"
|
|
for f in $out/share/sddm/themes/**/theme.conf ; do
|
|
substituteInPlace $f \
|
|
--replace 'background=' "background=$(dirname $f)/"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "QML based X11 display manager";
|
|
homepage = https://github.com/sddm/sddm;
|
|
maintainers = with maintainers; [ abbradar ttuegel ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|