|
From: | Catonano |
Subject: | bug#25918: [PATCH 1/3] gnu: Add libmesode. |
Date: | Tue, 14 Mar 2017 13:38:29 +0100 |
+(define-public libmesode
+ (package
+ (name "libmesode")
+ (version "0.9.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/boothj5/libmesode/archive/ "
+ version ".tar.gz")
+ (sha256
+ (base32
+ "0iaj56fkd5bjvqpvq3324ni895rmbj 1akbfqipjydnghfwaym4z6"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'bootstrap
+ (lambda _
+ (zero? (system* "./bootstrap.sh")))))))
+ (inputs
+ `(("expat" ,expat)
+ ("openssl" ,openssl)))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "A simple, lightweight C library for writing XMPP clients")
+ (description "Libmesode is a fork of libstrophe for use with Profanity
+XMPP Client. In particular, libmesode provides extra TLS functionality such as
+manual SSL certificate verification.")
+ (home-page "https://github.com/boothj5/libmesode ")
+ (license (list license:gpl3+ license:x11))))
[Prev in Thread] | Current Thread | [Next in Thread] |