2013-07-28 21:38:32 +01:00
|
|
|
{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2
|
2018-07-21 01:44:44 +01:00
|
|
|
, intltool, libxklavier, libgcrypt, audit, coreutils
|
2015-09-27 16:37:23 +01:00
|
|
|
, qt4 ? null
|
|
|
|
, withQt5 ? false, qtbase
|
2015-03-10 00:32:49 +00:00
|
|
|
}:
|
2013-03-26 10:42:18 +00:00
|
|
|
|
2017-04-02 10:04:32 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-07-28 21:38:32 +01:00
|
|
|
let
|
2017-10-29 19:54:18 +00:00
|
|
|
ver_branch = "1.24";
|
|
|
|
version = "1.24.0";
|
2013-07-28 21:38:32 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lightdm-${version}";
|
2013-03-26 10:42:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-28 21:38:32 +01:00
|
|
|
url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz";
|
2017-10-29 19:54:18 +00:00
|
|
|
sha256 = "18j33bm54i8k7ncxcs69zqi4105s62n58jrydqn3ikrb71s9nl6d";
|
2013-03-26 10:42:18 +00:00
|
|
|
};
|
|
|
|
|
2017-04-02 10:04:32 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2013-07-28 21:38:32 +01:00
|
|
|
buildInputs = [
|
2017-04-02 10:04:32 +01:00
|
|
|
pam libxcb glib libXdmcp itstool libxml2 libxklavier libgcrypt
|
2018-07-17 21:11:16 +01:00
|
|
|
qt4 audit
|
2017-04-02 10:04:32 +01:00
|
|
|
] ++ optional withQt5 qtbase;
|
2015-03-10 00:32:49 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
2015-09-18 07:24:48 +01:00
|
|
|
"--disable-tests"
|
2017-04-02 10:04:32 +01:00
|
|
|
] ++ optional (qt4 != null) "--enable-liblightdm-qt"
|
|
|
|
++ optional withQt5 "--enable-liblightdm-qt5";
|
2013-03-26 10:42:18 +00:00
|
|
|
|
2015-04-05 06:20:28 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2013-03-26 10:42:18 +00:00
|
|
|
|
2017-12-06 12:23:30 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace src/shared-data-manager.c \
|
|
|
|
--replace /bin/rm ${coreutils}/bin/rm
|
|
|
|
'';
|
|
|
|
|
2017-04-02 10:04:32 +01:00
|
|
|
meta = {
|
2015-05-29 00:23:46 +01:00
|
|
|
homepage = https://launchpad.net/lightdm;
|
2015-03-10 00:32:49 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ ocharles wkennington ];
|
2013-03-26 10:42:18 +00:00
|
|
|
};
|
2013-07-28 21:38:32 +01:00
|
|
|
}
|