rnote: format with nixfmt-rfc-style

(cherry picked from commit 01d50342b8)
This commit is contained in:
Olivér Falvai 2024-11-15 19:56:18 +01:00 committed by github-actions[bot]
parent 82801809d9
commit d0810c6a68

View File

@ -1,27 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
, alsa-lib
, appstream
, appstream-glib
, cargo
, cmake
, desktop-file-utils
, dos2unix
, glib
, gst_all_1
, gtk4
, libadwaita
, libxml2
, meson
, ninja
, pkg-config
, poppler
, python3
, rustPlatform
, rustc
, shared-mime-info
, wrapGAppsHook4
{
lib,
stdenv,
fetchFromGitHub,
alsa-lib,
appstream,
appstream-glib,
cargo,
cmake,
desktop-file-utils,
dos2unix,
glib,
gst_all_1,
gtk4,
libadwaita,
libxml2,
meson,
ninja,
pkg-config,
poppler,
python3,
rustPlatform,
rustc,
shared-mime-info,
wrapGAppsHook4,
}:
stdenv.mkDerivation rec {
@ -66,7 +67,8 @@ stdenv.mkDerivation rec {
(lib.mesonBool "cli" true)
];
buildInputs = [
buildInputs =
[
appstream
glib
gst_all_1.gstreamer
@ -74,7 +76,8 @@ stdenv.mkDerivation rec {
libadwaita
libxml2
poppler
] ++ lib.optionals stdenv.hostPlatform.isLinux [
]
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
];
@ -92,7 +95,11 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/flxzt/rnote/releases/tag/${src.rev}";
description = "Simple drawing application to create handwritten notes";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda gepbird yrd ];
maintainers = with maintainers; [
dotlambda
gepbird
yrd
];
platforms = platforms.unix;
};
}