gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet-scheme] 39/324: guix: suggest a package definition


From: gnunet
Subject: [gnunet-scheme] 39/324: guix: suggest a package definition
Date: Tue, 21 Sep 2021 13:21:19 +0200

This is an automated email from the git hooks/post-receive script.

maxime-devos pushed a commit to branch master
in repository gnunet-scheme.

commit 317f980d2fc0d5fa915a3dbf84065095b6f1d5f8
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sat Jan 23 17:52:02 2021 +0100

    guix: suggest a package definition
    
    * guix.scm: create
---
 guix.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..db93cb2
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,37 @@
+;;   This file is part of scheme-GNUnet, a partial Scheme port of GNUnet.
+;;   Copyright (C) 2021 Maxime Devos <maximedevos@telenet.be>
+;;
+;;   GNUnet is free software: you can redistribute it and/or modify it
+;;   under the terms of the GNU Affero General Public License as published
+;;   by the Free Software Foundation, either version 3 of the License,
+;;   or (at your option) any later version.
+;;
+;;   GNUnet is distributed in the hope that it will be useful, but
+;;   WITHOUT ANY WARRANTY; without even the implied warranty of
+;;   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;   Affero General Public License for more details.
+;;
+;;   You should have received a copy of the GNU Affero General Public License
+;;   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;;
+;;   SPDX-License-Identifier: AGPL-3.0-or-later
+
+(use-modules (gnu packages guile)
+            (guix packages)
+            (guix build-system guile)
+            ((guix licenses) #:prefix license:))
+(define-public scheme-gnunet
+  (package
+   (name "scheme-gnunet")
+   (version "0.0")
+   (source #f)
+   (build-system guile-build-system)
+   (propagated-inputs `(("guile-zlib" . ,guile-zlib)
+                       ("guile-bytestructures" . ,guile-bytestructures)
+                       ("guile-json" . ,guile-json-4)))
+   (native-inputs `(("guile" . ,guile-3.0)))
+   (synopsis "partial Scheme port of GNUnet")
+   (license license:agpl3+)
+   (description #f)
+   (home-page #f)))
+scheme-gnunet

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]