nixpkgs-suyu/pkgs/misc/screensavers/xss-lock/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
764 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, docutils, pkg-config, glib, libpthreadstubs
2015-02-01 19:07:01 +01:00
, libXau, libXdmcp, xcbutil }:
stdenv.mkDerivation {
2021-08-12 23:00:21 +02:00
pname = "xss-lock";
version = "unstable-2018-05-31";
2015-02-01 19:07:01 +01:00
src = fetchFromGitHub {
owner = "xdbob";
repo = "xss-lock";
rev = "cd0b89df9bac1880ea6ea830251c6b4492d505a5";
sha256 = "040nqgfh564frvqkrkmak3x3h0yadz6kzk81jkfvd9vd20a9drh7";
2015-02-01 19:07:01 +01:00
};
nativeBuildInputs = [ cmake pkg-config docutils ];
buildInputs = [ glib libpthreadstubs libXau libXdmcp xcbutil ];
2015-02-01 19:07:01 +01:00
meta = with lib; {
2015-02-01 19:07:01 +01:00
description = "Use external locker (such as i3lock) as X screen saver";
license = licenses.mit;
mainProgram = "xss-lock";
maintainers = with maintainers; [ malyn offline ];
2015-02-01 19:07:01 +01:00
platforms = platforms.linux;
};
}