[bug#54078,1/3] gnu: add libaml
Commit Message
I have attached a patch for libaml:
gnu/packages/linux.scm:8818 libaml
Comments
kitzman via Guix-patches via schreef op ma 21-02-2022 om 10:09 [+0200]:
> + (synopsis "Another/Andri's Main Loop")
What's up with the capitalisation? In most situations, only the first
letter of a sentence (*) is capitalised, as in
(synopsis of 'texmacs')
Editing platform with special features for scientists
(*) It's not a complete sentence but AFAIK the same capitalisation
rules hold.
> + (description "Portable and simple main loop implementation.")
This is not very descriptive, perhaps you an write a bit about what
it supports (file descriptor readability/writability, signal handlers,
timers, ...)?
Greetings,
Maxime.
From b81b98e4fcac6435b1f76a9f3ccc221834c1d972 Mon Sep 17 00:00:00 2001
From: kitzman <kitzman@disroot.org>
Date: Mon, 21 Feb 2022 10:02:56 +0200
Subject: [PATCH 1/3] gnu: add libaml
---
gnu/packages/linux.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
@@ -8814,3 +8814,24 @@ (define-public libgpiod
(license (list license:lgpl2.1+ ;; libgpiod
license:gpl2+ ;; gpio-tools
license:lgpl3+)))) ;; C++ bindings
+
+(define-public libaml
+ (package
+ (name "libaml")
+ (version "0.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/any1/aml")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name "aml" (string-append "v" version)))
+ (sha256
+ (base32
+ "0mxmzlhiv88hm4sf8kyawyrml8qy1xis019hdyb5skl9g95z9yyf"))))
+ (build-system meson-build-system)
+ (native-inputs
+ (list pkg-config))
+ (home-page "https://github.com/any1/aml")
+ (synopsis "Another/Andri's Main Loop")
+ (description "Portable and simple main loop implementation.")
+ (license license:isc)))
--
2.32.0