Merge pull request #281046 from adamcstephens/waylock/codeberg

This commit is contained in:
Franz Pletz 2024-01-15 02:19:58 +01:00 committed by GitHub
commit 4e534193ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchFromGitea
, libxkbcommon
, pam
, pkg-config
@ -14,7 +14,8 @@ stdenv.mkDerivation (finalAttrs: {
pname = "waylock";
version = "0.6.4";
src = fetchFromGitHub {
src = fetchFromGitea {
domain = "codeberg.org";
owner = "ifreund";
repo = "waylock";
rev = "v${finalAttrs.version}";
@ -41,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/ifreund/waylock";
description = "A small screenlocker for Wayland compositors";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ jordanisaacs ];
maintainers = with lib.maintainers; [ adamcstephens jordanisaacs ];
mainProgram = "waylock";
platforms = lib.platforms.linux;
};