nixpkgs/pkgs/applications/display-managers/lightdm/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2
2015-03-10 00:32:49 +00:00
, intltool, x11, libxklavier, libgcrypt
, qt4 ? null, qt5 ? null
}:
let
2015-05-28 23:23:46 +00:00
ver_branch = "1.14";
version = "1.14.2";
in
stdenv.mkDerivation rec {
name = "lightdm-${version}";
src = fetchurl {
url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz";
2015-05-28 23:23:46 +00:00
sha256 = "18dvipdkp6hc1hysyiwpd5nwq6db3mg98rwi3am2ly3hk2bpic18";
};
patches = [ ./fix-paths.patch ];
buildInputs = [
pkgconfig pam libxcb glib libXdmcp itstool libxml2 intltool libxklavier libgcrypt
2015-05-10 11:44:50 +00:00
qt4
] ++ stdenv.lib.optional (qt5 != null) qt5.base;
2015-03-10 00:32:49 +00:00
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
] ++ stdenv.lib.optional (qt4 != null) "--enable-liblightdm-qt"
2015-05-10 11:44:50 +00:00
++ stdenv.lib.optional ((qt5.base or null) != null) "--enable-liblightdm-qt5";
2015-04-05 05:20:28 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
2015-03-10 00:32:49 +00:00
meta = with stdenv.lib; {
2015-05-28 23:23:46 +00: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 ];
};
}