i3lock-color: init at 2.7 revision 63a4c23ec6f
This commit is contained in:
parent
ad2c8d3510
commit
3290b66e0e
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/window-managers/i3/lock-color.nix
Normal file
27
pkgs/applications/window-managers/i3/lock-color.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchFromGitHub, which, pkgconfig, libxcb, xcbutilkeysyms
|
||||
, xcbutilimage, pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
rev = "63a4c23ec6f0b3f62144122a4277d51caf023e4f";
|
||||
name = "i3lock-color-2.7_rev${builtins.substring 0 7 rev}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Arcaena";
|
||||
repo = "i3lock-color";
|
||||
inherit rev;
|
||||
sha256 = "1wfp0p85h45l50l6zfk5cr9ynka60vhjlgnyk8mqd5fp0w4ibxip";
|
||||
};
|
||||
buildInputs = [ which pkgconfig libxcb xcbutilkeysyms xcbutilimage pam libX11
|
||||
libev cairo libxkbcommon libxkbfile ];
|
||||
makeFlags = "all";
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/man/man1
|
||||
'';
|
||||
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc MANDIR=\${out}/share/man";
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple screen locker like slock";
|
||||
homepage = http://i3wm.org/i3lock/;
|
||||
maintainers = with maintainers; [ garbas malyn iElectric ];
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -12941,6 +12941,8 @@ in
|
|||
cairo = cairo.override { xcbSupport = true; };
|
||||
};
|
||||
|
||||
i3lock-color = callPackage ../applications/window-managers/i3/lock-color.nix { };
|
||||
|
||||
i3minator = callPackage ../tools/misc/i3minator { };
|
||||
|
||||
i3pystatus = callPackage ../applications/window-managers/i3/pystatus.nix { };
|
||||
|
|
Loading…
Reference in a new issue