hyprlock: format using nixfmt-rfc-style

This commit is contained in:
John Titor 2024-05-06 15:30:25 +05:30
parent a6bd31fa2c
commit 66d13063df
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
1 changed files with 24 additions and 20 deletions

View File

@ -1,22 +1,23 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, libGL
, libxkbcommon
, hyprlang
, pam
, wayland
, wayland-protocols
, cairo
, file
, libjpeg
, libwebp
, pango
, libdrm
, mesa
, nix-update-script
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
libGL,
libxkbcommon,
hyprlang,
pam,
wayland,
wayland-protocols,
cairo,
file,
libjpeg,
libwebp,
pango,
libdrm,
mesa,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
@ -62,6 +63,9 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ eclairevoyant ];
mainProgram = "hyprlock";
platforms = [ "aarch64-linux" "x86_64-linux" ];
platforms = [
"aarch64-linux"
"x86_64-linux"
];
};
})