2013-07-28 21:38:32 +01:00
|
|
|
{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2
|
2015-09-23 09:38:44 +01:00
|
|
|
, intltool, xlibsWrapper, libxklavier, libgcrypt, libaudit
|
2015-03-10 00:32:49 +00:00
|
|
|
, qt4 ? null, qt5 ? null
|
|
|
|
}:
|
2013-03-26 10:42:18 +00:00
|
|
|
|
2013-07-28 21:38:32 +01:00
|
|
|
let
|
2015-09-18 07:24:48 +01:00
|
|
|
ver_branch = "1.16";
|
|
|
|
version = "1.16.2";
|
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";
|
2015-09-18 07:24:48 +01:00
|
|
|
sha256 = "062jj21bjrl29mk66lpihwhrff038h2wny3p6b5asacf2mklf0hq";
|
2013-03-26 10:42:18 +00:00
|
|
|
};
|
|
|
|
|
2015-05-21 03:14:31 +01:00
|
|
|
patches = [ ./fix-paths.patch ];
|
|
|
|
|
2013-07-28 21:38:32 +01:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig pam libxcb glib libXdmcp itstool libxml2 intltool libxklavier libgcrypt
|
2015-09-18 07:24:48 +01:00
|
|
|
qt4 libaudit
|
2015-05-10 12:44:50 +01:00
|
|
|
] ++ stdenv.lib.optional (qt5 != null) qt5.base;
|
2015-03-10 00:32:49 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
2015-09-18 07:24:48 +01:00
|
|
|
"--disable-tests"
|
2015-03-10 00:32:49 +00:00
|
|
|
] ++ stdenv.lib.optional (qt4 != null) "--enable-liblightdm-qt"
|
2015-05-10 12:44:50 +01:00
|
|
|
++ stdenv.lib.optional ((qt5.base or null) != null) "--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
|
|
|
|
2015-03-10 00:32:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
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
|
|
|
}
|