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

122 lines
3.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, makeQtWrapper, fetchFromGitHub, fetchpatch
2016-09-16 08:13:45 +00:00
, cmake, extra-cmake-modules, pkgconfig, libxcb, libpthreadstubs, lndir
2015-12-11 12:58:04 +00:00
, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd
, themes
}:
2015-03-02 17:58:05 +00:00
let
2016-09-16 08:13:45 +00:00
version = "0.14.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}";
2016-09-16 08:13:45 +00:00
sha256 = "0wwid23kw0725zpw67zchalg9mmharr7sn4yzhijq7wqpsczjfxj";
2015-12-11 12:58:04 +00:00
};
2015-12-11 12:58:04 +00:00
patches = [
./0001-ignore-config-mtime.patch
2016-09-16 08:13:45 +00:00
(fetchpatch { /* Fix display of user avatars. */
url = https://github.com/sddm/sddm/commit/ecb903e48822bd90650bdd64fe80754e3e9664cb.patch;
sha256 = "0zm88944pwdad8grmv0xwnxl23xml85ryc71x2xac233jxdyx6ms";
2016-01-13 15:08:04 +00:00
})
2015-12-11 12:58:04 +00:00
];
2015-03-02 17:58:05 +00:00
postPatch =
# Module Qt5::Test must be included in `find_package` before it is used.
''
sed -i CMakeLists.txt -e '/find_package(Qt5/ s|)| Test)|'
'';
2016-09-16 08:13:45 +00:00
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qttools ];
2015-03-02 17:58:05 +00:00
2015-12-11 12:58:04 +00:00
buildInputs = [
libxcb libpthreadstubs libXdmcp libXau pam systemd
2015-12-11 12:58:04 +00:00
];
2015-03-02 17:58:05 +00:00
propagatedBuildInputs = [
qtbase qtdeclarative
];
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/$qtQmlPrefix -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system"
2015-12-11 12:58:04 +00:00
'';
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-12 17:32:20 +00:00
postInstall = ''
# remove empty scripts
rm "$out/share/sddm/scripts/Xsetup" "$out/share/sddm/scripts/Xstop"
'';
2015-12-11 12:58:04 +00:00
meta = with stdenv.lib; {
description = "QML based X11 display manager";
2016-11-23 14:49:18 +00:00
homepage = "https://github.com/sddm/sddm";
2015-12-11 12:58:04 +00:00
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}";
nativeBuildInputs = [ lndir makeQtWrapper ];
buildInputs = [ unwrapped ] ++ themes;
2016-01-31 23:03:08 +00:00
themes = map (pkg: pkg.out or pkg) themes;
2015-12-11 12:58:04 +00:00
inherit unwrapped;
2016-06-09 17:39:02 +00:00
unpackPhase = "true";
configurePhase = "runHook preConfigure; runHook postConfigure";
buildPhase = "runHook preBuild; runHook postBuild";
2015-12-11 12:58:04 +00:00
installPhase = ''
2016-06-09 17:39:02 +00:00
runHook preInstall
propagated=
for i in $unwrapped $themes; do
findInputs $i propagated propagated-user-env-packages
if [ -z "$crossConfig" ]; then
findInputs $i propagated propagated-native-build-inputs
else
findInputs $i propagated propagated-build-inputs
fi
done
for pkg in $propagated; do
addToSearchPath RUNTIME_XDG_DATA_DIRS "$pkg/share"
addToSearchPath RUNTIME_XDG_CONFIG_DIRS "$pkg/etc/xdg"
done
mkdir -p "$out/bin"
2015-12-11 12:58:04 +00:00
makeQtWrapper "$unwrapped/bin/sddm" "$out/bin/sddm"
mkdir -p "$out/share/sddm"
for pkg in $unwrapped $themes; do
local sddmDir="$pkg/share/sddm"
2016-01-31 23:03:25 +00:00
if [ -d "$sddmDir" ]; then
2015-12-11 12:58:04 +00:00
lndir -silent "$sddmDir" "$out/share/sddm"
fi
done
2016-06-09 17:39:02 +00:00
runHook postInstall
2015-12-11 12:58:04 +00:00
'';
inherit (unwrapped) meta;
2015-03-02 17:58:05 +00:00
}