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