Paste number 323213: | mbedtls |
Pasted by: | balduin |
When: | 5 years, 8 months ago |
Share: | Tweet this! | http://paste.lisp.org/+6XE5 |
Channel: | None |
Paste contents: |
(define-module (gnu packages mbedtls) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system cmake) #:use-module (guix licenses) #:use-module (guix git-download) #:use-module (gnu packages) #:use-module (gnu packages perl)) (define-public mbedtls (let ((commit "a7e43bc060d555a9d7a7ba8c64aeecc6801f6e98") (revision "1")) ;Guix package revision (package (name "mbedtls") (version (string-append "2.3.2-" revision "." (string-take commit 7) ) ) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ARMmbed/mbedtls.git") (commit commit))) (sha256 (base32 "15mgwl0rha1lk6p47a48mkrsssk8wld17xprwglhcrxvrl9g5lhh")) (file-name (string-append name "-" version "-checkout")))) (build-system cmake-build-system) (inputs `(("perl" ,perl))) (synopsis "Portable cryptographic and SSL/TLS library, aka PolarSSL") (description "") (home-page "https://tls.mbed.org/") (license gpl3+))))
This paste has no annotations.