From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Sassmannshausen Subject: [PATCH 1/1] gnu: Add Guile-ICS. Date: Sat, 7 Jan 2017 22:25:07 +0100 Message-ID: <20170107212507.29966-2-alex@pompo.co> References: <20170107212507.29966-1-alex@pompo.co> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cPyUS-0002fV-NT for guix-devel@gnu.org; Sat, 07 Jan 2017 16:25:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cPyUQ-0006sQ-Dw for guix-devel@gnu.org; Sat, 07 Jan 2017 16:25:28 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:33047) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cPyUQ-0006sK-7n for guix-devel@gnu.org; Sat, 07 Jan 2017 16:25:26 -0500 Received: by mail-wm0-x243.google.com with SMTP id r144so4065714wme.0 for ; Sat, 07 Jan 2017 13:25:26 -0800 (PST) In-Reply-To: <20170107212507.29966-1-alex@pompo.co> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: Alex Sassmannshausen * gnu/packages/guile.scm (guile-ics): New variable. --- gnu/packages/guile.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 9458ab714..c6d8fd8e8 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -525,6 +525,34 @@ format is also supported.") (,modules))) #t)))))))))))) +(define-public guile-ics + (package + (name "guile-ics") + (version "0.1.1-rc1") + (source (origin + (method url-fetch) + (uri (string-append "ftp://memory-heap.org/software/" name "/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "01bl8c0wqkndnf2hnlvm2lj1rhh33szsblcmjbnyl6vyhnlm4lf5")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags + (list (string-append + "--with-guile-site-dir=" %output "/share/guile/site/2.0")))) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("guile" ,guile-2.0))) + (propagated-inputs `(("guile-lib" ,guile-lib))) + (home-page "https://github.com/artyom-poptsov/guile-ics") + (synopsis "An iCalendar parser library for Guile") + (description + "Guile-ICS is an iCalendar (RFC5545) format parser library written in +pure Scheme. The library can be used to read and write iCalendar data. + +The library is shipped with documentation in Info format and usage examples.") + (license gpl3))) + (define-public guile-lib (package (name "guile-lib") -- 2.11.0