Message ID | 87bkz0bpzd.fsf_-_@disroot.org |
---|---|
State | New |
Headers | show |
Series | gnu: add libaml, libneatvnc, and wayvnc | expand |
Context | Check | Description |
---|---|---|
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | fail | View Laminar job |
cbaines/issue | success | View issue |
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | fail | View Laminar job |
cbaines/issue | success | View issue |
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | fail | View Laminar job |
cbaines/issue | success | View issue |
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(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1c514c3cec..a2cd5bb1a2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -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