2021-03-17 17:25:40 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, fetchpatch
|
2021-01-17 02:09:27 +00:00
|
|
|
, cmake, extra-cmake-modules, pkg-config, libxcb, libpthreadstubs
|
2019-07-31 19:06:43 +01:00
|
|
|
, libXdmcp, libXau, qtbase, qtdeclarative, qtquickcontrols2, qttools, pam, systemd
|
2015-12-11 12:58:04 +00:00
|
|
|
}:
|
2015-03-02 17:58:05 +00:00
|
|
|
|
|
|
|
let
|
2020-11-04 12:16:10 +00:00
|
|
|
version = "0.19.0";
|
2015-12-11 12:58:04 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
in mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "sddm";
|
|
|
|
inherit version;
|
2016-06-09 18:39:02 +01:00
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sddm";
|
|
|
|
repo = "sddm";
|
|
|
|
rev = "v${version}";
|
2020-11-04 12:16:10 +00:00
|
|
|
sha256 = "1s6icb5r1n6grfs137gdzfrcvwsb3hvlhib2zh6931x8pkl1qvxa";
|
2017-05-17 15:21:11 +01:00
|
|
|
};
|
2017-03-24 13:02:53 +00:00
|
|
|
|
2018-05-26 08:08:32 +01:00
|
|
|
patches = [
|
|
|
|
./sddm-ignore-config-mtime.patch
|
2021-03-17 17:25:40 +00:00
|
|
|
# Load `/etc/profile` for `environment.variables` with zsh default shell.
|
|
|
|
# See: https://github.com/sddm/sddm/pull/1382
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/sddm/sddm/commit/e1dedeeab6de565e043f26ac16033e613c222ef9.patch";
|
|
|
|
sha256 = "sha256-OPyrUI3bbH+PGDBfoL4Ohb4wIvmy9TeYZhE0JxR/D58=";
|
|
|
|
})
|
2018-05-26 08:08:32 +01:00
|
|
|
];
|
2017-03-24 13:02:53 +00:00
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
postPatch =
|
2018-03-30 04:24:03 +01:00
|
|
|
# Fix missing include for gettimeofday()
|
2018-05-26 08:08:32 +01:00
|
|
|
''
|
2018-03-30 04:24:03 +01:00
|
|
|
sed -e '1i#include <sys/time.h>' -i src/helper/HelperApp.cpp
|
2017-05-17 15:21:11 +01:00
|
|
|
'';
|
2015-12-11 12:58:04 +00:00
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config qttools ];
|
2017-05-17 15:21:11 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-07-31 19:06:43 +01:00
|
|
|
libxcb libpthreadstubs libXdmcp libXau pam qtbase qtdeclarative qtquickcontrols2 systemd
|
2017-05-17 15:21:11 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
2019-03-31 17:25:51 +01:00
|
|
|
"-DQT_IMPORTS_DIR=${placeholder "out"}/${qtbase.qtQmlPrefix}"
|
|
|
|
"-DCMAKE_INSTALL_SYSCONFDIR=${placeholder "out"}/etc"
|
|
|
|
"-DSYSTEMD_SYSTEM_UNIT_DIR=${placeholder "out"}/lib/systemd/system"
|
2019-09-16 03:52:55 +01:00
|
|
|
"-DDBUS_CONFIG_DIR=${placeholder "out"}/share/dbus-1/system.d"
|
2019-03-31 17:25:51 +01:00
|
|
|
];
|
2016-06-09 18:39:02 +01:00
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
postInstall = ''
|
|
|
|
# remove empty scripts
|
|
|
|
rm "$out/share/sddm/scripts/Xsetup" "$out/share/sddm/scripts/Xstop"
|
2017-10-15 07:58:08 +01:00
|
|
|
for f in $out/share/sddm/themes/**/theme.conf ; do
|
|
|
|
substituteInPlace $f \
|
|
|
|
--replace 'background=' "background=$(dirname $f)/"
|
|
|
|
done
|
2015-12-11 12:58:04 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "QML based X11 display manager";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/sddm/sddm";
|
2017-05-17 15:21:11 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ttuegel ];
|
2017-10-15 07:58:08 +01:00
|
|
|
platforms = platforms.linux;
|
2018-08-04 17:43:42 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2017-05-17 15:21:11 +01:00
|
|
|
};
|
2015-03-02 17:58:05 +00:00
|
|
|
}
|