3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/core/gdm/default.nix

68 lines
1.9 KiB
Nix
Raw Normal View History

2018-04-27 17:53:21 +01:00
{ stdenv, fetchurl, substituteAll, pkgconfig, glib, itstool, libxml2, xorg, dbus
, intltool, accountsservice, libX11, gnome3, systemd, autoreconfHook
, gtk, libcanberra-gtk3, pam, libtool, gobjectIntrospection, plymouth
2017-11-08 09:00:11 +00:00
, librsvg, coreutils }:
stdenv.mkDerivation rec {
name = "gdm-${version}";
2018-04-13 22:52:39 +01:00
version = "3.28.1";
src = fetchurl {
url = "mirror://gnome/sources/gdm/${gnome3.versionBranch version}/${name}.tar.xz";
2018-04-13 22:52:39 +01:00
sha256 = "1yxjjyrp0ywrc25cp81bsdhp79zn0c0jag48hlp00b5wfnkqy1kp";
};
# 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"
];
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-10-01 23:35:13 +01:00
enableParallelBuilding = true;
# 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;
inherit coreutils plymouth;
})
./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";
};
};
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;
maintainers = gnome3.maintainers;
2018-04-27 17:53:21 +01:00
platforms = platforms.linux;
};
}