rnote: format with nixfmt-rfc-style

This commit is contained in:
Olivér Falvai 2024-11-15 19:56:18 +01:00
parent a76c14685b
commit 01d50342b8
No known key found for this signature in database

View File

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