text-engine: refactor

This commit is contained in:
Pavel Sobolev
2024-12-30 17:52:14 +03:00
parent 00b60f55aa
commit 9ba7647102
+10 -8
View File
@@ -1,16 +1,18 @@
{
stdenv,
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
gobject-introspection,
gtk4,
meson,
ninja,
json-glib,
gtk4,
libxml2,
gobject-introspection,
pkg-config,
json-glib,
libadwaita,
libxml2,
}:
stdenv.mkDerivation rec {
@@ -45,14 +47,14 @@ stdenv.mkDerivation rec {
libxml2
];
meta = with lib; {
meta = {
description = "Rich text framework for GTK";
mainProgram = "text-engine-demo";
homepage = "https://github.com/mjakeman/text-engine";
license = with licenses; [
license = with lib.licenses; [
mpl20
lgpl21Plus
];
maintainers = with maintainers; [ foo-dogsquared ];
maintainers = with lib.maintainers; [ foo-dogsquared ];
};
}