about summary refs log tree commit diff
path: root/pkgs/applications/misc/waylock/default.nix
blob: 2a29eab29730d0e4e16f7394497461a2bc708829 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  lib,
  stdenv,
  fetchFromGitHub,
  zig,
  wayland,
  pkg-config,
  scdoc,
  wayland-protocols,
  libxkbcommon,
  pam,
}:
stdenv.mkDerivation rec {
  pname = "waylock";
  version = "0.4.2";

  src = fetchFromGitHub {
    owner = "ifreund";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-yWjWcnGa4a+Dpc82H65yr8H7v88g/tDq0FSguubhbEI=";
    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 --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];
  };
}