gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] branch master updated: guix.scm


From: gnunet
Subject: [GNUnet-SVN] [gnurl] branch master updated: guix.scm
Date: Wed, 19 Sep 2018 01:52:45 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

The following commit(s) were added to refs/heads/master by this push:
     new 544c3c6ae guix.scm
544c3c6ae is described below

commit 544c3c6aed15d4198ccc1d38cfaee6329faadaf0
Author: Nils Gillmann <address@hidden>
AuthorDate: Tue Sep 18 23:53:30 2018 +0000

    guix.scm
    
    Signed-off-by: Nils Gillmann <address@hidden>
---
 guix.scm | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

diff --git a/guix.scm b/guix.scm
index ed7766d5d..f554b7ec9 100644
--- a/guix.scm
+++ b/guix.scm
@@ -30,25 +30,39 @@
  (guix utils)
  ((guix build utils) #:select (with-directory-excursion))
  (gnu packages)
- (gnu packages base)
- (gnu packages autotools)
- (gnu packages gnunet)
- (gnu packages libidn))
+ ;;(gnu packages base)
+ ((gnu packages autotools) #:select (autoconf automake libtool))
+ ((gnu packages python) #:select (python-2))
+ ((gnu packages tls) #:select (gnutls/dane))
+ ((gnu packages compression) #:select (zlib))
+ (gnu packages groff)
+ (gnu packages libidn)
+ ((ports lang perl5 perl5 perl5) #:select (perl))
+ ((ports devel openbsd-pkg-config openbsd-pkg-config) #:select 
(openbsd-pkg-config)))
 
 (define %source-dir (dirname (current-filename)))
 
 (define-public gnurl-git
   (package
-    (inherit gnurl)
     (name "gnurl-git")
     (version (string-append "7.61.1-" "dev"))
     (source
      (local-file %source-dir
                  #:recursive? #t))
+    (inputs
+     `(("gnutls" ,gnutls/dane)
+       ("libidn" ,libidn)
+       ("zlib" ,zlib)))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
-       ,@(package-native-inputs gnurl)))
+       ("libtool" ,libtool)
+       ("groff" ,groff)
+       ("perl" ,perl)
+       ("openbsd-pkg-config" ,openbsd-pkg-config)
+       ("python" ,python-2)))
+    (build-system gnu-build-system)
+    (outputs '("doc" "out"))
     (arguments
      ;;`(;#:configure-flags '("--enable-gnurl")
      `(#:configure-flags '("--disable-ntlm-wb")
@@ -80,7 +94,11 @@
 
              ;; Make test output more verbose.
              (zero? (system* "make" "-C" "tests" "test"))
-             #t)))))))
+             #t)))))
+    (description #f)
+    (synopsis #f)
+    (license #f)
+    (home-page #f)))
            ;; (add-after 'build 'dist
            ;;   (lambda _
            ;;     (zero? (system* "maketgz" "7.56.0-dev"))))))))))

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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