2018-07-21 01:44:44 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub
|
|
|
|
, cmake, extra-cmake-modules, pkgconfig, libxcb, libpthreadstubs
|
2015-12-11 12:58:04 +00:00
|
|
|
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd
|
|
|
|
}:
|
2015-03-02 17:58:05 +00:00
|
|
|
|
|
|
|
let
|
2018-10-15 23:23:02 +01:00
|
|
|
version = "0.18.0";
|
2015-12-11 12:58:04 +00:00
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
in mkDerivation rec {
|
2017-05-24 00:27:57 +01:00
|
|
|
name = "sddm-${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}";
|
2018-10-15 23:23:02 +01:00
|
|
|
sha256 = "16xnm02iqgy4hydzd6my0widq981glbazbhxnihhclgsaczh8mfq";
|
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
|
|
|
|
];
|
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
|
|
|
|
2017-05-17 15:21:11 +01:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qttools ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2017-05-24 00:27:57 +01:00
|
|
|
libxcb libpthreadstubs libXdmcp libXau pam qtbase qtdeclarative 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"
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/$qtQmlPrefix -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
|
|
|
|
'';
|
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";
|
2017-10-15 07:58:08 +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
|
|
|
}
|