mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ fetchurl, stdenv, which, pkgconfig, libxcb, xcbutilkeysyms, xcbutilimage,
|
|
xcbutilxrm, pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "i3lock";
|
|
version = "2.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://i3wm.org/i3lock/${pname}-${version}.tar.bz2";
|
|
sha256 = "02dwaqxpclcwiwvpvq7zwz4sxcv9c15dbf17ifalj1p8djls3cnh";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ which libxcb xcbutilkeysyms xcbutilimage xcbutilxrm
|
|
pam libX11 libev cairo libxkbcommon libxkbfile ];
|
|
|
|
makeFlags = "all";
|
|
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc";
|
|
postInstall = ''
|
|
mkdir -p $out/share/man/man1
|
|
cp *.1 $out/share/man/man1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple screen locker like slock";
|
|
longDescription = ''
|
|
Simple screen locker. After locking, a colored background (default: white) or
|
|
a configurable image is shown, and a ring-shaped unlock-indicator gives feedback
|
|
for every keystroke. After entering your password, the screen is unlocked again.
|
|
'';
|
|
homepage = https://i3wm.org/i3lock/;
|
|
maintainers = with maintainers; [ malyn domenkozar ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
}
|