hyprlock: format using nixfmt-rfc-style
This commit is contained in:
parent
a6bd31fa2c
commit
66d13063df
1 changed files with 24 additions and 20 deletions
|
@ -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"
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue