diff options
author | Ludovic Courtès <[email protected]> | 2021-07-18 16:05:21 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2021-07-18 19:50:01 +0200 |
commit | 0e47fcced442d8e7c1b05184fdc1c14f10ed04ec (patch) | |
tree | 4ae844bc0ec3c670f8697bdc24362c122fa718ad /gnu/packages/c.scm | |
parent | e4b70bc55a538569465bcedee19d1f2607308e65 (diff) | |
parent | 8b1bde7bb3936a64244824500ffe60f123704437 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/c.scm')
-rw-r--r-- | gnu/packages/c.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 931eb2bf3f..1b9003ce09 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2020 Katherine Cox-Buday <[email protected]> ;;; Copyright © 2020 Maxim Cournoyer <[email protected]> ;;; Copyright © 2020, 2021 Greg Hogan <[email protected]> +;;; Copyright © 2021 David Dashyan <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -693,3 +694,22 @@ event-driven, asynchronous network application protocols.") cryptographic primitives for the @acronym{AWS,Amazon Web Services} SDK.") (home-page "https://github.com/awslabs/aws-c-cal") (license license:asl2.0))) + +(define-public pcl + (package + (name "pcl") + (version "1.12") + (source + (origin + (method url-fetch) + (uri (string-append + "http://www.xmailserver.org/pcl-" version ".tar.gz")) + (sha256 + (base32 + "06ly65rq4iyj2p4704i215c8y4rgspwl8sxfaifmf4ahfr30bcz7")))) + (build-system gnu-build-system) + (home-page "http://www.xmailserver.org/libpcl.html") + (synopsis "Portable Coroutine Library") + (description "The @acronym{PCL, Portable Coroutine Library} implements the +low level functionality for coroutines.") + (license license:gpl2+))) |