;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Federico Beffa ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Gábor Boskovits ;;; ;;; 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 libedit) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages ncurses)) (define-public libedit (package (name "libedit") (version "20191025-3.1") (source (origin (method url-fetch) (uri (string-append "https://thrysoee.dk/editline" "/libedit-" version ".tar.gz")) (sha256 (base32 "0fdznw6fklis39xqk30ihw8dl8kdw9fzq1z42jmbyy6lc1k07zvd")))) (build-system gnu-build-system) (inputs `(("ncurses" ,ncurses))) (home-page "https://thrysoee.dk/editline/") (synopsis "NetBSD Editline library") (description "This is an autotool- and libtoolized port of the NetBSD Editline library (libedit). This Berkeley-style licensed command line editor library provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline.") (license bsd-3))) q' value=''/>
AgeCommit message (Expand)Author
2019-04-16gnu: guile-charting: Install .go files in the right place....* gnu/packages/plotutils.scm (guile-charting)[source](modules, snippet): New fields. Ludovic Courtès
2019-04-04gnu: asymptote: Fix direntry in info file....* gnu/packages/plotutils.scm (asymptote): Fix direntry in info file. Nicolas Goaziou
2019-04-04gnu: Update copyright line....* gnu/packages/plotutils.scm: Update copyright line. Nicolas Goaziou
2019-04-04gnu: asymptote: Fix info file location....* gnu/packages/plotutils.scm (asymptote): Fix info file location so it appears in the top-level directory. Nicolas Goaziou
2019-04-03gnu: asymptote: Update to 2.49....* gnu/packages/plotutils.scm (asymptote): Update to 2.49. [native-inputs]: Re-order inputs. [inputs]: Update to Python 3. Add glew and glm. [arguments]: Add a phase to fix build. Remove unnecessary fix for tests. Nicolas Goaziou
2019-03-01gnu: asymptote: Remove indirect TexLive dependency....* gnu/packages/plotutils.scm (asymptote)[native-inputs]: Remove texlive-generic-ifxetex from texlive-union. Ricardo Wurmus
2018-09-06gnu: guile-charting: Install .go files to libdir....* gnu/packages/plotutils.scm (guile-charting)[source](modules, snippet): Remove. Ludovic Courtès
2018-08-21gnu: asymptote: Use minimal texlive-union....* gnu/packages/plotutils.scm (asymptote)[native-inputs]: Replace texlive with texlive-union. Pierre Neidhardt
2018-08-06gnu: asymptote: Update to 2.47....* gnu/packages/plotutils.scm (asymptote): Update to 2.47. Nicolas Goaziou
2018-05-06Merge branch 'master' into core-updatesMarius Bakke
2018-05-06gnu: asymptote: Update to 2.44....* gnu/packages/plotutils.scm (asymptote): Update to 2.44. Nicolas Goaziou