42 lines
1.5 KiB
Nix
42 lines
1.5 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
|
|
, intltool, accountsservice, libX11, gnome3, systemd, autoreconfHook
|
|
, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth
|
|
, librsvg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
# Only needed to make it build
|
|
preConfigure = ''
|
|
substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver.out}/bin/X"
|
|
'';
|
|
|
|
configureFlags = [ "--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
"--with-plymouth=yes"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ glib itstool libxml2 intltool
|
|
accountsservice gnome3.dconf systemd
|
|
gobjectIntrospection libX11 gtk
|
|
libcanberra_gtk3 pam libtool plymouth librsvg ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Disable Access Control because our X does not support FamilyServerInterpreted yet
|
|
patches = [ ./sessions_dir.patch
|
|
./gdm-x-session_extra_args.patch
|
|
./gdm-session-worker_xserver-path.patch
|
|
];
|
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Projects/GDM;
|
|
description = "A program that manages graphical display servers and handles graphical user logins";
|
|
platforms = platforms.linux;
|
|
maintainers = gnome3.maintainers;
|
|
};
|
|
}
|