3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/wayland/gtklock/default.nix
Artturin d3c7ef80ef pkgs/tools/wayland: mark all linux only
on non-linux they all fail various variations of
meson.build:26:0: ERROR: Dependency "wayland-client" not found, tried pkgconfig and framework
fatal error: 'wayland-util.h' file not found
2023-03-05 15:11:44 +02:00

58 lines
1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, pkgs
, pam
, scdoc
, gtk3
, pkg-config
, gtk-layer-shell
, glib
, wayland
, wayland-scanner
}:
stdenv.mkDerivation rec {
pname = "gtklock";
version = "2.0.1";
src = fetchFromGitHub {
owner = "jovanlanik";
repo = pname;
rev = "v${version}";
sha256 = "sha256-W+GyeGxlfp1YZtSFEZYXuHmvTVZ8mU1oBcsrWN1yvjU=";
};
strictDeps = true;
nativeBuildInputs = [
scdoc
pkg-config
wayland-scanner
glib
];
buildInputs = [
wayland
gtk3
pam
gtk-layer-shell
];
installFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
meta = with lib; {
description = "GTK-based lockscreen for Wayland";
longDescription = ''
Important note: for gtklock to work you need to set "security.pam.services.gtklock = {};" manually.
''; # Following nixpkgs/pkgs/applications/window-managers/sway/lock.nix
homepage = "https://github.com/jovanlanik/gtklock";
license = licenses.gpl3;
maintainers = with maintainers; [ dit7ya ];
platforms = platforms.linux;
};
}