Guest User

Untitled

a guest
Jan 16th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.54 KB | None | 0 0
  1. (define-public libgnurl
  2.   (package
  3.    (name "libgnurl")
  4.    (version "7.34.0")
  5.    (source (origin
  6.             (method url-fetch)
  7.             (uri (string-append "https://gnunet.org/sites/default/files/gnurl-"
  8.                                 version ".tar.bz2"))
  9.             (sha256
  10.              (base32
  11.               ;; Run guix download https://gnunet.org/sites/default/files/gnurl-7.34.0.tar.bz2 and enter the correct value
  12.               "176qf3xhpq1wa3fd9h8b6996bjf83yna1b30lhb6ccrv67hvhm75"))))
  13.    (build-system gnu-build-system)
  14.    (inputs
  15.     `(("gss" ,gss)
  16.       ("gnutls" ,gnutls)
  17.       ("libidn" ,libidn)
  18.       ("zlib" ,zlib)))
  19.    (arguments
  20.     `(#:configure-flags '("--enable-ipv6 --with-gnutls --without-libssh2 --without-libmetalink --without-winidn --without-librtmp --without-nghttp2 --without-nss --without-cyassl --without-polarssl --without-ssl --without-winssl --without-darwinssl --disable-sspi --disable-ntlm-wb --disable-ldap --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-file --disable-ftp")))
  21.    (synopsis "Microfork of libcurl with support for the HTTP/HTTPS/GnuTLS subset of cURL")
  22.    (description
  23.     "libgnurl is a microfork of libcurl, a command line tool for transferring data with URL syntax. While cURL supports many crypto backends, libgnurl only supports HTTPS, HTTPS and GnuTLS.")
  24.    (license (license:bsd-style "file://COPYING"
  25.                        "See COPYING in the distribution."))
  26.    (home-page "https://gnunet.org/gnurl")))
Advertisement
Add Comment
Please, Sign In to add comment