Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
122 lines
2.8 KiB
Nix
122 lines
2.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
pkg-config,
|
|
qttools,
|
|
libxcb,
|
|
libXau,
|
|
pam,
|
|
qtbase,
|
|
qtdeclarative,
|
|
qtquickcontrols2 ? null,
|
|
systemd,
|
|
xkeyboardconfig,
|
|
nixosTests,
|
|
docutils,
|
|
}:
|
|
let
|
|
isQt6 = lib.versions.major qtbase.version == "6";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sddm-unwrapped";
|
|
version = "0.21.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sddm";
|
|
repo = "sddm";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-r5mnEWham2WnoEqRh5tBj/6rn5mN62ENOCmsLv2Ht+w=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
patches = [
|
|
./greeter-path.patch
|
|
./sddm-ignore-config-mtime.patch
|
|
./sddm-default-session.patch
|
|
|
|
(fetchpatch {
|
|
name = "sddm-fix-cmake-4.patch";
|
|
url = "https://github.com/sddm/sddm/commit/228778c2b4b7e26db1e1d69fe484ed75c5791c3a.patch";
|
|
hash = "sha256-Okt9LeZBhTDhP7NKBexWAZhkK6N6j9dFkAEgpidSnzE=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/greeter/waylandkeyboardbackend.cpp \
|
|
--replace "/usr/share/X11/xkb/rules/evdev.xml" "${xkeyboardconfig}/share/X11/xkb/rules/evdev.xml"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
docutils
|
|
];
|
|
|
|
buildInputs = [
|
|
libxcb
|
|
libXau
|
|
pam
|
|
qtbase
|
|
qtdeclarative
|
|
qtquickcontrols2
|
|
systemd
|
|
];
|
|
|
|
# We will wrap manually later
|
|
dontWrapQtApps = true;
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_WITH_QT6" isQt6)
|
|
(lib.cmakeBool "BUILD_MAN_PAGES" true)
|
|
"-DCONFIG_FILE=/etc/sddm.conf"
|
|
"-DCONFIG_DIR=/etc/sddm.conf.d"
|
|
|
|
# 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"
|
|
|
|
"-DSDDM_INITIAL_VT=1"
|
|
|
|
"-DQT_IMPORTS_DIR=${placeholder "out"}/${qtbase.qtQmlPrefix}"
|
|
"-DCMAKE_INSTALL_SYSCONFDIR=${placeholder "out"}/etc"
|
|
"-DSYSTEMD_SYSTEM_UNIT_DIR=${placeholder "out"}/lib/systemd/system"
|
|
"-DSYSTEMD_SYSUSERS_DIR=${placeholder "out"}/lib/sysusers.d"
|
|
"-DSYSTEMD_TMPFILES_DIR=${placeholder "out"}/lib/tmpfiles.d"
|
|
"-DDBUS_CONFIG_DIR=${placeholder "out"}/share/dbus-1/system.d"
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) sddm; };
|
|
|
|
meta = with lib; {
|
|
description = "QML based X11 display manager";
|
|
homepage = "https://github.com/sddm/sddm";
|
|
maintainers = with maintainers; [
|
|
ttuegel
|
|
k900
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
})
|