about summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-05-19 18:39:44 +0200
committeruser@node5.net <user@node5.net>2026-05-19 18:43:39 +0200
commit10ed02fe017a15befce10b50f5b6842ce39996c2 (patch)
tree2565e0a935f8f1062cb053f5fe5bb0c9f3a4bdfb
parent51e3d0be43cbd85df9e9c9c3b972052e44d17efa (diff)
flake: add meta data about package
-rw-r--r--flake.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 7996ee1..5893c39 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,6 +34,12 @@
         # Pass attributes to buildPythonPackage.
         # Here is a good spot to add on any missing or custom attributes.
         python.pkgs.buildPythonPackage (attrs // {
+            meta = {
+            description = "Blog backend for blog.node5.net";
+            homepage = "https://blog.node5.net/Blog%20meta/";
+            changelog = "https://git.node5.net/blog/blog.node5.net_flask/log/";
+            mainProgram = "blog-node5";
+            };
         });
     };
 }