mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
52 lines
989 B
Nix
52 lines
989 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, zig
|
|
, wayland
|
|
, pkg-config
|
|
, scdoc
|
|
, wayland-protocols
|
|
, libxkbcommon
|
|
, pam
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "waylock";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ifreund";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-jl4jSDWvJB6OfBbVXfVQ7gv/aDkN6bBy+/yK+AQDQL0=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ zig wayland scdoc pkg-config ];
|
|
|
|
buildInputs = [
|
|
wayland-protocols
|
|
libxkbcommon
|
|
pam
|
|
];
|
|
|
|
dontConfigure = true;
|
|
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
zig build -Drelease-safe -Dman-pages -Dcpu=baseline --prefix $out install
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ifreund/waylock";
|
|
description = "A small screenlocker for Wayland compositors";
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jordanisaacs ];
|
|
};
|
|
}
|