[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47433] [PATCH 1/2] gnu: Add the-foundation.
From: |
Léo Le Bouter |
Subject: |
[bug#47433] [PATCH 1/2] gnu: Add the-foundation. |
Date: |
Sat, 27 Mar 2021 14:46:28 +0100 |
* gnu/packages/web.scm (the-foundation): New variable.
---
gnu/packages/web.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index ae41588037..dc45c2a3b2 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -6639,6 +6639,42 @@ Rust with GTK. It currently supports the Gemini, Gopher
and Finger
protocols.")
(license license:expat)))
+(define-public the-foundation
+ (let ((commit "8172d35cad24ec392bfd27e1f4de3a2205f988d2"))
+ (package
+ (name "the-foundation")
+ (version (string-take commit 7))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.skyjake.fi/skyjake/the_Foundation")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "010kgbii33rb52g6iyrcjpb9sicnfw684pyrfwv1h8igpiv6hsv9"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(;; Tests are not meant to be run automatically for now.
+ ;; See https://codeberg.org/skyjake/the_Foundation/issues/2
+ #:tests? #f))
+ (native-inputs
+ `(("git" ,git-minimal)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("curl" ,curl)
+ ("zlib" ,zlib)
+ ("pcre" ,pcre)
+ ("openssl" ,openssl)
+ ("libunistring" ,libunistring)))
+ (home-page "https://git.skyjake.fi/skyjake/the_Foundation")
+ (synopsis "Opinionated C11 library for low-level functionality")
+ (description "@code{the_Foundation} is a C11 library and a coding
+convention for object-oriented programming that has been designed from the
+point of view of someone who appreciates the user-friendliness of Qt and some
+of the thinking behind C++ STL.")
+ (license license:bsd-2))))
+
(define-public python-py-ubjson
(package
(name "python-py-ubjson")
--
2.31.0