2015-12-11 12:58:04 +00:00
|
|
|
{ stdenv, makeQtWrapper, fetchFromGitHub
|
|
|
|
, cmake, pkgconfig, libxcb, libpthreadstubs, lndir
|
|
|
|
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd
|
|
|
|
, themes
|
|
|
|
}:
|
2015-03-02 17:58:05 +00:00
|
|
|
|
|
|
|
let
|
2015-11-04 21:08:23 +00:00
|
|
|
version = "0.13.0";
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
unwrapped = stdenv.mkDerivation rec {
|
|
|
|
name = "sddm-unwrapped-${version}";
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sddm";
|
|
|
|
repo = "sddm";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0c3q8lpb123m9k5x3i71mm8lmyzhknw77zxh89yfl8qmn6zd61i1";
|
|
|
|
};
|
2015-10-07 03:45:50 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
patches = [
|
|
|
|
./0001-ignore-config-mtime.patch
|
|
|
|
./0002-fix-ConfigReader-QStringList-corruption.patch
|
|
|
|
];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig qttools ];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
buildInputs = [
|
|
|
|
libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd
|
|
|
|
];
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +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
|
|
|
|
2015-12-11 12:58:04 +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"
|
|
|
|
'';
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-03-02 17:58:05 +00:00
|
|
|
|
2015-12-11 12:58:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "QML based X11 display manager";
|
|
|
|
homepage = https://github.com/sddm/sddm;
|
|
|
|
platforms = platforms.linux;
|
2015-12-11 12:58:19 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ttuegel ];
|
2015-12-11 12:58:04 +00:00
|
|
|
};
|
2015-03-02 17:58:05 +00:00
|
|
|
};
|
2015-12-11 12:58:04 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "sddm-${version}";
|
|
|
|
phases = "installPhase";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ lndir makeQtWrapper ];
|
|
|
|
buildInputs = [ unwrapped ] ++ themes;
|
|
|
|
inherit themes;
|
|
|
|
inherit unwrapped;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
makeQtWrapper "$unwrapped/bin/sddm" "$out/bin/sddm"
|
|
|
|
|
|
|
|
mkdir -p "$out/share/sddm"
|
|
|
|
for pkg in $unwrapped $themes; do
|
|
|
|
local sddmDir="$pkg/share/sddm"
|
|
|
|
if [[ -d "$sddmDir" ]]; then
|
|
|
|
lndir -silent "$sddmDir" "$out/share/sddm"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
inherit (unwrapped) meta;
|
2015-03-02 17:58:05 +00:00
|
|
|
}
|