2015-08-20 06:56:32 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
2019-04-18 12:28:45 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
2015-08-20 06:56:32 +00:00
|
|
|
, pkgconfig
|
|
|
|
, gtk3
|
2019-04-18 12:28:45 +00:00
|
|
|
, glib
|
|
|
|
, intltool
|
2018-02-25 02:23:58 +00:00
|
|
|
, dbus-glib
|
2019-04-18 12:28:45 +00:00
|
|
|
, libX11
|
|
|
|
, libXScrnSaver
|
|
|
|
, libXxf86vm
|
|
|
|
, libXext
|
2015-08-20 06:56:32 +00:00
|
|
|
, systemd
|
2019-04-18 12:28:45 +00:00
|
|
|
, pantheon
|
2015-08-20 06:56:32 +00:00
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-18 12:28:45 +00:00
|
|
|
pname = "light-locker";
|
|
|
|
version = "1.9.0";
|
|
|
|
|
|
|
|
outputs = [ "out" "man" ];
|
2015-08-20 06:56:32 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "the-cavalry";
|
2019-04-18 12:28:45 +00:00
|
|
|
repo = pname;
|
2015-08-20 06:56:32 +00:00
|
|
|
rev = "v${version}";
|
2019-04-18 12:28:45 +00:00
|
|
|
sha256 = "1z5lcd02gqax65qc14hj5khifg7gr53zy3s5i6apba50lbdlfk46";
|
2015-08-20 06:56:32 +00:00
|
|
|
};
|
|
|
|
|
2019-04-18 12:28:45 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
intltool
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
2019-09-02 04:08:17 +00:00
|
|
|
wrapGAppsHook
|
2019-04-18 12:28:45 +00:00
|
|
|
];
|
2015-08-20 06:56:32 +00:00
|
|
|
|
2019-04-18 12:28:45 +00:00
|
|
|
buildInputs = [
|
|
|
|
dbus-glib
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
libX11
|
|
|
|
libXScrnSaver
|
|
|
|
libXext
|
|
|
|
libXxf86vm
|
|
|
|
systemd
|
|
|
|
];
|
2015-08-20 06:56:32 +00:00
|
|
|
|
2019-04-18 12:28:45 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dmit-ext=true"
|
|
|
|
"-Ddpms-ext=true"
|
|
|
|
"-Dxf86gamma-ext=true"
|
|
|
|
"-Dsystemd=true"
|
|
|
|
"-Dupower=true"
|
|
|
|
"-Dlate-locking=true"
|
|
|
|
"-Dlock-on-suspend=true"
|
|
|
|
"-Dlock-on-lid=true"
|
|
|
|
"-Dgsettings=true"
|
|
|
|
];
|
2016-12-18 17:20:29 +00:00
|
|
|
|
2019-04-21 23:32:15 +00:00
|
|
|
postInstall = ''
|
|
|
|
${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
|
|
|
|
'';
|
|
|
|
|
2019-12-22 23:19:30 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-20 06:56:32 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/the-cavalry/light-locker;
|
2016-12-18 18:33:13 +00:00
|
|
|
description = "A simple session-locker for LightDM";
|
2015-08-20 06:56:32 +00:00
|
|
|
longDescription = ''
|
2016-12-18 18:33:13 +00:00
|
|
|
A simple locker (forked from gnome-screensaver) that aims to
|
|
|
|
have simple, sane, secure defaults and be well integrated with
|
|
|
|
the desktop while not carrying any desktop-specific
|
|
|
|
dependencies.
|
|
|
|
|
|
|
|
It relies on LightDM for locking and unlocking your session via
|
|
|
|
ConsoleKit/UPower or logind/systemd.
|
2015-08-20 06:56:32 +00:00
|
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
2019-04-18 12:28:45 +00:00
|
|
|
maintainers = with maintainers; [ obadz ] ++ pantheon.maintainers;
|
2015-08-20 06:56:32 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|