nixpkgs/pkgs/misc/screensavers/light-locker/default.nix

60 lines
1.6 KiB
Nix
Raw Normal View History

2015-08-20 08:56:32 +02:00
{ stdenv
, fetchFromGitHub
, which
, xfce
, glib
, pkgconfig
, libX11
, libXScrnSaver
, libXxf86misc
2015-08-20 08:56:32 +02:00
, gtk3
, dbus_glib
, systemd
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
name = "${basename}-${version}";
basename = "light-locker";
version = "1.7.0";
src = fetchFromGitHub {
owner = "the-cavalry";
repo = basename;
rev = "v${version}";
sha256 = "0ygkp5vgkx2nfhfql6j2jsfay394gda23ir3sx4f72j4agsirjvj";
};
# Patch so that systemd is "found" when configuring.
patches = [ ./systemd.patch ];
buildInputs = [ which xfce.xfce4_dev_tools glib systemd pkgconfig
libX11 libXScrnSaver libXxf86misc gtk3 dbus_glib wrapGAppsHook ];
2015-08-20 08:56:32 +02:00
preConfigure = ''
./autogen.sh
'';
configureFlags = [ "--with-xf86gamma-ext" "--with-mit-ext"
"--with-dpms-ext" "--with-systemd"
# ConsoleKit and UPower were dropped in favor
# of systemd replacements
"--without-console-kit" "--without-upower" ];
2015-08-20 08:56:32 +02:00
meta = with stdenv.lib; {
homepage = https://github.com/the-cavalry/light-locker;
description = "Light-locker is a simple locker";
2015-08-20 08:56:32 +02:00
longDescription = ''
light-locker is 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 08:56:32 +02:00
'';
license = licenses.gpl2;
maintainers = with maintainers; [ obadz ];
platforms = platforms.linux;
};
}