nixpkgs/pkgs/applications/display-managers/sddm/default.nix

68 lines
1.9 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub
, cmake, extra-cmake-modules, pkgconfig, libxcb, libpthreadstubs
, 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
2019-03-31 16:25:51 +00:00
version = "0.18.1";
2015-12-11 12:58:04 +00:00
2019-08-13 21:52:01 +00:00
in mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "sddm";
inherit version;
2016-06-09 17:39:02 +00:00
src = fetchFromGitHub {
owner = "sddm";
repo = "sddm";
rev = "v${version}";
2019-03-31 16:25:51 +00:00
sha256 = "0an1zafz0yhxd9jgd3gzdwmaw5f9vs4c924q56lp2yxxddbmzjcq";
};
2018-05-26 07:08:32 +00:00
patches = [
./sddm-ignore-config-mtime.patch
];
postPatch =
# Fix missing include for gettimeofday()
2018-05-26 07:08:32 +00:00
''
sed -e '1i#include <sys/time.h>' -i src/helper/HelperApp.cpp
'';
2015-12-11 12:58:04 +00:00
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qttools ];
buildInputs = [
libxcb libpthreadstubs libXdmcp libXau pam qtbase qtdeclarative qtquickcontrols2 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"
2019-03-31 16:25:51 +00:00
"-DQT_IMPORTS_DIR=${placeholder "out"}/${qtbase.qtQmlPrefix}"
"-DCMAKE_INSTALL_SYSCONFDIR=${placeholder "out"}/etc"
"-DSYSTEMD_SYSTEM_UNIT_DIR=${placeholder "out"}/lib/systemd/system"
];
2016-06-09 17:39:02 +00:00
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
2015-12-11 12:58:04 +00:00
'';
meta = with lib; {
description = "QML based X11 display manager";
homepage = https://github.com/sddm/sddm;
maintainers = with maintainers; [ abbradar ttuegel ];
platforms = platforms.linux;
2018-08-04 16:43:42 +00:00
license = licenses.gpl2Plus;
};
2015-03-02 17:58:05 +00:00
}