add meta field for notes

This commit is contained in:
Osman Faruk Bayram 2025-11-03 08:52:08 +03:00
parent bfb331f840
commit ef6f479498

View file

@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
inputs, inputs,
lib,
... ...
}: }:
let let
@ -53,4 +54,10 @@ pkgs.stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
cp app/build/outputs/apk/foss/release/notes-11-foss-release-unsigned.apk $out cp app/build/outputs/apk/foss/release/notes-11-foss-release-unsigned.apk $out
''; '';
meta = {
description = "Notes app without ads";
homepage = "https://fossify.org";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ osbm ];
};
} }