2015-10-14 14:44:10 +00:00
|
|
|
{ stdenv, fetchpatch, makeQtWrapper, fetchFromGitHub, cmake, pkgconfig, libxcb, libpthreadstubs
|
2015-10-07 03:22:01 +00:00
|
|
|
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd }:
|
2015-03-02 17:58:05 +00:00
|
|
|
|
|
|
|
let
|
2015-10-07 03:22:01 +00:00
|
|
|
version = "0.12.0";
|
2015-03-02 17:58:05 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sddm-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sddm";
|
|
|
|
repo = "sddm";
|
|
|
|
rev = "v${version}";
|
2015-10-07 03:22:01 +00:00
|
|
|
sha256 = "09amr61srvl52nvxlqqgs9fzn33pc2gjv5hc83gxx43x6q2j19gg";
|
2015-03-02 17:58:05 +00:00
|
|
|
};
|
|
|
|
|
2015-10-07 03:45:50 +00:00
|
|
|
patches = [ ./sddm-ignore-config-mtime.patch ];
|
|
|
|
|
2015-10-14 14:44:10 +00:00
|
|
|
nativeBuildInputs = [ cmake makeQtWrapper pkgconfig qttools ];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-10-07 03:22:01 +00:00
|
|
|
buildInputs = [ libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd ];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-10-09 01:20:34 +00: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"
|
|
|
|
];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/lib/qt5/qml -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2015-10-07 03:22:01 +00:00
|
|
|
wrapQtProgram $out/bin/sddm
|
|
|
|
wrapQtProgram $out/bin/sddm-greeter
|
2015-03-02 17:58:05 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "QML based X11 display manager";
|
2015-07-28 08:57:29 +00:00
|
|
|
homepage = https://github.com/sddm/sddm;
|
2015-03-02 17:58:05 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|