diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-09-01 17:16:12 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-09-06 17:40:12 -0400 |
commit | 375cef6c6d9eb6b0c511679e17a4d16cfab70a8e (patch) | |
tree | 0f51ed6b5303f1d55b5dc03c2365f1cb78fa5d57 /gnu/packages/tls.scm | |
parent | 967cfd18f666f24ae9cbad14ea8e6921c10cba81 (diff) | |
download | guix-375cef6c6d9eb6b0c511679e17a4d16cfab70a8e.tar guix-375cef6c6d9eb6b0c511679e17a4d16cfab70a8e.tar.gz |
updated: gnu: add asn1c
* gnu/packages/tls.scm (asn1c): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/tls.scm')
-rw-r--r-- | gnu/packages/tls.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index efc1190980..64414edc1a 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2015 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is> +;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -68,6 +69,33 @@ networking, allowing for formal validation of data according to some specifications.") (license license:lgpl2.0+))) +(define-public asn1c + (package + (name "asn1c") + (version "0.9.27") + (source (origin + (method url-fetch) + (uri (string-append "https://lionet.info/soft/asn1c-" + version ".tar.gz")) + (sha256 + (base32 + "17nvn2kzvlryasr9dzqg6gs27b9lvqpval0k31pb64bjqbhn8pq2")))) + (build-system gnu-build-system) + (native-inputs + `(("perl" ,perl))) + (home-page "https://lionet.info/asn1c") + (synopsis "ASN.1 to C compiler") + (description "The ASN.1 to C compiler takes ASN.1 module +files and generates C++ compatible C source code. That code can be +used to serialize the native C structures into compact and unambiguous +BER/XER/PER-based data files, and deserialize the files back. + +Various ASN.1 based formats are widely used in the industry, such as to encode +the X.509 certificates employed in the HTTPS handshake, to exchange control +data between mobile phones and cellular networks, to car-to-car communication +in intelligent transportation networks.") + (license license:bsd-2))) + (define-public p11-kit (package (name "p11-kit") |