mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ fetchurl, lib, stdenv, which, pkgconfig, libxcb, xcbutilkeysyms, xcbutilimage,
|
|
xcbutilxrm, pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "i3lock";
|
|
version = "2.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://i3wm.org/i3lock/${pname}-${version}.tar.bz2";
|
|
sha256 = "02szjsaz7rqrdkd0r2nwgwa85c4hwfrcskxw7ryk695kmjcfhzv3";
|
|
};
|
|
|
|
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 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;
|
|
};
|
|
|
|
}
|