2020-01-20 00:55:03 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, docutils, pkgconfig, glib, libpthreadstubs
|
2015-02-01 19:07:01 +01:00
|
|
|
, libXau, libXdmcp, xcbutil }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2020-01-20 00:55:03 +01:00
|
|
|
name = "xss-lock-git-2018-05-31";
|
2015-02-01 19:07:01 +01:00
|
|
|
|
2020-01-20 00:55:03 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xdbob";
|
|
|
|
repo = "xss-lock";
|
|
|
|
rev = "cd0b89df9bac1880ea6ea830251c6b4492d505a5";
|
|
|
|
sha256 = "040nqgfh564frvqkrkmak3x3h0yadz6kzk81jkfvd9vd20a9drh7";
|
2015-02-01 19:07:01 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake docutils glib libpthreadstubs libXau
|
2015-02-01 19:07:01 +01:00
|
|
|
libXdmcp xcbutil ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Use external locker (such as i3lock) as X screen saver";
|
|
|
|
license = licenses.mit;
|
2020-01-20 00:55:03 +01:00
|
|
|
maintainers = with maintainers; [ malyn offline ];
|
2015-02-01 19:07:01 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|