2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, substituteAll, pkgconfig, glib, itstool, libxml2, xorg
|
2016-09-18 20:35:23 +01:00
|
|
|
, intltool, accountsservice, libX11, gnome3, systemd, autoreconfHook
|
2018-02-25 02:23:58 +00:00
|
|
|
, gtk, libcanberra-gtk3, pam, libtool, gobjectIntrospection, plymouth
|
2018-04-27 18:03:19 +01:00
|
|
|
, librsvg, coreutils, xwayland }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 20:07:20 +00:00
|
|
|
name = "gdm-${version}";
|
2018-06-06 10:39:22 +01:00
|
|
|
version = "3.28.2";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gdm/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-06-06 10:39:22 +01:00
|
|
|
sha256 = "0wdm1503x66n1crdlmzmincbd2hccpxsdgjsl5anx3yjpdzs0hb0";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
# Only needed to make it build
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver.out}/bin/X"
|
|
|
|
'';
|
|
|
|
|
2018-04-27 17:53:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--with-plymouth=yes"
|
|
|
|
"--with-initial-vt=7"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2017-09-19 11:50:26 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig libxml2 itstool intltool autoreconfHook libtool gnome3.dconf ];
|
2018-04-27 17:53:21 +01:00
|
|
|
buildInputs = [
|
|
|
|
glib accountsservice systemd
|
|
|
|
gobjectIntrospection libX11 gtk
|
|
|
|
libcanberra-gtk3 pam plymouth librsvg
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2016-10-01 23:35:13 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
# Disable Access Control because our X does not support FamilyServerInterpreted yet
|
2018-04-27 17:53:21 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
2018-04-27 18:03:19 +01:00
|
|
|
inherit coreutils plymouth xwayland;
|
2018-04-27 17:53:21 +01:00
|
|
|
})
|
|
|
|
./sessions_dir.patch
|
|
|
|
./gdm-x-session_extra_args.patch
|
|
|
|
./gdm-session-worker_xserver-path.patch
|
|
|
|
];
|
2017-09-19 11:50:26 +01:00
|
|
|
|
2018-04-27 17:53:21 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=$(out)/etc"
|
|
|
|
"dbusconfdir=$(out)/etc/dbus-1/system.d"
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gdm";
|
|
|
|
attrPath = "gnome3.gdm";
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A program that manages graphical display servers and handles graphical user logins";
|
2018-04-27 17:53:21 +01:00
|
|
|
homepage = https://wiki.gnome.org/Projects/GDM;
|
|
|
|
license = licenses.gpl2Plus;
|
2016-09-18 20:35:23 +01:00
|
|
|
maintainers = gnome3.maintainers;
|
2018-04-27 17:53:21 +01:00
|
|
|
platforms = platforms.linux;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
}
|