;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Ludovic Courtès ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2019 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages unrtf) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix gexp) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages m4) #:use-module (gnu packages base)) (define-public unrtf (package (name "unrtf") (version "0.21.10") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/unrtf/unrtf-" version ".tar.gz")) (sha256 (base32 "1bil6z4niydz9gqm2j861dkxmqnpc8m7hvidsjbzz7x63whj17xl")))) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/unrtf/") (synopsis "Convert Rich Text Format documents to other formats") (description "GNU UnRTF converts text documents from RTF to HTML, LaTeX, or troff. It supports changes in font characteristics, underlines and strikethroughs, superscripts and subscripts, and more.") (license gpl3+))) ut type='submit' value='search'/>
AgeCommit message (Expand)Author
2024-10-28gnu: owl: Correct package....This is a follow-up to commit 3566cabecc0337f64b8a3e2ef276a93d99f440c7 which contains a preliminary version of the commit. * gnu/packages/scheme.scm (owl): Improve some fields. [native-inputs]: Drop pandoc. Change-Id: Iba99892b58ffa1c5267e3f7d80912fb1a964e2ed Andreas Enge
2024-10-28gnu: owl: Only build with pandoc on supported systems....* gnu/packages/scheme.scm (owl)[native-inputs]: Only use pandoc as an input on systems where pandoc is supported. Change-Id: I9a7727789d303b07834a689ce917d7ac88172212 Efraim Flashner
2024-10-28gnu: Add owl....* gnu/packages/scheme.scm (owl): New variable. Change-Id: Ibb242bbcdedb92419b59e05635e8a32e85afc24e Signed-off-by: Andreas Enge <andreas@enge.fr> Juliana Sims
2024-10-20gnu: stklos: Update to 2.10....* gnu/packages/scheme.scm (stklos): Update to 2.10. [inputs]: Add gmp, libgc, pcre2, libffi, and readline. [native-inputs]: Add pkg-config. [arguments]<#:configure-flags>: set LDFLAGS flag. Change-Id: Ife374dd60ef17129fa88b7a0940ab914e7b3c396 Co-authored-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Ashish SHUKLA
2024-09-25gnu: gauche: Fix build, enable TLS, and use gexps....Fixes <https://issues.guix.gnu.org/73113>. There is a known test issue that will be fixed next release: https://github.com/shirok/Gauche/issues/1044 * gnu/packages/scheme.scm (gauche): Fix build failure and enable TLS. [arguments]: Set #:tests? to #f until next release, and add --with-tls configure flag. [inputs]: Add mbedtls. Change-Id: Iceacb882e74f5a8e3e11d663cca51baafbcbeb69 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Antero Mejr