unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Anadon <joshua.r.marshall.1991@gmail.com>
To: 45604@debbugs.gnu.org
Cc: leo.prikler@student.tugraz.at, Anadon <joshua.r.marshall.1991@gmail.com>
Subject: [bug#45604] [PATCH] gnu: Add magic-enum.
Date: Tue, 19 Jan 2021 23:09:24 -0500	[thread overview]
Message-ID: <20210120040924.43817-1-joshua.r.marshall.1991@gmail.com> (raw)
In-Reply-To: <20210102005145.582428-1-joshua.r.marshall.1991@gmail.com>

* gnu/packages/cpp.scm (magic-enum): Added the package definition.
---
 gnu/packages/cpp.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 00e006928e..012640171a 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -807,3 +807,27 @@ code will be mixed in with the actual programming logic.  This implementation
 provides a number of utilities to make coding with expected cleaner.")
     (home-page "https://tl.tartanllama.xyz/")
     (license license:cc0)))
+
+(define-public magic-enum
+    (package
+      (name "magic-enum")
+      (version "0.7.2")
+      (home-page "https://github.com/Neargye/magic_enum")
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url home-page)
+                      (commit (string-append "v" version))))
+                (sha256
+                 (base32
+                  "07j5zdf3vkliwrcv6k663k35akn7qp23794sz2mnvkj9hbv9s8cx"))
+                (file-name (git-file-name name version))))
+      (build-system cmake-build-system)
+
+      (native-inputs
+       `(("gcc" ,gcc-9)))
+      (synopsis "C++17 header only library for compile time reflection of enums")
+      (description "C++17 header only library which offers static reflection
+of enums, with to string, from string, and iteration, and relate324    d
+functionality.")
+      (license license:expat)))
-- 
2.30.0





  parent reply	other threads:[~2021-01-20  4:10 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-02  0:51 [bug#45604] [PATCH 0/1] Add magic-enum package Anadon
2021-01-02  0:51 ` [bug#45604] [PATCH 1/1] Added magic-enum header-only library as a package Anadon
2021-01-04 13:06   ` Leo Prikler
2021-01-04 21:59     ` Josh Marshall
2021-01-05 20:39       ` Leo Prikler
2021-01-09  7:51 ` [bug#45604] [PATCH 0/2] " Leo Prikler
2021-01-20  4:09 ` Anadon [this message]
2021-01-20  8:14   ` bug#45604: [PATCH] gnu: Add magic-enum Leo Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210120040924.43817-1-joshua.r.marshall.1991@gmail.com \
    --to=joshua.r.marshall.1991@gmail.com \
    --cc=45604@debbugs.gnu.org \
    --cc=leo.prikler@student.tugraz.at \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).